2011-09-29 19:11:07 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2012-04-07 21:23:25 +04:00
|
|
|
* ownCloud - admin_migrate
|
2011-09-29 19:11:07 +04:00
|
|
|
*
|
|
|
|
* @author Thomas Schmidt
|
|
|
|
* @copyright 2011 Thomas Schmidt tom@opensuse.org
|
2012-02-04 00:32:06 +04:00
|
|
|
* @author Tom Needham
|
|
|
|
* @copyright 2012 Tom Needham tom@owncloud.com
|
2011-09-29 19:11:07 +04:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
2012-05-02 00:59:38 +04:00
|
|
|
OCP\User::checkAdminUser();
|
2012-05-02 21:08:37 +04:00
|
|
|
OCP\App::checkAppEnabled('admin_migrate');
|
2012-02-04 00:32:06 +04:00
|
|
|
|
2012-03-16 00:52:43 +04:00
|
|
|
// Export?
|
2011-09-29 19:11:07 +04:00
|
|
|
if (isset($_POST['admin_export'])) {
|
2012-03-16 00:52:43 +04:00
|
|
|
// Create the export zip
|
2012-04-08 23:08:17 +04:00
|
|
|
$response = json_decode( OC_Migrate::export( null, $_POST['export_type'] ) );
|
|
|
|
if( !$response->success ){
|
2012-03-16 00:52:43 +04:00
|
|
|
// Error
|
|
|
|
die('error');
|
|
|
|
} else {
|
2012-04-08 23:08:17 +04:00
|
|
|
$path = $response->data;
|
2012-03-16 00:52:43 +04:00
|
|
|
// Download it
|
|
|
|
header("Content-Type: application/zip");
|
|
|
|
header("Content-Disposition: attachment; filename=" . basename($path));
|
|
|
|
header("Content-Length: " . filesize($path));
|
|
|
|
@ob_end_clean();
|
2012-03-17 01:09:36 +04:00
|
|
|
readfile( $path );
|
|
|
|
unlink( $path );
|
2012-03-16 00:52:43 +04:00
|
|
|
}
|
|
|
|
// Import?
|
2012-02-06 03:00:38 +04:00
|
|
|
} else if( isset($_POST['admin_import']) ){
|
2012-03-21 00:19:21 +04:00
|
|
|
$from = $_FILES['owncloud_import']['tmp_name'];
|
|
|
|
|
2012-03-21 20:30:59 +04:00
|
|
|
if( !OC_Migrate::import( $from, 'instance' ) ){
|
2012-03-21 00:19:21 +04:00
|
|
|
die('failed');
|
|
|
|
}
|
2012-03-17 02:54:37 +04:00
|
|
|
|
2011-09-29 19:11:07 +04:00
|
|
|
} else {
|
|
|
|
// fill template
|
2012-05-07 01:00:36 +04:00
|
|
|
$tmpl = new OCP\Template('admin_migrate', 'settings');
|
2011-09-29 19:11:07 +04:00
|
|
|
return $tmpl->fetchPage();
|
2012-03-20 00:44:20 +04:00
|
|
|
}
|