3 * Laconica - a distributed open-source microblogging tool
4 * Copyright (C) 2008, 2009, Control Yourself, Inc.
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.
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.
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/>.
20 if (!defined('LACONICA')) {
24 require_once(INSTALLDIR.'/lib/twitterapi.php');
26 class TwitapistatusesAction extends TwitterapiAction
29 function public_timeline($args, $apidata)
31 // XXX: To really live up to the spec we need to build a list
32 // of notices by users who have custom avatars, so fix this SQL -- Zach
34 parent::handle($args);
36 $sitename = common_config('site', 'name');
37 $title = sprintf(_("%s public timeline"), $sitename);
38 $taguribase = common_config('integration', 'taguri');
39 $id = "tag:$taguribase:PublicTimeline";
40 $link = common_root_url();
41 $subtitle = sprintf(_("%s updates from everyone!"), $sitename);
43 $page = (int)$this->arg('page', 1);
44 $count = (int)$this->arg('count', 20);
45 $max_id = (int)$this->arg('max_id', 0);
46 $since_id = (int)$this->arg('since_id', 0);
47 $since = $this->arg('since');
49 $notice = Notice::publicStream(($page-1)*$count, $count, $since_id,
52 switch($apidata['content-type']) {
54 $this->show_xml_timeline($notice);
57 $this->show_rss_timeline($notice, $title, $link, $subtitle);
60 $selfuri = common_root_url() . 'api/statuses/public_timeline.atom';
61 $this->show_atom_timeline($notice, $title, $id, $link,
62 $subtitle, null, $selfuri);
65 $this->show_json_timeline($notice);
68 $this->clientError(_('API method not found!'), $code = 404);
74 function friends_timeline($args, $apidata)
76 parent::handle($args);
78 $this->auth_user = $apidata['user'];
79 $user = $this->get_user($apidata['api_arg'], $apidata);
82 $this->clientError(_('No such user!'), 404,
83 $apidata['content-type']);
87 $profile = $user->getProfile();
88 $sitename = common_config('site', 'name');
89 $title = sprintf(_("%s and friends"), $user->nickname);
90 $taguribase = common_config('integration', 'taguri');
91 $id = "tag:$taguribase:FriendsTimeline:" . $user->id;
92 $link = common_local_url('all',
93 array('nickname' => $user->nickname));
94 $subtitle = sprintf(_('Updates from %1$s and friends on %2$s!'),
95 $user->nickname, $sitename);
97 $page = (int)$this->arg('page', 1);
98 $count = (int)$this->arg('count', 20);
99 $max_id = (int)$this->arg('max_id', 0);
100 $since_id = (int)$this->arg('since_id', 0);
101 $since = $this->arg('since');
103 if (!empty($this->auth_user) && $this->auth_user->id == $user->id) {
104 $notice = $user->noticeInbox(($page-1)*$count,
105 $count, $since_id, $max_id, $since);
107 $notice = $user->noticesWithFriends(($page-1)*$count,
108 $count, $since_id, $max_id, $since);
111 switch($apidata['content-type']) {
113 $this->show_xml_timeline($notice);
116 $this->show_rss_timeline($notice, $title, $link, $subtitle);
119 if (isset($apidata['api_arg'])) {
120 $selfuri = common_root_url() .
121 'api/statuses/friends_timeline/' .
122 $apidata['api_arg'] . '.atom';
124 $selfuri = common_root_url() .
125 'api/statuses/friends_timeline.atom';
127 $this->show_atom_timeline($notice, $title, $id, $link,
128 $subtitle, null, $selfuri);
131 $this->show_json_timeline($notice);
134 $this->clientError(_('API method not found!'), $code = 404);
139 function user_timeline($args, $apidata)
141 parent::handle($args);
143 $this->auth_user = $apidata['user'];
144 $user = $this->get_user($apidata['api_arg'], $apidata);
147 $this->clientError('Not Found', 404, $apidata['content-type']);
151 $profile = $user->getProfile();
153 $sitename = common_config('site', 'name');
154 $title = sprintf(_("%s timeline"), $user->nickname);
155 $taguribase = common_config('integration', 'taguri');
156 $id = "tag:$taguribase:UserTimeline:".$user->id;
157 $link = common_local_url('showstream',
158 array('nickname' => $user->nickname));
159 $subtitle = sprintf(_('Updates from %1$s on %2$s!'),
160 $user->nickname, $sitename);
162 # FriendFeed's SUP protocol
163 # Also added RSS and Atom feeds
165 $suplink = common_local_url('sup', null, null, $user->id);
166 header('X-SUP-ID: '.$suplink);
168 $page = (int)$this->arg('page', 1);
169 $count = (int)$this->arg('count', 20);
170 $max_id = (int)$this->arg('max_id', 0);
171 $since_id = (int)$this->arg('since_id', 0);
172 $since = $this->arg('since');
174 $notice = $user->getNotices(($page-1)*$count,
175 $count, $since_id, $max_id, $since);
177 switch($apidata['content-type']) {
179 $this->show_xml_timeline($notice);
182 $this->show_rss_timeline($notice, $title, $link,
183 $subtitle, $suplink);
186 if (isset($apidata['api_arg'])) {
187 $selfuri = common_root_url() .
188 'api/statuses/user_timeline/' .
189 $apidata['api_arg'] . '.atom';
191 $selfuri = common_root_url() .
192 'api/statuses/user_timeline.atom';
194 $this->show_atom_timeline($notice, $title, $id, $link,
195 $subtitle, $suplink, $selfuri);
198 $this->show_json_timeline($notice);
201 $this->clientError(_('API method not found!'), $code = 404);
206 function update($args, $apidata)
208 parent::handle($args);
210 if (!in_array($apidata['content-type'], array('xml', 'json'))) {
211 $this->clientError(_('API method not found!'), $code = 404);
215 if ($_SERVER['REQUEST_METHOD'] != 'POST') {
216 $this->clientError(_('This method requires a POST.'),
217 400, $apidata['content-type']);
221 $user = $apidata['user']; // Always the auth user
223 $status = $this->trimmed('status');
224 $source = $this->trimmed('source');
225 $in_reply_to_status_id =
226 intval($this->trimmed('in_reply_to_status_id'));
227 $reserved_sources = array('web', 'omb', 'mail', 'xmpp', 'api');
229 if (empty($source) || in_array($source, $reserved_sources)) {
233 if (empty($status)) {
235 // XXX: Note: In this case, Twitter simply returns '200 OK'
236 // No error is given, but the status is not posted to the
237 // user's timeline. Seems bad. Shouldn't we throw an
243 $status_shortened = common_shorten_links($status);
245 if (mb_strlen($status_shortened) > 140) {
247 // XXX: Twitter truncates anything over 140, flags the status
248 // as "truncated." Sending this error may screw up some clients
249 // that assume Twitter will truncate for them. Should we just
250 // truncate too? -- Zach
251 $this->clientError(_('That\'s too long. Max notice size is 140 chars.'),
252 $code = 406, $apidata['content-type']);
257 // Check for commands
258 $inter = new CommandInterpreter();
259 $cmd = $inter->handle_command($user, $status_shortened);
263 if ($this->supported($cmd)) {
264 $cmd->execute(new Channel());
267 // cmd not supported? Twitter just returns your latest status.
268 // And, it returns your last status whether the cmd was successful
270 $n = $user->getCurrentNotice();
271 $apidata['api_arg'] = $n->id;
276 if ($in_reply_to_status_id) {
278 // check whether notice actually exists
279 $reply = Notice::staticGet($in_reply_to_status_id);
282 $reply_to = $in_reply_to_status_id;
284 $this->clientError(_('Not found'), $code = 404,
285 $apidata['content-type']);
290 $notice = Notice::saveNew($user->id,
291 html_entity_decode($status, ENT_NOQUOTES, 'UTF-8'),
292 $source, 1, $reply_to);
294 if (is_string($notice)) {
295 $this->serverError($notice);
299 common_broadcast_notice($notice);
300 $apidata['api_arg'] = $notice->id;
303 $this->show($args, $apidata);
306 function mentions($args, $apidata)
308 parent::handle($args);
310 $user = $this->get_user($apidata['api_arg'], $apidata);
311 $this->auth_user = $apidata['user'];
314 $this->clientError(_('No such user!'), 404,
315 $apidata['content-type']);
319 $profile = $user->getProfile();
321 $sitename = common_config('site', 'name');
322 $title = sprintf(_('%1$s / Updates mentioning %2$s'),
323 $sitename, $user->nickname);
324 $taguribase = common_config('integration', 'taguri');
325 $id = "tag:$taguribase:Mentions:".$user->id;
326 $link = common_local_url('replies',
327 array('nickname' => $user->nickname));
328 $subtitle = sprintf(_('%1$s updates that reply to updates from %2$s / %3$s.'),
329 $sitename, $user->nickname, $profile->getBestName());
331 $page = (int)$this->arg('page', 1);
332 $count = (int)$this->arg('count', 20);
333 $max_id = (int)$this->arg('max_id', 0);
334 $since_id = (int)$this->arg('since_id', 0);
335 $since = $this->arg('since');
337 $notice = $user->getReplies(($page-1)*$count,
338 $count, $since_id, $max_id, $since);
340 switch($apidata['content-type']) {
342 $this->show_xml_timeline($notice);
345 $this->show_rss_timeline($notice, $title, $link, $subtitle);
348 $selfuri = common_root_url() .
349 ltrim($_SERVER['QUERY_STRING'], 'p=');
350 $this->show_atom_timeline($notice, $title, $id, $link, $subtitle,
354 $this->show_json_timeline($notice);
357 $this->clientError(_('API method not found!'), $code = 404);
362 function replies($args, $apidata)
364 call_user_func(array($this, 'mentions'), $args, $apidata);
367 function show($args, $apidata)
369 parent::handle($args);
371 if (!in_array($apidata['content-type'], array('xml', 'json'))) {
372 $this->clientError(_('API method not found!'), $code = 404);
376 // 'id' is an undocumented parameter in Twitter's API. Several
377 // clients make use of it, so we support it too.
379 // show.json?id=12345 takes precedence over /show/12345.json
381 $this->auth_user = $apidata['user'];
382 $notice_id = $this->trimmed('id');
384 if (empty($notice_id)) {
385 $notice_id = $apidata['api_arg'];
388 $notice = Notice::staticGet((int)$notice_id);
391 if ($apidata['content-type'] == 'xml') {
392 $this->show_single_xml_status($notice);
393 } elseif ($apidata['content-type'] == 'json') {
394 $this->show_single_json_status($notice);
397 // XXX: Twitter just sets a 404 header and doens't bother
398 // to return an err msg
399 $this->clientError(_('No status with that ID found.'),
400 404, $apidata['content-type']);
404 function destroy($args, $apidata)
406 parent::handle($args);
408 if (!in_array($apidata['content-type'], array('xml', 'json'))) {
409 $this->clientError(_('API method not found!'), $code = 404);
413 // Check for RESTfulness
414 if (!in_array($_SERVER['REQUEST_METHOD'], array('POST', 'DELETE'))) {
415 // XXX: Twitter just prints the err msg, no XML / JSON.
416 $this->clientError(_('This method requires a POST or DELETE.'),
417 400, $apidata['content-type']);
421 $user = $apidata['user']; // Always the auth user
422 $notice_id = $apidata['api_arg'];
423 $notice = Notice::staticGet($notice_id);
425 if (empty($notice)) {
426 $this->clientError(_('No status found with that ID.'),
427 404, $apidata['content-type']);
431 if ($user->id == $notice->profile_id) {
432 $replies = new Reply;
433 $replies->get('notice_id', $notice_id);
437 if ($apidata['content-type'] == 'xml') {
438 $this->show_single_xml_status($notice);
439 } elseif ($apidata['content-type'] == 'json') {
440 $this->show_single_json_status($notice);
443 $this->clientError(_('You may not delete another user\'s status.'),
444 403, $apidata['content-type']);
449 function friends($args, $apidata)
451 parent::handle($args);
452 return $this->subscriptions($apidata, 'subscribed', 'subscriber');
455 function friendsIDs($args, $apidata)
457 parent::handle($args);
458 return $this->subscriptions($apidata, 'subscribed', 'subscriber', true);
461 function followers($args, $apidata)
463 parent::handle($args);
464 return $this->subscriptions($apidata, 'subscriber', 'subscribed');
467 function followersIDs($args, $apidata)
469 parent::handle($args);
470 return $this->subscriptions($apidata, 'subscriber', 'subscribed', true);
473 function subscriptions($apidata, $other_attr, $user_attr, $onlyIDs=false)
475 $this->auth_user = $apidata['user'];
476 $user = $this->get_user($apidata['api_arg'], $apidata);
479 $this->clientError('Not Found', 404, $apidata['content-type']);
483 $profile = $user->getProfile();
485 $sub = new Subscription();
486 $sub->$user_attr = $profile->id;
488 $sub->orderBy('created DESC');
490 // Normally, page 100 friends at a time
493 $page = $this->arg('page', 1);
494 $count = $this->arg('count', 100);
495 $sub->limit(($page-1)*$count, $count);
498 // If we're just looking at IDs, return
499 // ALL of them, unless the user specifies a page,
500 // in which case, return 500 per page.
502 $page = $this->arg('page');
508 $sub->limit(($page-1)*$count, $count);
515 while ($sub->fetch()) {
516 $others[] = Profile::staticGet($sub->$other_attr);
519 // user has no followers
522 $type = $apidata['content-type'];
524 $this->init_document($type);
527 $this->showIDs($others, $type);
529 $this->show_profiles($others, $type);
532 $this->end_document($type);
535 function show_profiles($profiles, $type)
539 $this->elementStart('users', array('type' => 'array'));
540 foreach ($profiles as $profile) {
541 $this->show_profile($profile);
543 $this->elementEnd('users');
547 foreach ($profiles as $profile) {
548 $arrays[] = $this->twitter_user_array($profile, true);
550 print json_encode($arrays);
553 $this->clientError(_('unsupported file type'));
557 function showIDs($profiles, $type)
561 $this->elementStart('ids');
562 foreach ($profiles as $profile) {
563 $this->element('id', null, $profile->id);
565 $this->elementEnd('ids');
569 foreach ($profiles as $profile) {
570 $ids[] = (int)$profile->id;
572 print json_encode($ids);
575 $this->clientError(_('unsupported file type'));
579 function featured($args, $apidata)
581 parent::handle($args);
582 $this->serverError(_('API method under construction.'), $code=501);
585 function supported($cmd)
587 $cmdlist = array('MessageCommand', 'SubCommand', 'UnsubCommand',
588 'FavCommand', 'OnCommand', 'OffCommand');
590 if (in_array(get_class($cmd), $cmdlist)) {