]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/openidlogin.php
Link rtsp, mms & tel URI schemes, correct pseudo-protocol ones.
[quix0rs-gnu-social.git] / actions / openidlogin.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/openid.php');
23
24 class OpenidloginAction extends Action
25 {
26     function handle($args)
27     {
28         parent::handle($args);
29         if (common_logged_in()) {
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         return _('Login with an [OpenID](%%doc.openid%%) account.');
63     }
64
65     function showPageNotice()
66     {
67         if ($this->error) {
68             $this->element('div', array('class' => 'error'), $this->error);
69         } else {
70             $instr = $this->getInstructions();
71             $output = common_markup_to_html($instr);
72             $this->elementStart('div', 'instructions');
73             $this->raw($output);
74             $this->elementEnd('div');
75         }
76     }
77
78     function title()
79     {
80         return _('OpenID Login');
81     }
82
83     function showForm($error=null, $openid_url)
84     {
85         $this->error = $error;
86         $this->openid_url = $openid_url;
87         $this->showPage();
88     }
89
90     function showContent() {
91         $formaction = common_local_url('openidlogin');
92         $this->elementStart('form', array('method' => 'post',
93                                            'id' => 'form_openid_login',
94                                            'class' => 'form_settings',
95                                            'action' => $formaction));
96         $this->elementStart('fieldset');
97         $this->element('legend', null, _('OpenID login'));
98         $this->hidden('token', common_session_token());
99
100         $this->elementStart('ul', 'form_data');
101         $this->elementStart('li');
102         $this->input('openid_url', _('OpenID URL'),
103                      $this->openid_url,
104                      _('Your OpenID URL'));
105         $this->elementEnd('li');
106         $this->elementStart('li', array('id' => 'settings_rememberme'));
107         $this->checkbox('rememberme', _('Remember me'), false,
108                         _('Automatically login in the future; ' .
109                            'not for shared computers!'));
110         $this->elementEnd('li');
111         $this->elementEnd('ul');
112         $this->submit('submit', _('Login'));
113         $this->elementEnd('fieldset');
114         $this->elementEnd('form');
115     }
116
117     function showLocalNav()
118     {
119         $nav = new LoginGroupNav($this);
120         $nav->show();
121     }
122 }