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

adminrecovery.php « ajax « files_encryption « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fd2d72e112eb59b334cf24d4125a34172648b34e (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
<?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.
 *
 * Script to handle admin settings for encrypted key recovery
 */

use OCA\Files_Encryption\Helper;

\OCP\JSON::checkAdminUser();
\OCP\JSON::checkAppEnabled('files_encryption');
\OCP\JSON::callCheck();

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

$return = false;
$errorMessage = $l->t("Unknown error");

//check if both passwords are the same
if (empty($_POST['recoveryPassword'])) {
	$errorMessage = $l->t('Missing recovery key password');
	\OCP\JSON::error(array('data' => array('message' => $errorMessage)));
	exit();
}

if (empty($_POST['confirmPassword'])) {
	$errorMessage = $l->t('Please repeat the recovery key password');
	\OCP\JSON::error(array('data' => array('message' => $errorMessage)));
	exit();
}

if ($_POST['recoveryPassword'] !== $_POST['confirmPassword']) {
	$errorMessage = $l->t('Repeated recovery key password does not match the provided recovery key password');
	\OCP\JSON::error(array('data' => array('message' => $errorMessage)));
	exit();
}

// Enable recoveryAdmin
$recoveryKeyId = \OC::$server->getAppConfig()->getValue('files_encryption', 'recoveryKeyId');

if (isset($_POST['adminEnableRecovery']) && $_POST['adminEnableRecovery'] === '1') {

	$return = Helper::adminEnableRecovery($recoveryKeyId, (string)$_POST['recoveryPassword']);

	// Return success or failure
	if ($return) {
		$successMessage = $l->t('Recovery key successfully enabled');
	} else {
		$errorMessage = $l->t('Could not disable recovery key. Please check your recovery key password!');
	}

// Disable recoveryAdmin
} elseif (
	isset($_POST['adminEnableRecovery'])
	&& '0' === $_POST['adminEnableRecovery']
) {
	$return = Helper::adminDisableRecovery((string)$_POST['recoveryPassword']);

	if ($return) {
		$successMessage = $l->t('Recovery key successfully disabled');
	} else {
		$errorMessage = $l->t('Could not disable recovery key. Please check your recovery key password!');
	}
}

// Return success or failure
if ($return) {
	\OCP\JSON::success(array('data' => array('message' => $successMessage)));
} else {
	\OCP\JSON::error(array('data' => array('message' => $errorMessage)));
}