1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2024-11-29 04:24:11 +01:00
OwncloudBookmarksOfficial/appinfo/migrate.php

68 lines
2.0 KiB
PHP
Raw Normal View History

<?php
class OC_Migration_Provider_Bookmarks extends OC_Migration_Provider{
2012-03-03 14:22:45 +01:00
// Create the xml for the user supplied
function export( ){
2012-03-10 16:52:38 +01:00
$options = array(
'table'=>'bookmarks',
'matchcol'=>'user_id',
'matchval'=>$this->uid,
2012-03-10 16:52:38 +01:00
'idcol'=>'id'
);
$ids = $this->content->copyRows( $options );
2012-03-11 23:09:16 +01:00
2012-03-10 16:52:38 +01:00
$options = array(
'table'=>'bookmarks_tags',
'matchcol'=>'bookmark_id',
2012-03-10 16:52:38 +01:00
'matchval'=>$ids
);
2012-03-03 14:22:45 +01:00
2012-03-10 16:52:38 +01:00
// Export tags
$ids2 = $this->content->copyRows( $options );
2012-03-11 23:20:01 +01:00
// If both returned some ids then they worked
if( is_array( $ids ) && is_array( $ids2 ) )
{
return true;
} else {
return false;
}
2012-03-03 14:22:45 +01:00
}
2012-03-03 14:22:45 +01:00
2012-03-03 18:30:21 +01:00
// Import function for bookmarks
function import( ){
switch( $this->appinfo->version ){
2012-03-13 22:24:07 +01:00
default:
// All versions of the app have had the same db structure, so all can use the same import function
2012-03-20 21:19:21 +01:00
$query = $this->content->prepare( "SELECT * FROM bookmarks WHERE user_id LIKE ?" );
$results = $query->execute( array( $this->olduid ) );
2012-03-13 22:24:07 +01:00
$idmap = array();
2012-03-20 21:19:21 +01:00
while( $row = $results->fetchRow() ){
2012-03-13 22:24:07 +01:00
// Import each bookmark, saving its id into the map
2012-05-03 13:06:08 +02:00
$query = OCP\DB::prepare( "INSERT INTO *PREFIX*bookmarks(url, title, user_id, public, added, lastmodified) VALUES (?, ?, ?, ?, ?, ?)" );
2012-03-20 21:19:21 +01:00
$query->execute( array( $row['url'], $row['title'], $this->uid, $row['public'], $row['added'], $row['lastmodified'] ) );
2012-03-13 22:24:07 +01:00
// Map the id
2012-05-03 13:06:08 +02:00
$idmap[$row['id']] = OCP\DB::insertid();
2012-03-13 22:24:07 +01:00
}
// Now tags
foreach($idmap as $oldid => $newid){
2012-03-27 23:35:29 +02:00
$query = $this->content->prepare( "SELECT * FROM bookmarks_tags WHERE bookmark_id LIKE ?" );
2012-03-13 22:24:07 +01:00
$results = $query->execute( array( $oldid ) );
2012-03-27 23:35:29 +02:00
while( $row = $results->fetchRow() ){
2012-03-13 22:24:07 +01:00
// Import the tags for this bookmark, using the new bookmark id
2012-05-03 13:06:08 +02:00
$query = OCP\DB::prepare( "INSERT INTO *PREFIX*bookmarks_tags(bookmark_id, tag) VALUES (?, ?)" );
2012-03-13 22:24:07 +01:00
$query->execute( array( $newid, $row['tag'] ) );
}
}
// All done!
break;
2012-03-10 16:52:38 +01:00
}
2012-03-03 18:30:21 +01:00
2012-03-13 22:24:07 +01:00
return true;
2012-03-03 18:30:21 +01:00
}
}
2012-03-03 14:22:45 +01:00
// Load the provider
new OC_Migration_Provider_Bookmarks( 'bookmarks' );