2011-04-18 17:07:14 +04:00
|
|
|
<?php
|
2015-03-26 13:44:34 +03:00
|
|
|
/**
|
|
|
|
* @author Björn Schießle <schiessle@owncloud.com>
|
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
|
|
|
* @author cmeh <cmeh@users.noreply.github.com>
|
|
|
|
* @author Florin Peter <github@florin-peter.de>
|
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Sam Tuke <mail@samtuke.com>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
2013-09-11 18:35:13 +04:00
|
|
|
namespace OC\Settings\ChangePassword;
|
2011-04-18 17:07:14 +04:00
|
|
|
|
2013-09-11 18:35:13 +04:00
|
|
|
class Controller {
|
|
|
|
public static function changePersonalPassword($args) {
|
|
|
|
// Check if we are an user
|
|
|
|
\OC_JSON::callCheck();
|
|
|
|
\OC_JSON::checkLoggedIn();
|
2013-02-06 21:42:29 +04:00
|
|
|
|
2013-09-11 18:35:13 +04:00
|
|
|
$username = \OC_User::getUser();
|
|
|
|
$password = isset($_POST['personal-password']) ? $_POST['personal-password'] : null;
|
|
|
|
$oldPassword = isset($_POST['oldpassword']) ? $_POST['oldpassword'] : '';
|
2011-08-31 00:03:17 +04:00
|
|
|
|
2013-09-11 18:35:13 +04:00
|
|
|
if (!\OC_User::checkPassword($username, $oldPassword)) {
|
|
|
|
$l = new \OC_L10n('settings');
|
|
|
|
\OC_JSON::error(array("data" => array("message" => $l->t("Wrong password")) ));
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
if (!is_null($password) && \OC_User::setPassword($username, $password)) {
|
|
|
|
\OC_JSON::success();
|
|
|
|
} else {
|
|
|
|
\OC_JSON::error();
|
|
|
|
}
|
|
|
|
}
|
2011-04-18 17:07:14 +04:00
|
|
|
|
2013-09-11 18:35:13 +04:00
|
|
|
public static function changeUserPassword($args) {
|
|
|
|
// Check if we are an user
|
|
|
|
\OC_JSON::callCheck();
|
|
|
|
\OC_JSON::checkLoggedIn();
|
2011-04-18 17:07:14 +04:00
|
|
|
|
2013-09-11 18:35:13 +04:00
|
|
|
if (isset($_POST['username'])) {
|
|
|
|
$username = $_POST['username'];
|
2013-09-06 19:05:10 +04:00
|
|
|
} else {
|
2013-09-11 18:35:13 +04:00
|
|
|
$l = new \OC_L10n('settings');
|
|
|
|
\OC_JSON::error(array('data' => array('message' => $l->t('No user supplied')) ));
|
|
|
|
exit();
|
2013-09-06 19:05:10 +04:00
|
|
|
}
|
2013-06-10 14:12:07 +04:00
|
|
|
|
2013-09-11 18:35:13 +04:00
|
|
|
$password = isset($_POST['password']) ? $_POST['password'] : null;
|
|
|
|
$recoveryPassword = isset($_POST['recoveryPassword']) ? $_POST['recoveryPassword'] : null;
|
|
|
|
|
|
|
|
if (\OC_User::isAdminUser(\OC_User::getUser())) {
|
|
|
|
$userstatus = 'admin';
|
|
|
|
} elseif (\OC_SubAdmin::isUserAccessible(\OC_User::getUser(), $username)) {
|
|
|
|
$userstatus = 'subadmin';
|
|
|
|
} else {
|
|
|
|
$l = new \OC_L10n('settings');
|
|
|
|
\OC_JSON::error(array('data' => array('message' => $l->t('Authentication error')) ));
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (\OC_App::isEnabled('files_encryption')) {
|
|
|
|
//handle the recovery case
|
2014-12-03 18:16:09 +03:00
|
|
|
$util = new \OCA\Files_Encryption\Util(new \OC\Files\View('/'), $username);
|
2013-09-11 18:35:13 +04:00
|
|
|
$recoveryAdminEnabled = \OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled');
|
|
|
|
|
|
|
|
$validRecoveryPassword = false;
|
2014-08-12 17:16:16 +04:00
|
|
|
$recoveryEnabledForUser = false;
|
2013-09-11 18:35:13 +04:00
|
|
|
if ($recoveryAdminEnabled) {
|
|
|
|
$validRecoveryPassword = $util->checkRecoveryPassword($recoveryPassword);
|
|
|
|
$recoveryEnabledForUser = $util->recoveryEnabledForUser();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($recoveryEnabledForUser && $recoveryPassword === '') {
|
2013-09-18 18:47:27 +04:00
|
|
|
$l = new \OC_L10n('settings');
|
|
|
|
\OC_JSON::error(array('data' => array(
|
|
|
|
'message' => $l->t('Please provide an admin recovery password, otherwise all user data will be lost')
|
|
|
|
)));
|
2013-09-11 18:35:13 +04:00
|
|
|
} elseif ($recoveryEnabledForUser && ! $validRecoveryPassword) {
|
2013-09-18 18:47:27 +04:00
|
|
|
$l = new \OC_L10n('settings');
|
|
|
|
\OC_JSON::error(array('data' => array(
|
|
|
|
'message' => $l->t('Wrong admin recovery password. Please check the password and try again.')
|
|
|
|
)));
|
2013-09-11 18:35:13 +04:00
|
|
|
} else { // now we know that everything is fine regarding the recovery password, let's try to change the password
|
|
|
|
$result = \OC_User::setPassword($username, $password, $recoveryPassword);
|
2014-08-12 17:16:16 +04:00
|
|
|
if (!$result && $recoveryEnabledForUser) {
|
2013-09-18 18:47:27 +04:00
|
|
|
$l = new \OC_L10n('settings');
|
2013-09-11 18:35:13 +04:00
|
|
|
\OC_JSON::error(array(
|
|
|
|
"data" => array(
|
2015-02-12 10:18:24 +03:00
|
|
|
"message" => $l->t("Backend doesn't support password change, but the user's encryption key was successfully updated.")
|
2013-09-11 18:35:13 +04:00
|
|
|
)
|
|
|
|
));
|
2014-08-12 17:16:16 +04:00
|
|
|
} elseif (!$result && !$recoveryEnabledForUser) {
|
2013-09-18 18:47:27 +04:00
|
|
|
$l = new \OC_L10n('settings');
|
2013-09-19 01:46:58 +04:00
|
|
|
\OC_JSON::error(array("data" => array( "message" => $l->t("Unable to change password" ) )));
|
2013-09-11 18:35:13 +04:00
|
|
|
} else {
|
|
|
|
\OC_JSON::success(array("data" => array( "username" => $username )));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
} else { // if encryption is disabled, proceed
|
|
|
|
if (!is_null($password) && \OC_User::setPassword($username, $password)) {
|
|
|
|
\OC_JSON::success(array('data' => array('username' => $username)));
|
|
|
|
} else {
|
2013-09-18 18:47:27 +04:00
|
|
|
$l = new \OC_L10n('settings');
|
|
|
|
\OC_JSON::error(array('data' => array('message' => $l->t('Unable to change password'))));
|
2013-09-11 18:35:13 +04:00
|
|
|
}
|
|
|
|
}
|
2013-06-03 21:06:20 +04:00
|
|
|
}
|
2011-04-18 17:07:14 +04:00
|
|
|
}
|