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-27 19:26:58 +04:00
|
|
|
$l = OC_L10N::get('files_encryption');
|
2013-05-24 00:09:28 +04:00
|
|
|
|
2013-05-13 19:26:21 +04:00
|
|
|
$return = false;
|
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-30 01:11:30 +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-29 22:27:12 +04:00
|
|
|
|
|
|
|
// Return success or failure
|
|
|
|
if ($return) {
|
2013-05-30 01:11:30 +04:00
|
|
|
\OCP\JSON::success(array('data' => array('message' => $l->t('Recovery key successfully enabled'))));
|
2013-05-29 22:27:12 +04:00
|
|
|
} else {
|
|
|
|
\OCP\JSON::error(array(
|
2013-05-30 01:11:30 +04:00
|
|
|
'data' => array(
|
|
|
|
'message' => $l->t(
|
2013-05-29 22:27:12 +04:00
|
|
|
'Could not enable recovery key. Please check your recovery key password!')
|
|
|
|
)
|
|
|
|
));
|
|
|
|
}
|
2013-05-01 21:18:31 +04:00
|
|
|
|
|
|
|
// Disable recoveryAdmin
|
2013-05-13 19:26:21 +04:00
|
|
|
} elseif (
|
|
|
|
isset($_POST['adminEnableRecovery'])
|
2013-05-30 01:11:30 +04:00
|
|
|
&& '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-04-10 19:37:03 +04:00
|
|
|
|
2013-05-29 22:27:12 +04:00
|
|
|
// Return success or failure
|
|
|
|
if ($return) {
|
2013-05-30 01:11:30 +04:00
|
|
|
\OCP\JSON::success(array('data' => array('message' => $l->t('Recovery key successfully disabled'))));
|
2013-05-29 22:27:12 +04:00
|
|
|
} else {
|
|
|
|
\OCP\JSON::error(array(
|
2013-05-30 01:11:30 +04:00
|
|
|
'data' => array(
|
|
|
|
'message' => $l->t(
|
2013-05-29 22:27:12 +04:00
|
|
|
'Could not disable recovery key. Please check your recovery key password!')
|
|
|
|
)
|
|
|
|
));
|
|
|
|
}
|
2013-05-22 20:01:18 +04:00
|
|
|
}
|
2013-05-29 22:27:12 +04:00
|
|
|
|
|
|
|
|