nextcloud/lib/migrate.php

694 lines
21 KiB
PHP
Raw Normal View History

<?php
/**
* ownCloud
*
* @author Tom Needham
* @copyright 2012 Tom Needham tom@owncloud.com
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
/**
* provides an interface to migrate users and whole ownclouds
*/
class OC_Migrate{
2012-04-14 16:31:48 +04:00
// Array of OC_Migration_Provider objects
static private $providers=array();
// User id of the user to import/export
static private $uid=false;
2012-03-14 03:09:43 +04:00
// Holds the ZipArchive object
static private $zip=false;
// Stores the type of export
static private $exporttype=false;
// Array of temp files to be deleted after zip creation
static private $tmpfiles=array();
// Holds the db object
static private $MDB2=false;
// Schema db object
static private $schema=false;
// Path to the sqlite db
static private $dbpath=false;
// Holds the path to the zip file
static private $zippath=false;
// Holds the OC_Migration_Content object
static private $content=false;
2012-04-14 16:31:48 +04:00
/**
* register a new migration provider
* @param OC_Migrate_Provider $provider
*/
2012-09-07 17:22:01 +04:00
public static function registerProvider($provider) {
self::$providers[]=$provider;
}
2012-04-14 16:31:48 +04:00
/**
2012-04-14 20:31:37 +04:00
* @brief finds and loads the providers
*/
2012-09-07 17:22:01 +04:00
static private function findProviders() {
// Find the providers
$apps = OC_App::getAllApps();
2012-04-14 16:31:48 +04:00
2012-09-07 17:22:01 +04:00
foreach($apps as $app) {
2012-06-28 00:43:33 +04:00
$path = OC_App::getAppPath($app) . '/appinfo/migrate.php';
2012-09-07 17:22:01 +04:00
if( file_exists( $path ) ) {
include $path;
2012-04-14 16:31:48 +04:00
}
}
}
2012-04-14 16:31:48 +04:00
/**
2012-04-14 20:31:37 +04:00
* @brief exports a user, or owncloud instance
* @param optional $uid string user id of user to export if export type is user, defaults to current
* @param ootional $type string type of export, defualts to user
* @param otional $path string path to zip output folder
2012-04-14 16:31:48 +04:00
* @return false on error, path to zip on success
*/
2012-12-15 02:04:42 +04:00
public static function export( $uid=null, $type='user', $path=null ) {
$datadir = OC_Config::getValue( 'datadirectory' );
2012-12-15 02:16:32 +04:00
// Validate export type
$types = array( 'user', 'instance', 'system', 'userfiles' );
if( !in_array( $type, $types ) ) {
OC_Log::write( 'migration', 'Invalid export type', OC_Log::ERROR );
return json_encode( array( 'success' => false ) );
}
self::$exporttype = $type;
// Userid?
if( self::$exporttype == 'user' ) {
// Check user exists
self::$uid = is_null($uid) ? OC_User::getUser() : $uid;
if(!OC_User::userExists(self::$uid)) {
return json_encode( array( 'success' => false) );
}
}
// Calculate zipname
if( self::$exporttype == 'user' ) {
$zipname = 'oc_export_' . self::$uid . '_' . date("y-m-d_H-i-s") . '.zip';
} else {
$zipname = 'oc_export_' . self::$exporttype . '_' . date("y-m-d_H-i-s") . '.zip';
}
// Calculate path
if( self::$exporttype == 'user' ) {
self::$zippath = $datadir . '/' . self::$uid . '/' . $zipname;
} else {
if( !is_null( $path ) ) {
// Validate custom path
if( !file_exists( $path ) || !is_writeable( $path ) ) {
OC_Log::write( 'migration', 'Path supplied is invalid.', OC_Log::ERROR );
return json_encode( array( 'success' => false ) );
}
self::$zippath = $path . $zipname;
} else {
// Default path
self::$zippath = get_temp_dir() . '/' . $zipname;
}
}
// Create the zip object
if( !self::createZip() ) {
return json_encode( array( 'success' => false ) );
}
// Do the export
self::findProviders();
$exportdata = array();
switch( self::$exporttype ) {
case 'user':
// Connect to the db
self::$dbpath = $datadir . '/' . self::$uid . '/migration.db';
if( !self::connectDB() ) {
return json_encode( array( 'success' => false ) );
}
self::$content = new OC_Migration_Content( self::$zip, self::$MDB2 );
// Export the app info
$exportdata = self::exportAppData();
// Add the data dir to the zip
self::$content->addDir(OC_User::getHome(self::$uid), true, '/' );
2012-12-15 02:16:32 +04:00
break;
case 'instance':
self::$content = new OC_Migration_Content( self::$zip );
// Creates a zip that is compatable with the import function
2012-05-30 16:14:32 +04:00
$dbfile = tempnam( get_temp_dir(), "owncloud_export_data_" );
OC_DB::getDbStructure( $dbfile, 'MDB2_SCHEMA_DUMP_ALL');
2012-04-14 16:31:48 +04:00
// Now add in *dbname* and *dbprefix*
$dbexport = file_get_contents( $dbfile );
$dbnamestring = "<database>\n\n <name>" . OC_Config::getValue( "dbname", "owncloud" );
$dbtableprefixstring = "<table>\n\n <name>" . OC_Config::getValue( "dbtableprefix", "oc_" );
$dbexport = str_replace( $dbnamestring, "<database>\n\n <name>*dbname*", $dbexport );
$dbexport = str_replace( $dbtableprefixstring, "<table>\n\n <name>*dbprefix*", $dbexport );
// Add the export to the zip
self::$content->addFromString( $dbexport, "dbexport.xml" );
// Add user data
2012-09-07 17:22:01 +04:00
foreach(OC_User::getUsers() as $user) {
self::$content->addDir(OC_User::getHome($user), true, "/userdata/" );
}
2012-12-15 02:16:32 +04:00
break;
case 'userfiles':
self::$content = new OC_Migration_Content( self::$zip );
// Creates a zip with all of the users files
2012-09-07 17:22:01 +04:00
foreach(OC_User::getUsers() as $user) {
self::$content->addDir(OC_User::getHome($user), true, "/" );
}
2012-12-15 02:16:32 +04:00
break;
case 'system':
self::$content = new OC_Migration_Content( self::$zip );
// Creates a zip with the owncloud system files
self::$content->addDir( OC::$SERVERROOT . '/', false, '/');
2013-02-11 20:44:02 +04:00
foreach (array(
".git",
"3rdparty",
"apps",
"core",
"files",
"l10n",
"lib",
"ocs",
"search",
"settings",
"tests"
) as $dir) {
2012-12-15 02:16:32 +04:00
self::$content->addDir( OC::$SERVERROOT . '/' . $dir, true, "/");
}
2012-12-15 02:16:32 +04:00
break;
}
if( !$info = self::getExportInfo( $exportdata ) ) {
return json_encode( array( 'success' => false ) );
}
// Add the export info json to the export zip
self::$content->addFromString( $info, 'export_info.json' );
if( !self::$content->finish() ) {
return json_encode( array( 'success' => false ) );
}
return json_encode( array( 'success' => true, 'data' => self::$zippath ) );
2013-02-09 20:27:57 +04:00
}
2012-04-14 16:31:48 +04:00
2012-03-21 00:19:21 +04:00
/**
2012-04-14 20:31:37 +04:00
* @brief imports a user, or owncloud instance
2012-03-21 00:19:21 +04:00
* @param $path string path to zip
2012-03-21 00:32:01 +04:00
* @param optional $type type of import (user or instance)
2012-04-14 16:31:48 +04:00
* @param optional $uid userid of new user
2012-03-21 00:19:21 +04:00
*/
2012-09-07 17:22:01 +04:00
public static function import( $path, $type='user', $uid=null ) {
2012-08-29 10:38:33 +04:00
2012-03-21 00:19:21 +04:00
$datadir = OC_Config::getValue( 'datadirectory' );
// Extract the zip
2012-09-07 17:22:01 +04:00
if( !$extractpath = self::extractZip( $path ) ) {
2012-04-14 16:31:48 +04:00
return json_encode( array( 'success' => false ) );
2012-03-21 00:19:21 +04:00
}
// Get export_info.json
$scan = scandir( $extractpath );
// Check for export_info.json
2012-09-07 17:22:01 +04:00
if( !in_array( 'export_info.json', $scan ) ) {
OC_Log::write( 'migration', 'Invalid import file, export_info.json not found', OC_Log::ERROR );
2012-04-14 16:31:48 +04:00
return json_encode( array( 'success' => false ) );
2012-03-21 00:19:21 +04:00
}
$json = json_decode( file_get_contents( $extractpath . 'export_info.json' ) );
2012-09-07 17:22:01 +04:00
if( $json->exporttype != $type ) {
2012-03-21 00:32:01 +04:00
OC_Log::write( 'migration', 'Invalid import file', OC_Log::ERROR );
2012-04-14 16:31:48 +04:00
return json_encode( array( 'success' => false ) );
2012-03-21 00:32:01 +04:00
}
self::$exporttype = $type;
2012-04-14 16:31:48 +04:00
$currentuser = OC_User::getUser();
2012-03-21 00:19:21 +04:00
// Have we got a user if type is user
2012-09-07 17:22:01 +04:00
if( self::$exporttype == 'user' ) {
self::$uid = !is_null($uid) ? $uid : $currentuser;
}
2012-08-29 10:38:33 +04:00
// We need to be an admin if we are not importing our own data
2012-09-07 17:22:01 +04:00
if(($type == 'user' && self::$uid != $currentuser) || $type != 'user' ) {
if( !OC_User::isAdminUser($currentuser)) {
// Naughty.
OC_Log::write( 'migration', 'Import not permitted.', OC_Log::ERROR );
2012-08-29 10:38:33 +04:00
return json_encode( array( 'success' => false ) );
2012-03-21 00:19:21 +04:00
}
}
2012-04-14 16:31:48 +04:00
2012-03-21 00:19:21 +04:00
// Handle export types
2012-09-07 17:22:01 +04:00
switch( self::$exporttype ) {
2012-03-21 00:19:21 +04:00
case 'user':
// Check user availability
2012-09-07 17:22:01 +04:00
if( !OC_User::userExists( self::$uid ) ) {
OC_Log::write( 'migration', 'User doesn\'t exist', OC_Log::ERROR );
2012-04-14 16:31:48 +04:00
return json_encode( array( 'success' => false ) );
2012-03-21 00:19:21 +04:00
}
// Check if the username is valid
if( preg_match( '/[^a-zA-Z0-9 _\.@\-]/', $json->exporteduser )) {
OC_Log::write( 'migration', 'Username is not valid', OC_Log::ERROR );
return json_encode( array( 'success' => false ) );
}
2012-03-21 00:19:21 +04:00
// Copy data
$userfolder = $extractpath . $json->exporteduser;
$newuserfolder = $datadir . '/' . self::$uid;
foreach(scandir($userfolder) as $file){
if($file !== '.' && $file !== '..' && is_dir($file)) {
$file = str_replace(array('/', '\\'), '', $file);
// Then copy the folder over
OC_Helper::copyr($userfolder.'/'.$file, $newuserfolder.'/'.$file);
}
2012-03-21 00:19:21 +04:00
}
2012-04-14 16:31:48 +04:00
// Import user app data
if(file_exists($extractpath . $json->exporteduser . '/migration.db')) {
2013-02-11 20:44:02 +04:00
if( !$appsimported = self::importAppData( $extractpath . $json->exporteduser . '/migration.db',
$json,
self::$uid ) ) {
return json_encode( array( 'success' => false ) );
}
2012-03-21 00:19:21 +04:00
}
// All done!
2012-09-07 17:22:01 +04:00
if( !self::unlink_r( $extractpath ) ) {
2012-04-14 16:31:48 +04:00
OC_Log::write( 'migration', 'Failed to delete the extracted zip', OC_Log::ERROR );
2012-03-21 00:19:21 +04:00
}
return json_encode( array( 'success' => true, 'data' => $appsimported ) );
2012-12-15 02:16:32 +04:00
break;
2012-03-21 00:19:21 +04:00
case 'instance':
2012-04-01 04:25:47 +04:00
/*
2012-04-07 21:27:09 +04:00
* EXPERIMENTAL
2012-03-21 00:19:21 +04:00
// Check for new data dir and dbexport before doing anything
// TODO
2012-04-14 16:31:48 +04:00
2012-03-21 00:19:21 +04:00
// Delete current data folder.
OC_Log::write( 'migration', "Deleting current data dir", OC_Log::INFO );
2012-09-07 17:22:01 +04:00
if( !self::unlink_r( $datadir, false ) ) {
2012-03-21 00:19:21 +04:00
OC_Log::write( 'migration', 'Failed to delete the current data dir', OC_Log::ERROR );
2012-04-14 16:31:48 +04:00
return json_encode( array( 'success' => false ) );
2012-03-21 00:19:21 +04:00
}
2012-04-14 16:31:48 +04:00
2012-03-21 00:19:21 +04:00
// Copy over data
2012-09-07 17:22:01 +04:00
if( !self::copy_r( $extractpath . 'userdata', $datadir ) ) {
2012-03-21 00:19:21 +04:00
OC_Log::write( 'migration', 'Failed to copy over data directory', OC_Log::ERROR );
2012-04-14 16:31:48 +04:00
return json_encode( array( 'success' => false ) );
2012-03-21 00:19:21 +04:00
}
2012-04-14 16:31:48 +04:00
2012-03-21 00:19:21 +04:00
// Import the db
2012-09-07 17:22:01 +04:00
if( !OC_DB::replaceDB( $extractpath . 'dbexport.xml' ) ) {
2012-04-14 16:31:48 +04:00
return json_encode( array( 'success' => false ) );
2012-03-21 00:19:21 +04:00
}
// Done
return json_encode( array( 'success' => true ) );
2012-04-01 04:25:47 +04:00
*/
2012-12-15 02:16:32 +04:00
break;
2012-03-21 00:19:21 +04:00
}
2012-04-14 16:31:48 +04:00
2012-03-21 00:19:21 +04:00
}
2012-04-14 16:31:48 +04:00
2012-03-21 00:19:21 +04:00
/**
2012-04-14 20:31:37 +04:00
* @brief recursively deletes a directory
2012-03-21 00:19:21 +04:00
* @param $dir string path of dir to delete
* $param optional $deleteRootToo bool delete the root directory
* @return bool
*/
2012-09-07 17:22:01 +04:00
private static function unlink_r( $dir, $deleteRootToo=true ) {
if( !$dh = @opendir( $dir ) ) {
2012-04-14 16:31:48 +04:00
return false;
}
2012-09-07 17:22:01 +04:00
while (false !== ($obj = readdir($dh))) {
2012-04-14 16:31:48 +04:00
if($obj == '.' || $obj == '..') {
continue;
}
2012-09-07 17:22:01 +04:00
if (!@unlink($dir . '/' . $obj)) {
2012-04-14 16:31:48 +04:00
self::unlink_r($dir.'/'.$obj, true);
}
}
closedir($dh);
if ( $deleteRootToo ) {
@rmdir($dir);
}
return true;
}
2012-03-21 00:19:21 +04:00
/**
2012-04-14 20:31:37 +04:00
* @brief tries to extract the import zip
2012-04-14 16:31:48 +04:00
* @param $path string path to the zip
2012-03-21 00:19:21 +04:00
* @return string path to extract location (with a trailing slash) or false on failure
*/
2012-09-07 17:22:01 +04:00
static private function extractZip( $path ) {
2012-03-21 00:19:21 +04:00
self::$zip = new ZipArchive;
// Validate path
2012-12-15 02:16:32 +04:00
if( !file_exists( $path ) ) {
OC_Log::write( 'migration', 'Zip not found', OC_Log::ERROR );
return false;
}
if ( self::$zip->open( $path ) != true ) {
2012-03-21 00:19:21 +04:00
OC_Log::write( 'migration', "Failed to open zip file", OC_Log::ERROR );
return false;
}
2012-04-14 16:31:48 +04:00
$to = get_temp_dir() . '/oc_import_' . self::$exporttype . '_' . date("y-m-d_H-i-s") . '/';
2012-09-07 17:22:01 +04:00
if( !self::$zip->extractTo( $to ) ) {
2012-04-14 16:31:48 +04:00
return false;
2012-03-21 00:19:21 +04:00
}
2012-04-14 16:31:48 +04:00
self::$zip->close();
2012-03-21 00:19:21 +04:00
return $to;
}
2012-04-14 16:31:48 +04:00
/**
* @brief connects to a MDB2 database scheme
* @returns bool
*/
2012-09-07 17:22:01 +04:00
static private function connectScheme() {
// We need a mdb2 database connection
self::$MDB2->loadModule( 'Manager' );
self::$MDB2->loadModule( 'Reverse' );
// Connect if this did not happen before
2012-09-07 17:22:01 +04:00
if( !self::$schema ) {
2012-09-06 01:28:59 +04:00
require_once 'MDB2/Schema.php';
self::$schema=MDB2_Schema::factory( self::$MDB2 );
}
return true;
}
2012-04-14 16:31:48 +04:00
/**
2012-04-14 20:31:37 +04:00
* @brief creates a migration.db in the users data dir with their app data in
* @return bool whether operation was successfull
*/
2012-09-07 17:22:01 +04:00
private static function exportAppData( ) {
2012-04-14 16:31:48 +04:00
$success = true;
$return = array();
2012-04-14 16:31:48 +04:00
// Foreach provider
2012-09-07 17:22:01 +04:00
foreach( self::$providers as $provider ) {
// Check if the app is enabled
2012-09-07 17:22:01 +04:00
if( OC_App::isEnabled( $provider->getID() ) ) {
$success = true;
// Does this app use the database?
2012-09-07 17:22:01 +04:00
if( file_exists( OC_App::getAppPath($provider->getID()).'/appinfo/database.xml' ) ) {
// Create some app tables
$tables = self::createAppTables( $provider->getID() );
2012-09-07 17:22:01 +04:00
if( is_array( $tables ) ) {
// Save the table names
2012-09-07 17:22:01 +04:00
foreach($tables as $table) {
$return['apps'][$provider->getID()]['tables'][] = $table;
}
} else {
// It failed to create the tables
$success = false;
2012-04-14 16:31:48 +04:00
}
}
2012-08-29 10:38:33 +04:00
// Run the export function?
2012-09-07 17:22:01 +04:00
if( $success ) {
// Set the provider properties
$provider->setData( self::$uid, self::$content );
$return['apps'][$provider->getID()]['success'] = $provider->export();
} else {
$return['apps'][$provider->getID()]['success'] = false;
$return['apps'][$provider->getID()]['message'] = 'failed to create the app tables';
2012-04-14 16:31:48 +04:00
}
2012-08-29 10:38:33 +04:00
// Now add some app info the the return array
$appinfo = OC_App::getAppInfo( $provider->getID() );
$return['apps'][$provider->getID()]['version'] = OC_App::getAppVersion($provider->getID());
}
}
2012-04-14 16:31:48 +04:00
return $return;
2012-04-14 16:31:48 +04:00
}
2012-04-14 16:31:48 +04:00
/**
2012-04-14 20:31:37 +04:00
* @brief generates json containing export info, and merges any data supplied
* @param optional $array array of data to include in the returned json
* @return bool
*/
2012-09-07 17:22:01 +04:00
static private function getExportInfo( $array=array() ) {
$info = array(
'ocversion' => OC_Util::getVersion(),
'exporttime' => time(),
'exportedby' => OC_User::getUser(),
'exporttype' => self::$exporttype,
'exporteduser' => self::$uid
);
2012-09-07 17:22:01 +04:00
if( !is_array( $array ) ) {
2012-04-14 16:31:48 +04:00
OC_Log::write( 'migration', 'Supplied $array was not an array in getExportInfo()', OC_Log::ERROR );
}
2012-03-17 17:53:00 +04:00
// Merge in other data
$info = array_merge( $info, (array)$array );
// Create json
$json = json_encode( $info );
2012-03-21 00:19:21 +04:00
return $json;
}
2012-04-14 16:31:48 +04:00
2012-03-14 03:09:43 +04:00
/**
2012-04-14 20:31:37 +04:00
* @brief connects to migration.db, or creates if not found
* @param $db optional path to migration.db, defaults to user data dir
* @return bool whether the operation was successful
*/
2012-09-07 17:22:01 +04:00
static private function connectDB( $path=null ) {
// Has the dbpath been set?
self::$dbpath = !is_null( $path ) ? $path : self::$dbpath;
2012-09-07 17:22:01 +04:00
if( !self::$dbpath ) {
OC_Log::write( 'migration', 'connectDB() was called without dbpath being set', OC_Log::ERROR );
2012-04-14 16:31:48 +04:00
return false;
2012-03-14 03:09:43 +04:00
}
// Already connected
2012-09-07 17:22:01 +04:00
if(!self::$MDB2) {
2012-09-06 01:28:59 +04:00
require_once 'MDB2.php';
2012-04-14 16:31:48 +04:00
$datadir = OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" );
2012-04-14 16:31:48 +04:00
2012-03-28 00:55:53 +04:00
// DB type
2012-09-07 17:22:01 +04:00
if( class_exists( 'SQLite3' ) ) {
2012-04-08 22:52:31 +04:00
$dbtype = 'sqlite3';
2012-09-07 17:22:01 +04:00
} else if( is_callable( 'sqlite_open' ) ) {
2012-04-14 16:31:48 +04:00
$dbtype = 'sqlite';
2012-04-08 22:52:31 +04:00
} else {
2012-03-28 00:55:53 +04:00
OC_Log::write( 'migration', 'SQLite not found', OC_Log::ERROR );
return false;
2012-04-08 22:52:31 +04:00
}
2012-03-28 00:55:53 +04:00
// Prepare options array
$options = array(
'portability' => MDB2_PORTABILITY_ALL & (!MDB2_PORTABILITY_FIX_CASE),
'log_line_break' => '<br>',
'idxname_format' => '%s',
'debug' => true,
'quote_identifier' => true
);
$dsn = array(
2012-04-08 22:52:31 +04:00
'phptype' => $dbtype,
'database' => self::$dbpath,
'mode' => '0644'
);
// Try to establish connection
self::$MDB2 = MDB2::factory( $dsn, $options );
// Die if we could not connect
2012-09-07 17:22:01 +04:00
if( PEAR::isError( self::$MDB2 ) ) {
die( self::$MDB2->getMessage() );
OC_Log::write( 'migration', 'Failed to create/connect to migration.db', OC_Log::FATAL );
OC_Log::write( 'migration', self::$MDB2->getUserInfo(), OC_Log::FATAL );
OC_Log::write( 'migration', self::$MDB2->getMessage(), OC_Log::FATAL );
return false;
}
// We always, really always want associative arrays
self::$MDB2->setFetchMode(MDB2_FETCHMODE_ASSOC);
2012-03-14 03:09:43 +04:00
}
return true;
2012-04-14 16:31:48 +04:00
}
2012-04-14 16:31:48 +04:00
/**
2012-04-14 20:31:37 +04:00
* @brief creates the tables in migration.db from an apps database.xml
* @param $appid string id of the app
* @return bool whether the operation was successful
*/
2012-09-07 17:22:01 +04:00
static private function createAppTables( $appid ) {
2012-04-14 16:31:48 +04:00
2012-09-07 17:22:01 +04:00
if( !self::connectScheme() ) {
2012-04-14 16:31:48 +04:00
return false;
2012-03-14 03:09:43 +04:00
}
2012-04-14 16:31:48 +04:00
// There is a database.xml file
2012-06-28 00:43:33 +04:00
$content = file_get_contents(OC_App::getAppPath($appid) . '/appinfo/database.xml' );
2012-04-14 16:31:48 +04:00
$file2 = 'static://db_scheme';
// TODO get the relative path to migration.db from the data dir
// For now just cheat
$path = pathinfo( self::$dbpath );
$content = str_replace( '*dbname*', self::$uid.'/migration', $content );
$content = str_replace( '*dbprefix*', '', $content );
2012-04-14 16:31:48 +04:00
$xml = new SimpleXMLElement($content);
2012-09-07 17:22:01 +04:00
foreach($xml->table as $table) {
2012-04-14 16:31:48 +04:00
$tables[] = (string)$table->name;
}
file_put_contents( $file2, $content );
2012-04-14 16:31:48 +04:00
// Try to create tables
$definition = self::$schema->parseDatabaseDefinitionFile( $file2 );
unlink( $file2 );
2012-04-14 16:31:48 +04:00
// Die in case something went wrong
2012-09-07 17:22:01 +04:00
if( $definition instanceof MDB2_Schema_Error ) {
OC_Log::write( 'migration', 'Failed to parse database.xml for: '.$appid, OC_Log::FATAL );
OC_Log::write( 'migration', $definition->getMessage().': '.$definition->getUserInfo(), OC_Log::FATAL );
return false;
}
2012-04-14 16:31:48 +04:00
$definition['overwrite'] = true;
2012-04-14 16:31:48 +04:00
$ret = self::$schema->createDatabase( $definition );
2012-04-14 16:31:48 +04:00
// Die in case something went wrong
2012-09-07 17:22:01 +04:00
if( $ret instanceof MDB2_Error ) {
OC_Log::write( 'migration', 'Failed to create tables for: '.$appid, OC_Log::FATAL );
OC_Log::write( 'migration', $ret->getMessage().': '.$ret->getUserInfo(), OC_Log::FATAL );
return false;
}
return $tables;
}
/**
2012-04-14 20:31:37 +04:00
* @brief tries to create the zip
* @param $path string path to zip destination
* @return bool
*/
2012-09-07 17:22:01 +04:00
static private function createZip() {
2012-03-21 00:19:21 +04:00
self::$zip = new ZipArchive;
// Check if properties are set
2012-09-07 17:22:01 +04:00
if( !self::$zippath ) {
OC_Log::write('migration', 'createZip() called but $zip and/or $zippath have not been set', OC_Log::ERROR);
2012-04-14 16:31:48 +04:00
return false;
}
if ( self::$zip->open( self::$zippath, ZIPARCHIVE::CREATE | ZIPARCHIVE::OVERWRITE ) !== true ) {
2013-02-11 20:44:02 +04:00
OC_Log::write('migration',
'Failed to create the zip with error: '.self::$zip->getStatusString(),
OC_Log::ERROR);
return false;
2012-12-15 02:16:32 +04:00
} else {
return true;
}
}
2012-04-14 16:31:48 +04:00
/**
2012-04-14 20:31:37 +04:00
* @brief returns an array of apps that support migration
* @return array
*/
2012-09-07 17:22:01 +04:00
static public function getApps() {
$allapps = OC_App::getAllApps();
2012-09-07 17:22:01 +04:00
foreach($allapps as $app) {
$path = self::getAppPath($app) . '/lib/migrate.php';
2012-09-07 17:22:01 +04:00
if( file_exists( $path ) ) {
$supportsmigration[] = $app;
2012-04-14 16:31:48 +04:00
}
}
2012-04-14 16:31:48 +04:00
return $supportsmigration;
}
2012-04-14 16:31:48 +04:00
/**
2012-04-14 20:31:37 +04:00
* @brief imports a new user
* @param $db string path to migration.db
* @param $info object of migration info
* @param $uid optional uid to use
* @return array of apps with import statuses, or false on failure.
*/
2012-09-07 17:22:01 +04:00
public static function importAppData( $db, $info, $uid=null ) {
// Check if the db exists
2012-09-07 17:22:01 +04:00
if( file_exists( $db ) ) {
// Connect to the db
2012-09-07 17:22:01 +04:00
if(!self::connectDB( $db )) {
OC_Log::write('migration', 'Failed to connect to migration.db', OC_Log::ERROR);
return false;
2012-04-14 16:31:48 +04:00
}
} else {
2012-11-04 14:10:46 +04:00
OC_Log::write('migration', 'Migration.db not found at: '.$db, OC_Log::FATAL );
return false;
}
2012-04-14 16:31:48 +04:00
// Find providers
self::findProviders();
// Generate importinfo array
2012-04-14 16:31:48 +04:00
$importinfo = array(
'olduid' => $info->exporteduser,
'newuid' => self::$uid
);
2012-04-14 16:31:48 +04:00
2012-09-07 17:22:01 +04:00
foreach( self::$providers as $provider) {
// Is the app in the export?
$id = $provider->getID();
2012-09-07 17:22:01 +04:00
if( isset( $info->apps->$id ) ) {
// Is the app installed
2012-09-07 17:22:01 +04:00
if( !OC_App::isEnabled( $id ) ) {
2013-02-11 20:44:02 +04:00
OC_Log::write( 'migration',
'App: ' . $id . ' is not installed, can\'t import data.',
OC_Log::INFO );
2012-04-14 16:31:48 +04:00
$appsstatus[$id] = 'notsupported';
} else {
// Did it succeed on export?
2012-09-07 17:22:01 +04:00
if( $info->apps->$id->success ) {
// Give the provider the content object
2012-09-07 17:22:01 +04:00
if( !self::connectDB( $db ) ) {
2012-04-14 16:31:48 +04:00
return false;
}
$content = new OC_Migration_Content( self::$zip, self::$MDB2 );
$provider->setData( self::$uid, $content, $info );
// Then do the import
2012-09-07 17:22:01 +04:00
if( !$appsstatus[$id] = $provider->import( $info->apps->$id, $importinfo ) ) {
// Failed to import app
2013-02-11 20:44:02 +04:00
OC_Log::write( 'migration',
'Failed to import app data for user: ' . self::$uid . ' for app: ' . $id,
OC_Log::ERROR );
}
} else {
// Add to failed list
2012-04-14 16:31:48 +04:00
$appsstatus[$id] = false;
}
2012-04-14 16:31:48 +04:00
}
}
}
2012-04-14 16:31:48 +04:00
return $appsstatus;
2012-04-14 16:31:48 +04:00
}
2012-04-14 16:31:48 +04:00
/*
2012-04-14 20:31:37 +04:00
* @brief creates a new user in the database
* @param $uid string user_id of the user to be created
* @param $hash string hash of the user to be created
* @return bool result of user creation
*/
2012-09-07 17:22:01 +04:00
public static function createUser( $uid, $hash ) {
2012-04-14 16:31:48 +04:00
// Check if userid exists
2012-09-07 17:22:01 +04:00
if(OC_User::userExists( $uid )) {
return false;
2012-03-03 21:30:21 +04:00
}
2012-04-14 16:31:48 +04:00
// Create the user
$query = OC_DB::prepare( "INSERT INTO `*PREFIX*users` ( `uid`, `password` ) VALUES( ?, ? )" );
$result = $query->execute( array( $uid, $hash));
2012-09-07 17:22:01 +04:00
if( !$result ) {
OC_Log::write('migration', 'Failed to create the new user "'.$uid."", OC_Log::ERROR);
}
return $result ? true : false;
2012-04-14 16:31:48 +04:00
}
}