2011-09-29 19:11:07 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud - admin export
|
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
|
|
|
*/
|
2011-10-01 01:10:08 +04:00
|
|
|
OC_Util::checkAdminUser();
|
2011-10-01 01:05:10 +04:00
|
|
|
OC_Util::checkAppEnabled('admin_export');
|
2012-02-04 00:32:06 +04:00
|
|
|
|
|
|
|
|
2011-09-29 19:11:07 +04:00
|
|
|
if (isset($_POST['admin_export'])) {
|
|
|
|
$root = OC::$SERVERROOT . "/";
|
|
|
|
$zip = new ZipArchive();
|
2011-10-20 01:38:35 +04:00
|
|
|
$filename = get_temp_dir() . "/owncloud_export_" . date("y-m-d_H-i-s") . ".zip";
|
2011-10-16 23:42:24 +04:00
|
|
|
OC_Log::write('admin_export',"Creating export file at: " . $filename,OC_Log::INFO);
|
2011-09-29 19:11:07 +04:00
|
|
|
if ($zip->open($filename, ZIPARCHIVE::CREATE) !== TRUE) {
|
2012-02-04 00:32:06 +04:00
|
|
|
exit("Cannot open <$filename>\n");
|
2011-09-29 19:11:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($_POST['owncloud_system'])) {
|
|
|
|
// adding owncloud system files
|
2011-10-16 23:42:24 +04:00
|
|
|
OC_Log::write('admin_export',"Adding owncloud system files to export",OC_Log::INFO);
|
2011-09-29 19:11:07 +04:00
|
|
|
zipAddDir($root, $zip, false);
|
|
|
|
foreach (array(".git", "3rdparty", "apps", "core", "files", "l10n", "lib", "ocs", "search", "settings", "tests") as $dirname) {
|
|
|
|
zipAddDir($root . $dirname, $zip, true, basename($root) . "/");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($_POST['owncloud_config'])) {
|
|
|
|
// adding owncloud config
|
|
|
|
// todo: add database export
|
2011-10-16 23:42:24 +04:00
|
|
|
OC_Log::write('admin_export',"Adding owncloud config to export",OC_Log::INFO);
|
2011-09-29 19:11:07 +04:00
|
|
|
zipAddDir($root . "config/", $zip, true, basename($root) . "/");
|
|
|
|
$zip->addFile($root . '/data/.htaccess', basename($root) . "/data/owncloud.db");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($_POST['user_files'])) {
|
2012-02-04 00:32:06 +04:00
|
|
|
// needs to handle data outside of the default data dir.
|
2011-09-29 19:11:07 +04:00
|
|
|
// adding user files
|
|
|
|
$zip->addFile($root . '/data/.htaccess', basename($root) . "/data/.htaccess");
|
|
|
|
$zip->addFile($root . '/data/index.html', basename($root) . "/data/index.html");
|
|
|
|
foreach (OC_User::getUsers() as $i) {
|
2011-10-16 23:42:24 +04:00
|
|
|
OC_Log::write('admin_export',"Adding owncloud user files of $i to export",OC_Log::INFO);
|
2011-09-29 19:11:07 +04:00
|
|
|
zipAddDir($root . "data/" . $i, $zip, true, basename($root) . "/data/");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$zip->close();
|
|
|
|
|
|
|
|
header("Content-Type: application/zip");
|
|
|
|
header("Content-Disposition: attachment; filename=" . basename($filename));
|
|
|
|
header("Content-Length: " . filesize($filename));
|
2011-10-17 03:18:02 +04:00
|
|
|
@ob_end_clean();
|
2011-09-29 19:11:07 +04:00
|
|
|
readfile($filename);
|
|
|
|
unlink($filename);
|
|
|
|
} else {
|
|
|
|
// fill template
|
|
|
|
$tmpl = new OC_Template('admin_export', 'settings');
|
|
|
|
return $tmpl->fetchPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
function zipAddDir($dir, $zip, $recursive=true, $internalDir='') {
|
|
|
|
$dirname = basename($dir);
|
|
|
|
$zip->addEmptyDir($internalDir . $dirname);
|
|
|
|
$internalDir.=$dirname.='/';
|
|
|
|
|
|
|
|
if ($dirhandle = opendir($dir)) {
|
2011-10-16 23:42:24 +04:00
|
|
|
while (false !== ( $file = readdir($dirhandle))) {
|
2011-09-29 19:11:07 +04:00
|
|
|
|
2011-10-16 23:42:24 +04:00
|
|
|
if (( $file != '.' ) && ( $file != '..' )) {
|
2011-09-29 19:11:07 +04:00
|
|
|
|
2011-10-16 23:42:24 +04:00
|
|
|
if (is_dir($dir . '/' . $file) && $recursive) {
|
|
|
|
zipAddDir($dir . '/' . $file, $zip, $recursive, $internalDir);
|
|
|
|
} elseif (is_file($dir . '/' . $file)) {
|
|
|
|
$zip->addFile($dir . '/' . $file, $internalDir . $file);
|
|
|
|
}
|
|
|
|
}
|
2011-09-29 19:11:07 +04:00
|
|
|
}
|
2011-10-16 23:42:24 +04:00
|
|
|
closedir($dirhandle);
|
2011-09-29 19:11:07 +04:00
|
|
|
} else {
|
2011-10-16 23:42:24 +04:00
|
|
|
OC_Log::write('admin_export',"Was not able to open directory: " . $dir,OC_Log::ERROR);
|
2011-09-29 19:11:07 +04:00
|
|
|
}
|
2011-10-01 01:05:10 +04:00
|
|
|
}
|