Welcome to mirror list, hosted at ThFree Co, Russian Federation.

settings.php « admin_export « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8308a2b89b502af9789e1de397bf446da98f917c (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php

/**
 * ownCloud - admin export
 *
 * @author Thomas Schmidt
 * @copyright 2011 Thomas Schmidt tom@opensuse.org
 *
 * 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/>.
 *
 */
OC_Util::checkAdminUser();
OC_Util::checkAppEnabled('admin_export');
if (isset($_POST['admin_export'])) {
    $root = OC::$SERVERROOT . "/";
    $zip = new ZipArchive();
    $filename = sys_get_temp_dir() . "/owncloud_export_" . date("y-m-d_H-i-s") . ".zip";
    error_log("Creating export file at: " . $filename);
    if ($zip->open($filename, ZIPARCHIVE::CREATE) !== TRUE) {
	exit("Cannot open <$filename>\n");
    }

    if (isset($_POST['owncloud_system'])) {
	// adding owncloud system files
	error_log("Adding owncloud system files to export");
	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
	error_log("Adding owncloud config to export");
	zipAddDir($root . "config/", $zip, true, basename($root) . "/");
	$zip->addFile($root . '/data/.htaccess', basename($root) . "/data/owncloud.db");
    }

    if (isset($_POST['user_files'])) {
	// 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) {
	    error_log("Adding owncloud user files of $i to export");
	    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));
    ob_end_clean();
    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)) {
	while (false !== ( $file = readdir($dirhandle))) {

	    if (( $file != '.' ) && ( $file != '..' )) {

		if (is_dir($dir . '/' . $file) && $recursive) {
		    zipAddDir($dir . '/' . $file, $zip, $recursive, $internalDir);
		} elseif (is_file($dir . '/' . $file)) {
		    $zip->addFile($dir . '/' . $file, $internalDir . $file);
		}
	    }
	}
	closedir($dirhandle);
    } else {
	error_log("Was not able to open directory: " . $dir);
    }
}