2009-01-17 22:30:44 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-08-25 23:12:20 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2009-01-17 22:30:44 +00:00
|
|
|
*
|
|
|
|
* Change user password
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @category Settings
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Zach Copley <zach@status.net>
|
2009-08-25 23:12:20 +01:00
|
|
|
* @copyright 2008-2009 StatusNet, Inc.
|
2009-01-17 22:30:44 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-17 22:30:44 +00:00
|
|
|
*/
|
|
|
|
|
2019-04-27 15:15:11 +01:00
|
|
|
if (!defined('STATUSNET')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
2009-01-17 22:30:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Change password
|
|
|
|
*
|
|
|
|
* @category Settings
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Zach Copley <zach@status.net>
|
2009-01-17 22:30:44 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-17 22:30:44 +00:00
|
|
|
*/
|
2011-01-23 17:35:35 +00:00
|
|
|
class PasswordsettingsAction extends SettingsAction
|
2009-01-17 22:30:44 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Title of the page
|
|
|
|
*
|
|
|
|
* @return string Title of the page
|
|
|
|
*/
|
|
|
|
|
2019-04-27 15:15:11 +01:00
|
|
|
public function title()
|
2009-01-17 22:30:44 +00:00
|
|
|
{
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Title for page where to change password.
|
2019-04-27 15:15:11 +01:00
|
|
|
return _m('TITLE', 'Change password');
|
2009-01-17 22:30:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instructions for use
|
|
|
|
*
|
2019-04-27 15:15:11 +01:00
|
|
|
* @return string instructions for use
|
2009-01-17 22:30:44 +00:00
|
|
|
*/
|
|
|
|
|
2019-04-27 15:15:11 +01:00
|
|
|
public function getInstructions()
|
2009-01-17 22:30:44 +00:00
|
|
|
{
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Instructions for page where to change password.
|
2009-01-17 22:30:44 +00:00
|
|
|
return _('Change your password.');
|
|
|
|
}
|
|
|
|
|
2019-04-27 15:15:11 +01:00
|
|
|
public function showScripts()
|
2009-09-03 20:42:50 +01:00
|
|
|
{
|
|
|
|
parent::showScripts();
|
|
|
|
$this->autofocus('oldpassword');
|
|
|
|
}
|
|
|
|
|
2019-04-27 15:15:11 +01:00
|
|
|
public function showContent()
|
2009-01-17 22:30:44 +00:00
|
|
|
{
|
2019-04-27 15:15:11 +01:00
|
|
|
$this->elementStart('form', ['method' => 'POST',
|
|
|
|
'id' => 'form_password',
|
|
|
|
'class' => 'form_settings',
|
|
|
|
'action' => common_local_url('passwordsettings')]);
|
2009-01-21 19:56:18 +00:00
|
|
|
$this->elementStart('fieldset');
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Fieldset legend on page where to change password.
|
2009-01-21 19:56:18 +00:00
|
|
|
$this->element('legend', null, _('Password change'));
|
2009-01-17 22:30:44 +00:00
|
|
|
$this->hidden('token', common_session_token());
|
|
|
|
|
2009-01-21 19:56:18 +00:00
|
|
|
|
|
|
|
$this->elementStart('ul', 'form_data');
|
2009-11-09 19:01:46 +00:00
|
|
|
// Users who logged in with OpenID won't have a pwd
|
2015-07-17 00:47:43 +01:00
|
|
|
if ($this->scoped->hasPassword()) {
|
2009-01-21 19:56:18 +00:00
|
|
|
$this->elementStart('li');
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Field label on page where to change password.
|
2009-01-17 22:30:44 +00:00
|
|
|
$this->password('oldpassword', _('Old password'));
|
2009-01-21 19:56:18 +00:00
|
|
|
$this->elementEnd('li');
|
2009-01-17 22:30:44 +00:00
|
|
|
}
|
2009-01-21 19:56:18 +00:00
|
|
|
$this->elementStart('li');
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Field label on page where to change password.
|
2009-01-17 22:30:44 +00:00
|
|
|
$this->password('newpassword', _('New password'),
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Field title on page where to change password.
|
2011-02-16 23:39:53 +00:00
|
|
|
_('6 or more characters.'));
|
2009-01-21 19:56:18 +00:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementStart('li');
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Field label on page where to change password. In this field the new password should be typed a second time.
|
2019-04-27 15:15:11 +01:00
|
|
|
$this->password('confirm', _m('LABEL', 'Confirm'),
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Field title on page where to change password.
|
2011-02-16 23:39:53 +00:00
|
|
|
_('Same as password above.'));
|
2009-01-21 19:56:18 +00:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementEnd('ul');
|
|
|
|
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Button text on page where to change password.
|
2019-04-27 15:15:11 +01:00
|
|
|
$this->submit('changepass', _m('BUTTON', 'Change'));
|
2009-01-21 19:56:18 +00:00
|
|
|
|
|
|
|
$this->elementEnd('fieldset');
|
2009-01-17 22:30:44 +00:00
|
|
|
$this->elementEnd('form');
|
|
|
|
}
|
|
|
|
|
2015-07-17 00:47:43 +01:00
|
|
|
protected function doPost()
|
2009-01-17 22:30:44 +00:00
|
|
|
{
|
|
|
|
// FIXME: scrub input
|
|
|
|
|
|
|
|
$newpassword = $this->arg('newpassword');
|
2019-04-27 15:15:11 +01:00
|
|
|
$confirm = $this->arg('confirm');
|
2009-01-17 22:30:44 +00:00
|
|
|
|
2011-03-22 15:54:23 +00:00
|
|
|
// Some validation
|
2009-01-28 13:55:03 +00:00
|
|
|
|
|
|
|
if (strlen($newpassword) < 6) {
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Form validation error on page where to change password.
|
2015-07-17 00:47:43 +01:00
|
|
|
throw new ClientException(_('Password must be 6 or more characters.'));
|
2019-04-27 15:15:11 +01:00
|
|
|
} elseif (0 != strcmp($newpassword, $confirm)) {
|
2011-03-18 12:48:47 +00:00
|
|
|
// TRANS: Form validation error on password change when password confirmation does not match.
|
2015-07-17 00:47:43 +01:00
|
|
|
throw new ClientException(_('Passwords do not match.'));
|
2009-01-17 22:30:44 +00:00
|
|
|
}
|
|
|
|
|
2015-07-17 00:47:43 +01:00
|
|
|
$oldpassword = null;
|
|
|
|
if ($this->scoped->hasPassword()) {
|
2009-01-17 22:30:44 +00:00
|
|
|
$oldpassword = $this->arg('oldpassword');
|
|
|
|
|
2015-07-17 00:47:43 +01:00
|
|
|
if (!common_check_user($this->scoped->getNickname(), $oldpassword)) {
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Form validation error on page where to change password.
|
2015-07-17 00:47:43 +01:00
|
|
|
throw new ClientException(_('Incorrect old password.'));
|
2009-01-17 22:30:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-27 15:15:11 +01:00
|
|
|
if (Event::handle('StartChangePassword', [$this->scoped, $oldpassword, $newpassword])) {
|
|
|
|
// no handler changed the password, so change the password internally
|
|
|
|
$user = $this->scoped->getUser();
|
2015-12-30 16:49:13 +00:00
|
|
|
$user->setPassword($newpassword);
|
2009-01-17 22:30:44 +00:00
|
|
|
|
2019-04-27 15:15:11 +01:00
|
|
|
Event::handle('EndChangePassword', [$this->scoped]);
|
2009-01-17 22:30:44 +00:00
|
|
|
}
|
|
|
|
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Form validation notice on page where to change password.
|
2015-07-17 00:47:43 +01:00
|
|
|
return _('Password saved.');
|
2009-01-17 22:30:44 +00:00
|
|
|
}
|
2009-01-21 19:56:18 +00:00
|
|
|
}
|