]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/openidlogin.php
Update copyright dates in files modified in 2009
[quix0rs-gnu-social.git] / actions / openidlogin.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, Control Yourself, 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/openid.php');
23
24 class OpenidloginAction extends Action
25 {
26     function handle($args)
27     {
28         parent::handle($args);
29         if (common_is_real_login()) {
30             $this->clientError(_('Already logged in.'));
31         } else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
32             $openid_url = $this->trimmed('openid_url');
33
34             # CSRF protection
35             $token = $this->trimmed('token');
36             if (!$token || $token != common_session_token()) {
37                 $this->showForm(_('There was a problem with your session token. Try again, please.'), $openid_url);
38                 return;
39             }
40
41             $rememberme = $this->boolean('rememberme');
42
43             common_ensure_session();
44
45             $_SESSION['openid_rememberme'] = $rememberme;
46
47             $result = oid_authenticate($openid_url,
48                                        'finishopenidlogin');
49
50             if (is_string($result)) { # error message
51                 unset($_SESSION['openid_rememberme']);
52                 $this->showForm($result, $openid_url);
53             }
54         } else {
55             $openid_url = oid_get_last();
56             $this->showForm(null, $openid_url);
57         }
58     }
59
60     function getInstructions()
61     {
62         if (common_logged_in() && !common_is_real_login() &&
63             common_get_returnto()) {
64             // rememberme logins have to reauthenticate before
65             // changing any profile settings (cookie-stealing protection)
66             return _('For security reasons, please re-login with your ' .
67                      '[OpenID](%%doc.openid%%) ' .
68                      'before changing your settings.');
69         } else {
70             return _('Login with an [OpenID](%%doc.openid%%) account.');
71         }
72     }
73
74     function showPageNotice()
75     {
76         if ($this->error) {
77             $this->element('div', array('class' => 'error'), $this->error);
78         } else {
79             $instr = $this->getInstructions();
80             $output = common_markup_to_html($instr);
81             $this->elementStart('div', 'instructions');
82             $this->raw($output);
83             $this->elementEnd('div');
84         }
85     }
86
87     function title()
88     {
89         return _('OpenID Login');
90     }
91
92     function showForm($error=null, $openid_url)
93     {
94         $this->error = $error;
95         $this->openid_url = $openid_url;
96         $this->showPage();
97     }
98
99     function showContent() {
100         $formaction = common_local_url('openidlogin');
101         $this->elementStart('form', array('method' => 'post',
102                                            'id' => 'form_openid_login',
103                                            'class' => 'form_settings',
104                                            'action' => $formaction));
105         $this->elementStart('fieldset');
106         $this->element('legend', null, _('OpenID login'));
107         $this->hidden('token', common_session_token());
108
109         $this->elementStart('ul', 'form_data');
110         $this->elementStart('li');
111         $this->input('openid_url', _('OpenID URL'),
112                      $this->openid_url,
113                      _('Your OpenID URL'));
114         $this->elementEnd('li');
115         $this->elementStart('li', array('id' => 'settings_rememberme'));
116         $this->checkbox('rememberme', _('Remember me'), false,
117                         _('Automatically login in the future; ' .
118                            'not for shared computers!'));
119         $this->elementEnd('li');
120         $this->elementEnd('ul');
121         $this->submit('submit', _('Login'));
122         $this->elementEnd('fieldset');
123         $this->elementEnd('form');
124     }
125
126     function showLocalNav()
127     {
128         $nav = new LoginGroupNav($this);
129         $nav->show();
130     }
131 }