Blame view

sources/lib/private/migrate.php 19.2 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  <?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{
  
  
  	// Array of OC_Migration_Provider objects
  	static private $providers=array();
  	// User id of the user to import/export
  	static private $uid=false;
  	// Holds the ZipArchive object
  	static private $zip=false;
  	// Stores the type of export
  	static private $exporttype=false;
03e52840d   Kload   Init
38
  	// Holds the db object
6d9380f96   Cédric Dupont   Update sources OC...
39
  	static private $migration_database=false;
03e52840d   Kload   Init
40
41
42
43
44
45
46
47
48
  	// 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;
  
  	/**
  	 * register a new migration provider
6d9380f96   Cédric Dupont   Update sources OC...
49
  	 * @param OC_Migration_Provider $provider
03e52840d   Kload   Init
50
51
52
53
54
55
  	 */
  	public static function registerProvider($provider) {
  		self::$providers[]=$provider;
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
56
  	* finds and loads the providers
03e52840d   Kload   Init
57
58
59
60
61
62
63
64
65
66
67
68
69
70
  	*/
  	static private function findProviders() {
  		// Find the providers
  		$apps = OC_App::getAllApps();
  
  		foreach($apps as $app) {
  			$path = OC_App::getAppPath($app) . '/appinfo/migrate.php';
  			if( file_exists( $path ) ) {
  				include $path;
  			}
  		}
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
71
72
73
74
75
  	 * exports a user, or owncloud instance
  	 * @param string $uid user id of user to export if export type is user, defaults to current
  	 * @param string $type type of export, defualts to user
  	 * @param string $path path to zip output folder
  	 * @return string on error, path to zip on success
03e52840d   Kload   Init
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
  	 */
  	public static function export( $uid=null, $type='user', $path=null ) {
  		$datadir = OC_Config::getValue( 'datadirectory' );
  		// 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 ) );
  				}
6d9380f96   Cédric Dupont   Update sources OC...
130
  				self::$content = new OC_Migration_Content( self::$zip, self::$migration_database );
03e52840d   Kload   Init
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
  				// Export the app info
  				$exportdata = self::exportAppData();
  				// Add the data dir to the zip
  				self::$content->addDir(OC_User::getHome(self::$uid), true, '/' );
  				break;
  			case 'instance':
  				self::$content = new OC_Migration_Content( self::$zip );
  				// Creates a zip that is compatable with the import function
  				$dbfile = tempnam( get_temp_dir(), "owncloud_export_data_" );
  				OC_DB::getDbStructure( $dbfile, 'MDB2_SCHEMA_DUMP_ALL');
  
  				// Now add in *dbname* and *dbprefix*
  				$dbexport = file_get_contents( $dbfile );
  				$dbnamestring = "<database>
  
   <name>" . OC_Config::getValue( "dbname", "owncloud" );
  				$dbtableprefixstring = "<table>
  
    <name>" . OC_Config::getValue( "dbtableprefix", "oc_" );
  				$dbexport = str_replace( $dbnamestring, "<database>
  
   <name>*dbname*", $dbexport );
  				$dbexport = str_replace( $dbtableprefixstring, "<table>
  
    <name>*dbprefix*", $dbexport );
  				// Add the export to the zip
  				self::$content->addFromString( $dbexport, "dbexport.xml" );
  				// Add user data
  				foreach(OC_User::getUsers() as $user) {
  					self::$content->addDir(OC_User::getHome($user), true, "/userdata/" );
  				}
  				break;
  			case 'userfiles':
  				self::$content = new OC_Migration_Content( self::$zip );
  				// Creates a zip with all of the users files
  				foreach(OC_User::getUsers() as $user) {
  					self::$content->addDir(OC_User::getHome($user), true, "/" );
  				}
  				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, '/');
  				foreach (array(
  					".git",
  					"3rdparty",
  					"apps",
  					"core",
  					"files",
  					"l10n",
  					"lib",
  					"ocs",
  					"search",
  					"settings",
  					"tests"
  				) as $dir) {
  					self::$content->addDir( OC::$SERVERROOT . '/' . $dir, true, "/");
  				}
  				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 ) );
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
203
204
205
206
207
208
  	 * imports a user, or owncloud instance
  	 * @param string $path path to zip
  	 * @param string $type type of import (user or instance)
  	 * @param string|null|int $uid userid of new user
  	 * @return string
  	 */
03e52840d   Kload   Init
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
  	public static function import( $path, $type='user', $uid=null ) {
  
  		$datadir = OC_Config::getValue( 'datadirectory' );
  		// Extract the zip
  		if( !$extractpath = self::extractZip( $path ) ) {
  			return json_encode( array( 'success' => false ) );
  		}
  		// Get export_info.json
  		$scan = scandir( $extractpath );
  		// Check for export_info.json
  		if( !in_array( 'export_info.json', $scan ) ) {
  			OC_Log::write( 'migration', 'Invalid import file, export_info.json not found', OC_Log::ERROR );
  			return json_encode( array( 'success' => false ) );
  		}
  		$json = json_decode( file_get_contents( $extractpath . 'export_info.json' ) );
  		if( $json->exporttype != $type ) {
  			OC_Log::write( 'migration', 'Invalid import file', OC_Log::ERROR );
  			return json_encode( array( 'success' => false ) );
  		}
  		self::$exporttype = $type;
  
  		$currentuser = OC_User::getUser();
  
  		// Have we got a user if type is user
  		if( self::$exporttype == 'user' ) {
  			self::$uid = !is_null($uid) ? $uid : $currentuser;
  		}
  
  		// We need to be an admin if we are not importing our own data
  		if(($type == 'user' && self::$uid != $currentuser) || $type != 'user' ) {
  			if( !OC_User::isAdminUser($currentuser)) {
  				// Naughty.
  				OC_Log::write( 'migration', 'Import not permitted.', OC_Log::ERROR );
  				return json_encode( array( 'success' => false ) );
  			}
  		}
  
  		// Handle export types
  		switch( self::$exporttype ) {
  			case 'user':
  				// Check user availability
  				if( !OC_User::userExists( self::$uid ) ) {
  					OC_Log::write( 'migration', 'User doesn\'t exist', OC_Log::ERROR );
  					return json_encode( array( 'success' => false ) );
  				}
  
  				// 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 ) );
  				}
  
  				// Copy data
  				$userfolder = $extractpath . $json->exporteduser;
  				$newuserfolder = $datadir . '/' . self::$uid;
  				foreach(scandir($userfolder) as $file){
6d9380f96   Cédric Dupont   Update sources OC...
265
  					if($file !== '.' && $file !== '..' && is_dir($userfolder.'/'.$file)) {
03e52840d   Kload   Init
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
  						$file = str_replace(array('/', '\\'), '',  $file);
  
  						// Then copy the folder over
  						OC_Helper::copyr($userfolder.'/'.$file, $newuserfolder.'/'.$file);
  					}
  				}
  				// Import user app data
  				if(file_exists($extractpath . $json->exporteduser . '/migration.db')) {
  					if( !$appsimported = self::importAppData( $extractpath . $json->exporteduser . '/migration.db',
  						$json,
  						self::$uid ) ) {
  						return json_encode( array( 'success' => false ) );
  					}
  				}
  				// All done!
  				if( !self::unlink_r( $extractpath ) ) {
  					OC_Log::write( 'migration', 'Failed to delete the extracted zip', OC_Log::ERROR );
  				}
  				return json_encode( array( 'success' => true, 'data' => $appsimported ) );
  				break;
  			case 'instance':
  					/*
  					 * EXPERIMENTAL
  					// Check for new data dir and dbexport before doing anything
  					// TODO
  
  					// Delete current data folder.
  					OC_Log::write( 'migration', "Deleting current data dir", OC_Log::INFO );
  					if( !self::unlink_r( $datadir, false ) ) {
  						OC_Log::write( 'migration', 'Failed to delete the current data dir', OC_Log::ERROR );
  						return json_encode( array( 'success' => false ) );
  					}
  
  					// Copy over data
  					if( !self::copy_r( $extractpath . 'userdata', $datadir ) ) {
  						OC_Log::write( 'migration', 'Failed to copy over data directory', OC_Log::ERROR );
  						return json_encode( array( 'success' => false ) );
  					}
  
  					// Import the db
  					if( !OC_DB::replaceDB( $extractpath . 'dbexport.xml' ) ) {
  						return json_encode( array( 'success' => false ) );
  					}
  					// Done
  					return json_encode( array( 'success' => true ) );
  					*/
  				break;
  		}
  
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
318
319
320
  	* recursively deletes a directory
  	* @param string $dir path of dir to delete
  	* @param bool $deleteRootToo delete the root directory
03e52840d   Kload   Init
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
  	* @return bool
  	*/
  	private static function unlink_r( $dir, $deleteRootToo=true ) {
  		if( !$dh = @opendir( $dir ) ) {
  			return false;
  		}
  		while (false !== ($obj = readdir($dh))) {
  			if($obj == '.' || $obj == '..') {
  				continue;
  			}
  			if (!@unlink($dir . '/' . $obj)) {
  				self::unlink_r($dir.'/'.$obj, true);
  			}
  		}
  		closedir($dh);
  		if ( $deleteRootToo ) {
  			@rmdir($dir);
  		}
  		return true;
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
343
344
  	* tries to extract the import zip
  	* @param string $path path to the zip
03e52840d   Kload   Init
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
  	* @return string path to extract location (with a trailing slash) or false on failure
  	*/
  	static private function extractZip( $path ) {
  		self::$zip = new ZipArchive;
  		// Validate path
  		if( !file_exists( $path ) ) {
  			OC_Log::write( 'migration', 'Zip not found', OC_Log::ERROR );
  			return false;
  		}
  		if ( self::$zip->open( $path ) != true ) {
  			OC_Log::write( 'migration', "Failed to open zip file", OC_Log::ERROR );
  			return false;
  		}
  		$to = get_temp_dir() . '/oc_import_' . self::$exporttype . '_' . date("y-m-d_H-i-s") . '/';
  		if( !self::$zip->extractTo( $to ) ) {
  			return false;
  		}
  		self::$zip->close();
  		return $to;
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
367
  	 * creates a migration.db in the users data dir with their app data in
03e52840d   Kload   Init
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
  	 * @return bool whether operation was successfull
  	 */
  	private static function exportAppData( ) {
  
  		$success = true;
  		$return = array();
  
  		// Foreach provider
  		foreach( self::$providers as $provider ) {
  			// Check if the app is enabled
  			if( OC_App::isEnabled( $provider->getID() ) ) {
  				$success = true;
  				// Does this app use the database?
  				if( file_exists( OC_App::getAppPath($provider->getID()).'/appinfo/database.xml' ) ) {
  					// Create some app tables
  					$tables = self::createAppTables( $provider->getID() );
  					if( is_array( $tables ) ) {
  						// Save the table names
  						foreach($tables as $table) {
  							$return['apps'][$provider->getID()]['tables'][] = $table;
  						}
  					} else {
  						// It failed to create the tables
  						$success = false;
  					}
  				}
  
  				// Run the export function?
  				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';
  				}
  
  				// 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());
  			}
  		}
  
  		return $return;
  
  	}
  
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
417
418
419
  	 * generates json containing export info, and merges any data supplied
  	 * @param array $array of data to include in the returned json
  	 * @return string
03e52840d   Kload   Init
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
  	 */
  	static private function getExportInfo( $array=array() ) {
  		$info = array(
  						'ocversion' => OC_Util::getVersion(),
  						'exporttime' => time(),
  						'exportedby' => OC_User::getUser(),
  						'exporttype' => self::$exporttype,
  						'exporteduser' => self::$uid
  					);
  
  		if( !is_array( $array ) ) {
  			OC_Log::write( 'migration', 'Supplied $array was not an array in getExportInfo()', OC_Log::ERROR );
  		}
  		// Merge in other data
  		$info = array_merge( $info, (array)$array );
  		// Create json
  		$json = json_encode( $info );
  		return $json;
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
441
442
  	 * connects to migration.db, or creates if not found
  	 * @param string $path to migration.db, defaults to user data dir
03e52840d   Kload   Init
443
444
445
446
447
448
449
450
451
452
  	 * @return bool whether the operation was successful
  	 */
  	static private function connectDB( $path=null ) {
  		// Has the dbpath been set?
  		self::$dbpath = !is_null( $path ) ? $path : self::$dbpath;
  		if( !self::$dbpath ) {
  			OC_Log::write( 'migration', 'connectDB() was called without dbpath being set', OC_Log::ERROR );
  			return false;
  		}
  		// Already connected
6d9380f96   Cédric Dupont   Update sources OC...
453
  		if(!self::$migration_database) {
03e52840d   Kload   Init
454
  			$datadir = OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" );
6d9380f96   Cédric Dupont   Update sources OC...
455
456
457
  			$connectionParams = array(
  					'path' => self::$dbpath,
  					'driver' => 'pdo_sqlite',
03e52840d   Kload   Init
458
  			);
6d9380f96   Cédric Dupont   Update sources OC...
459
460
461
  			$connectionParams['adapter'] = '\OC\DB\AdapterSqlite';
  			$connectionParams['wrapperClass'] = 'OC\DB\Connection';
  			$connectionParams['tablePrefix'] = '';
03e52840d   Kload   Init
462
463
  
  			// Try to establish connection
6d9380f96   Cédric Dupont   Update sources OC...
464
  			self::$migration_database = \Doctrine\DBAL\DriverManager::getConnection($connectionParams);
03e52840d   Kload   Init
465
466
467
468
469
470
  		}
  		return true;
  
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
471
472
  	 * creates the tables in migration.db from an apps database.xml
  	 * @param string $appid id of the app
03e52840d   Kload   Init
473
474
475
  	 * @return bool whether the operation was successful
  	 */
  	static private function createAppTables( $appid ) {
6d9380f96   Cédric Dupont   Update sources OC...
476
  		$schema_manager = new OC\DB\MDB2SchemaManager(self::$migration_database);
03e52840d   Kload   Init
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
  
  		// There is a database.xml file
  		$content = file_get_contents(OC_App::getAppPath($appid) . '/appinfo/database.xml' );
  
  		$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 );
  
  		$xml = new SimpleXMLElement($content);
  		foreach($xml->table as $table) {
  			$tables[] = (string)$table->name;
  		}
  
  		file_put_contents( $file2, $content );
  
  		// Try to create tables
6d9380f96   Cédric Dupont   Update sources OC...
496
497
498
499
  		try {
  			$schema_manager->createDbFromStructure($file2);
  		} catch(Exception $e) {
  			unlink( $file2 );
03e52840d   Kload   Init
500
  			OC_Log::write( 'migration', 'Failed to create tables for: '.$appid, OC_Log::FATAL );
6d9380f96   Cédric Dupont   Update sources OC...
501
  			OC_Log::write( 'migration', $e->getMessage(), OC_Log::FATAL );
03e52840d   Kload   Init
502
503
  			return false;
  		}
03e52840d   Kload   Init
504

6d9380f96   Cédric Dupont   Update sources OC...
505
  		return $tables;
03e52840d   Kload   Init
506
507
508
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
509
  	* tries to create the zip
03e52840d   Kload   Init
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
  	* @return bool
  	*/
  	static private function createZip() {
  		self::$zip = new ZipArchive;
  		// Check if properties are set
  		if( !self::$zippath ) {
  			OC_Log::write('migration', 'createZip() called but $zip and/or $zippath have not been set', OC_Log::ERROR);
  			return false;
  		}
  		if ( self::$zip->open( self::$zippath, ZIPARCHIVE::CREATE | ZIPARCHIVE::OVERWRITE ) !== true ) {
  			OC_Log::write('migration',
  				'Failed to create the zip with error: '.self::$zip->getStatusString(),
  				OC_Log::ERROR);
  			return false;
  		} else {
  			return true;
  		}
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
530
  	* returns an array of apps that support migration
03e52840d   Kload   Init
531
532
533
534
535
536
537
538
539
540
541
542
543
544
  	* @return array
  	*/
  	static public function getApps() {
  		$allapps = OC_App::getAllApps();
  		foreach($allapps as $app) {
  			$path = self::getAppPath($app) . '/lib/migrate.php';
  			if( file_exists( $path ) ) {
  				$supportsmigration[] = $app;
  			}
  		}
  		return $supportsmigration;
  	}
  
  	/**
6d9380f96   Cédric Dupont   Update sources OC...
545
546
547
548
549
  	* imports a new user
  	* @param string $db string path to migration.db
  	* @param object $info object of migration info
  	* @param string|null|int $uid uid to use
  	* @return array an array of apps with import statuses, or false on failure.
03e52840d   Kload   Init
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
  	*/
  	public static function importAppData( $db, $info, $uid=null ) {
  		// Check if the db exists
  		if( file_exists( $db ) ) {
  			// Connect to the db
  			if(!self::connectDB( $db )) {
  				OC_Log::write('migration', 'Failed to connect to migration.db', OC_Log::ERROR);
  				return false;
  			}
  		} else {
  			OC_Log::write('migration', 'Migration.db not found at: '.$db, OC_Log::FATAL );
  			return false;
  		}
  
  		// Find providers
  		self::findProviders();
  
  		// Generate importinfo array
  		$importinfo = array(
  							'olduid' => $info->exporteduser,
  							'newuid' => self::$uid
  							);
  
  		foreach( self::$providers as $provider) {
  			// Is the app in the export?
  			$id = $provider->getID();
  			if( isset( $info->apps->$id ) ) {
  				// Is the app installed
  				if( !OC_App::isEnabled( $id ) ) {
  					OC_Log::write( 'migration',
  					'App: ' . $id . ' is not installed, can\'t import data.',
  					OC_Log::INFO );
  					$appsstatus[$id] = 'notsupported';
  				} else {
  					// Did it succeed on export?
  					if( $info->apps->$id->success ) {
  						// Give the provider the content object
  						if( !self::connectDB( $db ) ) {
  							return false;
  						}
6d9380f96   Cédric Dupont   Update sources OC...
590
  						$content = new OC_Migration_Content( self::$zip, self::$migration_database );
03e52840d   Kload   Init
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
  						$provider->setData( self::$uid, $content, $info );
  						// Then do the import
  						if( !$appsstatus[$id] = $provider->import( $info->apps->$id, $importinfo ) ) {
  							// Failed to import app
  							OC_Log::write( 'migration',
  								'Failed to import app data for user: ' . self::$uid . ' for app: ' . $id,
  								OC_Log::ERROR );
  						}
  					} else {
  						// Add to failed list
  						$appsstatus[$id] = false;
  					}
  				}
  			}
  		}
  
  		return $appsstatus;
  
  	}
6d9380f96   Cédric Dupont   Update sources OC...
610
611
612
613
  	/**
  	* creates a new user in the database
  	* @param string $uid user_id of the user to be created
  	* @param string $hash hash of the user to be created
03e52840d   Kload   Init
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
  	* @return bool result of user creation
  	*/
  	public static function createUser( $uid, $hash ) {
  
  		// Check if userid exists
  		if(OC_User::userExists( $uid )) {
  			return false;
  		}
  
  		// Create the user
  		$query = OC_DB::prepare( "INSERT INTO `*PREFIX*users` ( `uid`, `password` ) VALUES( ?, ? )" );
  		$result = $query->execute( array( $uid, $hash));
  		if( !$result ) {
  			OC_Log::write('migration', 'Failed to create the new user "'.$uid."", OC_Log::ERROR);
  		}
  		return $result ? true : false;
  
  	}
  
  }