Blame view

sources/apps/files_encryption/ajax/updatePrivateKeyPassword.php 1.6 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
  <?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.
   *
6d9380f96   Cédric Dupont   Update sources OC...
8
   * Script to change recovery key password
03e52840d   Kload   Init
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
   *
   */
  
  use OCA\Encryption;
  
  \OCP\JSON::checkLoggedIn();
  \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('/');
  $session = new \OCA\Encryption\Session($view);
  $user = \OCP\User::getUser();
  
  $proxyStatus = \OC_FileProxy::$enabled;
  \OC_FileProxy::$enabled = false;
  
  $keyPath = '/' . $user . '/files_encryption/' . $user . '.private.key';
  
  $encryptedKey = $view->file_get_contents($keyPath);
  $decryptedKey = \OCA\Encryption\Crypt::decryptPrivateKey($encryptedKey, $oldPassword);
  
  if ($decryptedKey) {
f7d878ff1   kload   [enh] Update to 7...
38
39
40
41
42
43
44
  	$cipher = \OCA\Encryption\Helper::getCipher();
  	$encryptedKey = \OCA\Encryption\Crypt::symmetricEncryptFileContent($decryptedKey, $newPassword, $cipher);
  	if ($encryptedKey) {
  		\OCA\Encryption\Keymanager::setPrivateKey($encryptedKey, $user);
  		$session->setPrivateKey($decryptedKey);
  		$return = true;
  	}
03e52840d   Kload   Init
45
46
47
48
49
50
  }
  
  \OC_FileProxy::$enabled = $proxyStatus;
  
  // success or failure
  if ($return) {
31b7f2792   Kload   Upgrade to ownclo...
51
  	$session->setInitialized(\OCA\Encryption\Session::INIT_SUCCESSFUL);
03e52840d   Kload   Init
52
53
54
  	\OCP\JSON::success(array('data' => array('message' => $l->t('Private key password successfully updated.'))));
  } else {
  	\OCP\JSON::error(array('data' => array('message' => $l->t('Could not update the private key password. Maybe the old password was not correct.'))));
31b7f2792   Kload   Upgrade to ownclo...
55
  }