Blame view

sources/apps/files_encryption/ajax/adminrecovery.php 1.62 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
  <?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.
   *
6d9380f96   Cédric Dupont   Update sources OC...
8
   * Script to handle admin settings for encrypted key recovery
03e52840d   Kload   Init
9
10
11
12
13
14
15
16
17
18
19
   */
  use OCA\Encryption;
  
  \OCP\JSON::checkAdminUser();
  \OCP\JSON::checkAppEnabled('files_encryption');
  \OCP\JSON::callCheck();
  
  $l = OC_L10N::get('files_encryption');
  
  $return = false;
  // Enable recoveryAdmin
6d9380f96   Cédric Dupont   Update sources OC...
20
  $recoveryKeyId = \OC::$server->getAppConfig()->getValue('files_encryption', 'recoveryKeyId');
03e52840d   Kload   Init
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
  
  if (isset($_POST['adminEnableRecovery']) && $_POST['adminEnableRecovery'] === '1') {
  
  	$return = \OCA\Encryption\Helper::adminEnableRecovery($recoveryKeyId, $_POST['recoveryPassword']);
  
  	// Return success or failure
  	if ($return) {
  		\OCP\JSON::success(array('data' => array('message' => $l->t('Recovery key successfully enabled'))));
  	} else {
  		\OCP\JSON::error(array(
  							  'data' => array(
  								  'message' => $l->t(
  									  'Could not enable recovery key. Please check your recovery key password!')
  							  )
  						 ));
  	}
  
  // Disable recoveryAdmin
  } elseif (
  	isset($_POST['adminEnableRecovery'])
  	&& '0' === $_POST['adminEnableRecovery']
  ) {
  	$return = \OCA\Encryption\Helper::adminDisableRecovery($_POST['recoveryPassword']);
  
  	// Return success or failure
  	if ($return) {
  		\OCP\JSON::success(array('data' => array('message' => $l->t('Recovery key successfully disabled'))));
  	} else {
  		\OCP\JSON::error(array(
  							  'data' => array(
  								  'message' => $l->t(
  									  'Could not disable recovery key. Please check your recovery key password!')
  							  )
  						 ));
  	}
  }