nextcloud/apps/bookmarks/lib/migrate.php

49 lines
978 B
PHP
Raw Normal View History

<?php
class OC_Migrate_Provider_Bookmarks extends OC_Migrate_Provider{
2012-03-03 17:22:45 +04:00
// Create the xml for the user supplied
2012-03-10 19:52:38 +04:00
function export( $uid ){
2012-03-03 17:22:45 +04:00
2012-03-10 19:52:38 +04:00
$options = array(
'table'=>'bookmarks',
'matchcol'=>'user_id',
'matchval'=>$uid,
'idcol'=>'id'
);
$ids = OC_Migrate::copyRows( $options );
2012-03-03 17:22:45 +04:00
2012-03-10 19:52:38 +04:00
$options = array(
'table'=>'bookmarks_tags',
'matchcol'=>'id',
'matchval'=>$ids
);
2012-03-03 17:22:45 +04:00
2012-03-10 19:52:38 +04:00
// Export tags
OC_Migrate::copyRows( $options );
2012-03-03 17:22:45 +04:00
}
2012-03-03 17:22:45 +04:00
2012-03-03 21:30:21 +04:00
// Import function for bookmarks
2012-03-10 19:52:38 +04:00
function import( $data, $uid ){
// new id mapping
$newids = array();
// Import bookmarks
foreach($data['bookmarks'] as $bookmark){
$bookmark['user_id'] = $uid;
// import to the db now
$newids[$bookmark['id']] = OC_DB::insertid();
}
2012-03-03 21:30:21 +04:00
2012-03-10 19:52:38 +04:00
// Import tags
foreach($data['bookmarks_tags'] as $tag){
// Map the new ids
$tag['id'] = $newids[$tag['id']];
// Import to the db now using OC_DB
2012-03-03 21:30:21 +04:00
}
}
}
2012-03-03 17:22:45 +04:00
2012-03-10 19:52:38 +04:00
new OC_Migrate_Provider_Bookmarks( 'bookmarks' );