3 * StatusNet, the distributed open-source microblogging tool
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @author Zach Copley <zach@status.net>
26 * @copyright 2008-2009 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
35 require_once INSTALLDIR.'/lib/accountsettingsaction.php';
42 * @author Evan Prodromou <evan@status.net>
43 * @author Zach Copley <zach@status.net>
44 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
45 * @link http://status.net/
48 class PasswordsettingsAction extends AccountSettingsAction
53 * @return string Title of the page
58 return _('Change password');
62 * Instructions for use
64 * @return instructions for use
67 function getInstructions()
69 return _('Change your password.');
72 function showScripts()
74 parent::showScripts();
75 $this->autofocus('oldpassword');
79 * Content area of the page
81 * Shows a form for changing the password
86 function showContent()
88 $user = common_current_user();
90 $this->elementStart('form', array('method' => 'POST',
91 'id' => 'form_password',
92 'class' => 'form_settings',
94 common_local_url('passwordsettings')));
95 $this->elementStart('fieldset');
96 $this->element('legend', null, _('Password change'));
97 $this->hidden('token', common_session_token());
100 $this->elementStart('ul', 'form_data');
101 // Users who logged in with OpenID won't have a pwd
102 if ($user->password) {
103 $this->elementStart('li');
104 $this->password('oldpassword', _('Old password'));
105 $this->elementEnd('li');
107 $this->elementStart('li');
108 $this->password('newpassword', _('New password'),
109 _('6 or more characters'));
110 $this->elementEnd('li');
111 $this->elementStart('li');
112 $this->password('confirm', _('Confirm'),
113 _('Same as password above'));
114 $this->elementEnd('li');
115 $this->elementEnd('ul');
117 $this->submit('changepass', _('Change'));
119 $this->elementEnd('fieldset');
120 $this->elementEnd('form');
126 * Validate input and save changes. Reload the form with a success
132 function handlePost()
136 $token = $this->trimmed('token');
137 if (!$token || $token != common_session_token()) {
138 $this->showForm(_('There was a problem with your session token. '.
139 'Try again, please.'));
143 $user = common_current_user();
144 assert(!is_null($user)); // should already be checked
146 // FIXME: scrub input
148 $newpassword = $this->arg('newpassword');
149 $confirm = $this->arg('confirm');
153 if (strlen($newpassword) < 6) {
154 $this->showForm(_('Password must be 6 or more characters.'));
156 } else if (0 != strcmp($newpassword, $confirm)) {
157 $this->showForm(_('Passwords don\'t match.'));
161 if ($user->password) {
162 $oldpassword = $this->arg('oldpassword');
164 if (!common_check_user($user->nickname, $oldpassword)) {
165 $this->showForm(_('Incorrect old password'));
173 if(Event::handle('StartChangePassword', array($user, $oldpassword, $newpassword))){
174 //no handler changed the password, so change the password internally
175 $original = clone($user);
177 $user->password = common_munge_password($newpassword, $user->id);
179 $val = $user->validate();
181 $this->showForm(_('Error saving user; invalid.'));
185 if (!$user->update($original)) {
186 $this->serverError(_('Can\'t save new password.'));
189 Event::handle('EndChangePassword', array($user));
192 $this->showForm(_('Password saved.'), true);