2013-06-03 17:27:31 +04:00
|
|
|
<?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::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;
|
|
|
|
|
2013-06-03 20:42:13 +04:00
|
|
|
$keyPath = '/' . $user . '/files_encryption/' . $user . '.private.key';
|
2013-06-03 17:27:31 +04:00
|
|
|
|
|
|
|
$encryptedKey = $view->file_get_contents($keyPath);
|
|
|
|
$decryptedKey = \OCA\Encryption\Crypt::decryptPrivateKey($encryptedKey, $oldPassword);
|
|
|
|
|
|
|
|
if ($decryptedKey) {
|
|
|
|
|
|
|
|
$encryptedKey = \OCA\Encryption\Crypt::symmetricEncryptFileContent($decryptedKey, $newPassword);
|
|
|
|
$view->file_put_contents($keyPath, $encryptedKey);
|
|
|
|
|
2013-06-03 21:10:55 +04:00
|
|
|
$session->setPrivateKey($decryptedKey);
|
2013-06-03 17:27:31 +04:00
|
|
|
|
|
|
|
$return = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
\OC_FileProxy::$enabled = $proxyStatus;
|
|
|
|
|
|
|
|
// success or failure
|
|
|
|
if ($return) {
|
|
|
|
\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.'))));
|
2013-08-18 13:02:08 +04:00
|
|
|
}
|