]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/TwitterBridge/twitterauthorization.php
Better logging for Twitter bridge account linking process
[quix0rs-gnu-social.git] / plugins / TwitterBridge / twitterauthorization.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Class for doing OAuth authentication against Twitter
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Plugin
23  * @package   StatusNet
24  * @author    Zach Copley <zach@status.net>
25  * @author    Julien C <chaumond@gmail.com>
26  * @copyright 2009-2010 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
32     exit(1);
33 }
34
35 require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php';
36
37 /**
38  * Class for doing OAuth authentication against Twitter
39  *
40  * Peforms the OAuth "dance" between StatusNet and Twitter -- requests a token,
41  * authorizes it, and exchanges it for an access token.  It also creates a link
42  * (Foreign_link) between the StatusNet user and Twitter user and stores the
43  * access token and secret in the link.
44  *
45  * @category Plugin
46  * @package  StatusNet
47  * @author   Zach Copley <zach@status.net>
48  * @author   Julien C <chaumond@gmail.com>
49  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
50  * @link     http://laconi.ca/
51  *
52  */
53 class TwitterauthorizationAction extends Action
54 {
55     var $twuid        = null;
56     var $tw_fields    = null;
57     var $access_token = null;
58     var $signin       = null;
59     var $verifier     = null;
60
61     /**
62      * Initialize class members. Looks for 'oauth_token' parameter.
63      *
64      * @param array $args misc. arguments
65      *
66      * @return boolean true
67      */
68     function prepare($args)
69     {
70         parent::prepare($args);
71
72         $this->signin      = $this->boolean('signin');
73         $this->oauth_token = $this->arg('oauth_token');
74         $this->verifier    = $this->arg('oauth_verifier');
75
76         return true;
77     }
78
79     /**
80      * Handler method
81      *
82      * @param array $args is ignored since it's now passed in in prepare()
83      *
84      * @return nothing
85      */
86     function handle($args)
87     {
88         parent::handle($args);
89
90         if (common_logged_in()) {
91             $user  = common_current_user();
92             $flink = Foreign_link::getByUserID($user->id, TWITTER_SERVICE);
93
94             // If there's already a foreign link record and a foreign user
95             // it means the accounts are already linked, and this is unecessary.
96             // So go back.
97
98             if (isset($flink)) {
99                 $fuser = $flink->getForeignUser();
100                 if (!empty($fuser)) {
101                     common_redirect(common_local_url('twittersettings'));
102                 }
103             }
104         }
105
106         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
107
108             // User was not logged in to StatusNet before
109
110             $this->twuid = $this->trimmed('twuid');
111
112             $this->tw_fields = array('screen_name' => $this->trimmed('tw_fields_screen_name'),
113                                      'fullname' => $this->trimmed('tw_fields_fullname'));
114
115             $this->access_token = new OAuthToken($this->trimmed('access_token_key'), $this->trimmed('access_token_secret'));
116
117             $token = $this->trimmed('token');
118
119             if (!$token || $token != common_session_token()) {
120                 $this->showForm(_('There was a problem with your session token. Try again, please.'));
121                 return;
122             }
123
124             if ($this->arg('create')) {
125                 if (!$this->boolean('license')) {
126                     $this->showForm(_('You can\'t register if you don\'t agree to the license.'),
127                                     $this->trimmed('newname'));
128                     return;
129                 }
130                 $this->createNewUser();
131             } else if ($this->arg('connect')) {
132                 $this->connectNewUser();
133             } else {
134                 common_debug('Twitter bridge - ' . print_r($this->args, true));
135                 $this->showForm(_('Something weird happened.'),
136                                 $this->trimmed('newname'));
137             }
138         } else {
139             // $this->oauth_token is only populated once Twitter authorizes our
140             // request token. If it's empty we're at the beginning of the auth
141             // process
142
143             if (empty($this->oauth_token)) {
144                 $this->authorizeRequestToken();
145             } else {
146                 $this->saveAccessToken();
147             }
148         }
149     }
150
151     /**
152      * Asks Twitter for a request token, and then redirects to Twitter
153      * to authorize it.
154      *
155      * @return nothing
156      */
157     function authorizeRequestToken()
158     {
159         try {
160
161             // Get a new request token and authorize it
162
163             $client  = new TwitterOAuthClient();
164             $req_tok = $client->getRequestToken();
165
166             // Sock the request token away in the session temporarily
167
168             $_SESSION['twitter_request_token']        = $req_tok->key;
169             $_SESSION['twitter_request_token_secret'] = $req_tok->secret;
170
171             $auth_link = $client->getAuthorizeLink($req_tok, $this->signin);
172
173         } catch (OAuthClientException $e) {
174             $msg = sprintf(
175                 'OAuth client error - code: %1s, msg: %2s',
176                 $e->getCode(),
177                 $e->getMessage()
178             );
179             common_log(LOG_INFO, 'Twitter bridge - ' . $msg);
180             $this->serverError(
181                 _m('Couldn\'t link your Twitter account: ') . $e->getMessage()
182             );
183         }
184
185         common_redirect($auth_link);
186     }
187
188     /**
189      * Called when Twitter returns an authorized request token. Exchanges
190      * it for an access token and stores it.
191      *
192      * @return nothing
193      */
194     function saveAccessToken()
195     {
196         // Check to make sure Twitter returned the same request
197         // token we sent them
198
199         if ($_SESSION['twitter_request_token'] != $this->oauth_token) {
200             $this->serverError(
201                 _m('Couldn\'t link your Twitter account: oauth_token mismatch.')
202             );
203         }
204
205         $twitter_user = null;
206
207         try {
208
209             $client = new TwitterOAuthClient($_SESSION['twitter_request_token'],
210                 $_SESSION['twitter_request_token_secret']);
211
212             // Exchange the request token for an access token
213
214             $atok = $client->getAccessToken($this->verifier);
215
216             // Test the access token and get the user's Twitter info
217
218             $client       = new TwitterOAuthClient($atok->key, $atok->secret);
219             $twitter_user = $client->verifyCredentials();
220
221         } catch (OAuthClientException $e) {
222             $msg = sprintf(
223                 'OAuth client error - code: %1$s, msg: %2$s',
224                 $e->getCode(),
225                 $e->getMessage()
226             );
227             common_log(LOG_INFO, 'Twitter bridge - ' . $msg);
228             $this->serverError(
229                 _m('Couldn\'t link your Twitter account: ') . $e-getMessage()
230             );
231         }
232
233         if (common_logged_in()) {
234
235             // Save the access token and Twitter user info
236
237             $user = common_current_user();
238             $this->saveForeignLink($user->id, $twitter_user->id, $atok);
239             save_twitter_user($twitter_user->id, $twitter_user->screen_name);
240
241         } else {
242
243             $this->twuid = $twitter_user->id;
244             $this->tw_fields = array("screen_name" => $twitter_user->screen_name,
245                                      "name" => $twitter_user->name);
246             $this->access_token = $atok;
247             $this->tryLogin();
248         }
249
250         // Clean up the the mess we made in the session
251
252         unset($_SESSION['twitter_request_token']);
253         unset($_SESSION['twitter_request_token_secret']);
254
255         if (common_logged_in()) {
256             common_redirect(common_local_url('twittersettings'));
257         }
258     }
259
260     /**
261      * Saves a Foreign_link between Twitter user and local user,
262      * which includes the access token and secret.
263      *
264      * @param int        $user_id StatusNet user ID
265      * @param int        $twuid   Twitter user ID
266      * @param OAuthToken $token   the access token to save
267      *
268      * @return nothing
269      */
270     function saveForeignLink($user_id, $twuid, $access_token)
271     {
272         $flink = new Foreign_link();
273
274         $flink->user_id = $user_id;
275         $flink->service = TWITTER_SERVICE;
276         $flink->delete(); // delete stale flink, if any
277
278         $flink->user_id     = $user_id;
279         $flink->foreign_id  = $twuid;
280         $flink->service     = TWITTER_SERVICE;
281
282         $creds = TwitterOAuthClient::packToken($access_token);
283
284         $flink->credentials = $creds;
285         $flink->created     = common_sql_now();
286
287         // Defaults: noticesync on, everything else off
288
289         $flink->set_flags(true, false, false, false);
290
291         $flink_id = $flink->insert();
292
293         if (empty($flink_id)) {
294             common_log_db_error($flink, 'INSERT', __FILE__);
295                 $this->serverError(_('Couldn\'t link your Twitter account.'));
296         }
297
298         return $flink_id;
299     }
300
301     function showPageNotice()
302     {
303         if ($this->error) {
304             $this->element('div', array('class' => 'error'), $this->error);
305         } else {
306             $this->element('div', 'instructions',
307                            sprintf(_('This is the first time you\'ve logged into %s so we must connect your Twitter account 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')));
308         }
309     }
310
311     function title()
312     {
313         return _('Twitter Account Setup');
314     }
315
316     function showForm($error=null, $username=null)
317     {
318         $this->error = $error;
319         $this->username = $username;
320
321         $this->showPage();
322     }
323
324     function showPage()
325     {
326         parent::showPage();
327     }
328
329     function showContent()
330     {
331         if (!empty($this->message_text)) {
332             $this->element('p', null, $this->message);
333             return;
334         }
335
336         $this->elementStart('form', array('method' => 'post',
337                                           'id' => 'form_settings_twitter_connect',
338                                           'class' => 'form_settings',
339                                           'action' => common_local_url('twitterauthorization')));
340         $this->elementStart('fieldset', array('id' => 'settings_twitter_connect_options'));
341         $this->element('legend', null, _('Connection options'));
342         $this->elementStart('ul', 'form_data');
343         $this->elementStart('li');
344         $this->element('input', array('type' => 'checkbox',
345                                       'id' => 'license',
346                                       'class' => 'checkbox',
347                                       'name' => 'license',
348                                       'value' => 'true'));
349         $this->elementStart('label', array('class' => 'checkbox', 'for' => 'license'));
350         $this->text(_('My text and files are available under '));
351         $this->element('a', array('href' => common_config('license', 'url')),
352                        common_config('license', 'title'));
353         $this->text(_(' except this private data: password, email address, IM address, phone number.'));
354         $this->elementEnd('label');
355         $this->elementEnd('li');
356         $this->elementEnd('ul');
357         $this->hidden('access_token_key', $this->access_token->key);
358         $this->hidden('access_token_secret', $this->access_token->secret);
359         $this->hidden('twuid', $this->twuid);
360         $this->hidden('tw_fields_screen_name', $this->tw_fields['screen_name']);
361         $this->hidden('tw_fields_name', $this->tw_fields['name']);
362
363         $this->elementStart('fieldset');
364         $this->hidden('token', common_session_token());
365         $this->element('legend', null,
366                        _('Create new account'));
367         $this->element('p', null,
368                        _('Create a new user with this nickname.'));
369         $this->elementStart('ul', 'form_data');
370         $this->elementStart('li');
371         $this->input('newname', _('New nickname'),
372                      ($this->username) ? $this->username : '',
373                      _('1-64 lowercase letters or numbers, no punctuation or spaces'));
374         $this->elementEnd('li');
375         $this->elementEnd('ul');
376         $this->submit('create', _('Create'));
377         $this->elementEnd('fieldset');
378
379         $this->elementStart('fieldset');
380         $this->element('legend', null,
381                        _('Connect existing account'));
382         $this->element('p', null,
383                        _('If you already have an account, login with your username and password to connect it to your Twitter account.'));
384         $this->elementStart('ul', 'form_data');
385         $this->elementStart('li');
386         $this->input('nickname', _('Existing nickname'));
387         $this->elementEnd('li');
388         $this->elementStart('li');
389         $this->password('password', _('Password'));
390         $this->elementEnd('li');
391         $this->elementEnd('ul');
392         $this->submit('connect', _('Connect'));
393         $this->elementEnd('fieldset');
394
395         $this->elementEnd('fieldset');
396         $this->elementEnd('form');
397     }
398
399     function message($msg)
400     {
401         $this->message_text = $msg;
402         $this->showPage();
403     }
404
405     function createNewUser()
406     {
407         if (common_config('site', 'closed')) {
408             $this->clientError(_('Registration not allowed.'));
409             return;
410         }
411
412         $invite = null;
413
414         if (common_config('site', 'inviteonly')) {
415             $code = $_SESSION['invitecode'];
416             if (empty($code)) {
417                 $this->clientError(_('Registration not allowed.'));
418                 return;
419             }
420
421             $invite = Invitation::staticGet($code);
422
423             if (empty($invite)) {
424                 $this->clientError(_('Not a valid invitation code.'));
425                 return;
426             }
427         }
428
429         $nickname = $this->trimmed('newname');
430
431         if (!Validate::string($nickname, array('min_length' => 1,
432                                                'max_length' => 64,
433                                                'format' => NICKNAME_FMT))) {
434             $this->showForm(_('Nickname must have only lowercase letters and numbers and no spaces.'));
435             return;
436         }
437
438         if (!User::allowed_nickname($nickname)) {
439             $this->showForm(_('Nickname not allowed.'));
440             return;
441         }
442
443         if (User::staticGet('nickname', $nickname)) {
444             $this->showForm(_('Nickname already in use. Try another one.'));
445             return;
446         }
447
448         $fullname = trim($this->tw_fields['name']);
449
450         $args = array('nickname' => $nickname, 'fullname' => $fullname);
451
452         if (!empty($invite)) {
453             $args['code'] = $invite->code;
454         }
455
456         $user = User::register($args);
457
458         $result = $this->saveForeignLink($user->id,
459                                          $this->twuid,
460                                          $this->access_token);
461
462         save_twitter_user($this->twuid, $this->tw_fields['screen_name']);
463
464         if (!$result) {
465             $this->serverError(_('Error connecting user to Twitter.'));
466             return;
467         }
468
469         common_set_user($user);
470         common_real_login(true);
471
472         common_debug('TwitterBridge Plugin - ' .
473                      "Registered new user $user->id from Twitter user $this->twuid");
474
475         common_redirect(common_local_url('showstream', array('nickname' => $user->nickname)),
476                         303);
477     }
478
479     function connectNewUser()
480     {
481         $nickname = $this->trimmed('nickname');
482         $password = $this->trimmed('password');
483
484         if (!common_check_user($nickname, $password)) {
485             $this->showForm(_('Invalid username or password.'));
486             return;
487         }
488
489         $user = User::staticGet('nickname', $nickname);
490
491         if (!empty($user)) {
492             common_debug('TwitterBridge Plugin - ' .
493                          "Legit user to connect to Twitter: $nickname");
494         }
495
496         $result = $this->saveForeignLink($user->id,
497                                          $this->twuid,
498                                          $this->access_token);
499
500         save_twitter_user($this->twuid, $this->tw_fields['screen_name']);
501
502         if (!$result) {
503             $this->serverError(_('Error connecting user to Twitter.'));
504             return;
505         }
506
507         common_debug('TwitterBridge Plugin - ' .
508                      "Connected Twitter user $this->twuid to local user $user->id");
509
510         common_set_user($user);
511         common_real_login(true);
512
513         $this->goHome($user->nickname);
514     }
515
516     function connectUser()
517     {
518         $user = common_current_user();
519
520         $result = $this->flinkUser($user->id, $this->twuid);
521
522         if (empty($result)) {
523             $this->serverError(_('Error connecting user to Twitter.'));
524             return;
525         }
526
527         common_debug('TwitterBridge Plugin - ' .
528                      "Connected Twitter user $this->twuid to local user $user->id");
529
530         // Return to Twitter connection settings tab
531         common_redirect(common_local_url('twittersettings'), 303);
532     }
533
534     function tryLogin()
535     {
536         common_debug('TwitterBridge Plugin - ' .
537                      "Trying login for Twitter user $this->twuid.");
538
539         $flink = Foreign_link::getByForeignID($this->twuid,
540                                               TWITTER_SERVICE);
541
542         if (!empty($flink)) {
543             $user = $flink->getUser();
544
545             if (!empty($user)) {
546
547                 common_debug('TwitterBridge Plugin - ' .
548                              "Logged in Twitter user $flink->foreign_id as user $user->id ($user->nickname)");
549
550                 common_set_user($user);
551                 common_real_login(true);
552                 $this->goHome($user->nickname);
553             }
554
555         } else {
556
557             common_debug('TwitterBridge Plugin - ' .
558                          "No flink found for twuid: $this->twuid - new user");
559
560             $this->showForm(null, $this->bestNewNickname());
561         }
562     }
563
564     function goHome($nickname)
565     {
566         $url = common_get_returnto();
567         if ($url) {
568             // We don't have to return to it again
569             common_set_returnto(null);
570         } else {
571             $url = common_local_url('all',
572                                     array('nickname' =>
573                                           $nickname));
574         }
575
576         common_redirect($url, 303);
577     }
578
579     function bestNewNickname()
580     {
581         if (!empty($this->tw_fields['name'])) {
582             $nickname = $this->nicknamize($this->tw_fields['name']);
583             if ($this->isNewNickname($nickname)) {
584                 return $nickname;
585             }
586         }
587
588         return null;
589     }
590
591      // Given a string, try to make it work as a nickname
592
593      function nicknamize($str)
594      {
595          $str = preg_replace('/\W/', '', $str);
596          $str = str_replace(array('-', '_'), '', $str);
597          return strtolower($str);
598      }
599
600     function isNewNickname($str)
601     {
602         if (!Validate::string($str, array('min_length' => 1,
603                                           'max_length' => 64,
604                                           'format' => NICKNAME_FMT))) {
605             return false;
606         }
607         if (!User::allowed_nickname($str)) {
608             return false;
609         }
610         if (User::staticGet('nickname', $str)) {
611             return false;
612         }
613         return true;
614     }
615
616 }
617