]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/activityobject.php
Merge commit 'refs/merge-requests/26' of https://gitorious.org/social/mainline into...
[quix0rs-gnu-social.git] / lib / activityobject.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * An activity
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  Feed
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @author    Zach Copley <zach@status.net>
26  * @copyright 2010 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET')) {
32     exit(1);
33 }
34
35 require_once(INSTALLDIR.'/lib/activitystreamjsondocument.php');
36
37 /**
38  * A noun-ish thing in the activity universe
39  *
40  * The activity streams spec talks about activity objects, while also having
41  * a tag activity:object, which is in fact an activity object. Aaaaaah!
42  *
43  * This is just a thing in the activity universe. Can be the subject, object,
44  * or indirect object (target!) of an activity verb. Rotten name, and I'm
45  * propagating it. *sigh*
46  *
47  * @category  OStatus
48  * @package   StatusNet
49  * @author    Evan Prodromou <evan@status.net>
50  * @copyright 2010 StatusNet, Inc.
51  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
52  * @link      http://status.net/
53  */
54 class ActivityObject
55 {
56     const ARTICLE   = 'http://activitystrea.ms/schema/1.0/article';
57     const BLOGENTRY = 'http://activitystrea.ms/schema/1.0/blog-entry';
58     const NOTE      = 'http://activitystrea.ms/schema/1.0/note';
59     const STATUS    = 'http://activitystrea.ms/schema/1.0/status';
60     const FILE      = 'http://activitystrea.ms/schema/1.0/file';
61     const PHOTO     = 'http://activitystrea.ms/schema/1.0/photo';
62     const ALBUM     = 'http://activitystrea.ms/schema/1.0/photo-album';
63     const PLAYLIST  = 'http://activitystrea.ms/schema/1.0/playlist';
64     const VIDEO     = 'http://activitystrea.ms/schema/1.0/video';
65     const AUDIO     = 'http://activitystrea.ms/schema/1.0/audio';
66     const BOOKMARK  = 'http://activitystrea.ms/schema/1.0/bookmark';
67     const PERSON    = 'http://activitystrea.ms/schema/1.0/person';
68     const GROUP     = 'http://activitystrea.ms/schema/1.0/group';
69     const _LIST     = 'http://activitystrea.ms/schema/1.0/list'; // LIST is reserved
70     const PLACE     = 'http://activitystrea.ms/schema/1.0/place';
71     const COMMENT   = 'http://activitystrea.ms/schema/1.0/comment';
72     // ^^^^^^^^^^ tea!
73     const ACTIVITY = 'http://activitystrea.ms/schema/1.0/activity';
74     const SERVICE   = 'http://activitystrea.ms/schema/1.0/service';
75     const IMAGE     = 'http://activitystrea.ms/schema/1.0/image';
76     const COLLECTION = 'http://activitystrea.ms/schema/1.0/collection';
77     const APPLICATION = 'http://activitystrea.ms/schema/1.0/application';
78
79     // Atom elements we snarf
80
81     const TITLE   = 'title';
82     const SUMMARY = 'summary';
83     const ID      = 'id';
84     const SOURCE  = 'source';
85
86     const NAME  = 'name';
87     const URI   = 'uri';
88     const EMAIL = 'email';
89
90     const POSTEROUS   = 'http://posterous.com/help/rss/1.0';
91     const AUTHOR      = 'author';
92     const USERIMAGE   = 'userImage';
93     const PROFILEURL  = 'profileUrl';
94     const NICKNAME    = 'nickName';
95     const DISPLAYNAME = 'displayName';
96
97     public $element;
98     public $type;
99     public $id;
100     public $title;
101     public $summary;
102     public $content;
103     public $owner;
104     public $link;
105     public $source;
106     public $avatarLinks = array();
107     public $geopoint;
108     public $poco;
109     public $displayName;
110
111     // @todo move this stuff to it's own PHOTO activity object
112     const MEDIA_DESCRIPTION = 'description';
113
114     public $thumbnail;
115     public $largerImage;
116     public $description;
117     public $extra = array();
118
119     public $stream;
120
121     /**
122      * Constructor
123      *
124      * This probably needs to be refactored
125      * to generate a local class (ActivityPerson, ActivityFile, ...)
126      * based on the object type.
127      *
128      * @param DOMElement $element DOM thing to turn into an Activity thing
129      */
130     function __construct($element = null)
131     {
132         if (empty($element)) {
133             return;
134         }
135
136         $this->element = $element;
137
138         $this->geopoint = $this->_childContent(
139             $element,
140             ActivityContext::POINT,
141             ActivityContext::GEORSS
142         );
143
144         if ($element->tagName == 'author') {
145             $this->_fromAuthor($element);
146         } else if ($element->tagName == 'item') {
147             $this->_fromRssItem($element);
148         } else {
149             $this->_fromAtomEntry($element);
150         }
151
152         // Some per-type attributes...
153         if ($this->type == self::PERSON || $this->type == self::GROUP) {
154             $this->displayName = $this->title;
155
156             $photos = ActivityUtils::getLinks($element, 'photo');
157             if (count($photos)) {
158                 foreach ($photos as $link) {
159                     $this->avatarLinks[] = new AvatarLink($link);
160                 }
161             } else {
162                 $avatars = ActivityUtils::getLinks($element, 'avatar');
163                 foreach ($avatars as $link) {
164                     $this->avatarLinks[] = new AvatarLink($link);
165                 }
166             }
167
168             $this->poco = new PoCo($element);
169         }
170
171         if ($this->type == self::PHOTO) {
172
173             $this->thumbnail   = ActivityUtils::getLink($element, 'preview');
174             $this->largerImage = ActivityUtils::getLink($element, 'enclosure');
175
176             $this->description = ActivityUtils::childContent(
177                 $element,
178                 ActivityObject::MEDIA_DESCRIPTION,
179                 Activity::MEDIA
180             );
181         }
182         if ($this->type == self::_LIST) {
183             $owner = ActivityUtils::child($this->element, Activity::AUTHOR, Activity::SPEC);
184             $this->owner = new ActivityObject($owner);
185         }
186     }
187
188     private function _fromAuthor($element)
189     {
190         $this->type = $this->_childContent($element,
191                                            Activity::OBJECTTYPE,
192                                            Activity::SPEC);
193
194         if (empty($this->type)) {
195             $this->type = self::PERSON; // XXX: is this fair?
196         }
197
198
199         // Start with <poco::displayName>
200
201         $this->title = ActivityUtils::childContent($element, PoCo::DISPLAYNAME, PoCo::NS);
202
203         // try falling back to <atom:title>
204
205         if (empty($this->title)) {
206             $title = ActivityUtils::childHtmlContent($element, self::TITLE);
207
208             if (!empty($title)) {
209                 $this->title = common_strip_html($title);
210             }
211         }
212
213         // fall back to <atom:name> as a last resort
214
215         if (empty($this->title)) {
216             $this->title = $this->_childContent($element, self::NAME);
217         }
218
219         // start with <atom:id>
220
221         $this->id = $this->_childContent($element, self::ID);
222
223         // fall back to <atom:uri>
224
225         if (empty($this->id)) {
226             $this->id = $this->_childContent($element, self::URI);
227         }
228
229         // fall further back to <atom:email>
230
231         if (empty($this->id)) {
232             $email = $this->_childContent($element, self::EMAIL);
233             if (!empty($email)) {
234                 // XXX: acct: ?
235                 $this->id = 'mailto:'.$email;
236             }
237         }
238
239         $this->link = ActivityUtils::getPermalink($element);
240
241         // fall finally back to <link rel=alternate>
242
243         if (empty($this->id) && !empty($this->link)) { // fallback if there's no ID
244             $this->id = $this->link;
245         }
246     }
247
248     private function _fromAtomEntry($element)
249     {
250         $this->type = $this->_childContent($element, Activity::OBJECTTYPE,
251                                            Activity::SPEC);
252
253         if (empty($this->type)) {
254             $this->type = ActivityObject::NOTE;
255         }
256
257         $this->summary = ActivityUtils::childHtmlContent($element, self::SUMMARY);
258         $this->content = ActivityUtils::getContent($element);
259
260         // We don't like HTML in our titles, although it's technically allowed
261         $this->title = common_strip_html(ActivityUtils::childHtmlContent($element, self::TITLE));
262
263         $this->source  = $this->_getSource($element);
264
265         $this->link = ActivityUtils::getPermalink($element);
266
267         $this->id = $this->_childContent($element, self::ID);
268
269         if (empty($this->id) && !empty($this->link)) { // fallback if there's no ID
270             $this->id = $this->link;
271         }
272     }
273
274     // @todo FIXME: rationalize with Activity::_fromRssItem()
275     private function _fromRssItem($item)
276     {
277         $this->title = ActivityUtils::childContent($item, ActivityObject::TITLE, Activity::RSS);
278
279         $contentEl = ActivityUtils::child($item, ActivityUtils::CONTENT, Activity::CONTENTNS);
280
281         if (!empty($contentEl)) {
282             $this->content = htmlspecialchars_decode($contentEl->textContent, ENT_QUOTES);
283         } else {
284             $descriptionEl = ActivityUtils::child($item, Activity::DESCRIPTION, Activity::RSS);
285             if (!empty($descriptionEl)) {
286                 $this->content = htmlspecialchars_decode($descriptionEl->textContent, ENT_QUOTES);
287             }
288         }
289
290         $this->link = ActivityUtils::childContent($item, ActivityUtils::LINK, Activity::RSS);
291
292         $guidEl = ActivityUtils::child($item, Activity::GUID, Activity::RSS);
293
294         if (!empty($guidEl)) {
295             $this->id = $guidEl->textContent;
296
297             if ($guidEl->hasAttribute('isPermaLink')) {
298                 // overwrites <link>
299                 $this->link = $this->id;
300             }
301         }
302     }
303
304     public static function fromRssAuthor($el)
305     {
306         $text = $el->textContent;
307
308         if (preg_match('/^(.*?) \((.*)\)$/', $text, $match)) {
309             $email = $match[1];
310             $name = $match[2];
311         } else if (preg_match('/^(.*?) <(.*)>$/', $text, $match)) {
312             $name = $match[1];
313             $email = $match[2];
314         } else if (preg_match('/.*@.*/', $text)) {
315             $email = $text;
316             $name = null;
317         } else {
318             $name = $text;
319             $email = null;
320         }
321
322         // Not really enough info
323
324         $obj = new ActivityObject();
325
326         $obj->element = $el;
327
328         $obj->type  = ActivityObject::PERSON;
329         $obj->title = $name;
330
331         if (!empty($email)) {
332             $obj->id = 'mailto:'.$email;
333         }
334
335         return $obj;
336     }
337
338     public static function fromDcCreator($el)
339     {
340         // Not really enough info
341
342         $text = $el->textContent;
343
344         $obj = new ActivityObject();
345
346         $obj->element = $el;
347
348         $obj->title = $text;
349         $obj->type  = ActivityObject::PERSON;
350
351         return $obj;
352     }
353
354     public static function fromRssChannel($el)
355     {
356         $obj = new ActivityObject();
357
358         $obj->element = $el;
359
360         $obj->type = ActivityObject::PERSON; // @fixme guess better
361
362         $obj->title = ActivityUtils::childContent($el, ActivityObject::TITLE, Activity::RSS);
363         $obj->link  = ActivityUtils::childContent($el, ActivityUtils::LINK, Activity::RSS);
364         $obj->id    = ActivityUtils::getLink($el, Activity::SELF);
365
366         if (empty($obj->id)) {
367             $obj->id = $obj->link;
368         }
369
370         $desc = ActivityUtils::childContent($el, Activity::DESCRIPTION, Activity::RSS);
371
372         if (!empty($desc)) {
373             $obj->content = htmlspecialchars_decode($desc, ENT_QUOTES);
374         }
375
376         $imageEl = ActivityUtils::child($el, Activity::IMAGE, Activity::RSS);
377
378         if (!empty($imageEl)) {
379             $url = ActivityUtils::childContent($imageEl, Activity::URL, Activity::RSS);
380             $al = new AvatarLink();
381             $al->url = $url;
382             $obj->avatarLinks[] = $al;
383         }
384
385         return $obj;
386     }
387
388     public static function fromPosterousAuthor($el)
389     {
390         $obj = new ActivityObject();
391
392         $obj->type = ActivityObject::PERSON; // @fixme any others...?
393
394         $userImage = ActivityUtils::childContent($el, self::USERIMAGE, self::POSTEROUS);
395
396         if (!empty($userImage)) {
397             $al = new AvatarLink();
398             $al->url = $userImage;
399             $obj->avatarLinks[] = $al;
400         }
401
402         $obj->link = ActivityUtils::childContent($el, self::PROFILEURL, self::POSTEROUS);
403         $obj->id   = $obj->link;
404
405         $obj->poco = new PoCo();
406
407         $obj->poco->preferredUsername = ActivityUtils::childContent($el, self::NICKNAME, self::POSTEROUS);
408         $obj->poco->displayName       = ActivityUtils::childContent($el, self::DISPLAYNAME, self::POSTEROUS);
409
410         $obj->title = $obj->poco->displayName;
411
412         return $obj;
413     }
414
415     private function _childContent($element, $tag, $namespace=ActivityUtils::ATOM)
416     {
417         return ActivityUtils::childContent($element, $tag, $namespace);
418     }
419
420     // Try to get a unique id for the source feed
421
422     private function _getSource($element)
423     {
424         $sourceEl = ActivityUtils::child($element, 'source');
425
426         if (empty($sourceEl)) {
427             return null;
428         } else {
429             $href = ActivityUtils::getLink($sourceEl, 'self');
430             if (!empty($href)) {
431                 return $href;
432             } else {
433                 return ActivityUtils::childContent($sourceEl, 'id');
434             }
435         }
436     }
437
438     static function fromGroup(User_group $group)
439     {
440         $object = new ActivityObject();
441
442         if (Event::handle('StartActivityObjectFromGroup', array($group, &$object))) {
443
444             $object->type   = ActivityObject::GROUP;
445             $object->id     = $group->getUri();
446             $object->title  = $group->getBestName();
447             $object->link   = $group->getUri();
448
449             $object->avatarLinks[] = AvatarLink::fromFilename($group->homepage_logo,
450                                                               AVATAR_PROFILE_SIZE);
451
452             $object->avatarLinks[] = AvatarLink::fromFilename($group->stream_logo,
453                                                               AVATAR_STREAM_SIZE);
454
455             $object->avatarLinks[] = AvatarLink::fromFilename($group->mini_logo,
456                                                               AVATAR_MINI_SIZE);
457
458             $object->poco = PoCo::fromGroup($group);
459             Event::handle('EndActivityObjectFromGroup', array($group, &$object));
460         }
461
462         return $object;
463     }
464
465     static function fromPeopletag($ptag)
466     {
467         $object = new ActivityObject();
468         if (Event::handle('StartActivityObjectFromPeopletag', array($ptag, &$object))) {
469             $object->type    = ActivityObject::_LIST;
470
471             $object->id      = $ptag->getUri();
472             $object->title   = $ptag->tag;
473             $object->summary = $ptag->description;
474             $object->link    = $ptag->homeUrl();
475             $object->owner   = Profile::getKV('id', $ptag->tagger);
476             $object->poco    = PoCo::fromProfile($object->owner);
477             Event::handle('EndActivityObjectFromPeopletag', array($ptag, &$object));
478         }
479         return $object;
480     }
481
482     static function fromFile(File $file)
483     {
484         $object = new ActivityObject();
485
486         if (Event::handle('StartActivityObjectFromFile', array($file, &$object))) {
487
488             $object->type = self::mimeTypeToObjectType($file->mimetype);
489             $object->id   = TagURI::mint(sprintf("file:%d", $file->id));
490             $object->link = common_local_url('attachment', array('attachment' => $file->id));
491
492             if ($file->title) {
493                 $object->title = $file->title;
494             }
495
496             if ($file->date) {
497                 $object->date = $file->date;
498             }
499
500             try {
501                 $thumbnail = $file->getThumbnail();
502                 $object->thumbnail = $thumbnail;
503             } catch (UseFileAsThumbnailException $e) {
504                 $object->thumbnail = null;
505             } catch (UnsupportedMediaException $e) {
506                 $object->thumbnail = null;
507             }
508
509             switch (self::canonicalType($object->type)) {
510             case 'image':
511                 $object->largerImage = $file->url;
512                 break;
513             case 'video':
514             case 'audio':
515                 $object->stream = $file->url;
516                 break;
517             }
518
519             Event::handle('EndActivityObjectFromFile', array($file, &$object));
520         }
521
522         return $object;
523     }
524
525     static function fromNoticeSource(Notice_source $source)
526     {
527         $object = new ActivityObject();
528         $wellKnown = array('web', 'xmpp', 'mail', 'omb', 'system', 'api', 'ostatus',
529                            'activity', 'feed', 'mirror', 'twitter', 'facebook');
530
531         if (Event::handle('StartActivityObjectFromNoticeSource', array($source, &$object))) {
532             $object->type = ActivityObject::APPLICATION;
533
534             if (in_array($source->code, $wellKnown)) {
535                 // We use one ID for all well-known StatusNet sources
536                 $object->id = "tag:status.net,2009:notice-source:".$source->code;
537             } else if ($source->url) {
538                 // They registered with an URL
539                 $object->id = $source->url;
540             } else {
541                 // Locally-registered, no URL
542                 $object->id = TagURI::mint("notice-source:".$source->code);
543             }
544
545             if ($source->url) {
546                 $object->link = $source->url;
547             }
548
549             if ($source->name) {
550                 $object->title = $source->name;
551             } else {
552                 $object->title = $source->code;
553             }
554
555             if ($source->created) {
556                 $object->date = $source->created;
557             }
558             
559             $object->extra[] = array('status_net', array('source_code' => $source->code));
560
561             Event::handle('EndActivityObjectFromNoticeSource', array($source, &$object));
562         }
563
564         return $object;
565     }
566
567     static function fromMessage(Message $message)
568     {
569         $object = new ActivityObject();
570
571         if (Event::handle('StartActivityObjectFromMessage', array($message, &$object))) {
572
573             $object->type    = ActivityObject::NOTE;
574             $object->id      = ($message->uri) ? $message->uri : (($message->url) ? $message->url : TagURI::mint(sprintf("message:%d", $message->id)));
575             $object->content = $message->rendered;
576             $object->date    = $message->created;
577
578             if ($message->url) {
579                 $object->link = $message->url;
580             } else {
581                 $object->link = common_local_url('showmessage', array('message' => $message->id));
582             }
583
584             $object->extra[] = array('status_net', array('message_id' => $message->id));
585             
586             Event::handle('EndActivityObjectFromMessage', array($message, &$object));
587         }
588
589         return $object;
590     }
591
592     function outputTo($xo, $tag='activity:object')
593     {
594         if (!empty($tag)) {
595             $xo->elementStart($tag);
596         }
597
598         if (Event::handle('StartActivityObjectOutputAtom', array($this, $xo))) {
599             $xo->element('activity:object-type', null, $this->type);
600
601             // <author> uses URI
602
603             if ($tag == 'author') {
604                 $xo->element(self::URI, null, $this->id);
605             } else {
606                 $xo->element(self::ID, null, $this->id);
607             }
608
609             if (!empty($this->title)) {
610                 $name = common_xml_safe_str($this->title);
611                 if ($tag == 'author') {
612                     // XXX: Backward compatibility hack -- atom:name should contain
613                     // full name here, instead of nickname, i.e.: $name. Change
614                     // this in the next version.
615                     $xo->element(self::NAME, null, $this->poco->preferredUsername);
616                 } else {
617                     $xo->element(self::TITLE, null, $name);
618                 }
619             }
620
621             if (!empty($this->summary)) {
622                 $xo->element(
623                     self::SUMMARY,
624                     null,
625                     common_xml_safe_str($this->summary)
626                 );
627             }
628
629             if (!empty($this->content)) {
630                 // XXX: assuming HTML content here
631                 $xo->element(
632                     ActivityUtils::CONTENT,
633                     array('type' => 'html'),
634                     common_xml_safe_str($this->content)
635                 );
636             }
637
638             if (!empty($this->link)) {
639                 $xo->element(
640                     'link',
641                     array(
642                         'rel' => 'alternate',
643                         'type' => 'text/html',
644                         'href' => $this->link
645                     ),
646                     null
647                 );
648             }
649
650             if(!empty($this->owner)) {
651                 $owner = $this->owner->asActivityNoun(self::AUTHOR);
652                 $xo->raw($owner);
653             }
654
655             if ($this->type == ActivityObject::PERSON
656                 || $this->type == ActivityObject::GROUP) {
657
658                 foreach ($this->avatarLinks as $alink) {
659                     $xo->element('link',
660                             array(
661                                 'rel'          => 'avatar',
662                                 'type'         => $alink->type,
663                                 'media:width'  => $alink->width,
664                                 'media:height' => $alink->height,
665                                 'href'         => $alink->url,
666                                 ),
667                             null);
668                 }
669             }
670
671             if (!empty($this->geopoint)) {
672                 $xo->element(
673                     'georss:point',
674                     null,
675                     $this->geopoint
676                 );
677             }
678
679             if (!empty($this->poco)) {
680                 $this->poco->outputTo($xo);
681             }
682
683             // @fixme there's no way here to make a tree; elements can only contain plaintext
684             // @fixme these may collide with JSON extensions
685             foreach ($this->extra as $el) {
686                 list($extraTag, $attrs, $content) = array_pad($el, 3, null);
687                 $xo->element($extraTag, $attrs, $content);
688             }
689
690             Event::handle('EndActivityObjectOutputAtom', array($this, $xo));
691         }
692
693         if (!empty($tag)) {
694             $xo->elementEnd($tag);
695         }
696
697         return;
698     }
699
700     function asString($tag='activity:object')
701     {
702         $xs = new XMLStringer(true);
703
704         $this->outputTo($xs, $tag);
705
706         return $xs->getString();
707     }
708
709     /*
710      * Returns an array based on this Activity Object suitable for
711      * encoding as JSON.
712      *
713      * @return array $object the activity object array
714      */
715
716     function asArray()
717     {
718         $object = array();
719
720         if (Event::handle('StartActivityObjectOutputJson', array($this, &$object))) {
721             // XXX: attachments are added by Activity
722
723             // author (Add object for author? Could be useful for repeats.)
724
725             // content (Add rendered version of the notice?)
726
727             // downstreamDuplicates
728
729             // id
730
731             if ($this->id) {
732                 $object['id'] = $this->id;
733             } else if ($this->link) {
734                 $object['id'] = $this->link;
735             }
736
737             if ($this->type == ActivityObject::PERSON
738                 || $this->type == ActivityObject::GROUP) {
739
740                 // displayName
741                 $object['displayName'] = $this->title;
742
743                 // XXX: Not sure what the best avatar is to use for the
744                 // author's "image". For now, I'm using the large size.
745
746                 $imgLink          = null;
747                 $avatarMediaLinks = array();
748
749                 foreach ($this->avatarLinks as $a) {
750
751                     // Make a MediaLink for every other Avatar
752                     $avatar = new ActivityStreamsMediaLink(
753                         $a->url,
754                         $a->width,
755                         $a->height,
756                         $a->type,
757                         'avatar'
758                     );
759
760                     // Find the big avatar to use as the "image"
761                     if ($a->height == AVATAR_PROFILE_SIZE) {
762                         $imgLink = $avatar;
763                     }
764
765                     $avatarMediaLinks[] = $avatar->asArray();
766                 }
767
768                 if (!array_key_exists('status_net', $object)) {
769                     $object['status_net'] = array();
770                 }
771
772                 $object['status_net']['avatarLinks'] = $avatarMediaLinks; // extension
773
774                 // image
775                 if (!empty($imgLink)) {
776                     $object['image']  = $imgLink->asArray();
777                 }
778             }
779
780             // objectType
781             //
782             // We can probably use the whole schema URL here but probably the
783             // relative simple name is easier to parse
784
785             $object['objectType'] = self::canonicalType($this->type);
786
787             // summary
788             $object['summary'] = $this->summary;
789
790             // content, usually rendered HTML
791             $object['content'] = $this->content;
792
793             // published (probably don't need. Might be useful for repeats.)
794
795             // updated (probably don't need this)
796
797             // TODO: upstreamDuplicates
798
799             if ($this->link) {
800                 $object['url'] = $this->link;
801             }
802
803             /* Extensions */
804             // @fixme these may collide with XML extensions
805             // @fixme multiple tags of same name will overwrite each other
806             // @fixme text content from XML extensions will be lost
807
808             foreach ($this->extra as $e) {
809                 list($objectName, $props, $txt) = array_pad($e, 3, null);
810                 if (!empty($objectName)) {
811                     $parts = explode(":", $objectName);
812                     if (count($parts) == 2 && $parts[0] == "statusnet") {
813                         if (!array_key_exists('status_net', $object)) {
814                             $object['status_net'] = array();
815                         }
816                         $object['status_net'][$parts[1]] = $props;
817                     } else {
818                         $object[$objectName] = $props;
819                     }
820                 }
821             }
822
823             if (!empty($this->geopoint)) {
824
825                 list($lat, $lon) = explode(' ', $this->geopoint);
826
827                 if (!empty($lat) && !empty($lon)) {
828                     $object['location'] = array(
829                         'objectType' => 'place',
830                         'position' => sprintf("%+02.5F%+03.5F/", $lat, $lon),
831                         'lat' => $lat,
832                         'lon' => $lon
833                     );
834
835                     $loc = Location::fromLatLon((float)$lat, (float)$lon);
836
837                     if ($loc) {
838                         $name = $loc->getName();
839
840                         if ($name) {
841                             $object['location']['displayName'] = $name;
842                         }
843                         $url = $loc->getURL();
844
845                         if ($url) {
846                             $object['location']['url'] = $url;
847                         }
848                     }
849                 }
850             }
851
852             if (!empty($this->poco)) {
853                 $object['portablecontacts_net'] = array_filter($this->poco->asArray());
854             }
855
856             if (!empty($this->thumbnail)) {
857                 if (is_string($this->thumbnail)) {
858                     $object['image'] = array('url' => $this->thumbnail);
859                 } else {
860                     $object['image'] = array('url' => $this->thumbnail->url);
861                     if ($this->thumbnail->width) {
862                         $object['image']['width'] = $this->thumbnail->width;
863                     }
864                     if ($this->thumbnail->height) {
865                         $object['image']['height'] = $this->thumbnail->height;
866                     }
867                 }
868             }
869
870             switch (self::canonicalType($this->type)) {
871             case 'image':
872                 if (!empty($this->largerImage)) {
873                     $object['fullImage'] = array('url' => $this->largerImage);
874                 }
875                 break;
876             case 'audio':
877             case 'video':
878                 if (!empty($this->stream)) {
879                     $object['stream'] = array('url' => $this->stream);
880                 }
881                 break;
882             }
883
884             Event::handle('EndActivityObjectOutputJson', array($this, &$object));
885         }
886         return array_filter($object);
887     }
888
889     public function getIdentifiers() {
890         $ids = array();
891         foreach(array('id', 'link', 'url') as $id) {
892             if (isset($this->$id)) {
893                 $ids[] = $this->$id;
894             }
895         }
896         return array_unique($ids);
897     }
898
899     static function canonicalType($type) {
900         return ActivityUtils::resolveUri($type, true);
901     }
902
903     static function mimeTypeToObjectType($mimeType) {
904         $ot = null;
905
906         // Default
907
908         if (empty($mimeType)) {
909             return self::FILE;
910         }
911
912         $parts = explode('/', $mimeType);
913
914         switch ($parts[0]) {
915         case 'image':
916             $ot = self::IMAGE;
917             break;
918         case 'audio':
919             $ot = self::AUDIO;
920             break;
921         case 'video':
922             $ot = self::VIDEO;
923             break;
924         default:
925             $ot = self::FILE;
926         }
927
928         return $ot;
929     }
930 }