]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OpenID/finishopenidlogin.php
Merge branch 'master' into 0.9.x
[quix0rs-gnu-social.git] / plugins / OpenID / finishopenidlogin.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')) {
21     exit(1);
22 }
23
24 require_once INSTALLDIR.'/plugins/OpenID/openid.php';
25
26 class FinishopenidloginAction extends Action
27 {
28     var $error = null;
29     var $username = null;
30     var $message = null;
31
32     function handle($args)
33     {
34         parent::handle($args);
35         if (common_is_real_login()) {
36             // TRANS: Client error message trying to log on with OpenID while already logged on.
37             $this->clientError(_m('Already logged in.'));
38         } else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
39             $token = $this->trimmed('token');
40             if (!$token || $token != common_session_token()) {
41                 // TRANS: Message given when there is a problem with the user's session token.
42                 $this->showForm(_m('There was a problem with your session token. Try again, please.'));
43                 return;
44             }
45             if ($this->arg('create')) {
46                 if (!$this->boolean('license')) {
47                     // TRANS: Message given if user does not agree with the site's license.
48                     $this->showForm(_m('You can\'t register if you don\'t agree to the license.'),
49                                     $this->trimmed('newname'));
50                     return;
51                 }
52                 $this->createNewUser();
53             } else if ($this->arg('connect')) {
54                 $this->connectUser();
55             } else {
56                 // TRANS: Messag given on an unknown error.
57                 $this->showForm(_m('An unknown error has occured.'),
58                                 $this->trimmed('newname'));
59             }
60         } else {
61             $this->tryLogin();
62         }
63     }
64
65     function showPageNotice()
66     {
67         if ($this->error) {
68             $this->element('div', array('class' => 'error'), $this->error);
69         } else {
70             $this->element('div', 'instructions',
71                            // TRANS: Instructions given after a first successful logon using OpenID.
72                            // TRANS: %s is the site name.
73                            sprintf(_m('This is the first time you\'ve logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one.'), common_config('site', 'name')));
74         }
75     }
76
77     function title()
78     {
79         // TRANS: Title
80         return _m('OpenID Account Setup');
81     }
82
83     function showForm($error=null, $username=null)
84     {
85         $this->error = $error;
86         $this->username = $username;
87
88         $this->showPage();
89     }
90
91     /**
92      * @fixme much of this duplicates core code, which is very fragile.
93      * Should probably be replaced with an extensible mini version of
94      * the core registration form.
95      */
96     function showContent()
97     {
98         if (!empty($this->message_text)) {
99             $this->element('div', array('class' => 'error'), $this->message_text);
100             return;
101         }
102
103         // We don't recognize this OpenID, so we're going to give the user
104         // two options, each in its own mini-form.
105         //
106         // First, they can create a new account using their OpenID auth
107         // info. The profile will be pre-populated with whatever name,
108         // email, and location we can get from the OpenID provider, so
109         // all we ask for is the license confirmation.
110         $this->elementStart('form', array('method' => 'post',
111                                           'id' => 'account_create',
112                                           'class' => 'form_settings',
113                                           'action' => common_local_url('finishopenidlogin')));
114         $this->hidden('token', common_session_token());
115         $this->elementStart('fieldset', array('id' => 'form_openid_createaccount'));
116         $this->element('legend', null,
117                        _m('Create new account'));
118         $this->element('p', null,
119                        _m('Create a new user with this nickname.'));
120         $this->elementStart('ul', 'form_data');
121         $this->elementStart('li');
122         $this->input('newname', _m('New nickname'),
123                      ($this->username) ? $this->username : '',
124                      _m('1-64 lowercase letters or numbers, no punctuation or spaces'));
125         $this->elementEnd('li');
126         $this->elementStart('li');
127         $this->element('input', array('type' => 'checkbox',
128                                       'id' => 'license',
129                                       'class' => 'checkbox',
130                                       'name' => 'license',
131                                       'value' => 'true'));
132         $this->elementStart('label', array('for' => 'license',
133                                           'class' => 'checkbox'));
134         // TRANS: OpenID plugin link text.
135         // TRANS: %s is a link to a licese with the license name as link text.
136         $message = _('My text and files are available under %s ' .
137                      'except this private data: password, ' .
138                      'email address, IM address, and phone number.');
139         $link = '<a href="' .
140                 htmlspecialchars(common_config('license', 'url')) .
141                 '">' .
142                 htmlspecialchars(common_config('license', 'title')) .
143                 '</a>';
144         $this->raw(sprintf(htmlspecialchars($message), $link));
145         $this->elementEnd('label');
146         $this->elementEnd('li');
147         $this->elementEnd('ul');
148         // TRANS: Button label in form in which to create a new user on the site for an OpenID.
149         $this->submit('create', _m('BUTTON', 'Create'));
150         $this->elementEnd('fieldset');
151         $this->elementEnd('form');
152
153         // The second option is to attach this OpenID to an existing account
154         // on the local system, which they need to provide a password for.
155         $this->elementStart('form', array('method' => 'post',
156                                           'id' => 'account_connect',
157                                           'class' => 'form_settings',
158                                           'action' => common_local_url('finishopenidlogin')));
159         $this->hidden('token', common_session_token());
160         $this->elementStart('fieldset', array('id' => 'form_openid_createaccount'));
161         $this->element('legend', null,
162                        // TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site.
163                        _m('Connect existing account'));
164         $this->element('p', null,
165                        // TRANS: User instructions for form in which to connect an OpenID to an existing user on the site.
166                        _m('If you already have an account, login with your username and password to connect it to your OpenID.'));
167         $this->elementStart('ul', 'form_data');
168         $this->elementStart('li');
169         // TRANS: Field label in form in which to connect an OpenID to an existing user on the site.
170         $this->input('nickname', _m('Existing nickname'));
171         $this->elementEnd('li');
172         $this->elementStart('li');
173         // TRANS: Field label in form in which to connect an OpenID to an existing user on the site.
174         $this->password('password', _m('Password'));
175         $this->elementEnd('li');
176         $this->elementEnd('ul');
177         // TRANS: Button label in form in which to connect an OpenID to an existing user on the site.
178         $this->submit('connect', _m('BUTTON', 'Connect'));
179         $this->elementEnd('fieldset');
180         $this->elementEnd('form');
181     }
182
183     function tryLogin()
184     {
185         $consumer = oid_consumer();
186
187         $response = $consumer->complete(common_local_url('finishopenidlogin'));
188
189         if ($response->status == Auth_OpenID_CANCEL) {
190             // TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled.
191             $this->message(_m('OpenID authentication cancelled.'));
192             return;
193         } else if ($response->status == Auth_OpenID_FAILURE) {
194             // TRANS: OpenID authentication failed; display the error message. %s is the error message.
195             $this->message(sprintf(_m('OpenID authentication failed: %s'), $response->message));
196         } else if ($response->status == Auth_OpenID_SUCCESS) {
197             // This means the authentication succeeded; extract the
198             // identity URL and Simple Registration data (if it was
199             // returned).
200             $display = $response->getDisplayIdentifier();
201             $canonical = ($response->endpoint->canonicalID) ?
202               $response->endpoint->canonicalID : $response->getDisplayIdentifier();
203
204             oid_assert_allowed($display);
205             oid_assert_allowed($canonical);
206
207             $sreg_resp = Auth_OpenID_SRegResponse::fromSuccessResponse($response);
208
209             if ($sreg_resp) {
210                 $sreg = $sreg_resp->contents();
211             }
212
213             // Launchpad teams extension
214             if (!oid_check_teams($response)) {
215                 $this->message(_m('OpenID authentication aborted: you are not allowed to login to this site.'));
216                 return;
217             }
218
219             $user = oid_get_user($canonical);
220
221             if ($user) {
222                 oid_set_last($display);
223                 # XXX: commented out at @edd's request until better
224                 # control over how data flows from OpenID provider.
225                 # oid_update_user($user, $sreg);
226                 common_set_user($user);
227                 common_real_login(true);
228                 if (isset($_SESSION['openid_rememberme']) && $_SESSION['openid_rememberme']) {
229                     common_rememberme($user);
230                 }
231                 unset($_SESSION['openid_rememberme']);
232                 $this->goHome($user->nickname);
233             } else {
234                 $this->saveValues($display, $canonical, $sreg);
235                 $this->showForm(null, $this->bestNewNickname($display, $sreg));
236             }
237         }
238     }
239
240     function message($msg)
241     {
242         $this->message_text = $msg;
243         $this->showPage();
244     }
245
246     function saveValues($display, $canonical, $sreg)
247     {
248         common_ensure_session();
249         $_SESSION['openid_display'] = $display;
250         $_SESSION['openid_canonical'] = $canonical;
251         $_SESSION['openid_sreg'] = $sreg;
252     }
253
254     function getSavedValues()
255     {
256         return array($_SESSION['openid_display'],
257                      $_SESSION['openid_canonical'],
258                      $_SESSION['openid_sreg']);
259     }
260
261     function createNewUser()
262     {
263         # FIXME: save invite code before redirect, and check here
264
265         if (!Event::handle('StartRegistrationTry', array($this))) {
266             return;
267         }
268
269         if (common_config('site', 'closed')) {
270             // TRANS: OpenID plugin message. No new user registration is allowed on the site.
271             $this->clientError(_m('Registration not allowed.'));
272             return;
273         }
274
275         $invite = null;
276
277         if (common_config('site', 'inviteonly')) {
278             $code = $_SESSION['invitecode'];
279             if (empty($code)) {
280                 // TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided.
281                 $this->clientError(_m('Registration not allowed.'));
282                 return;
283             }
284
285             $invite = Invitation::staticGet($code);
286
287             if (empty($invite)) {
288                 // TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid.
289                 $this->clientError(_m('Not a valid invitation code.'));
290                 return;
291             }
292         }
293
294         try {
295             $nickname = Nickname::normalize($this->trimmed('newname'));
296         } catch (NicknameException $e) {
297             $this->showForm($e->getMessage());
298             return;
299         }
300
301         if (!User::allowed_nickname($nickname)) {
302             // TRANS: OpenID plugin message. The entered new user name is blacklisted.
303             $this->showForm(_m('Nickname not allowed.'));
304             return;
305         }
306
307         if (User::staticGet('nickname', $nickname)) {
308             // TRANS: OpenID plugin message. The entered new user name is already used.
309             $this->showForm(_m('Nickname already in use. Try another one.'));
310             return;
311         }
312
313         list($display, $canonical, $sreg) = $this->getSavedValues();
314
315         if (!$display || !$canonical) {
316             // TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved.
317             $this->serverError(_m('Stored OpenID not found.'));
318             return;
319         }
320
321         # Possible race condition... let's be paranoid
322
323         $other = oid_get_user($canonical);
324
325         if ($other) {
326             // TRANS: OpenID plugin server error.
327             $this->serverError(_m('Creating new account for OpenID that already has a user.'));
328             return;
329         }
330
331         Event::handle('StartOpenIDCreateNewUser', array($canonical, &$sreg));
332
333         $location = '';
334         if (!empty($sreg['country'])) {
335             if ($sreg['postcode']) {
336                 # XXX: use postcode to get city and region
337                 # XXX: also, store postcode somewhere -- it's valuable!
338                 $location = $sreg['postcode'] . ', ' . $sreg['country'];
339             } else {
340                 $location = $sreg['country'];
341             }
342         }
343
344         if (!empty($sreg['fullname']) && mb_strlen($sreg['fullname']) <= 255) {
345             $fullname = $sreg['fullname'];
346         } else {
347             $fullname = '';
348         }
349
350         if (!empty($sreg['email']) && Validate::email($sreg['email'], common_config('email', 'check_domain'))) {
351             $email = $sreg['email'];
352         } else {
353             $email = '';
354         }
355
356         # XXX: add language
357         # XXX: add timezone
358
359         $args = array('nickname' => $nickname,
360                       'email' => $email,
361                       'fullname' => $fullname,
362                       'location' => $location);
363
364         if (!empty($invite)) {
365             $args['code'] = $invite->code;
366         }
367
368         $user = User::register($args);
369
370         $result = oid_link_user($user->id, $canonical, $display);
371
372         Event::handle('EndOpenIDCreateNewUser', array($user, $canonical, $sreg));
373
374         oid_set_last($display);
375         common_set_user($user);
376         common_real_login(true);
377         if (isset($_SESSION['openid_rememberme']) && $_SESSION['openid_rememberme']) {
378             common_rememberme($user);
379         }
380         unset($_SESSION['openid_rememberme']);
381
382         Event::handle('EndRegistrationTry', array($this));
383
384         common_redirect(common_local_url('showstream', array('nickname' => $user->nickname)),
385                         303);
386     }
387
388     function connectUser()
389     {
390         $nickname = $this->trimmed('nickname');
391         $password = $this->trimmed('password');
392
393         if (!common_check_user($nickname, $password)) {
394             // TRANS: OpenID plugin message.
395             $this->showForm(_m('Invalid username or password.'));
396             return;
397         }
398
399         # They're legit!
400
401         $user = User::staticGet('nickname', $nickname);
402
403         list($display, $canonical, $sreg) = $this->getSavedValues();
404
405         if (!$display || !$canonical) {
406             // TRANS: OpenID plugin server error. A stored OpenID cannot be found.
407             $this->serverError(_m('Stored OpenID not found.'));
408             return;
409         }
410
411         $result = oid_link_user($user->id, $canonical, $display);
412
413         if (!$result) {
414             // TRANS: OpenID plugin server error. The user or user profile could not be saved.
415             $this->serverError(_m('Error connecting user to OpenID.'));
416             return;
417         }
418
419         if (Event::handle('StartOpenIDUpdateUser', array($user, $canonical, &$sreg))) {
420             oid_update_user($user, $sreg);
421         }
422         Event::handle('EndOpenIDUpdateUser', array($user, $canonical, $sreg));
423
424         oid_set_last($display);
425         common_set_user($user);
426         common_real_login(true);
427         if (isset($_SESSION['openid_rememberme']) && $_SESSION['openid_rememberme']) {
428             common_rememberme($user);
429         }
430         unset($_SESSION['openid_rememberme']);
431         $this->goHome($user->nickname);
432     }
433
434     function goHome($nickname)
435     {
436         $url = common_get_returnto();
437         if ($url) {
438             # We don't have to return to it again
439             common_set_returnto(null);
440             $url = common_inject_session($url);
441         } else {
442             $url = common_local_url('all',
443                                     array('nickname' =>
444                                           $nickname));
445         }
446         common_redirect($url, 303);
447     }
448
449     function bestNewNickname($display, $sreg)
450     {
451
452         # Try the passed-in nickname
453
454         if (!empty($sreg['nickname'])) {
455             $nickname = $this->nicknamize($sreg['nickname']);
456             if ($this->isNewNickname($nickname)) {
457                 return $nickname;
458             }
459         }
460
461         # Try the full name
462
463         if (!empty($sreg['fullname'])) {
464             $fullname = $this->nicknamize($sreg['fullname']);
465             if ($this->isNewNickname($fullname)) {
466                 return $fullname;
467             }
468         }
469
470         # Try the URL
471
472         $from_url = $this->openidToNickname($display);
473
474         if ($from_url && $this->isNewNickname($from_url)) {
475             return $from_url;
476         }
477
478         # XXX: others?
479
480         return null;
481     }
482
483     function isNewNickname($str)
484     {
485         if (!Nickname::isValid($str)) {
486             return false;
487         }
488         if (!User::allowed_nickname($str)) {
489             return false;
490         }
491         if (User::staticGet('nickname', $str)) {
492             return false;
493         }
494         return true;
495     }
496
497     function openidToNickname($openid)
498     {
499         if (Auth_Yadis_identifierScheme($openid) == 'XRI') {
500             return $this->xriToNickname($openid);
501         } else {
502             return $this->urlToNickname($openid);
503         }
504     }
505
506     # We try to use an OpenID URL as a legal StatusNet user name in this order
507     # 1. Plain hostname, like http://evanp.myopenid.com/
508     # 2. One element in path, like http://profile.typekey.com/EvanProdromou/
509     #    or http://getopenid.com/evanprodromou
510
511     function urlToNickname($openid)
512     {
513         return common_url_to_nickname($openid);
514     }
515
516     function xriToNickname($xri)
517     {
518         $base = $this->xriBase($xri);
519
520         if (!$base) {
521             return null;
522         } else {
523             # =evan.prodromou
524             # or @gratis*evan.prodromou
525             $parts = explode('*', substr($base, 1));
526             return $this->nicknamize(array_pop($parts));
527         }
528     }
529
530     function xriBase($xri)
531     {
532         if (substr($xri, 0, 6) == 'xri://') {
533             return substr($xri, 6);
534         } else {
535             return $xri;
536         }
537     }
538
539     # Given a string, try to make it work as a nickname
540
541     function nicknamize($str)
542     {
543         return common_nicknamize($str);
544     }
545 }