Blame view

sources/apps/files_encryption/ajax/changeRecoveryPassword.php 1.47 KB
03e52840d   Kload   Init
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
  <?php
  
  /**
   * Copyright (c) 2013, Bjoern Schiessle <schiessle@owncloud.com>
   * This file is licensed under the Affero General Public License version 3 or later.
   * See the COPYING-README file.
   *
   * @brief Script to change recovery key password
   *
   */
  
  use OCA\Encryption;
  
  \OCP\JSON::checkAdminUser();
  \OCP\JSON::checkAppEnabled('files_encryption');
  \OCP\JSON::callCheck();
  
  $l = OC_L10N::get('core');
  
  $return = false;
  
  $oldPassword = $_POST['oldPassword'];
  $newPassword = $_POST['newPassword'];
  
  $view = new \OC\Files\View('/');
  $util = new \OCA\Encryption\Util(new \OC_FilesystemView('/'), \OCP\User::getUser());
  
  $proxyStatus = \OC_FileProxy::$enabled;
  \OC_FileProxy::$enabled = false;
  
  $keyId = $util->getRecoveryKeyId();
  $keyPath = '/owncloud_private_key/' . $keyId . '.private.key';
  
  $encryptedRecoveryKey = $view->file_get_contents($keyPath);
  $decryptedRecoveryKey = \OCA\Encryption\Crypt::decryptPrivateKey($encryptedRecoveryKey, $oldPassword);
  
  if ($decryptedRecoveryKey) {
  
  	$encryptedRecoveryKey = \OCA\Encryption\Crypt::symmetricEncryptFileContent($decryptedRecoveryKey, $newPassword);
  	$view->file_put_contents($keyPath, $encryptedRecoveryKey);
  
  	$return = true;
  }
  
  \OC_FileProxy::$enabled = $proxyStatus;
  
  // success or failure
  if ($return) {
  	\OCP\JSON::success(array('data' => array('message' => $l->t('Password successfully changed.'))));
  } else {
  	\OCP\JSON::error(array('data' => array('message' => $l->t('Could not change the password. Maybe the old password was not correct.'))));
31b7f2792   Kload   Upgrade to ownclo...
52
  }