]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/twitterapi.php
a distributed -> the distributed
[quix0rs-gnu-social.git] / lib / twitterapi.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('LACONICA')) {
21     exit(1);
22 }
23
24 class TwitterapiAction extends Action
25 {
26
27     var $auth_user;
28
29     /**
30      * Initialization.
31      *
32      * @param array $args Web and URL arguments
33      *
34      * @return boolean false if user doesn't exist
35      */
36
37     function prepare($args)
38     {
39         parent::prepare($args);
40         return true;
41     }
42
43     /**
44      * Handle a request
45      *
46      * @param array $args Arguments from $_REQUEST
47      *
48      * @return void
49      */
50
51     function handle($args)
52     {
53         parent::handle($args);
54     }
55
56     /**
57      * Overrides XMLOutputter::element to write booleans as strings (true|false).
58      * See that method's documentation for more info.
59      *
60      * @param string $tag     Element type or tagname
61      * @param array  $attrs   Array of element attributes, as
62      *                        key-value pairs
63      * @param string $content string content of the element
64      *
65      * @return void
66      */
67     function element($tag, $attrs=null, $content=null)
68     {
69         if (is_bool($content)) {
70             $content = ($content ? 'true' : 'false');
71         }
72
73         return parent::element($tag, $attrs, $content);
74     }
75
76     function twitter_user_array($profile, $get_notice=false)
77     {
78         $twitter_user = array();
79
80         $twitter_user['id'] = intval($profile->id);
81         $twitter_user['name'] = $profile->getBestName();
82         $twitter_user['screen_name'] = $profile->nickname;
83         $twitter_user['location'] = ($profile->location) ? $profile->location : null;
84         $twitter_user['description'] = ($profile->bio) ? $profile->bio : null;
85
86         $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
87         $twitter_user['profile_image_url'] = ($avatar) ? $avatar->displayUrl() :
88             Avatar::defaultImage(AVATAR_STREAM_SIZE);
89
90         $twitter_user['url'] = ($profile->homepage) ? $profile->homepage : null;
91         $twitter_user['protected'] = false; # not supported by StatusNet yet
92         $twitter_user['followers_count'] = $profile->subscriberCount();
93
94         // To be supported soon...
95         $twitter_user['profile_background_color'] = '';
96         $twitter_user['profile_text_color'] = '';
97         $twitter_user['profile_link_color'] = '';
98         $twitter_user['profile_sidebar_fill_color'] = '';
99         $twitter_user['profile_sidebar_border_color'] = '';
100
101         $twitter_user['friends_count'] = $profile->subscriptionCount();
102
103         $twitter_user['created_at'] = $this->date_twitter($profile->created);
104
105         $twitter_user['favourites_count'] = $profile->faveCount(); // British spelling!
106
107         // Need to pull up the user for some of this
108         $user = User::staticGet($profile->id);
109
110         $timezone = 'UTC';
111
112         if ($user->timezone) {
113             $timezone = $user->timezone;
114         }
115
116         $t = new DateTime;
117         $t->setTimezone(new DateTimeZone($timezone));
118
119         $twitter_user['utc_offset'] = $t->format('Z');
120         $twitter_user['time_zone'] = $timezone;
121
122         // To be supported some day, perhaps
123         $twitter_user['profile_background_image_url'] = '';
124         $twitter_user['profile_background_tile'] = false;
125
126         $twitter_user['statuses_count'] = $profile->noticeCount();
127
128         // Is the requesting user following this user?
129         $twitter_user['following'] = false;
130         $twitter_user['notifications'] = false;
131
132         if (isset($apidata['user'])) {
133
134             $twitter_user['following'] = $apidata['user']->isSubscribed($profile);
135
136             // Notifications on?
137             $sub = Subscription::pkeyGet(array('subscriber' =>
138                 $apidata['user']->id, 'subscribed' => $profile->id));
139
140             if ($sub) {
141                 $twitter_user['notifications'] = ($sub->jabber || $sub->sms);
142             }
143         }
144
145         if ($get_notice) {
146             $notice = $profile->getCurrentNotice();
147             if ($notice) {
148                 # don't get user!
149                 $twitter_user['status'] = $this->twitter_status_array($notice, false);
150             }
151         }
152
153         return $twitter_user;
154     }
155
156     function twitter_status_array($notice, $include_user=true)
157     {
158         $profile = $notice->getProfile();
159
160         $twitter_status = array();
161         $twitter_status['text'] = $notice->content;
162         $twitter_status['truncated'] = false; # Not possible on StatusNet
163         $twitter_status['created_at'] = $this->date_twitter($notice->created);
164         $twitter_status['in_reply_to_status_id'] = ($notice->reply_to) ?
165             intval($notice->reply_to) : null;
166         $twitter_status['source'] = $this->source_link($notice->source);
167         $twitter_status['id'] = intval($notice->id);
168
169         $replier_profile = null;
170
171         if ($notice->reply_to) {
172             $reply = Notice::staticGet(intval($notice->reply_to));
173             if ($reply) {
174                 $replier_profile = $reply->getProfile();
175             }
176         }
177
178         $twitter_status['in_reply_to_user_id'] =
179             ($replier_profile) ? intval($replier_profile->id) : null;
180         $twitter_status['in_reply_to_screen_name'] =
181             ($replier_profile) ? $replier_profile->nickname : null;
182
183         if (isset($this->auth_user)) {
184             $twitter_status['favorited'] = $this->auth_user->hasFave($notice);
185         } else {
186             $twitter_status['favorited'] = false;
187         }
188
189         // Enclosures
190         $attachments = $notice->attachments();
191
192         if (!empty($attachments)) {
193
194             $twitter_status['attachments'] = array();
195
196             foreach ($attachments as $attachment) {
197                 if ($attachment->isEnclosure()) {
198                     $enclosure = array();
199                     $enclosure['url'] = $attachment->url;
200                     $enclosure['mimetype'] = $attachment->mimetype;
201                     $enclosure['size'] = $attachment->size;
202                     $twitter_status['attachments'][] = $enclosure;
203                 }
204             }
205         }
206
207         if ($include_user) {
208             # Don't get notice (recursive!)
209             $twitter_user = $this->twitter_user_array($profile, false);
210             $twitter_status['user'] = $twitter_user;
211         }
212
213         return $twitter_status;
214     }
215
216     function twitter_group_array($group)
217     {
218         $twitter_group=array();
219         $twitter_group['id']=$group->id;
220         $twitter_group['url']=$group->permalink();
221         $twitter_group['nickname']=$group->nickname;
222         $twitter_group['fullname']=$group->fullname;
223         $twitter_group['homepage_url']=$group->homepage_url;
224         $twitter_group['original_logo']=$group->original_logo;
225         $twitter_group['homepage_logo']=$group->homepage_logo;
226         $twitter_group['stream_logo']=$group->stream_logo;
227         $twitter_group['mini_logo']=$group->mini_logo;
228         $twitter_group['homepage']=$group->homepage;
229         $twitter_group['description']=$group->description;
230         $twitter_group['location']=$group->location;
231         $twitter_group['created']=$this->date_twitter($group->created);
232         $twitter_group['modified']=$this->date_twitter($group->modified);
233         return $twitter_group;
234     }
235
236     function twitter_rss_group_array($group)
237     {
238         $entry = array();
239         $entry['content']=$group->description;
240         $entry['title']=$group->nickname;
241         $entry['link']=$group->permalink();
242         $entry['published']=common_date_iso8601($group->created);
243         $entry['updated']==common_date_iso8601($group->modified);
244         $taguribase = common_config('integration', 'groupuri');
245         $entry['id'] = "group:$groupuribase:$entry[link]";
246
247         $entry['description'] = $entry['content'];
248         $entry['pubDate'] = common_date_rfc2822($group->created);
249         $entry['guid'] = $entry['link'];
250
251         return $entry;
252     }
253
254     function twitter_rss_entry_array($notice)
255     {
256         $profile = $notice->getProfile();
257         $entry = array();
258
259         // We trim() to avoid extraneous whitespace in the output
260
261         $entry['content'] = common_xml_safe_str(trim($notice->rendered));
262         $entry['title'] = $profile->nickname . ': ' . common_xml_safe_str(trim($notice->content));
263         $entry['link'] = common_local_url('shownotice', array('notice' => $notice->id));
264         $entry['published'] = common_date_iso8601($notice->created);
265
266         $taguribase = common_config('integration', 'taguri');
267         $entry['id'] = "tag:$taguribase:$entry[link]";
268
269         $entry['updated'] = $entry['published'];
270         $entry['author'] = $profile->getBestName();
271
272         // Enclosures
273         $attachments = $notice->attachments();
274         $enclosures = array();
275
276         foreach ($attachments as $attachment) {
277             if ($attachment->isEnclosure()) {
278                  $enclosure = array();
279                  $enclosure['url'] = $attachment->url;
280                  $enclosure['mimetype'] = $attachment->mimetype;
281                  $enclosure['size'] = $attachment->size;
282                  $enclosures[] = $enclosure;
283             }
284         }
285
286         if (!empty($enclosures)) {
287             $entry['enclosures'] = $enclosures;
288         }
289
290 /*
291         // Enclosure
292         $attachments = $notice->attachments();
293         if($attachments){
294             $entry['enclosures']=array();
295             foreach($attachments as $attachment){
296                 if ($attachment->isEnclosure()) {
297                     $enclosure=array();
298                     $enclosure['url']=$attachment->url;
299                     $enclosure['mimetype']=$attachment->mimetype;
300                     $enclosure['size']=$attachment->size;
301                     $entry['enclosures'][]=$enclosure;
302                 }
303             }
304         }
305 */
306
307         // Tags/Categories
308         $tag = new Notice_tag();
309         $tag->notice_id = $notice->id;
310         if ($tag->find()) {
311             $entry['tags']=array();
312             while ($tag->fetch()) {
313                 $entry['tags'][]=$tag->tag;
314             }
315         }
316         $tag->free();
317
318         // RSS Item specific
319         $entry['description'] = $entry['content'];
320         $entry['pubDate'] = common_date_rfc2822($notice->created);
321         $entry['guid'] = $entry['link'];
322
323         return $entry;
324     }
325
326     function twitter_rss_dmsg_array($message)
327     {
328
329         $entry = array();
330
331         $entry['title'] = sprintf('Message from %s to %s',
332             $message->getFrom()->nickname, $message->getTo()->nickname);
333
334         $entry['content'] = common_xml_safe_str(trim($message->content));
335         $entry['link'] = common_local_url('showmessage', array('message' => $message->id));
336         $entry['published'] = common_date_iso8601($message->created);
337
338         $taguribase = common_config('integration', 'taguri');
339
340         $entry['id'] = "tag:$taguribase,:$entry[link]";
341         $entry['updated'] = $entry['published'];
342         $entry['author'] = $message->getFrom()->getBestName();
343
344         # RSS Item specific
345         $entry['description'] = $entry['content'];
346         $entry['pubDate'] = common_date_rfc2822($message->created);
347         $entry['guid'] = $entry['link'];
348
349         return $entry;
350     }
351
352     function twitter_dmsg_array($message)
353     {
354         $twitter_dm = array();
355
356         $from_profile = $message->getFrom();
357         $to_profile = $message->getTo();
358
359         $twitter_dm['id'] = $message->id;
360         $twitter_dm['sender_id'] = $message->from_profile;
361         $twitter_dm['text'] = trim($message->content);
362         $twitter_dm['recipient_id'] = $message->to_profile;
363         $twitter_dm['created_at'] = $this->date_twitter($message->created);
364         $twitter_dm['sender_screen_name'] = $from_profile->nickname;
365         $twitter_dm['recipient_screen_name'] = $to_profile->nickname;
366         $twitter_dm['sender'] = $this->twitter_user_array($from_profile, false);
367         $twitter_dm['recipient'] = $this->twitter_user_array($to_profile, false);
368
369         return $twitter_dm;
370     }
371
372     function twitter_relationship_array($source, $target)
373     {
374         $relationship = array();
375
376         $relationship['source'] =
377             $this->relationship_details_array($source, $target);
378         $relationship['target'] =
379             $this->relationship_details_array($target, $source);
380
381         return array('relationship' => $relationship);
382     }
383
384     function relationship_details_array($source, $target)
385     {
386         $details = array();
387
388         $details['screen_name'] = $source->nickname;
389         $details['followed_by'] = $target->isSubscribed($source);
390         $details['following'] = $source->isSubscribed($target);
391
392         $notifications = false;
393
394         if ($source->isSubscribed($target)) {
395
396             $sub = Subscription::pkeyGet(array('subscriber' =>
397                 $source->id, 'subscribed' => $target->id));
398
399             if (!empty($sub)) {
400                 $notifications = ($sub->jabber || $sub->sms);
401             }
402         }
403
404         $details['notifications_enabled'] = $notifications;
405         $details['blocking'] = $source->hasBlocked($target);
406         $details['id'] = $source->id;
407
408         return $details;
409     }
410
411     function show_twitter_xml_relationship($relationship)
412     {
413         $this->elementStart('relationship');
414
415         foreach($relationship as $element => $value) {
416             if ($element == 'source' || $element == 'target') {
417                 $this->elementStart($element);
418                 $this->show_xml_relationship_details($value);
419                 $this->elementEnd($element);
420             }
421         }
422
423         $this->elementEnd('relationship');
424     }
425
426     function show_xml_relationship_details($details)
427     {
428         foreach($details as $element => $value) {
429             $this->element($element, null, $value);
430         }
431     }
432
433     function show_twitter_xml_status($twitter_status)
434     {
435         $this->elementStart('status');
436         foreach($twitter_status as $element => $value) {
437             switch ($element) {
438             case 'user':
439                 $this->show_twitter_xml_user($twitter_status['user']);
440                 break;
441             case 'text':
442                 $this->element($element, null, common_xml_safe_str($value));
443                 break;
444             case 'attachments':
445                 $this->show_xml_attachments($twitter_status['attachments']);
446                 break;
447             default:
448                 $this->element($element, null, $value);
449             }
450         }
451         $this->elementEnd('status');
452     }
453
454     function show_twitter_xml_group($twitter_group)
455     {
456         $this->elementStart('group');
457         foreach($twitter_group as $element => $value) {
458             $this->element($element, null, $value);
459         }
460         $this->elementEnd('group');
461     }
462
463     function show_twitter_xml_user($twitter_user, $role='user')
464     {
465         $this->elementStart($role);
466         foreach($twitter_user as $element => $value) {
467             if ($element == 'status') {
468                 $this->show_twitter_xml_status($twitter_user['status']);
469             } else {
470                 $this->element($element, null, $value);
471             }
472         }
473         $this->elementEnd($role);
474     }
475
476     function show_xml_attachments($attachments) {
477         if (!empty($attachments)) {
478             $this->elementStart('attachments', array('type' => 'array'));
479             foreach ($attachments as $attachment) {
480                 $attrs = array();
481                 $attrs['url'] = $attachment['url'];
482                 $attrs['mimetype'] = $attachment['mimetype'];
483                 $attrs['size'] = $attachment['size'];
484                 $this->element('enclosure', $attrs, '');
485             }
486             $this->elementEnd('attachments');
487         }
488     }
489
490     function show_twitter_rss_item($entry)
491     {
492         $this->elementStart('item');
493         $this->element('title', null, $entry['title']);
494         $this->element('description', null, $entry['description']);
495         $this->element('pubDate', null, $entry['pubDate']);
496         $this->element('guid', null, $entry['guid']);
497         $this->element('link', null, $entry['link']);
498
499         # RSS only supports 1 enclosure per item
500         if(array_key_exists('enclosures', $entry) and !empty($entry['enclosures'])){
501             $enclosure = $entry['enclosures'][0];
502             $this->element('enclosure', array('url'=>$enclosure['url'],'type'=>$enclosure['mimetype'],'length'=>$enclosure['size']), null);
503         }
504         
505         if(array_key_exists('tags', $entry)){
506             foreach($entry['tags'] as $tag){
507                 $this->element('category', null,$tag);
508             }
509         }
510
511         $this->elementEnd('item');
512     }
513
514     function show_json_objects($objects)
515     {
516         print(json_encode($objects));
517     }
518
519     function show_single_xml_status($notice)
520     {
521         $this->init_document('xml');
522         $twitter_status = $this->twitter_status_array($notice);
523         $this->show_twitter_xml_status($twitter_status);
524         $this->end_document('xml');
525     }
526
527     function show_single_json_status($notice)
528     {
529         $this->init_document('json');
530         $status = $this->twitter_status_array($notice);
531         $this->show_json_objects($status);
532         $this->end_document('json');
533     }
534
535     function show_single_xml_dmsg($message)
536     {
537         $this->init_document('xml');
538         $dmsg = $this->twitter_dmsg_array($message);
539         $this->show_twitter_xml_dmsg($dmsg);
540         $this->end_document('xml');
541     }
542
543     function show_single_json_dmsg($message)
544     {
545         $this->init_document('json');
546         $dmsg = $this->twitter_dmsg_array($message);
547         $this->show_json_objects($dmsg);
548         $this->end_document('json');
549     }
550
551     function show_twitter_xml_dmsg($twitter_dm)
552     {
553         $this->elementStart('direct_message');
554         foreach($twitter_dm as $element => $value) {
555             switch ($element) {
556             case 'sender':
557             case 'recipient':
558                 $this->show_twitter_xml_user($value, $element);
559                 break;
560             case 'text':
561                 $this->element($element, null, common_xml_safe_str($value));
562                 break;
563             default:
564                 $this->element($element, null, $value);
565             }
566         }
567         $this->elementEnd('direct_message');
568     }
569
570     function show_xml_timeline($notice)
571     {
572
573         $this->init_document('xml');
574         $this->elementStart('statuses', array('type' => 'array'));
575
576         if (is_array($notice)) {
577             foreach ($notice as $n) {
578                 $twitter_status = $this->twitter_status_array($n);
579                 $this->show_twitter_xml_status($twitter_status);
580             }
581         } else {
582             while ($notice->fetch()) {
583                 $twitter_status = $this->twitter_status_array($notice);
584                 $this->show_twitter_xml_status($twitter_status);
585             }
586         }
587
588         $this->elementEnd('statuses');
589         $this->end_document('xml');
590     }
591
592     function show_rss_timeline($notice, $title, $link, $subtitle, $suplink=null)
593     {
594
595         $this->init_document('rss');
596
597         $this->elementStart('channel');
598         $this->element('title', null, $title);
599         $this->element('link', null, $link);
600         if (!is_null($suplink)) {
601             # For FriendFeed's SUP protocol
602             $this->element('link', array('xmlns' => 'http://www.w3.org/2005/Atom',
603                                          'rel' => 'http://api.friendfeed.com/2008/03#sup',
604                                          'href' => $suplink,
605                                          'type' => 'application/json'));
606         }
607         $this->element('description', null, $subtitle);
608         $this->element('language', null, 'en-us');
609         $this->element('ttl', null, '40');
610
611         if (is_array($notice)) {
612             foreach ($notice as $n) {
613                 $entry = $this->twitter_rss_entry_array($n);
614                 $this->show_twitter_rss_item($entry);
615             }
616         } else {
617             while ($notice->fetch()) {
618                 $entry = $this->twitter_rss_entry_array($notice);
619                 $this->show_twitter_rss_item($entry);
620             }
621         }
622
623         $this->elementEnd('channel');
624         $this->end_twitter_rss();
625     }
626
627     function show_atom_timeline($notice, $title, $id, $link, $subtitle=null, $suplink=null, $selfuri=null)
628     {
629
630         $this->init_document('atom');
631
632         $this->element('title', null, $title);
633         $this->element('id', null, $id);
634         $this->element('link', array('href' => $link, 'rel' => 'alternate', 'type' => 'text/html'), null);
635
636         if (!is_null($suplink)) {
637             # For FriendFeed's SUP protocol
638             $this->element('link', array('rel' => 'http://api.friendfeed.com/2008/03#sup',
639                                          'href' => $suplink,
640                                          'type' => 'application/json'));
641         }
642
643         if (!is_null($selfuri)) {
644             $this->element('link', array('href' => $selfuri,
645                 'rel' => 'self', 'type' => 'application/atom+xml'), null);
646         }
647
648         $this->element('updated', null, common_date_iso8601('now'));
649         $this->element('subtitle', null, $subtitle);
650
651         if (is_array($notice)) {
652             foreach ($notice as $n) {
653                 $this->raw($n->asAtomEntry());
654             }
655         } else {
656             while ($notice->fetch()) {
657                 $this->raw($notice->asAtomEntry());
658             }
659         }
660
661         $this->end_document('atom');
662
663     }
664
665     function show_rss_groups($group, $title, $link, $subtitle)
666     {
667
668         $this->init_document('rss');
669
670         $this->elementStart('channel');
671         $this->element('title', null, $title);
672         $this->element('link', null, $link);
673         $this->element('description', null, $subtitle);
674         $this->element('language', null, 'en-us');
675         $this->element('ttl', null, '40');
676
677         if (is_array($group)) {
678             foreach ($group as $g) {
679                 $twitter_group = $this->twitter_rss_group_array($g);
680                 $this->show_twitter_rss_item($twitter_group);
681             }
682         } else {
683             while ($group->fetch()) {
684                 $twitter_group = $this->twitter_rss_group_array($group);
685                 $this->show_twitter_rss_item($twitter_group);
686             }
687         }
688
689         $this->elementEnd('channel');
690         $this->end_twitter_rss();
691     }
692
693     function show_atom_groups($group, $title, $id, $link, $subtitle=null, $selfuri=null)
694     {
695
696         $this->init_document('atom');
697
698         $this->element('title', null, $title);
699         $this->element('id', null, $id);
700         $this->element('link', array('href' => $link, 'rel' => 'alternate', 'type' => 'text/html'), null);
701
702         if (!is_null($selfuri)) {
703             $this->element('link', array('href' => $selfuri,
704                 'rel' => 'self', 'type' => 'application/atom+xml'), null);
705         }
706
707         $this->element('updated', null, common_date_iso8601('now'));
708         $this->element('subtitle', null, $subtitle);
709
710         if (is_array($group)) {
711             foreach ($group as $g) {
712                 $this->raw($g->asAtomEntry());
713             }
714         } else {
715             while ($group->fetch()) {
716                 $this->raw($group->asAtomEntry());
717             }
718         }
719
720         $this->end_document('atom');
721
722     }
723
724     function show_json_timeline($notice)
725     {
726
727         $this->init_document('json');
728
729         $statuses = array();
730
731         if (is_array($notice)) {
732             foreach ($notice as $n) {
733                 $twitter_status = $this->twitter_status_array($n);
734                 array_push($statuses, $twitter_status);
735             }
736         } else {
737             while ($notice->fetch()) {
738                 $twitter_status = $this->twitter_status_array($notice);
739                 array_push($statuses, $twitter_status);
740             }
741         }
742
743         $this->show_json_objects($statuses);
744
745         $this->end_document('json');
746     }
747
748     function show_json_groups($group)
749     {
750
751         $this->init_document('json');
752
753         $groups = array();
754
755         if (is_array($group)) {
756             foreach ($group as $g) {
757                 $twitter_group = $this->twitter_group_array($g);
758                 array_push($groups, $twitter_group);
759             }
760         } else {
761             while ($group->fetch()) {
762                 $twitter_group = $this->twitter_group_array($group);
763                 array_push($groups, $twitter_group);
764             }
765         }
766
767         $this->show_json_objects($groups);
768
769         $this->end_document('json');
770     }
771
772     function show_xml_groups($group)
773     {
774
775         $this->init_document('xml');
776         $this->elementStart('groups', array('type' => 'array'));
777
778         if (is_array($group)) {
779             foreach ($group as $g) {
780                 $twitter_group = $this->twitter_group_array($g);
781                 $this->show_twitter_xml_group($twitter_group);
782             }
783         } else {
784             while ($group->fetch()) {
785                 $twitter_group = $this->twitter_group_array($group);
786                 $this->show_twitter_xml_group($twitter_group);
787             }
788         }
789
790         $this->elementEnd('groups');
791         $this->end_document('xml');
792     }
793
794     function show_single_json_group($group)
795     {
796         $this->init_document('json');
797         $twitter_group = $this->twitter_group_array($group);
798         $this->show_json_objects($twitter_group);
799         $this->end_document('json');
800     }
801
802     function show_single_xml_group($group)
803     {
804         $this->init_document('xml');
805         $twitter_group = $this->twitter_group_array($group);
806         $this->show_twitter_xml_group($twitter_group);
807         $this->end_document('xml');
808     }
809
810     // Anyone know what date format this is?
811     // Twitter's dates look like this: "Mon Jul 14 23:52:38 +0000 2008" -- Zach
812     function date_twitter($dt)
813     {
814         $t = strtotime($dt);
815         return date("D M d H:i:s O Y", $t);
816     }
817
818     // XXX: Candidate for a general utility method somewhere?
819     function count_subscriptions($profile)
820     {
821
822         $count = 0;
823         $sub = new Subscription();
824         $sub->subscribed = $profile->id;
825
826         $count = $sub->find();
827
828         if ($count > 0) {
829             return $count - 1;
830         } else {
831             return 0;
832         }
833     }
834
835     function init_document($type='xml')
836     {
837         switch ($type) {
838         case 'xml':
839             header('Content-Type: application/xml; charset=utf-8');
840             $this->startXML();
841             break;
842         case 'json':
843             header('Content-Type: application/json; charset=utf-8');
844
845             // Check for JSONP callback
846             $callback = $this->arg('callback');
847             if ($callback) {
848                 print $callback . '(';
849             }
850             break;
851         case 'rss':
852             header("Content-Type: application/rss+xml; charset=utf-8");
853             $this->init_twitter_rss();
854             break;
855         case 'atom':
856             header('Content-Type: application/atom+xml; charset=utf-8');
857             $this->init_twitter_atom();
858             break;
859         default:
860             $this->clientError(_('Not a supported data format.'));
861             break;
862         }
863
864         return;
865     }
866
867     function end_document($type='xml')
868     {
869         switch ($type) {
870         case 'xml':
871             $this->endXML();
872             break;
873         case 'json':
874
875             // Check for JSONP callback
876             $callback = $this->arg('callback');
877             if ($callback) {
878                 print ')';
879             }
880             break;
881         case 'rss':
882             $this->end_twitter_rss();
883             break;
884         case 'atom':
885             $this->end_twitter_rss();
886             break;
887         default:
888             $this->clientError(_('Not a supported data format.'));
889             break;
890         }
891         return;
892     }
893
894     function clientError($msg, $code = 400, $content_type = 'json')
895     {
896
897         static $status = array(400 => 'Bad Request',
898                                401 => 'Unauthorized',
899                                402 => 'Payment Required',
900                                403 => 'Forbidden',
901                                404 => 'Not Found',
902                                405 => 'Method Not Allowed',
903                                406 => 'Not Acceptable',
904                                407 => 'Proxy Authentication Required',
905                                408 => 'Request Timeout',
906                                409 => 'Conflict',
907                                410 => 'Gone',
908                                411 => 'Length Required',
909                                412 => 'Precondition Failed',
910                                413 => 'Request Entity Too Large',
911                                414 => 'Request-URI Too Long',
912                                415 => 'Unsupported Media Type',
913                                416 => 'Requested Range Not Satisfiable',
914                                417 => 'Expectation Failed');
915
916         $action = $this->trimmed('action');
917
918         common_debug("User error '$code' on '$action': $msg", __FILE__);
919
920         if (!array_key_exists($code, $status)) {
921             $code = 400;
922         }
923
924         $status_string = $status[$code];
925         header('HTTP/1.1 '.$code.' '.$status_string);
926
927         if ($content_type == 'xml') {
928             $this->init_document('xml');
929             $this->elementStart('hash');
930             $this->element('error', null, $msg);
931             $this->element('request', null, $_SERVER['REQUEST_URI']);
932             $this->elementEnd('hash');
933             $this->end_document('xml');
934         } else {
935             $this->init_document('json');
936             $error_array = array('error' => $msg, 'request' => $_SERVER['REQUEST_URI']);
937             print(json_encode($error_array));
938             $this->end_document('json');
939         }
940
941     }
942
943     function init_twitter_rss()
944     {
945         $this->startXML();
946         $this->elementStart('rss', array('version' => '2.0'));
947     }
948
949     function end_twitter_rss()
950     {
951         $this->elementEnd('rss');
952         $this->endXML();
953     }
954
955     function init_twitter_atom()
956     {
957         $this->startXML();
958         // FIXME: don't hardcode the language here!
959         $this->elementStart('feed', array('xmlns' => 'http://www.w3.org/2005/Atom',
960                                           'xml:lang' => 'en-US',
961                                           'xmlns:thr' => 'http://purl.org/syndication/thread/1.0'));
962     }
963
964     function end_twitter_atom()
965     {
966         $this->elementEnd('feed');
967         $this->endXML();
968     }
969
970     function show_profile($profile, $content_type='xml', $notice=null, $includeStatuses=true)
971     {
972         $profile_array = $this->twitter_user_array($profile, $includeStatuses);
973         switch ($content_type) {
974         case 'xml':
975             $this->show_twitter_xml_user($profile_array);
976             break;
977         case 'json':
978             $this->show_json_objects($profile_array);
979             break;
980         default:
981             $this->clientError(_('Not a supported data format.'));
982             return;
983         }
984         return;
985     }
986
987     function get_user($id, $apidata=null)
988     {
989         if (empty($id)) {
990
991             // Twitter supports these other ways of passing the user ID
992             if (is_numeric($this->arg('id'))) {
993                 return User::staticGet($this->arg('id'));
994             } else if ($this->arg('id')) {
995                 $nickname = common_canonical_nickname($this->arg('id'));
996                 return User::staticGet('nickname', $nickname);
997             } else if ($this->arg('user_id')) {
998                 // This is to ensure that a non-numeric user_id still
999                 // overrides screen_name even if it doesn't get used
1000                 if (is_numeric($this->arg('user_id'))) {
1001                     return User::staticGet('id', $this->arg('user_id'));
1002                 }
1003             } else if ($this->arg('screen_name')) {
1004                 $nickname = common_canonical_nickname($this->arg('screen_name'));
1005                 return User::staticGet('nickname', $nickname);
1006             } else {
1007                 // Fall back to trying the currently authenticated user
1008                 return $apidata['user'];
1009             }
1010
1011         } else if (is_numeric($id)) {
1012             return User::staticGet($id);
1013         } else {
1014             $nickname = common_canonical_nickname($id);
1015             return User::staticGet('nickname', $nickname);
1016         }
1017     }
1018
1019     function get_group($id, $apidata=null)
1020     {
1021         if (empty($id)) {
1022
1023             if (is_numeric($this->arg('id'))) {
1024                 return User_group::staticGet($this->arg('id'));
1025             } else if ($this->arg('id')) {
1026                 $nickname = common_canonical_nickname($this->arg('id'));
1027                 return User_group::staticGet('nickname', $nickname);
1028             } else if ($this->arg('group_id')) {
1029                 // This is to ensure that a non-numeric user_id still
1030                 // overrides screen_name even if it doesn't get used
1031                 if (is_numeric($this->arg('group_id'))) {
1032                     return User_group::staticGet('id', $this->arg('group_id'));
1033                 }
1034             } else if ($this->arg('group_name')) {
1035                 $nickname = common_canonical_nickname($this->arg('group_name'));
1036                 return User_group::staticGet('nickname', $nickname);
1037             }
1038
1039         } else if (is_numeric($id)) {
1040             return User_group::staticGet($id);
1041         } else {
1042             $nickname = common_canonical_nickname($id);
1043             return User_group::staticGet('nickname', $nickname);
1044         }
1045     }
1046
1047     function get_profile($id)
1048     {
1049         if (is_numeric($id)) {
1050             return Profile::staticGet($id);
1051         } else {
1052             $user = User::staticGet('nickname', $id);
1053             if ($user) {
1054                 return $user->getProfile();
1055             } else {
1056                 return null;
1057             }
1058         }
1059     }
1060
1061     function source_link($source)
1062     {
1063         $source_name = _($source);
1064         switch ($source) {
1065         case 'web':
1066         case 'xmpp':
1067         case 'mail':
1068         case 'omb':
1069         case 'api':
1070             break;
1071         default:
1072             $ns = Notice_source::staticGet($source);
1073             if ($ns) {
1074                 $source_name = '<a href="' . $ns->url . '">' . $ns->name . '</a>';
1075             }
1076             break;
1077         }
1078         return $source_name;
1079     }
1080
1081     /**
1082      * Returns query argument or default value if not found. Certain
1083      * parameters used throughout the API are lightly scrubbed and
1084      * bounds checked.  This overrides Action::arg().
1085      *
1086      * @param string $key requested argument
1087      * @param string $def default value to return if $key is not provided
1088      *
1089      * @return var $var
1090      */
1091     function arg($key, $def=null)
1092     {
1093
1094         // XXX: Do even more input validation/scrubbing?
1095
1096         if (array_key_exists($key, $this->args)) {
1097             switch($key) {
1098             case 'page':
1099                 $page = (int)$this->args['page'];
1100                 return ($page < 1) ? 1 : $page;
1101             case 'count':
1102                 $count = (int)$this->args['count'];
1103                 if ($count < 1) {
1104                     return 20;
1105                 } elseif ($count > 200) {
1106                     return 200;
1107                 } else {
1108                     return $count;
1109                 }
1110             case 'since_id':
1111                 $since_id = (int)$this->args['since_id'];
1112                 return ($since_id < 1) ? 0 : $since_id;
1113             case 'max_id':
1114                 $max_id = (int)$this->args['max_id'];
1115                 return ($max_id < 1) ? 0 : $max_id;
1116             case 'since':
1117                 return strtotime($this->args['since']);
1118             default:
1119                 return parent::arg($key, $def);
1120             }
1121         } else {
1122             return $def;
1123         }
1124     }
1125
1126 }