2013-05-15 18:14:54 +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.
|
|
|
|
*
|
2014-05-19 19:50:53 +04:00
|
|
|
* Script to change recovery key password
|
2013-05-27 19:26:58 +04:00
|
|
|
*
|
2013-05-15 18:14:54 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
use OCA\Encryption;
|
|
|
|
|
|
|
|
\OCP\JSON::checkAdminUser();
|
|
|
|
\OCP\JSON::checkAppEnabled('files_encryption');
|
|
|
|
\OCP\JSON::callCheck();
|
|
|
|
|
2014-08-31 12:05:59 +04:00
|
|
|
$l = \OC::$server->getL10N('core');
|
2013-05-15 18:14:54 +04:00
|
|
|
|
|
|
|
$return = false;
|
|
|
|
|
|
|
|
$oldPassword = $_POST['oldPassword'];
|
|
|
|
$newPassword = $_POST['newPassword'];
|
|
|
|
|
2013-06-03 16:19:31 +04:00
|
|
|
$view = new \OC\Files\View('/');
|
2014-05-12 18:30:39 +04:00
|
|
|
$util = new \OCA\Encryption\Util(new \OC\Files\View('/'), \OCP\User::getUser());
|
2013-05-15 18:14:54 +04:00
|
|
|
|
2013-06-03 16:19:31 +04:00
|
|
|
$proxyStatus = \OC_FileProxy::$enabled;
|
|
|
|
\OC_FileProxy::$enabled = false;
|
2013-05-15 18:14:54 +04:00
|
|
|
|
2013-06-03 16:19:31 +04:00
|
|
|
$keyId = $util->getRecoveryKeyId();
|
|
|
|
$keyPath = '/owncloud_private_key/' . $keyId . '.private.key';
|
2013-05-15 18:14:54 +04:00
|
|
|
|
2013-06-03 16:19:31 +04:00
|
|
|
$encryptedRecoveryKey = $view->file_get_contents($keyPath);
|
|
|
|
$decryptedRecoveryKey = \OCA\Encryption\Crypt::decryptPrivateKey($encryptedRecoveryKey, $oldPassword);
|
|
|
|
|
|
|
|
if ($decryptedRecoveryKey) {
|
2014-07-21 15:02:28 +04:00
|
|
|
$cipher = \OCA\Encryption\Helper::getCipher();
|
|
|
|
$encryptedKey = \OCA\Encryption\Crypt::symmetricEncryptFileContent($decryptedRecoveryKey, $newPassword, $cipher);
|
|
|
|
if ($encryptedKey) {
|
|
|
|
\OCA\Encryption\Keymanager::setPrivateSystemKey($encryptedKey, $keyId . '.private.key');
|
|
|
|
$return = true;
|
|
|
|
}
|
2013-05-15 18:14:54 +04:00
|
|
|
}
|
|
|
|
|
2013-06-03 16:19:31 +04:00
|
|
|
\OC_FileProxy::$enabled = $proxyStatus;
|
|
|
|
|
2013-05-15 18:14:54 +04:00
|
|
|
// success or failure
|
|
|
|
if ($return) {
|
2013-05-30 01:11:30 +04:00
|
|
|
\OCP\JSON::success(array('data' => array('message' => $l->t('Password successfully changed.'))));
|
2013-05-15 18:14:54 +04:00
|
|
|
} else {
|
2013-05-30 01:11:30 +04:00
|
|
|
\OCP\JSON::error(array('data' => array('message' => $l->t('Could not change the password. Maybe the old password was not correct.'))));
|
2013-08-18 13:02:08 +04:00
|
|
|
}
|