]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/login.php
add stub email canonicalizer
[quix0rs-gnu-social.git] / actions / login.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 class LoginAction extends Action {
23         
24         function handle($args) {
25                 parent::handle($args);
26                 if (common_logged_in()) {
27                         common_user_error(_t('Already logged in.'));
28                 } else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
29                         $this->check_login();
30                 } else {
31                         $this->show_form();
32                 }
33         }
34
35         function check_login() {
36                 # XXX: form token in $_SESSION to prevent XSS
37                 # XXX: login throttle
38                 $nickname = $this->arg('nickname');
39                 $password = $this->arg('password');
40                 if (common_check_user($nickname, $password)) {
41                         common_set_user($nickname);
42                         common_redirect(common_local_url('all',
43                                                                                          array('nickname' =>
44                                                                                                    $nickname)));
45                 } else {
46                         $this->show_form(_t('Incorrect username or password.'));
47                 }
48         }
49         
50         function show_form($error=NULL) {
51                 
52                 common_show_header(_t('Login'));
53                 if (!is_null($error)) {
54                         common_element('div', array('class' => 'error'), $msg);
55                 }
56                 common_element_start('form', array('method' => 'POST',
57                                                                                    'id' => 'login',
58                                                                                    'action' => common_local_url('login')));
59                 common_element('label', array('for' => 'username'),
60                                            _t('Name'));
61                 common_element('input', array('name' => 'username',
62                                                                           'type' => 'text',
63                                                                           'id' => 'username'));
64                 common_element('label', array('for' => 'password'),
65                                            _t('Password'));
66                 common_element('input', array('name' => 'password',
67                                                                           'type' => 'password',                                                                   
68                                                                           'id' => 'password'));
69                 common_element('input', array('name' => 'submit',
70                                                                           'type' => 'submit',
71                                                                           'id' => 'submit'),
72                                            _t('Login'));
73                 common_element('input', array('name' => 'cancel',
74                                                                           'type' => 'button',
75                                                                           'id' => 'cancel'),
76                                            _t('Cancel'));
77                 common_element_end('form');
78         }
79 }