]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/password.php
Colapse a lot of strings to make like easier for translators and more consisitant...
[quix0rs-gnu-social.git] / actions / password.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 require_once(INSTALLDIR.'/lib/settingsaction.php');
23
24 class PasswordAction extends SettingsAction {
25
26         function get_instructions() {
27                 return _('You can change your password here. Choose a good one!');
28         }
29
30         function show_form($msg=NULL, $success=false) {
31                 $user = common_current_user();
32                 $this->form_header(_('Change password'), $msg, $success);
33                 common_element_start('form', array('method' => 'post',
34                                                                                    'id' => 'password',
35                                                                                    'action' =>
36                                                                                    common_local_url('password')));
37                 # Users who logged in with OpenID won't have a pwd
38                 if ($user->password) {
39                         common_password('oldpassword', _('Old password'));
40                 }
41                 common_password('newpassword', _('New password'),
42                                                 _('6 or more characters'));
43                 common_password('confirm', _('Confirm'),
44                                                 _('same as password above'));
45                 common_submit('submit', _('Change'));
46                 common_element_end('form');
47                 common_show_footer();
48         }
49
50         function handle_post() {
51
52                 $user = common_current_user();
53                 assert(!is_null($user)); # should already be checked
54
55                 # FIXME: scrub input
56
57                 $newpassword = $this->arg('newpassword');
58                 $confirm = $this->arg('confirm');
59
60                 if (0 != strcmp($newpassword, $confirm)) {
61                         $this->show_form(_('Passwords don\'t match.'));
62                         return;
63                 }
64
65                 if ($user->password) {
66                         $oldpassword = $this->arg('oldpassword');
67
68                         if (!common_check_user($user->nickname, $oldpassword)) {
69                                 $this->show_form(_('Incorrect old password'));
70                                 return;
71                         }
72                 }
73
74                 $original = clone($user);
75
76                 $user->password = common_munge_password($newpassword, $user->id);
77
78                 $val = $user->validate();
79                 if ($val !== TRUE) {
80                         $this->show_form(_('Error saving user; invalid.'));
81                         return;
82                 }
83
84                 if (!$user->update($original)) {
85                         common_server_error(_('Can\'t save new password.'));
86                         return;
87                 }
88
89                 $this->show_form(_('Password saved.'), true);
90         }
91 }