| 
									
										
										
										
											2009-01-17 22:30:44 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04: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 18:12:20 -04:00
										 |  |  |  * @package   StatusNet | 
					
						
							| 
									
										
										
										
											2009-08-25 18:19:04 -04:00
										 |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @author    Zach Copley <zach@status.net> | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04: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 18:16:46 -04:00
										 |  |  |  * @link      http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-01-17 22:30:44 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-17 01:47:43 +02:00
										 |  |  | if (!defined('STATUSNET')) { exit(1); } | 
					
						
							| 
									
										
										
										
											2009-01-17 22:30:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Change password | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category Settings | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * @package  StatusNet | 
					
						
							| 
									
										
										
										
											2009-08-25 18:19:04 -04: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 18:16:46 -04:00
										 |  |  |  * @link     http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-01-17 22:30:44 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-23 12:35:35 -05:00
										 |  |  | class PasswordsettingsAction extends SettingsAction | 
					
						
							| 
									
										
										
										
											2009-01-17 22:30:44 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Title of the page | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return string Title of the page | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function title() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-03-11 17:07:27 +01:00
										 |  |  |         // TRANS: Title for page where to change password.
 | 
					
						
							|  |  |  |         return _m('TITLE','Change password'); | 
					
						
							| 
									
										
										
										
											2009-01-17 22:30:44 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Instructions for use | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return instructions for use | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function getInstructions() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-03-11 17:07:27 +01:00
										 |  |  |         // TRANS: Instructions for page where to change password.
 | 
					
						
							| 
									
										
										
										
											2009-01-17 22:30:44 +00:00
										 |  |  |         return _('Change your password.'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-03 19:42:50 +00:00
										 |  |  |     function showScripts() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::showScripts(); | 
					
						
							|  |  |  |         $this->autofocus('oldpassword'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-17 22:30:44 +00:00
										 |  |  |     function showContent() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->elementStart('form', array('method' => 'POST', | 
					
						
							| 
									
										
										
										
											2009-01-21 19:56:18 +00:00
										 |  |  |                                           'id' => 'form_password', | 
					
						
							|  |  |  |                                           'class' => 'form_settings', | 
					
						
							| 
									
										
										
										
											2009-01-17 22:30:44 +00:00
										 |  |  |                                           'action' => | 
					
						
							| 
									
										
										
										
											2009-01-28 08:55:03 -05:00
										 |  |  |                                           common_local_url('passwordsettings'))); | 
					
						
							| 
									
										
										
										
											2009-01-21 19:56:18 +00:00
										 |  |  |         $this->elementStart('fieldset'); | 
					
						
							| 
									
										
										
										
											2011-03-11 17:07:27 +01: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 20:01:46 +01:00
										 |  |  |         // Users who logged in with OpenID won't have a pwd
 | 
					
						
							| 
									
										
										
										
											2015-07-17 01:47:43 +02:00
										 |  |  |         if ($this->scoped->hasPassword()) { | 
					
						
							| 
									
										
										
										
											2009-01-21 19:56:18 +00:00
										 |  |  |             $this->elementStart('li'); | 
					
						
							| 
									
										
										
										
											2011-03-11 17:07:27 +01: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 17:07:27 +01: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 17:07:27 +01:00
										 |  |  |                         // TRANS: Field title on page where to change password.
 | 
					
						
							| 
									
										
										
										
											2011-02-17 00:39:53 +01:00
										 |  |  |                         _('6 or more characters.')); | 
					
						
							| 
									
										
										
										
											2009-01-21 19:56:18 +00:00
										 |  |  |         $this->elementEnd('li'); | 
					
						
							|  |  |  |         $this->elementStart('li'); | 
					
						
							| 
									
										
										
										
											2011-03-11 17:07:27 +01:00
										 |  |  |         // TRANS: Field label on page where to change password. In this field the new password should be typed a second time.
 | 
					
						
							|  |  |  |         $this->password('confirm', _m('LABEL','Confirm'), | 
					
						
							|  |  |  |                         // TRANS: Field title on page where to change password.
 | 
					
						
							| 
									
										
										
										
											2011-02-17 00:39:53 +01:00
										 |  |  |                         _('Same as password above.')); | 
					
						
							| 
									
										
										
										
											2009-01-21 19:56:18 +00:00
										 |  |  |         $this->elementEnd('li'); | 
					
						
							|  |  |  |         $this->elementEnd('ul'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-11 17:07:27 +01:00
										 |  |  |         // TRANS: Button text on page where to change password.
 | 
					
						
							|  |  |  |         $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 01:47:43 +02:00
										 |  |  |     protected function doPost() | 
					
						
							| 
									
										
										
										
											2009-01-17 22:30:44 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         // FIXME: scrub input
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $newpassword = $this->arg('newpassword'); | 
					
						
							|  |  |  |         $confirm     = $this->arg('confirm'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-22 11:54:23 -04:00
										 |  |  |         // Some validation
 | 
					
						
							| 
									
										
										
										
											2009-01-28 08:55:03 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (strlen($newpassword) < 6) { | 
					
						
							| 
									
										
										
										
											2011-03-11 17:07:27 +01:00
										 |  |  |             // TRANS: Form validation error on page where to change password.
 | 
					
						
							| 
									
										
										
										
											2015-07-17 01:47:43 +02:00
										 |  |  |             throw new ClientException(_('Password must be 6 or more characters.')); | 
					
						
							| 
									
										
										
										
											2009-01-28 08:55:03 -05:00
										 |  |  |         } else if (0 != strcmp($newpassword, $confirm)) { | 
					
						
							| 
									
										
										
										
											2011-03-18 13:48:47 +01:00
										 |  |  |             // TRANS: Form validation error on password change when password confirmation does not match.
 | 
					
						
							| 
									
										
										
										
											2015-07-17 01:47:43 +02:00
										 |  |  |             throw new ClientException(_('Passwords do not match.')); | 
					
						
							| 
									
										
										
										
											2009-01-17 22:30:44 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-17 01:47:43 +02:00
										 |  |  |         $oldpassword = null; | 
					
						
							|  |  |  |         if ($this->scoped->hasPassword()) { | 
					
						
							| 
									
										
										
										
											2009-01-17 22:30:44 +00:00
										 |  |  |             $oldpassword = $this->arg('oldpassword'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-17 01:47:43 +02:00
										 |  |  |             if (!common_check_user($this->scoped->getNickname(), $oldpassword)) { | 
					
						
							| 
									
										
										
										
											2011-03-11 17:07:27 +01:00
										 |  |  |                 // TRANS: Form validation error on page where to change password.
 | 
					
						
							| 
									
										
										
										
											2015-07-17 01:47:43 +02:00
										 |  |  |                 throw new ClientException(_('Incorrect old password.')); | 
					
						
							| 
									
										
										
										
											2009-01-17 22:30:44 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-17 01:47:43 +02:00
										 |  |  |         if (Event::handle('StartChangePassword', array($this->scoped, $oldpassword, $newpassword))) { | 
					
						
							| 
									
										
										
										
											2009-11-05 23:27:18 -05:00
										 |  |  |             //no handler changed the password, so change the password internally
 | 
					
						
							| 
									
										
										
										
											2015-07-17 01:47:43 +02:00
										 |  |  |             $user = $this->scoped->getUser(); | 
					
						
							| 
									
										
										
										
											2009-11-05 23:27:18 -05:00
										 |  |  |             $original = clone($user); | 
					
						
							| 
									
										
										
										
											2009-01-17 22:30:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-17 01:47:43 +02:00
										 |  |  |             $user->password = common_munge_password($newpassword, $this->scoped); | 
					
						
							| 
									
										
										
										
											2009-01-17 22:30:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-05 23:27:18 -05:00
										 |  |  |             $val = $user->validate(); | 
					
						
							|  |  |  |             if ($val !== true) { | 
					
						
							| 
									
										
										
										
											2011-03-11 17:07:27 +01:00
										 |  |  |                 // TRANS: Form validation error on page where to change password.
 | 
					
						
							| 
									
										
										
										
											2015-07-17 01:47:43 +02:00
										 |  |  |                 throw new ServerException(_('Error saving user; invalid.')); | 
					
						
							| 
									
										
										
										
											2009-11-05 23:27:18 -05:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-01-17 22:30:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-05 23:27:18 -05:00
										 |  |  |             if (!$user->update($original)) { | 
					
						
							| 
									
										
										
										
											2014-03-10 00:19:35 +01:00
										 |  |  |                 // TRANS: Server error displayed on page where to change password when password change
 | 
					
						
							|  |  |  |                 // TRANS: could not be made because of a server error.
 | 
					
						
							| 
									
										
										
										
											2015-07-17 01:47:43 +02:00
										 |  |  |                 throw new ServerException(_('Cannot save new password.')); | 
					
						
							| 
									
										
										
										
											2009-11-05 23:27:18 -05:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2015-07-17 01:47:43 +02:00
										 |  |  |             Event::handle('EndChangePassword', array($this->scoped)); | 
					
						
							| 
									
										
										
										
											2009-01-17 22:30:44 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-11 17:07:27 +01:00
										 |  |  |         // TRANS: Form validation notice on page where to change password.
 | 
					
						
							| 
									
										
										
										
											2015-07-17 01:47:43 +02:00
										 |  |  |         return _('Password saved.'); | 
					
						
							| 
									
										
										
										
											2009-01-17 22:30:44 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-21 19:56:18 +00:00
										 |  |  | } |