2013-03-28 21:29:18 +04:00
|
|
|
<?php
|
2013-05-13 19:26:21 +04:00
|
|
|
|
2013-03-28 21:29:18 +04:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2013, Sam Tuke <samtuke@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*
|
|
|
|
* @brief Script to handle admin settings for encrypted key recovery
|
|
|
|
*/
|
|
|
|
use OCA\Encryption;
|
|
|
|
|
|
|
|
\OCP\JSON::checkAdminUser();
|
2013-05-13 19:26:21 +04:00
|
|
|
\OCP\JSON::checkAppEnabled('files_encryption');
|
2013-03-28 21:29:18 +04:00
|
|
|
\OCP\JSON::callCheck();
|
|
|
|
|
2013-05-24 00:09:28 +04:00
|
|
|
$l=OC_L10N::get('files_encryption');
|
|
|
|
|
2013-05-13 19:26:21 +04:00
|
|
|
$return = false;
|
2013-04-10 19:37:03 +04:00
|
|
|
|
2013-05-01 21:18:31 +04:00
|
|
|
// Enable recoveryAdmin
|
2013-05-13 19:26:21 +04:00
|
|
|
|
2013-05-15 16:02:13 +04:00
|
|
|
$recoveryKeyId = OC_Appconfig::getValue('files_encryption', 'recoveryKeyId');
|
2013-03-28 21:29:18 +04:00
|
|
|
|
2013-05-15 16:02:13 +04:00
|
|
|
if (isset($_POST['adminEnableRecovery']) && $_POST['adminEnableRecovery'] == 1){
|
2013-05-13 19:26:21 +04:00
|
|
|
|
2013-05-17 20:01:32 +04:00
|
|
|
$return = \OCA\Encryption\Helper::adminEnableRecovery($recoveryKeyId, $_POST['recoveryPassword']);
|
2013-05-22 20:01:18 +04:00
|
|
|
$action = "enable";
|
2013-05-01 21:18:31 +04:00
|
|
|
|
|
|
|
// Disable recoveryAdmin
|
2013-05-13 19:26:21 +04:00
|
|
|
} elseif (
|
|
|
|
isset($_POST['adminEnableRecovery'])
|
|
|
|
&& 0 == $_POST['adminEnableRecovery']
|
2013-05-01 21:18:31 +04:00
|
|
|
) {
|
2013-05-17 20:01:32 +04:00
|
|
|
$return = \OCA\Encryption\Helper::adminDisableRecovery($_POST['recoveryPassword']);
|
2013-05-22 20:01:18 +04:00
|
|
|
$action = "disable";
|
2013-04-10 19:37:03 +04:00
|
|
|
}
|
|
|
|
|
2013-05-07 18:17:38 +04:00
|
|
|
// Return success or failure
|
2013-05-22 20:01:18 +04:00
|
|
|
if ($return) {
|
2013-05-24 00:09:28 +04:00
|
|
|
\OCP\JSON::success(array("data" => array( "message" => $l->t('Recovery key successfully ' . $action.'d'))));
|
2013-05-22 20:01:18 +04:00
|
|
|
} else {
|
2013-05-24 00:09:28 +04:00
|
|
|
\OCP\JSON::error(array("data" => array( "message" => $l->t('Could not '.$action.' recovery key. Please check your recovery key password!'))));
|
2013-05-22 20:01:18 +04:00
|
|
|
}
|