]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/TwitterBridge/twitter.php
remove require_once for disappeared TwitterBasicAuthClient
[quix0rs-gnu-social.git] / plugins / TwitterBridge / twitter.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008-2010 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')) {
21     exit(1);
22 }
23
24 define('TWITTER_SERVICE', 1); // Twitter is foreign_service ID 1
25
26 require_once INSTALLDIR . '/plugins/TwitterBridge/twitteroauthclient.php';
27
28 function add_twitter_user($twitter_id, $screen_name)
29 {
30     // Clear out any bad old foreign_users with the new user's legit URL
31     // This can happen when users move around or fakester accounts get
32     // repoed, and things like that.
33
34     $luser = Foreign_user::getForeignUser($twitter_id, TWITTER_SERVICE);
35
36     if (!empty($luser)) {
37         $result = $luser->delete();
38         if ($result != false) {
39             common_log(
40                 LOG_INFO,
41                 "Twitter bridge - removed old Twitter user: $screen_name ($twitter_id)."
42             );
43         }
44     }
45
46     $fuser = new Foreign_user();
47
48     $fuser->nickname = $screen_name;
49     $fuser->uri = 'http://twitter.com/' . $screen_name;
50     $fuser->id = $twitter_id;
51     $fuser->service = TWITTER_SERVICE;
52     $fuser->created = common_sql_now();
53     $result = $fuser->insert();
54
55     if (empty($result)) {
56         common_log(LOG_WARNING,
57             "Twitter bridge - failed to add new Twitter user: $twitter_id - $screen_name.");
58         common_log_db_error($fuser, 'INSERT', __FILE__);
59     } else {
60         common_log(LOG_INFO,
61                    "Twitter bridge - Added new Twitter user: $screen_name ($twitter_id).");
62     }
63
64     return $result;
65 }
66
67 // Creates or Updates a Twitter user
68 function save_twitter_user($twitter_id, $screen_name)
69 {
70     // Check to see whether the Twitter user is already in the system,
71     // and update its screen name and uri if so.
72
73     $fuser = Foreign_user::getForeignUser($twitter_id, TWITTER_SERVICE);
74
75     if (!empty($fuser)) {
76
77         // Delete old record if Twitter user changed screen name
78
79         if ($fuser->nickname != $screen_name) {
80             $oldname = $fuser->nickname;
81             $fuser->delete();
82             common_log(LOG_INFO, sprintf('Twitter bridge - Updated nickname (and URI) ' .
83                                          'for Twitter user %1$d - %2$s, was %3$s.',
84                                          $fuser->id,
85                                          $screen_name,
86                                          $oldname));
87         }
88
89     } else {
90
91         // Kill any old, invalid records for this screen name
92
93         $fuser = Foreign_user::getByNickname($screen_name, TWITTER_SERVICE);
94
95         if (!empty($fuser)) {
96             $fuser->delete();
97             common_log(
98                 LOG_INFO,
99                 sprintf(
100                     'Twitter bridge - deteted old record for Twitter ' .
101                     'screen name "%s" belonging to Twitter ID %d.',
102                     $screen_name,
103                     $fuser->id
104                 )
105             );
106         }
107     }
108
109     return add_twitter_user($twitter_id, $screen_name);
110 }
111
112 function is_twitter_bound($notice, $flink) {
113
114     // Check to see if notice should go to Twitter
115     if (!empty($flink) && ($flink->noticesync & FOREIGN_NOTICE_SEND)) {
116
117         // If it's not a Twitter-style reply, or if the user WANTS to send replies,
118         // or if it's in reply to a twitter notice
119
120         if (!preg_match('/^@[a-zA-Z0-9_]{1,15}\b/u', $notice->content) ||
121             ($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) ||
122             is_twitter_notice($notice->reply_to)) {
123             return true;
124         }
125     }
126
127     return false;
128 }
129
130 function is_twitter_notice($id)
131 {
132     $notice = Notice::staticGet('id', $id);
133
134     if (empty($notice)) {
135         // it's not any kind of notice, so it's definitely not a Twitter notice.
136         return false;
137     }
138
139     return ($notice->source == 'twitter');
140 }
141
142 function broadcast_twitter($notice)
143 {
144     $flink = Foreign_link::getByUserID($notice->profile_id,
145                                        TWITTER_SERVICE);
146
147     // Don't bother with basic auth, since it's no longer allowed
148
149     if (!empty($flink) && TwitterOAuthClient::isPackedToken($flink->credentials)) {
150         if (!empty($notice->repeat_of) && is_twitter_notice($notice->repeat_of)) {
151             return retweet_notice($flink, Notice::staticGet('id', $notice->repeat_of));
152         } else if (is_twitter_bound($notice, $flink)) {
153             return broadcast_oauth($notice, $flink);
154         }
155     }
156
157     return true;
158 }
159
160 function retweet_notice($flink, $notice)
161 {
162     $token = TwitterOAuthClient::unpackToken($flink->credentials);
163     $client = new TwitterOAuthClient($token->key, $token->secret);
164
165     $id = twitter_status_id($notice);
166
167     try {
168         $status = $client->statusesRetweet($id);
169     } catch (OAuthClientException $e) {
170         return process_error($e, $flink, $notice);
171     }
172 }
173
174 function twitter_status_id($notice)
175 {
176     if ($notice->source == 'twitter' &&
177         preg_match('#^http://twitter.com/[\w_.]+/status/(\d+)$#', $notice->uri, $match)) {
178         return $match[1];
179     }
180
181     return null;
182 }
183
184 /**
185  * Pull any extra information from a notice that we should transfer over
186  * to Twitter beyond the notice text itself.
187  *
188  * @param Notice $notice
189  * @return array of key-value pairs for Twitter update submission
190  * @access private
191  */
192 function twitter_update_params($notice)
193 {
194     $params = array();
195     if ($notice->lat || $notice->lon) {
196         $params['lat'] = $notice->lat;
197         $params['long'] = $notice->lon;
198     }
199     return $params;
200 }
201
202 function broadcast_oauth($notice, $flink) {
203     $user = $flink->getUser();
204     $statustxt = format_status($notice);
205     $params = twitter_update_params($notice);
206
207     $token = TwitterOAuthClient::unpackToken($flink->credentials);
208     $client = new TwitterOAuthClient($token->key, $token->secret);
209     $status = null;
210
211     try {
212         $status = $client->statusesUpdate($statustxt, $params);
213     } catch (OAuthClientException $e) {
214         return process_error($e, $flink, $notice);
215     }
216
217     if (empty($status)) {
218
219         // This could represent a failure posting,
220         // or the Twitter API might just be behaving flakey.
221
222         $errmsg = sprintf('Twitter bridge - No data returned by Twitter API when ' .
223                           'trying to post notice %d for User %s (user id %d).',
224                           $notice->id,
225                           $user->nickname,
226                           $user->id);
227
228         common_log(LOG_WARNING, $errmsg);
229
230         return false;
231     }
232
233     // Notice crossed the great divide
234
235     $msg = sprintf('Twitter bridge - posted notice %d to Twitter using ' .
236                    'OAuth for User %s (user id %d).',
237                    $notice->id,
238                    $user->nickname,
239                    $user->id);
240
241     common_log(LOG_INFO, $msg);
242
243     return true;
244 }
245
246 function process_error($e, $flink, $notice)
247 {
248     $user = $flink->getUser();
249     $code = $e->getCode();
250
251     $logmsg = sprintf('Twitter bridge - %d posting notice %d for ' .
252                       'User %s (user id: %d): %s.',
253                       $code,
254                       $notice->id,
255                       $user->nickname,
256                       $user->id,
257                       $e->getMessage());
258
259     common_log(LOG_WARNING, $logmsg);
260
261     switch($code) {
262      case 401:
263         // Probably a revoked or otherwise bad access token - nuke!
264         remove_twitter_link($flink);
265         return true;
266         break;
267      case 403:
268         // User has exceeder her rate limit -- toss the notice
269         return true;
270         break;
271      default:
272
273         // For every other case, it's probably some flakiness so try
274         // sending the notice again later (requeue).
275
276         return false;
277         break;
278     }
279 }
280
281 function format_status($notice)
282 {
283     // XXX: Hack to get around PHP cURL's use of @ being a a meta character
284     $statustxt = preg_replace('/^@/', ' @', $notice->content);
285
286     // Convert !groups to #hashes
287
288     // XXX: Make this an optional setting?
289
290     $statustxt = preg_replace('/(^|\s)!([A-Za-z0-9]{1,64})/', "\\1#\\2", $statustxt);
291
292     if (mb_strlen($statustxt) > 140) {
293         $noticeUrl = common_shorten_url($notice->uri);
294         $urlLen = mb_strlen($noticeUrl);
295         $statustxt = mb_substr($statustxt, 0, 140 - ($urlLen + 3)) . ' … ' . $noticeUrl;
296     }
297
298     return $statustxt;
299 }
300
301 function remove_twitter_link($flink)
302 {
303     $user = $flink->getUser();
304
305     common_log(LOG_INFO, 'Removing Twitter bridge Foreign link for ' .
306                "user $user->nickname (user id: $user->id).");
307
308     $result = $flink->safeDelete();
309
310     if (empty($result)) {
311         common_log(LOG_ERR, 'Could not remove Twitter bridge ' .
312                    "Foreign_link for $user->nickname (user id: $user->id)!");
313         common_log_db_error($flink, 'DELETE', __FILE__);
314     }
315
316     // Notify the user that her Twitter bridge is down
317
318     if (isset($user->email)) {
319
320         $result = mail_twitter_bridge_removed($user);
321
322         if (!$result) {
323
324             $msg = 'Unable to send email to notify ' .
325               "$user->nickname (user id: $user->id) " .
326               'that their Twitter bridge link was ' .
327               'removed!';
328
329             common_log(LOG_WARNING, $msg);
330         }
331     }
332
333 }
334
335 /**
336  * Send a mail message to notify a user that her Twitter bridge link
337  * has stopped working, and therefore has been removed.  This can
338  * happen when the user changes her Twitter password, or otherwise
339  * revokes access.
340  *
341  * @param User $user   user whose Twitter bridge link has been removed
342  *
343  * @return boolean success flag
344  */
345
346 function mail_twitter_bridge_removed($user)
347 {
348     $profile = $user->getProfile();
349
350     common_switch_locale($user->language);
351
352     $subject = sprintf(_m('Your Twitter bridge has been disabled.'));
353
354     $site_name = common_config('site', 'name');
355
356     $body = sprintf(_m('Hi, %1$s. We\'re sorry to inform you that your ' .
357         'link to Twitter has been disabled. We no longer seem to have ' .
358     'permission to update your Twitter status. (Did you revoke ' .
359     '%3$s\'s access?)' . "\n\n" .
360     'You can re-enable your Twitter bridge by visiting your ' .
361     "Twitter settings page:\n\n\t%2\$s\n\n" .
362         "Regards,\n%3\$s\n"),
363         $profile->getBestName(),
364         common_local_url('twittersettings'),
365         common_config('site', 'name'));
366
367     common_switch_locale();
368     return mail_to_user($user, $subject, $body);
369 }
370