]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OpenID/openidlogin.php
Merge branch 'testing' into 0.9.x
[quix0rs-gnu-social.git] / plugins / OpenID / openidlogin.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, StatusNet, 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('STATUSNET') && !defined('LACONICA')) { exit(1); }
21
22 require_once INSTALLDIR.'/plugins/OpenID/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             // TRANS: Client error message trying to log on with OpenID while already logged on.
31             $this->clientError(_m('Already logged in.'));
32         } else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
33             $openid_url = $this->trimmed('openid_url');
34
35             oid_assert_allowed($openid_url);
36
37             # CSRF protection
38             $token = $this->trimmed('token');
39             if (!$token || $token != common_session_token()) {
40                 // TRANS: Message given when there is a problem with the user's session token.
41                 $this->showForm(_m('There was a problem with your session token. Try again, please.'), $openid_url);
42                 return;
43             }
44
45             $rememberme = $this->boolean('rememberme');
46
47             common_ensure_session();
48
49             $_SESSION['openid_rememberme'] = $rememberme;
50
51             $result = oid_authenticate($openid_url,
52                                        'finishopenidlogin');
53
54             if (is_string($result)) { # error message
55                 unset($_SESSION['openid_rememberme']);
56                 $this->showForm($result, $openid_url);
57             }
58         } else {
59             $openid_url = oid_get_last();
60             $this->showForm(null, $openid_url);
61         }
62     }
63
64     function getInstructions()
65     {
66         if (common_logged_in() && !common_is_real_login() &&
67             common_get_returnto()) {
68             // rememberme logins have to reauthenticate before
69             // changing any profile settings (cookie-stealing protection)
70             // TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings.
71             // TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)".
72             return _m('For security reasons, please re-login with your ' .
73                      '[OpenID](%%doc.openid%%) ' .
74                      'before changing your settings.');
75         } else {
76             // TRANS: OpenID plugin message.
77             // TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)".
78             return _m('Login with an [OpenID](%%doc.openid%%) account.');
79         }
80     }
81
82     function showPageNotice()
83     {
84         if ($this->error) {
85             $this->element('div', array('class' => 'error'), $this->error);
86         } else {
87             $instr = $this->getInstructions();
88             $output = common_markup_to_html($instr);
89             $this->elementStart('div', 'instructions');
90             $this->raw($output);
91             $this->elementEnd('div');
92         }
93     }
94
95     function showScripts()
96     {
97         parent::showScripts();
98         $this->autofocus('openid_url');
99     }
100
101     function title()
102     {
103         // TRANS: OpenID plugin message. Title.
104         return _m('OpenID Login');
105     }
106
107     function showForm($error=null, $openid_url)
108     {
109         $this->error = $error;
110         $this->openid_url = $openid_url;
111         $this->showPage();
112     }
113
114     function showContent() {
115         $formaction = common_local_url('openidlogin');
116         $this->elementStart('form', array('method' => 'post',
117                                            'id' => 'form_openid_login',
118                                            'class' => 'form_settings',
119                                            'action' => $formaction));
120         $this->elementStart('fieldset');
121         // TRANS: OpenID plugin logon form legend.
122         $this->element('legend', null, _m('OpenID login'));
123         $this->hidden('token', common_session_token());
124
125         $this->elementStart('ul', 'form_data');
126         $this->elementStart('li');
127         // TRANS: OpenID plugin logon form field label.
128         $this->input('openid_url', _m('OpenID URL'),
129                      $this->openid_url,
130                      // TRANS: OpenID plugin logon form field instructions.
131                      _m('Your OpenID URL'));
132         $this->elementEnd('li');
133         $this->elementStart('li', array('id' => 'settings_rememberme'));
134         // TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie.
135         $this->checkbox('rememberme', _m('Remember me'), false,
136                         // TRANS: OpenID plugin logon form field instructions.
137                         _m('Automatically login in the future; ' .
138                            'not for shared computers!'));
139         $this->elementEnd('li');
140         $this->elementEnd('ul');
141         // TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form.
142         $this->submit('submit', _m('BUTTON', 'Login'));
143         $this->elementEnd('fieldset');
144         $this->elementEnd('form');
145     }
146
147     function showLocalNav()
148     {
149         $nav = new LoginGroupNav($this);
150         $nav->show();
151     }
152 }