]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/activity.php
2cb80f9e1a26bba80f94c19822b41f4db67fc0b1
[quix0rs-gnu-social.git] / lib / activity.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 class PoCoURL
36 {
37     const URLS      = 'urls';
38     const TYPE      = 'type';
39     const VALUE     = 'value';
40     const PRIMARY   = 'primary';
41
42     public $type;
43     public $value;
44     public $primary;
45
46     function __construct($type, $value, $primary = false)
47     {
48         $this->type    = $type;
49         $this->value   = $value;
50         $this->primary = $primary;
51     }
52
53     function asString()
54     {
55         $xs = new XMLStringer(true);
56         $xs->elementStart('poco:urls');
57         $xs->element('poco:type', null, $this->type);
58         $xs->element('poco:value', null, $this->value);
59         if (!empty($this->primary)) {
60             $xs->element('poco:primary', null, 'true');
61         }
62         $xs->elementEnd('poco:urls');
63         return $xs->getString();
64     }
65 }
66
67 class PoCoAddress
68 {
69     const ADDRESS   = 'address';
70     const FORMATTED = 'formatted';
71
72     public $formatted;
73
74     // @todo Other address fields
75
76     function asString()
77     {
78         if (!empty($this->formatted)) {
79             $xs = new XMLStringer(true);
80             $xs->elementStart('poco:address');
81             $xs->element('poco:formatted', null, $this->formatted);
82             $xs->elementEnd('poco:address');
83             return $xs->getString();
84         }
85
86         return null;
87     }
88 }
89
90 class PoCo
91 {
92     const NS = 'http://portablecontacts.net/spec/1.0';
93
94     const USERNAME     = 'preferredUsername';
95     const DISPLAYNAME  = 'displayName';
96     const NOTE         = 'note';
97
98     public $preferredUsername;
99     public $displayName;
100     public $note;
101     public $address;
102     public $urls = array();
103
104     function __construct($element = null)
105     {
106         if (empty($element)) {
107             return;
108         }
109
110         $this->preferredUsername = ActivityUtils::childContent(
111             $element,
112             self::USERNAME,
113             self::NS
114         );
115
116         $this->displayName = ActivityUtils::childContent(
117             $element,
118             self::DISPLAYNAME,
119             self::NS
120         );
121
122         $this->note = ActivityUtils::childContent(
123             $element,
124             self::NOTE,
125             self::NS
126         );
127
128         $this->address = $this->_getAddress($element);
129         $this->urls = $this->_getURLs($element);
130     }
131
132     private function _getURLs($element)
133     {
134         $urlEls = $element->getElementsByTagnameNS(self::NS, PoCoURL::URLS);
135         $urls = array();
136
137         foreach ($urlEls as $urlEl) {
138
139             $type = ActivityUtils::childContent(
140                 $urlEl,
141                 PoCoURL::TYPE,
142                 PoCo::NS
143             );
144
145             $value = ActivityUtils::childContent(
146                 $urlEl,
147                 PoCoURL::VALUE,
148                 PoCo::NS
149             );
150
151             $primary = ActivityUtils::childContent(
152                 $urlEl,
153                 PoCoURL::PRIMARY,
154                 PoCo::NS
155             );
156
157             $isPrimary = false;
158
159             if (isset($primary) && $primary == 'true') {
160                 $isPrimary = true;
161             }
162
163             // @todo check to make sure a primary hasn't already been added
164
165             array_push($urls, new PoCoURL($type, $value, $isPrimary));
166         }
167         return $urls;
168     }
169
170     private function _getAddress($element)
171     {
172         $addressEl = ActivityUtils::child(
173             $element,
174             PoCoAddress::ADDRESS,
175             PoCo::NS
176         );
177
178         if (!empty($addressEl)) {
179             $formatted = ActivityUtils::childContent(
180                 $addressEl,
181                 PoCoAddress::FORMATTED,
182                 self::NS
183             );
184
185             if (!empty($formatted)) {
186                 $address = new PoCoAddress();
187                 $address->formatted = $formatted;
188                 return $address;
189             }
190         }
191
192         return null;
193     }
194
195     function fromProfile($profile)
196     {
197         if (empty($profile)) {
198             return null;
199         }
200
201         $poco = new PoCo();
202
203         $poco->preferredUsername = $profile->nickname;
204         $poco->displayName       = $profile->getBestName();
205
206         $poco->note = $profile->bio;
207
208         $paddy = new PoCoAddress();
209         $paddy->formatted = $profile->location;
210         $poco->address = $paddy;
211
212         if (!empty($profile->homepage)) {
213             array_push(
214                 $poco->urls,
215                 new PoCoURL(
216                     'homepage',
217                     $profile->homepage,
218                     true
219                 )
220             );
221         }
222
223         return $poco;
224     }
225
226     function fromGroup($group)
227     {
228         if (empty($group)) {
229             return null;
230         }
231
232         $poco = new PoCo();
233
234         $poco->preferredUsername = $group->nickname;
235         $poco->displayName       = $group->getBestName();
236
237         $poco->note = $group->description;
238
239         $paddy = new PoCoAddress();
240         $paddy->formatted = $group->location;
241         $poco->address = $paddy;
242
243         if (!empty($group->homepage)) {
244             array_push(
245                 $poco->urls,
246                 new PoCoURL(
247                     'homepage',
248                     $group->homepage,
249                     true
250                 )
251             );
252         }
253
254         return $poco;
255     }
256
257     function getPrimaryURL()
258     {
259         foreach ($this->urls as $url) {
260             if ($url->primary) {
261                 return $url;
262             }
263         }
264     }
265
266     function asString()
267     {
268         $xs = new XMLStringer(true);
269         $xs->element(
270             'poco:preferredUsername',
271             null,
272             $this->preferredUsername
273         );
274
275         $xs->element(
276             'poco:displayName',
277             null,
278             $this->displayName
279         );
280
281         if (!empty($this->note)) {
282             $xs->element('poco:note', null, $this->note);
283         }
284
285         if (!empty($this->address)) {
286             $xs->raw($this->address->asString());
287         }
288
289         foreach ($this->urls as $url) {
290             $xs->raw($url->asString());
291         }
292
293         return $xs->getString();
294     }
295 }
296
297 /**
298  * Utilities for turning DOMish things into Activityish things
299  *
300  * Some common functions that I didn't have the bandwidth to try to factor
301  * into some kind of reasonable superclass, so just dumped here. Might
302  * be useful to have an ActivityObject parent class or something.
303  *
304  * @category  OStatus
305  * @package   StatusNet
306  * @author    Evan Prodromou <evan@status.net>
307  * @copyright 2010 StatusNet, Inc.
308  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
309  * @link      http://status.net/
310  */
311
312 class ActivityUtils
313 {
314     const ATOM = 'http://www.w3.org/2005/Atom';
315
316     const LINK = 'link';
317     const REL  = 'rel';
318     const TYPE = 'type';
319     const HREF = 'href';
320
321     const CONTENT = 'content';
322     const SRC     = 'src';
323
324     /**
325      * Get the permalink for an Activity object
326      *
327      * @param DOMElement $element A DOM element
328      *
329      * @return string related link, if any
330      */
331
332     static function getPermalink($element)
333     {
334         return self::getLink($element, 'alternate', 'text/html');
335     }
336
337     /**
338      * Get the permalink for an Activity object
339      *
340      * @param DOMElement $element A DOM element
341      *
342      * @return string related link, if any
343      */
344
345     static function getLink(DOMNode $element, $rel, $type=null)
346     {
347         $els = $element->childNodes;
348
349         foreach ($els as $link) {
350             if ($link->localName == self::LINK && $link->namespaceURI == self::ATOM) {
351
352                 $linkRel = $link->getAttribute(self::REL);
353                 $linkType = $link->getAttribute(self::TYPE);
354
355                 if ($linkRel == $rel &&
356                     (is_null($type) || $linkType == $type)) {
357                     return $link->getAttribute(self::HREF);
358                 }
359             }
360         }
361
362         return null;
363     }
364
365     static function getLinks(DOMNode $element, $rel, $type=null)
366     {
367         $els = $element->childNodes;
368         $out = array();
369
370         foreach ($els as $link) {
371             if ($link->localName == self::LINK && $link->namespaceURI == self::ATOM) {
372
373                 $linkRel = $link->getAttribute(self::REL);
374                 $linkType = $link->getAttribute(self::TYPE);
375
376                 if ($linkRel == $rel &&
377                     (is_null($type) || $linkType == $type)) {
378                     $out[] = $link;
379                 }
380             }
381         }
382
383         return $out;
384     }
385
386     /**
387      * Gets the first child element with the given tag
388      *
389      * @param DOMElement $element   element to pick at
390      * @param string     $tag       tag to look for
391      * @param string     $namespace Namespace to look under
392      *
393      * @return DOMElement found element or null
394      */
395
396     static function child(DOMNode $element, $tag, $namespace=self::ATOM)
397     {
398         $els = $element->childNodes;
399         if (empty($els) || $els->length == 0) {
400             return null;
401         } else {
402             for ($i = 0; $i < $els->length; $i++) {
403                 $el = $els->item($i);
404                 if ($el->localName == $tag && $el->namespaceURI == $namespace) {
405                     return $el;
406                 }
407             }
408         }
409     }
410
411     /**
412      * Grab the text content of a DOM element child of the current element
413      *
414      * @param DOMElement $element   Element whose children we examine
415      * @param string     $tag       Tag to look up
416      * @param string     $namespace Namespace to use, defaults to Atom
417      *
418      * @return string content of the child
419      */
420
421     static function childContent(DOMNode $element, $tag, $namespace=self::ATOM)
422     {
423         $el = self::child($element, $tag, $namespace);
424
425         if (empty($el)) {
426             return null;
427         } else {
428             return $el->textContent;
429         }
430     }
431
432     /**
433      * Get the content of an atom:entry-like object
434      *
435      * @param DOMElement $element The element to examine.
436      *
437      * @return string unencoded HTML content of the element, like "This -&lt; is <b>HTML</b>."
438      *
439      * @todo handle remote content
440      * @todo handle embedded XML mime types
441      * @todo handle base64-encoded non-XML and non-text mime types
442      */
443
444     static function getContent($element)
445     {
446         $contentEl = ActivityUtils::child($element, self::CONTENT);
447
448         if (!empty($contentEl)) {
449
450             $src  = $contentEl->getAttribute(self::SRC);
451
452             if (!empty($src)) {
453                 throw new ClientException(_("Can't handle remote content yet."));
454             }
455
456             $type = $contentEl->getAttribute(self::TYPE);
457
458             // slavishly following http://atompub.org/rfc4287.html#rfc.section.4.1.3.3
459
460             if ($type == 'text') {
461                 return $contentEl->textContent;
462             } else if ($type == 'html') {
463                 $text = $contentEl->textContent;
464                 return htmlspecialchars_decode($text, ENT_QUOTES);
465             } else if ($type == 'xhtml') {
466                 $divEl = ActivityUtils::child($contentEl, 'div');
467                 if (empty($divEl)) {
468                     return null;
469                 }
470                 $doc = $divEl->ownerDocument;
471                 $text = '';
472                 $children = $divEl->childNodes;
473
474                 for ($i = 0; $i < $children->length; $i++) {
475                     $child = $children->item($i);
476                     $text .= $doc->saveXML($child);
477                 }
478                 return trim($text);
479             } else if (in_array(array('text/xml', 'application/xml'), $type) ||
480                        preg_match('#(+|/)xml$#', $type)) {
481                 throw new ClientException(_("Can't handle embedded XML content yet."));
482             } else if (strncasecmp($type, 'text/', 5)) {
483                 return $contentEl->textContent;
484             } else {
485                 throw new ClientException(_("Can't handle embedded Base64 content yet."));
486             }
487         }
488     }
489 }
490
491 // XXX: Arg! This wouldn't be necessary if we used Avatars conistently
492 class AvatarLink
493 {
494     public $url;
495     public $type;
496     public $size;
497     public $width;
498     public $height;
499
500     function __construct($element=null)
501     {
502         if ($element) {
503             // @fixme use correct namespaces
504             $this->url = $element->getAttribute('href');
505             $this->type = $element->getAttribute('type');
506             $width = $element->getAttribute('media:width');
507             if ($width != null) {
508                 $this->width = intval($width);
509             }
510             $height = $element->getAttribute('media:height');
511             if ($height != null) {
512                 $this->height = intval($height);
513             }
514         }
515     }
516
517     static function fromAvatar($avatar)
518     {
519         if (empty($avatar)) {
520             return null;
521         }
522         $alink = new AvatarLink();
523         $alink->type   = $avatar->mediatype;
524         $alink->height = $avatar->height;
525         $alink->width  = $avatar->width;
526         $alink->url    = $avatar->displayUrl();
527         return $alink;
528     }
529
530     static function fromFilename($filename, $size)
531     {
532         $alink = new AvatarLink();
533         $alink->url    = $filename;
534         $alink->height = $size;
535         if (!empty($filename)) {
536             $alink->width  = $size;
537             $alink->type   = self::mediatype($filename);
538         } else {
539             $alink->url    = User_group::defaultLogo($size);
540             $alink->type   = 'image/png';
541         }
542         return $alink;
543     }
544
545     // yuck!
546     static function mediatype($filename) {
547         $ext = strtolower(end(explode('.', $filename)));
548         if ($ext == 'jpeg') {
549             $ext = 'jpg';
550         }
551         // hope we don't support any others
552         $types = array('png', 'gif', 'jpg', 'jpeg');
553         if (in_array($ext, $types)) {
554             return 'image/' . $ext;
555         }
556         return null;
557     }
558 }
559
560 /**
561  * A noun-ish thing in the activity universe
562  *
563  * The activity streams spec talks about activity objects, while also having
564  * a tag activity:object, which is in fact an activity object. Aaaaaah!
565  *
566  * This is just a thing in the activity universe. Can be the subject, object,
567  * or indirect object (target!) of an activity verb. Rotten name, and I'm
568  * propagating it. *sigh*
569  *
570  * @category  OStatus
571  * @package   StatusNet
572  * @author    Evan Prodromou <evan@status.net>
573  * @copyright 2010 StatusNet, Inc.
574  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
575  * @link      http://status.net/
576  */
577
578 class ActivityObject
579 {
580     const ARTICLE   = 'http://activitystrea.ms/schema/1.0/article';
581     const BLOGENTRY = 'http://activitystrea.ms/schema/1.0/blog-entry';
582     const NOTE      = 'http://activitystrea.ms/schema/1.0/note';
583     const STATUS    = 'http://activitystrea.ms/schema/1.0/status';
584     const FILE      = 'http://activitystrea.ms/schema/1.0/file';
585     const PHOTO     = 'http://activitystrea.ms/schema/1.0/photo';
586     const ALBUM     = 'http://activitystrea.ms/schema/1.0/photo-album';
587     const PLAYLIST  = 'http://activitystrea.ms/schema/1.0/playlist';
588     const VIDEO     = 'http://activitystrea.ms/schema/1.0/video';
589     const AUDIO     = 'http://activitystrea.ms/schema/1.0/audio';
590     const BOOKMARK  = 'http://activitystrea.ms/schema/1.0/bookmark';
591     const PERSON    = 'http://activitystrea.ms/schema/1.0/person';
592     const GROUP     = 'http://activitystrea.ms/schema/1.0/group';
593     const PLACE     = 'http://activitystrea.ms/schema/1.0/place';
594     const COMMENT   = 'http://activitystrea.ms/schema/1.0/comment';
595     // ^^^^^^^^^^ tea!
596
597     // Atom elements we snarf
598
599     const TITLE   = 'title';
600     const SUMMARY = 'summary';
601     const ID      = 'id';
602     const SOURCE  = 'source';
603
604     const NAME  = 'name';
605     const URI   = 'uri';
606     const EMAIL = 'email';
607
608     public $element;
609     public $type;
610     public $id;
611     public $title;
612     public $summary;
613     public $content;
614     public $link;
615     public $source;
616     public $avatarLinks = array();
617     public $geopoint;
618     public $poco;
619     public $displayName;
620
621     /**
622      * Constructor
623      *
624      * This probably needs to be refactored
625      * to generate a local class (ActivityPerson, ActivityFile, ...)
626      * based on the object type.
627      *
628      * @param DOMElement $element DOM thing to turn into an Activity thing
629      */
630
631     function __construct($element = null)
632     {
633         if (empty($element)) {
634             return;
635         }
636
637         $this->element = $element;
638
639         $this->geopoint = $this->_childContent(
640             $element,
641             ActivityContext::POINT,
642             ActivityContext::GEORSS
643         );
644
645         if ($element->tagName == 'author') {
646
647             $this->type  = self::PERSON; // XXX: is this fair?
648             $this->title = $this->_childContent($element, self::NAME);
649             $this->id    = $this->_childContent($element, self::URI);
650
651             if (empty($this->id)) {
652                 $email = $this->_childContent($element, self::EMAIL);
653                 if (!empty($email)) {
654                     // XXX: acct: ?
655                     $this->id = 'mailto:'.$email;
656                 }
657             }
658
659         } else {
660
661             $this->type = $this->_childContent($element, Activity::OBJECTTYPE,
662                                                Activity::SPEC);
663
664             if (empty($this->type)) {
665                 $this->type = ActivityObject::NOTE;
666             }
667
668             $this->id      = $this->_childContent($element, self::ID);
669             $this->title   = $this->_childContent($element, self::TITLE);
670             $this->summary = $this->_childContent($element, self::SUMMARY);
671
672             $this->source  = $this->_getSource($element);
673
674             $this->content = ActivityUtils::getContent($element);
675
676             $this->link = ActivityUtils::getPermalink($element);
677
678         }
679
680         // Some per-type attributes...
681         if ($this->type == self::PERSON || $this->type == self::GROUP) {
682             $this->displayName = $this->title;
683
684             $avatars = ActivityUtils::getLinks($element, 'avatar');
685             foreach ($avatars as $link) {
686                 $this->avatarLinks[] = new AvatarLink($link);
687             }
688
689             $this->poco = new PoCo($element);
690         }
691     }
692
693     private function _childContent($element, $tag, $namespace=ActivityUtils::ATOM)
694     {
695         return ActivityUtils::childContent($element, $tag, $namespace);
696     }
697
698     // Try to get a unique id for the source feed
699
700     private function _getSource($element)
701     {
702         $sourceEl = ActivityUtils::child($element, 'source');
703
704         if (empty($sourceEl)) {
705             return null;
706         } else {
707             $href = ActivityUtils::getLink($sourceEl, 'self');
708             if (!empty($href)) {
709                 return $href;
710             } else {
711                 return ActivityUtils::childContent($sourceEl, 'id');
712             }
713         }
714     }
715
716     static function fromNotice($notice)
717     {
718         $object = new ActivityObject();
719
720         $object->type    = ActivityObject::NOTE;
721
722         $object->id      = $notice->uri;
723         $object->title   = $notice->content;
724         $object->content = $notice->rendered;
725         $object->link    = $notice->bestUrl();
726
727         return $object;
728     }
729
730     static function fromProfile($profile)
731     {
732         $object = new ActivityObject();
733
734         $object->type   = ActivityObject::PERSON;
735         $object->id     = $profile->getUri();
736         $object->title  = $profile->getBestName();
737         $object->link   = $profile->profileurl;
738
739         $orig = $profile->getOriginalAvatar();
740
741         if (!empty($orig)) {
742             $object->avatarLinks[] = AvatarLink::fromAvatar($orig);
743         }
744
745         $sizes = array(
746             AVATAR_PROFILE_SIZE,
747             AVATAR_STREAM_SIZE,
748             AVATAR_MINI_SIZE
749         );
750
751         foreach ($sizes as $size) {
752
753             $alink  = null;
754             $avatar = $profile->getAvatar($size);
755
756             if (!empty($avatar)) {
757                 $alink = AvatarLink::fromAvatar($avatar);
758             } else {
759                 $alink = new AvatarLink();
760                 $alink->type   = 'image/png';
761                 $alink->height = $size;
762                 $alink->width  = $size;
763                 $alink->url    = Avatar::defaultImage($size);
764             }
765
766             $object->avatarLinks[] = $alink;
767         }
768
769         if (isset($profile->lat) && isset($profile->lon)) {
770             $object->geopoint = (float)$profile->lat
771                 . ' ' . (float)$profile->lon;
772         }
773
774         $object->poco = PoCo::fromProfile($profile);
775
776         return $object;
777     }
778
779     static function fromGroup($group)
780     {
781         $object = new ActivityObject();
782
783         $object->type   = ActivityObject::GROUP;
784         $object->id     = $group->getUri();
785         $object->title  = $group->getBestName();
786         $object->link   = $group->getUri();
787
788         $object->avatarLinks[] = AvatarLink::fromFilename(
789             $group->homepage_logo,
790             AVATAR_PROFILE_SIZE
791         );
792
793         $object->avatarLinks[] = AvatarLink::fromFilename(
794             $group->stream_logo,
795             AVATAR_STREAM_SIZE
796         );
797
798         $object->avatarLinks[] = AvatarLink::fromFilename(
799             $group->mini_logo,
800             AVATAR_MINI_SIZE
801         );
802
803         $object->poco = PoCo::fromGroup($group);
804
805         return $object;
806     }
807
808
809     function asString($tag='activity:object')
810     {
811         $xs = new XMLStringer(true);
812
813         $xs->elementStart($tag);
814
815         $xs->element('activity:object-type', null, $this->type);
816
817         $xs->element(self::ID, null, $this->id);
818
819         if (!empty($this->title)) {
820             $xs->element(self::TITLE, null, $this->title);
821         }
822
823         if (!empty($this->summary)) {
824             $xs->element(self::SUMMARY, null, $this->summary);
825         }
826
827         if (!empty($this->content)) {
828             // XXX: assuming HTML content here
829             $xs->element(ActivityUtils::CONTENT, array('type' => 'html'), $this->content);
830         }
831
832         if (!empty($this->link)) {
833             $xs->element(
834                 'link',
835                 array(
836                     'rel' => 'alternate',
837                     'type' => 'text/html',
838                     'href' => $this->link
839                 ),
840                 null
841             );
842         }
843
844         if ($this->type == ActivityObject::PERSON
845             || $this->type == ActivityObject::GROUP) {
846
847             foreach ($this->avatarLinks as $avatar) {
848                 $xs->element(
849                     'link', array(
850                         'rel'  => 'avatar',
851                         'type'         => $avatar->type,
852                         'media:width'  => $avatar->width,
853                         'media:height' => $avatar->height,
854                         'href' => $avatar->url
855                     ),
856                     null
857                 );
858             }
859         }
860
861         if (!empty($this->geopoint)) {
862             $xs->element(
863                 'georss:point',
864                 null,
865                 $this->geopoint
866             );
867         }
868
869         if (!empty($this->poco)) {
870             $xs->raw($this->poco->asString());
871         }
872
873         $xs->elementEnd($tag);
874
875         return $xs->getString();
876     }
877 }
878
879 /**
880  * Utility class to hold a bunch of constant defining default verb types
881  *
882  * @category  OStatus
883  * @package   StatusNet
884  * @author    Evan Prodromou <evan@status.net>
885  * @copyright 2010 StatusNet, Inc.
886  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
887  * @link      http://status.net/
888  */
889
890 class ActivityVerb
891 {
892     const POST     = 'http://activitystrea.ms/schema/1.0/post';
893     const SHARE    = 'http://activitystrea.ms/schema/1.0/share';
894     const SAVE     = 'http://activitystrea.ms/schema/1.0/save';
895     const FAVORITE = 'http://activitystrea.ms/schema/1.0/favorite';
896     const PLAY     = 'http://activitystrea.ms/schema/1.0/play';
897     const FOLLOW   = 'http://activitystrea.ms/schema/1.0/follow';
898     const FRIEND   = 'http://activitystrea.ms/schema/1.0/make-friend';
899     const JOIN     = 'http://activitystrea.ms/schema/1.0/join';
900     const TAG      = 'http://activitystrea.ms/schema/1.0/tag';
901
902     // Custom OStatus verbs for the flipside until they're standardized
903     const DELETE     = 'http://ostatus.org/schema/1.0/unfollow';
904     const UNFAVORITE = 'http://ostatus.org/schema/1.0/unfavorite';
905     const UNFOLLOW   = 'http://ostatus.org/schema/1.0/unfollow';
906     const LEAVE      = 'http://ostatus.org/schema/1.0/leave';
907
908     // For simple profile-update pings; no content to share.
909     const UPDATE_PROFILE = 'http://ostatus.org/schema/1.0/update-profile';
910 }
911
912 class ActivityContext
913 {
914     public $replyToID;
915     public $replyToUrl;
916     public $location;
917     public $attention = array();
918     public $conversation;
919
920     const THR     = 'http://purl.org/syndication/thread/1.0';
921     const GEORSS  = 'http://www.georss.org/georss';
922     const OSTATUS = 'http://ostatus.org/schema/1.0';
923
924     const INREPLYTO = 'in-reply-to';
925     const REF       = 'ref';
926     const HREF      = 'href';
927
928     const POINT     = 'point';
929
930     const ATTENTION    = 'ostatus:attention';
931     const CONVERSATION = 'ostatus:conversation';
932
933     function __construct($element)
934     {
935         $replyToEl = ActivityUtils::child($element, self::INREPLYTO, self::THR);
936
937         if (!empty($replyToEl)) {
938             $this->replyToID  = $replyToEl->getAttribute(self::REF);
939             $this->replyToUrl = $replyToEl->getAttribute(self::HREF);
940         }
941
942         $this->location = $this->getLocation($element);
943
944         $this->conversation = ActivityUtils::getLink($element, self::CONVERSATION);
945
946         // Multiple attention links allowed
947
948         $links = $element->getElementsByTagNameNS(ActivityUtils::ATOM, ActivityUtils::LINK);
949
950         for ($i = 0; $i < $links->length; $i++) {
951
952             $link = $links->item($i);
953
954             $linkRel = $link->getAttribute(ActivityUtils::REL);
955
956             if ($linkRel == self::ATTENTION) {
957                 $this->attention[] = $link->getAttribute(self::HREF);
958             }
959         }
960     }
961
962     /**
963      * Parse location given as a GeoRSS-simple point, if provided.
964      * http://www.georss.org/simple
965      *
966      * @param feed item $entry
967      * @return mixed Location or false
968      */
969     function getLocation($dom)
970     {
971         $points = $dom->getElementsByTagNameNS(self::GEORSS, self::POINT);
972
973         for ($i = 0; $i < $points->length; $i++) {
974             $point = $points->item($i)->textContent;
975             return self::locationFromPoint($point);
976         }
977
978         return null;
979     }
980
981     // XXX: Move to ActivityUtils or Location?
982     static function locationFromPoint($point)
983     {
984         $point = str_replace(',', ' ', $point); // per spec "treat commas as whitespace"
985         $point = preg_replace('/\s+/', ' ', $point);
986         $point = trim($point);
987         $coords = explode(' ', $point);
988         if (count($coords) == 2) {
989             list($lat, $lon) = $coords;
990             if (is_numeric($lat) && is_numeric($lon)) {
991                 common_log(LOG_INFO, "Looking up location for $lat $lon from georss point");
992                 return Location::fromLatLon($lat, $lon);
993             }
994         }
995         common_log(LOG_ERR, "Ignoring bogus georss:point value $point");
996         return null;
997     }
998 }
999
1000 /**
1001  * An activity in the ActivityStrea.ms world
1002  *
1003  * An activity is kind of like a sentence: someone did something
1004  * to something else.
1005  *
1006  * 'someone' is the 'actor'; 'did something' is the verb;
1007  * 'something else' is the object.
1008  *
1009  * @category  OStatus
1010  * @package   StatusNet
1011  * @author    Evan Prodromou <evan@status.net>
1012  * @copyright 2010 StatusNet, Inc.
1013  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
1014  * @link      http://status.net/
1015  */
1016
1017 class Activity
1018 {
1019     const SPEC   = 'http://activitystrea.ms/spec/1.0/';
1020     const SCHEMA = 'http://activitystrea.ms/schema/1.0/';
1021
1022     const VERB       = 'verb';
1023     const OBJECT     = 'object';
1024     const ACTOR      = 'actor';
1025     const SUBJECT    = 'subject';
1026     const OBJECTTYPE = 'object-type';
1027     const CONTEXT    = 'context';
1028     const TARGET     = 'target';
1029
1030     const ATOM = 'http://www.w3.org/2005/Atom';
1031
1032     const AUTHOR    = 'author';
1033     const PUBLISHED = 'published';
1034     const UPDATED   = 'updated';
1035
1036     public $actor;   // an ActivityObject
1037     public $verb;    // a string (the URL)
1038     public $object;  // an ActivityObject
1039     public $target;  // an ActivityObject
1040     public $context; // an ActivityObject
1041     public $time;    // Time of the activity
1042     public $link;    // an ActivityObject
1043     public $entry;   // the source entry
1044     public $feed;    // the source feed
1045
1046     public $summary; // summary of activity
1047     public $content; // HTML content of activity
1048     public $id;      // ID of the activity
1049     public $title;   // title of the activity
1050     public $categories = array(); // list of AtomCategory objects
1051     public $enclosures = array(); // list of enclosure URL references
1052
1053     /**
1054      * Turns a regular old Atom <entry> into a magical activity
1055      *
1056      * @param DOMElement $entry Atom entry to poke at
1057      * @param DOMElement $feed  Atom feed, for context
1058      */
1059
1060     function __construct($entry = null, $feed = null)
1061     {
1062         if (is_null($entry)) {
1063             return;
1064         }
1065
1066         $this->entry = $entry;
1067
1068         // @fixme Don't send in a DOMDocument
1069         if ($feed instanceof DOMDocument) {
1070             common_log(
1071                 LOG_WARNING,
1072                 'Activity::__construct() - '
1073                 . 'DOMDocument passed in for feed by mistake. '
1074                 . "Expecting a 'feed' DOMElement."
1075             );
1076             $feed = $feed->getElementsByTagName('feed')->item(0);
1077         }
1078
1079         $this->feed  = $feed;
1080
1081         $pubEl = $this->_child($entry, self::PUBLISHED, self::ATOM);
1082
1083         if (!empty($pubEl)) {
1084             $this->time = strtotime($pubEl->textContent);
1085         } else {
1086             // XXX technically an error; being liberal. Good idea...?
1087             $updateEl = $this->_child($entry, self::UPDATED, self::ATOM);
1088             if (!empty($updateEl)) {
1089                 $this->time = strtotime($updateEl->textContent);
1090             } else {
1091                 $this->time = null;
1092             }
1093         }
1094
1095         $this->link = ActivityUtils::getPermalink($entry);
1096
1097         $verbEl = $this->_child($entry, self::VERB);
1098
1099         if (!empty($verbEl)) {
1100             $this->verb = trim($verbEl->textContent);
1101         } else {
1102             $this->verb = ActivityVerb::POST;
1103             // XXX: do other implied stuff here
1104         }
1105
1106         $objectEl = $this->_child($entry, self::OBJECT);
1107
1108         if (!empty($objectEl)) {
1109             $this->object = new ActivityObject($objectEl);
1110         } else {
1111             $this->object = new ActivityObject($entry);
1112         }
1113
1114         $actorEl = $this->_child($entry, self::ACTOR);
1115
1116         if (!empty($actorEl)) {
1117
1118             $this->actor = new ActivityObject($actorEl);
1119
1120         } else if (!empty($feed) &&
1121                    $subjectEl = $this->_child($feed, self::SUBJECT)) {
1122
1123             $this->actor = new ActivityObject($subjectEl);
1124
1125         } else if ($authorEl = $this->_child($entry, self::AUTHOR, self::ATOM)) {
1126
1127             $this->actor = new ActivityObject($authorEl);
1128
1129         } else if (!empty($feed) && $authorEl = $this->_child($feed, self::AUTHOR,
1130                                                               self::ATOM)) {
1131
1132             $this->actor = new ActivityObject($authorEl);
1133         }
1134
1135         $contextEl = $this->_child($entry, self::CONTEXT);
1136
1137         if (!empty($contextEl)) {
1138             $this->context = new ActivityContext($contextEl);
1139         } else {
1140             $this->context = new ActivityContext($entry);
1141         }
1142
1143         $targetEl = $this->_child($entry, self::TARGET);
1144
1145         if (!empty($targetEl)) {
1146             $this->target = new ActivityObject($targetEl);
1147         }
1148
1149         $this->summary = ActivityUtils::childContent($entry, 'summary');
1150         $this->id      = ActivityUtils::childContent($entry, 'id');
1151         $this->content = ActivityUtils::getContent($entry);
1152
1153         $catEls = $entry->getElementsByTagNameNS(self::ATOM, 'category');
1154         if ($catEls) {
1155             for ($i = 0; $i < $catEls->length; $i++) {
1156                 $catEl = $catEls->item($i);
1157                 $this->categories[] = new AtomCategory($catEl);
1158             }
1159         }
1160
1161         foreach (ActivityUtils::getLinks($entry, 'enclosure') as $link) {
1162             $this->enclosures[] = $link->getAttribute('href');
1163         }
1164     }
1165
1166     /**
1167      * Returns an Atom <entry> based on this activity
1168      *
1169      * @return DOMElement Atom entry
1170      */
1171
1172     function toAtomEntry()
1173     {
1174         return null;
1175     }
1176
1177     function asString($namespace=false)
1178     {
1179         $xs = new XMLStringer(true);
1180
1181         if ($namespace) {
1182             $attrs = array('xmlns' => 'http://www.w3.org/2005/Atom',
1183                            'xmlns:activity' => 'http://activitystrea.ms/spec/1.0/',
1184                            'xmlns:georss' => 'http://www.georss.org/georss',
1185                            'xmlns:ostatus' => 'http://ostatus.org/schema/1.0',
1186                            'xmlns:poco' => 'http://portablecontacts.net/spec/1.0',
1187                            'xmlns:media' => 'http://purl.org/syndication/atommedia');
1188         } else {
1189             $attrs = array();
1190         }
1191
1192         $xs->elementStart('entry', $attrs);
1193
1194         $xs->element('id', null, $this->id);
1195         $xs->element('title', null, $this->title);
1196         $xs->element('published', null, common_date_iso8601($this->time));
1197         $xs->element('content', array('type' => 'html'), $this->content);
1198
1199         if (!empty($this->summary)) {
1200             $xs->element('summary', null, $this->summary);
1201         }
1202
1203         if (!empty($this->link)) {
1204             $xs->element('link', array('rel' => 'alternate',
1205                                        'type' => 'text/html'),
1206                          $this->link);
1207         }
1208
1209         // XXX: add context
1210
1211         $xs->elementStart('author');
1212         $xs->element('uri', array(), $this->actor->id);
1213         if ($this->actor->title) {
1214             $xs->element('name', array(), $this->actor->title);
1215         }
1216         $xs->elementEnd('author');
1217         $xs->raw($this->actor->asString('activity:actor'));
1218
1219         $xs->element('activity:verb', null, $this->verb);
1220
1221         if ($this->object) {
1222             $xs->raw($this->object->asString());
1223         }
1224
1225         if ($this->target) {
1226             $xs->raw($this->target->asString('activity:target'));
1227         }
1228
1229         foreach ($this->categories as $cat) {
1230             $xs->raw($cat->asString());
1231         }
1232
1233         $xs->elementEnd('entry');
1234
1235         return $xs->getString();
1236     }
1237
1238     private function _child($element, $tag, $namespace=self::SPEC)
1239     {
1240         return ActivityUtils::child($element, $tag, $namespace);
1241     }
1242 }
1243
1244 class AtomCategory
1245 {
1246     public $term;
1247     public $scheme;
1248     public $label;
1249
1250     function __construct($element=null)
1251     {
1252         if ($element && $element->attributes) {
1253             $this->term = $this->extract($element, 'term');
1254             $this->scheme = $this->extract($element, 'scheme');
1255             $this->label = $this->extract($element, 'label');
1256         }
1257     }
1258
1259     protected function extract($element, $attrib)
1260     {
1261         $node = $element->attributes->getNamedItemNS(Activity::ATOM, $attrib);
1262         if ($node) {
1263             return trim($node->textContent);
1264         }
1265         $node = $element->attributes->getNamedItem($attrib);
1266         if ($node) {
1267             return trim($node->textContent);
1268         }
1269         return null;
1270     }
1271
1272     function asString()
1273     {
1274         $attribs = array();
1275         if ($this->term !== null) {
1276             $attribs['term'] = $this->term;
1277         }
1278         if ($this->scheme !== null) {
1279             $attribs['scheme'] = $this->scheme;
1280         }
1281         if ($this->label !== null) {
1282             $attribs['label'] = $this->label;
1283         }
1284         $xs = new XMLStringer();
1285         $xs->element('category', $attribs);
1286         return $xs->asString();
1287     }
1288 }