]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/password.php
debugging for addopenid problem
[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 show_form($msg=NULL, $success=false) {
27                 common_show_header(_t('Change password'), NULL, NULL, array($this, 'settings_menu'));
28                 if ($msg) {
29                         $this->message($msg, $success);
30                 } else {
31                         common_element('div', 'instructions', 
32                                                    _t('You can change your password here. Choose a good one!'));
33                 }
34                 common_element_start('form', array('method' => 'POST',
35                                                                                    'id' => 'password',
36                                                                                    'action' =>
37                                                                                    common_local_url('password')));
38                 common_password('oldpassword', _t('Old password'));
39                 common_password('newpassword', _t('New password'),
40                                                 _t('6 or more characters'));
41                 common_password('confirm', _t('Confirm'),
42                                                 _t('same as password above'));
43                 common_submit('submit', _t('Change'));
44                 common_element_end('form');
45                 common_show_footer();
46         }
47
48         function handle_post() {
49
50                 $user = common_current_user();
51                 assert(!is_null($user)); # should already be checked
52
53                 # FIXME: scrub input
54
55                 $oldpassword = $this->arg('oldpassword');
56                 $newpassword = $this->arg('newpassword');
57                 $confirm = $this->arg('confirm');
58
59                 if (0 != strcmp($newpassword, $confirm)) {
60                         $this->show_form(_t('Passwords don\'t match'));
61                         return;
62                 }
63
64                 if (!common_check_user($user->nickname, $oldpassword)) {
65                         $this->show_form(_t('Incorrect old password'));
66                         return;
67                 }
68
69                 $original = clone($user);
70
71                 $user->password = common_munge_password($newpassword, $user->id);
72
73                 $val = $user->validate();
74                 if ($val !== TRUE) {
75                         $this->show_form(_t('Error saving user; invalid.'));
76                         return;
77                 }
78
79                 if (!$user->update($original)) {
80                         common_server_error(_t('Can\'t save new password.'));
81                         return;
82                 }
83
84                 $this->show_form(_t('Password saved'), true);
85         }
86 }