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

restorekeys.php « ajax « settings - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b89a8286db20c26201e20756e35954987ae6fd6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck();

$l = \OC::$server->getL10N('settings');

$util = new \OCA\Files_Encryption\Util(new \OC\Files\View(), \OC_User::getUser());
$result = $util->restoreBackup('decryptAll');

if ($result) {
	\OCP\JSON::success(array('data' => array('message' => $l->t('Backups restored successfully'))));
} else {
	\OCP\JSON::error(array('data' => array('message' => $l->t('Couldn\'t restore your encryption keys, please check your owncloud.log or ask your administrator'))));
}