nextcloud/apps/files_encryption/ajax/adminrecovery.php

49 lines
1.3 KiB
PHP
Raw Normal View History

<?php
/**
* 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();
\OCP\JSON::checkAppEnabled('files_encryption');
\OCP\JSON::callCheck();
2013-05-27 19:26:58 +04:00
$l = OC_L10N::get('files_encryption');
$return = false;
2013-05-29 14:47:50 +04:00
$action = '';
// Enable recoveryAdmin
$recoveryKeyId = OC_Appconfig::getValue('files_encryption', 'recoveryKeyId');
2013-05-27 20:03:29 +04:00
if (isset($_POST['adminEnableRecovery']) && $_POST['adminEnableRecovery'] === "1") {
2013-05-17 20:01:32 +04:00
$return = \OCA\Encryption\Helper::adminEnableRecovery($recoveryKeyId, $_POST['recoveryPassword']);
2013-05-29 14:47:50 +04:00
$action = $l->t('enable');
// Disable recoveryAdmin
} elseif (
isset($_POST['adminEnableRecovery'])
&& "0" === $_POST['adminEnableRecovery']
) {
2013-05-17 20:01:32 +04:00
$return = \OCA\Encryption\Helper::adminDisableRecovery($_POST['recoveryPassword']);
2013-05-29 14:47:50 +04:00
$action = $l->t('disable');
}
// Return success or failure
2013-05-22 20:01:18 +04:00
if ($return) {
2013-05-29 14:47:50 +04:00
\OCP\JSON::success(array("data" => array("message" => $l->t('Recovery key successfully %sd', array($action)))));
2013-05-22 20:01:18 +04:00
} else {
2013-05-27 19:26:58 +04:00
\OCP\JSON::error(array(
"data" => array(
"message" => $l->t(
2013-05-29 14:47:50 +04:00
'Could not %s recovery key. Please check your recovery key password!', array($action))
2013-05-27 19:26:58 +04:00
)
));
2013-05-22 20:01:18 +04:00
}