]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/TwitterBridge/lib/twitteroauthclient.php
Merge branch 'nightly' of git.gnu.io:gnu/gnu-social into nightly
[quix0rs-gnu-social.git] / plugins / TwitterBridge / lib / twitteroauthclient.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Class for doing OAuth calls 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  Integration
23  * @package   StatusNet
24  * @author    Zach Copley <zach@status.net>
25  * @copyright 2009-2010 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
31     exit(1);
32 }
33
34 /**
35  * Class for talking to the Twitter API with OAuth.
36  *
37  * @category Integration
38  * @package  StatusNet
39  * @author   Zach Copley <zach@status.net>
40  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
41  * @link     http://status.net/
42  *
43  */
44 class TwitterOAuthClient extends OAuthClient
45 {
46     public static $requestTokenURL = 'https://api.twitter.com/oauth/request_token';
47     public static $authorizeURL    = 'https://api.twitter.com/oauth/authorize';
48     public static $signinUrl       = 'https://api.twitter.com/oauth/authenticate';
49     public static $accessTokenURL  = 'https://api.twitter.com/oauth/access_token';
50
51     /**
52      * Constructor
53      *
54      * @param string $oauth_token        the user's token
55      * @param string $oauth_token_secret the user's token secret
56      *
57      * @return nothing
58      */
59     function __construct($oauth_token = null, $oauth_token_secret = null)
60     {
61         $consumer_key    = common_config('twitter', 'consumer_key');
62         $consumer_secret = common_config('twitter', 'consumer_secret');
63
64         if (empty($consumer_key) && empty($consumer_secret)) {
65             $consumer_key = common_config(
66                 'twitter',
67                 'global_consumer_key'
68             );
69             $consumer_secret = common_config(
70                 'twitter',
71                 'global_consumer_secret'
72             );
73         }
74
75         parent::__construct(
76             $consumer_key,
77             $consumer_secret,
78             $oauth_token,
79             $oauth_token_secret
80         );
81     }
82
83     // XXX: the following two functions are to support the horrible hack
84     // of using the credentils field in Foreign_link to store both
85     // the access token and token secret.  This hack should go away with
86     // 0.9, in which we can make DB changes and add a new column for the
87     // token itself.
88
89     static function packToken($token)
90     {
91         return implode(chr(0), array($token->key, $token->secret));
92     }
93
94     static function unpackToken($str)
95     {
96         $vals = explode(chr(0), $str);
97         return new OAuthToken($vals[0], $vals[1]);
98     }
99
100     static function isPackedToken($str)
101     {
102         if (strpos($str, chr(0)) === false) {
103             return false;
104         } else {
105             return true;
106         }
107     }
108
109     /**
110      * Gets a request token from Twitter
111      *
112      * @return OAuthToken $token the request token
113      */
114     function getRequestToken()
115     {
116         return parent::getRequestToken(
117             self::$requestTokenURL,
118             common_local_url('twitterauthorization')
119         );
120     }
121
122     /**
123      * Builds a link to Twitter's endpoint for authorizing a request token
124      *
125      * @param OAuthToken $request_token token to authorize
126      *
127      * @return the link
128      */
129     function getAuthorizeLink($request_token, $signin = false)
130     {
131         $url = ($signin) ? self::$signinUrl : self::$authorizeURL;
132
133         return parent::getAuthorizeLink($url,
134                                         $request_token,
135                                         common_local_url('twitterauthorization'));
136     }
137
138     /**
139      * Fetches an access token from Twitter
140      *
141      * @param string $verifier 1.0a verifier
142      *
143      * @return OAuthToken $token the access token
144      */
145     function getAccessToken($verifier = null)
146     {
147         return parent::getAccessToken(
148             self::$accessTokenURL,
149             $verifier
150         );
151     }
152
153     /**
154      * Calls Twitter's /account/verify_credentials API method
155      *
156      * @return mixed the Twitter user
157      */
158     function verifyCredentials()
159     {
160         $url          = 'https://api.twitter.com/1.1/account/verify_credentials.json';
161         $response     = $this->oAuthGet($url);
162         $twitter_user = json_decode($response);
163         return $twitter_user;
164     }
165
166     /**
167      * Calls Twitter's /statuses/update API method
168      *
169      * @param string $status  text of the status
170      * @param mixed  $params  optional other parameters to pass to Twitter,
171      *                        as defined. For back-compatibility, if an int
172      *                        is passed we'll consider it a reply-to ID.
173      *
174      * @return mixed the status
175      */
176     function statusesUpdate($status, $params=array())
177     {
178         $url      = 'https://api.twitter.com/1.1/statuses/update.json';
179         if (is_numeric($params)) {
180             $params = array('in_reply_to_status_id' => intval($params));
181         }
182         $params['status'] = $status;
183         // We don't have to pass 'source' as the oauth key is tied to an app.
184
185         $response = $this->oAuthPost($url, $params);
186         $status   = json_decode($response);
187         return $status;
188     }
189
190     /**
191      * Calls Twitter's /statuses/home_timeline API method
192      *
193      * @param int    $since_id    show statuses after this id
194      * @param string $timelineUri timeline to poll statuses from
195      * @param int    $max_id      show statuses before this id
196      * @param int    $cnt         number of statuses to show
197      * @param int    $page        page number
198      *
199      * @return mixed an array of statuses
200      */
201     function statusesTimeline($since_id = null, $timelineUri = 'home_timeline',
202                               $max_id = null, $cnt = 200, $page = null)
203     {
204         $url    = 'https://api.twitter.com/1.1/statuses/'.$timelineUri.'.json';
205
206         $params = array('include_entities' => 'true',
207                         'include_rts'      => 'true');
208
209         if (!empty($since_id)) {
210             $params['since_id'] = $since_id;
211         }
212         if (!empty($max_id)) {
213             $params['max_id'] = $max_id;
214         }
215         if (!empty($cnt)) {
216             $params['count'] = $cnt;
217         }
218         if (!empty($page)) {
219             $params['page'] = $page;
220         }
221
222         $response = $this->oAuthGet($url, $params);
223         $statuses = json_decode($response);
224         return $statuses;
225     }
226
227     /**
228      * Calls Twitter's /statuses/friends API method
229      *
230      * @param int $id          id of the user whom you wish to see friends of
231      * @param int $user_id     numerical user id
232      * @param int $screen_name screen name
233      * @param int $page        page number
234      *
235      * @return mixed an array of twitter users and their latest status
236      */
237     function statusesFriends($id = null, $user_id = null, $screen_name = null,
238                              $page = null)
239     {
240         $url = "https://api.twitter.com/1.1/friends/list.json";
241
242         $params = array();
243
244         if (!empty($id)) {
245             $params['id'] = $id;
246         }
247
248         if (!empty($user_id)) {
249             $params['user_id'] = $user_id;
250         }
251
252         if (!empty($screen_name)) {
253             $params['screen_name'] = $screen_name;
254         }
255
256         if (!empty($page)) {
257             $params['page'] = $page;
258         }
259
260         $response = $this->oAuthGet($url, $params);
261         $friends  = json_decode($response);
262         return $friends;
263     }
264
265     /**
266      * Calls Twitter's /statuses/friends/ids API method
267      *
268      * @param int $id          id of the user whom you wish to see friends of
269      * @param int $user_id     numerical user id
270      * @param int $screen_name screen name
271      * @param int $page        page number
272      *
273      * @return mixed a list of ids, 100 per page
274      */
275     function friendsIds($id = null, $user_id = null, $screen_name = null,
276                          $page = null)
277     {
278         $url = "https://api.twitter.com/1.1/friends/ids.json";
279
280         $params = array();
281
282         if (!empty($id)) {
283             $params['id'] = $id;
284         }
285
286         if (!empty($user_id)) {
287             $params['user_id'] = $user_id;
288         }
289
290         if (!empty($screen_name)) {
291             $params['screen_name'] = $screen_name;
292         }
293
294         if (!empty($page)) {
295             $params['page'] = $page;
296         }
297
298         $response = $this->oAuthGet($url, $params);
299         $ids      = json_decode($response);
300         return $ids;
301     }
302
303     /**
304      * Calls Twitter's /statuses/retweet/id.json API method
305      *
306      * @param int $id id of the notice to retweet
307      *
308      * @return retweeted status
309      */
310
311     function statusesRetweet($id)
312     {
313         $url = "https://api.twitter.com/1.1/statuses/retweet/$id.json";
314         $response = $this->oAuthPost($url);
315         $status = json_decode($response);
316         return $status;
317     }
318
319     /**
320      * Calls Twitter's /favorites/create API method
321      *
322      * @param int $id ID of the status to favorite
323      *
324      * @return object faved status
325      */
326
327     function favoritesCreate($id)
328     {
329         $url = "https://api.twitter.com/1.1/favorites/create.json";
330         $params=array();
331         $params['id'] = $id;
332         $response = $this->oAuthPost($url, $params);
333         $status = json_decode($response);
334         return $status;
335     }
336
337     /**
338      * Calls Twitter's /favorites/destroy API method
339      *
340      * @param int $id ID of the status to unfavorite
341      *
342      * @return object unfaved status
343      */
344
345     function favoritesDestroy($id)
346     {
347         $url = "https://api.twitter.com/1.1/favorites/destroy.json";
348         $params=array();
349         $params['id'] = $id;
350         $response = $this->oAuthPost($url,$params);
351         $status = json_decode($response);
352         return $status;
353     }
354
355     /**
356      * Calls Twitter's /statuses/destroy API method
357      *
358      * @param int $id ID of the status to destroy
359      *
360      * @return object destroyed
361      */
362
363     function statusesDestroy($id)
364     {
365         $url = "https://api.twitter.com/1.1/statuses/destroy/$id.json";
366         $response = $this->oAuthPost($url);
367         $status = json_decode($response);
368         return $status;
369     }
370 }