]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OStatus/lib/activity.php
OStatus: check only direct children in ActivityUtil::child; fixes pulling actor's...
[quix0rs-gnu-social.git] / plugins / OStatus / 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  OStatus
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @copyright 2010 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 /**
35  * Utilities for turning DOMish things into Activityish things
36  *
37  * Some common functions that I didn't have the bandwidth to try to factor
38  * into some kind of reasonable superclass, so just dumped here. Might
39  * be useful to have an ActivityObject parent class or something.
40  *
41  * @category  OStatus
42  * @package   StatusNet
43  * @author    Evan Prodromou <evan@status.net>
44  * @copyright 2010 StatusNet, Inc.
45  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
46  * @link      http://status.net/
47  */
48
49 class ActivityUtils
50 {
51     const ATOM = 'http://www.w3.org/2005/Atom';
52
53     const LINK = 'link';
54     const REL  = 'rel';
55     const TYPE = 'type';
56     const HREF = 'href';
57
58     /**
59      * Get the permalink for an Activity object
60      *
61      * @param DOMElement $element A DOM element
62      *
63      * @return string related link, if any
64      */
65
66     static function getPermalink($element)
67     {
68         return self::getLink($element, 'alternate', 'text/html');
69     }
70
71     /**
72      * Get the permalink for an Activity object
73      *
74      * @param DOMElement $element A DOM element
75      *
76      * @return string related link, if any
77      */
78
79     static function getLink($element, $rel, $type=null)
80     {
81         $links = $element->getElementsByTagnameNS(self::ATOM, self::LINK);
82
83         foreach ($links as $link) {
84
85             $linkRel = $link->getAttribute(self::REL);
86             $linkType = $link->getAttribute(self::TYPE);
87
88             if ($linkRel == $rel &&
89                 (is_null($type) || $linkType == $type)) {
90                 return $link->getAttribute(self::HREF);
91             }
92         }
93
94         return null;
95     }
96
97     /**
98      * Gets the first child element with the given tag
99      *
100      * @param DOMElement $element   element to pick at
101      * @param string     $tag       tag to look for
102      * @param string     $namespace Namespace to look under
103      *
104      * @return DOMElement found element or null
105      */
106
107     static function child($element, $tag, $namespace=self::ATOM)
108     {
109         $els = $element->childNodes;
110         if (empty($els) || $els->length == 0) {
111             return null;
112         } else {
113             for ($i = 0; $i < $els->length; $i++) {
114                 $el = $els->item($i);
115                 if ($el->localName == $tag && $el->namespaceURI == $namespace) {
116                     return $el;
117                 }
118             }
119         }
120     }
121
122     /**
123      * Grab the text content of a DOM element child of the current element
124      *
125      * @param DOMElement $element   Element whose children we examine
126      * @param string     $tag       Tag to look up
127      * @param string     $namespace Namespace to use, defaults to Atom
128      *
129      * @return string content of the child
130      */
131
132     static function childContent($element, $tag, $namespace=self::ATOM)
133     {
134         $el = self::child($element, $tag, $namespace);
135
136         if (empty($el)) {
137             return null;
138         } else {
139             return $el->textContent;
140         }
141     }
142 }
143
144 /**
145  * A noun-ish thing in the activity universe
146  *
147  * The activity streams spec talks about activity objects, while also having
148  * a tag activity:object, which is in fact an activity object. Aaaaaah!
149  *
150  * This is just a thing in the activity universe. Can be the subject, object,
151  * or indirect object (target!) of an activity verb. Rotten name, and I'm
152  * propagating it. *sigh*
153  *
154  * @category  OStatus
155  * @package   StatusNet
156  * @author    Evan Prodromou <evan@status.net>
157  * @copyright 2010 StatusNet, Inc.
158  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
159  * @link      http://status.net/
160  */
161
162 class ActivityObject
163 {
164     const ARTICLE   = 'http://activitystrea.ms/schema/1.0/article';
165     const BLOGENTRY = 'http://activitystrea.ms/schema/1.0/blog-entry';
166     const NOTE      = 'http://activitystrea.ms/schema/1.0/note';
167     const STATUS    = 'http://activitystrea.ms/schema/1.0/status';
168     const FILE      = 'http://activitystrea.ms/schema/1.0/file';
169     const PHOTO     = 'http://activitystrea.ms/schema/1.0/photo';
170     const ALBUM     = 'http://activitystrea.ms/schema/1.0/photo-album';
171     const PLAYLIST  = 'http://activitystrea.ms/schema/1.0/playlist';
172     const VIDEO     = 'http://activitystrea.ms/schema/1.0/video';
173     const AUDIO     = 'http://activitystrea.ms/schema/1.0/audio';
174     const BOOKMARK  = 'http://activitystrea.ms/schema/1.0/bookmark';
175     const PERSON    = 'http://activitystrea.ms/schema/1.0/person';
176     const GROUP     = 'http://activitystrea.ms/schema/1.0/group';
177     const PLACE     = 'http://activitystrea.ms/schema/1.0/place';
178     const COMMENT   = 'http://activitystrea.ms/schema/1.0/comment';
179     // ^^^^^^^^^^ tea!
180
181     // Atom elements we snarf
182
183     const TITLE   = 'title';
184     const SUMMARY = 'summary';
185     const CONTENT = 'content';
186     const ID      = 'id';
187     const SOURCE  = 'source';
188
189     const NAME  = 'name';
190     const URI   = 'uri';
191     const EMAIL = 'email';
192
193     public $element;
194     public $type;
195     public $id;
196     public $title;
197     public $summary;
198     public $content;
199     public $link;
200     public $source;
201
202     /**
203      * Constructor
204      *
205      * This probably needs to be refactored
206      * to generate a local class (ActivityPerson, ActivityFile, ...)
207      * based on the object type.
208      *
209      * @param DOMElement $element DOM thing to turn into an Activity thing
210      */
211
212     function __construct($element)
213     {
214         $this->element = $element;
215
216         if ($element->tagName == 'author') {
217
218             $this->type  = self::PERSON; // XXX: is this fair?
219             $this->title = $this->_childContent($element, self::NAME);
220             $this->id    = $this->_childContent($element, self::URI);
221
222             if (empty($this->id)) {
223                 $email = $this->_childContent($element, self::EMAIL);
224                 if (!empty($email)) {
225                     // XXX: acct: ?
226                     $this->id = 'mailto:'.$email;
227                 }
228             }
229
230         } else {
231
232             $this->type = $this->_childContent($element, Activity::OBJECTTYPE,
233                                                Activity::SPEC);
234
235             if (empty($this->type)) {
236                 $this->type = ActivityObject::NOTE;
237             }
238
239             $this->id      = $this->_childContent($element, self::ID);
240             $this->title   = $this->_childContent($element, self::TITLE);
241             $this->summary = $this->_childContent($element, self::SUMMARY);
242             $this->content = $this->_childContent($element, self::CONTENT);
243
244             $this->source  = $this->_getSource($element);
245
246             $this->link = ActivityUtils::getPermalink($element);
247
248             // XXX: grab PoCo stuff
249         }
250     }
251
252     private function _childContent($element, $tag, $namespace=ActivityUtils::ATOM)
253     {
254         return ActivityUtils::childContent($element, $tag, $namespace);
255     }
256
257     // Try to get a unique id for the source feed
258
259     private function _getSource($element)
260     {
261         $sourceEl = ActivityUtils::child($element, 'source');
262
263         if (empty($sourceEl)) {
264             return null;
265         } else {
266             $href = ActivityUtils::getLink($sourceEl, 'self');
267             if (!empty($href)) {
268                 return $href;
269             } else {
270                 return ActivityUtils::childContent($sourceEl, 'id');
271             }
272         }
273     }
274 }
275
276 /**
277  * Utility class to hold a bunch of constant defining default verb types
278  *
279  * @category  OStatus
280  * @package   StatusNet
281  * @author    Evan Prodromou <evan@status.net>
282  * @copyright 2010 StatusNet, Inc.
283  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
284  * @link      http://status.net/
285  */
286
287 class ActivityVerb
288 {
289     const POST     = 'http://activitystrea.ms/schema/1.0/post';
290     const SHARE    = 'http://activitystrea.ms/schema/1.0/share';
291     const SAVE     = 'http://activitystrea.ms/schema/1.0/save';
292     const FAVORITE = 'http://activitystrea.ms/schema/1.0/favorite';
293     const PLAY     = 'http://activitystrea.ms/schema/1.0/play';
294     const FOLLOW   = 'http://activitystrea.ms/schema/1.0/follow';
295     const FRIEND   = 'http://activitystrea.ms/schema/1.0/make-friend';
296     const JOIN     = 'http://activitystrea.ms/schema/1.0/join';
297     const TAG      = 'http://activitystrea.ms/schema/1.0/tag';
298 }
299
300 /**
301  * An activity in the ActivityStrea.ms world
302  *
303  * An activity is kind of like a sentence: someone did something
304  * to something else.
305  *
306  * 'someone' is the 'actor'; 'did something' is the verb;
307  * 'something else' is the object.
308  *
309  * @category  OStatus
310  * @package   StatusNet
311  * @author    Evan Prodromou <evan@status.net>
312  * @copyright 2010 StatusNet, Inc.
313  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
314  * @link      http://status.net/
315  */
316
317 class Activity
318 {
319     const SPEC   = 'http://activitystrea.ms/spec/1.0/';
320     const SCHEMA = 'http://activitystrea.ms/schema/1.0/';
321
322     const VERB       = 'verb';
323     const OBJECT     = 'object';
324     const ACTOR      = 'actor';
325     const SUBJECT    = 'subject';
326     const OBJECTTYPE = 'object-type';
327     const CONTEXT    = 'context';
328     const TARGET     = 'target';
329
330     const ATOM = 'http://www.w3.org/2005/Atom';
331
332     const AUTHOR    = 'author';
333     const PUBLISHED = 'published';
334     const UPDATED   = 'updated';
335
336     public $actor;   // an ActivityObject
337     public $verb;    // a string (the URL)
338     public $object;  // an ActivityObject
339     public $target;  // an ActivityObject
340     public $context; // an ActivityObject
341     public $time;    // Time of the activity
342     public $link;    // an ActivityObject
343     public $entry;   // the source entry
344     public $feed;    // the source feed
345
346     /**
347      * Turns a regular old Atom <entry> into a magical activity
348      *
349      * @param DOMElement $entry Atom entry to poke at
350      * @param DOMElement $feed  Atom feed, for context
351      */
352
353     function __construct($entry, $feed = null)
354     {
355         $this->entry = $entry;
356         $this->feed  = $feed;
357
358         $pubEl = $this->_child($entry, self::PUBLISHED, self::ATOM);
359
360         if (!empty($pubEl)) {
361             $this->time = strtotime($pubEl->textContent);
362         } else {
363             // XXX technically an error; being liberal. Good idea...?
364             $updateEl = $this->_child($entry, self::UPDATED, self::ATOM);
365             if (!empty($updateEl)) {
366                 $this->time = strtotime($updateEl->textContent);
367             } else {
368                 $this->time = null;
369             }
370         }
371
372         $this->link = ActivityUtils::getPermalink($entry);
373
374         $verbEl = $this->_child($entry, self::VERB);
375
376         if (!empty($verbEl)) {
377             $this->verb = trim($verbEl->textContent);
378         } else {
379             $this->verb = ActivityVerb::POST;
380             // XXX: do other implied stuff here
381         }
382
383         $objectEl = $this->_child($entry, self::OBJECT);
384
385         if (!empty($objectEl)) {
386             $this->object = new ActivityObject($objectEl);
387         } else {
388             $this->object = new ActivityObject($entry);
389         }
390
391         $actorEl = $this->_child($entry, self::ACTOR);
392
393         if (!empty($actorEl)) {
394
395             $this->actor = new ActivityObject($actorEl);
396
397         } else if (!empty($feed) &&
398                    $subjectEl = $this->_child($feed, self::SUBJECT)) {
399
400             $this->actor = new ActivityObject($subjectEl);
401
402         } else if ($authorEl = $this->_child($entry, self::AUTHOR, self::ATOM)) {
403
404             $this->actor = new ActivityObject($authorEl);
405
406         } else if (!empty($feed) && $authorEl = $this->_child($feed, self::AUTHOR,
407                                                               self::ATOM)) {
408
409             $this->actor = new ActivityObject($authorEl);
410         }
411
412         $contextEl = $this->_child($entry, self::CONTEXT);
413
414         if (!empty($contextEl)) {
415             $this->context = new ActivityObject($contextEl);
416         }
417
418         $targetEl = $this->_child($entry, self::TARGET);
419
420         if (!empty($targetEl)) {
421             $this->target = new ActivityObject($targetEl);
422         }
423     }
424
425     /**
426      * Returns an Atom <entry> based on this activity
427      *
428      * @return DOMElement Atom entry
429      */
430
431     function toAtomEntry()
432     {
433         return null;
434     }
435
436     private function _child($element, $tag, $namespace=self::SPEC)
437     {
438         return ActivityUtils::child($element, $tag, $namespace);
439     }
440 }