]> source.dussan.org Git - nextcloud-server.git/commitdiff
check if the provided password is really the current log-in password
authorBjoern Schiessle <schiessle@owncloud.com>
Thu, 6 Nov 2014 10:11:46 +0000 (11:11 +0100)
committerBjoern Schiessle <schiessle@owncloud.com>
Thu, 6 Nov 2014 10:12:20 +0000 (11:12 +0100)
apps/files_encryption/ajax/updatePrivateKeyPassword.php

index f88e9c64dfda477136a7530947777c16b387fc25..0f182e9383100f88381d398137ec03d61282c4fc 100644 (file)
@@ -18,6 +18,7 @@ use OCA\Encryption;
 $l = \OC::$server->getL10N('core');
 
 $return = false;
+$errorMessage = $l->t('Could not update the private key password.');
 
 $oldPassword = $_POST['oldPassword'];
 $newPassword = $_POST['newPassword'];
@@ -26,6 +27,11 @@ $view = new \OC\Files\View('/');
 $session = new \OCA\Encryption\Session($view);
 $user = \OCP\User::getUser();
 
+// check new password
+$passwordCorrect = \OCP\User::checkPassword($user, $newPassword);
+
+if ($passwordCorrect !== false) {
+
 $proxyStatus = \OC_FileProxy::$enabled;
 \OC_FileProxy::$enabled = false;
 
@@ -42,14 +48,22 @@ if ($decryptedKey) {
                $session->setPrivateKey($decryptedKey);
                $return = true;
        }
+} else {
+       $result = false;
+       $errorMessage = $l->t('The old password was not correct, please try again.');
 }
 
 \OC_FileProxy::$enabled = $proxyStatus;
 
+} else {
+       $result = false;
+       $errorMessage = $l->t('The current log-in password was not correct, please try again.');
+}
+
 // success or failure
 if ($return) {
        $session->setInitialized(\OCA\Encryption\Session::INIT_SUCCESSFUL);
        \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.'))));
+       \OCP\JSON::error(array('data' => array('message' => $errorMessage)));
 }