3 * StatusNet, the distributed open-source microblogging tool
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.
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.
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/>.
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/
31 if (!defined('STATUSNET')) {
36 * An activity in the ActivityStrea.ms world
38 * An activity is kind of like a sentence: someone did something
41 * 'someone' is the 'actor'; 'did something' is the verb;
42 * 'something else' is the object.
46 * @author Evan Prodromou <evan@status.net>
47 * @copyright 2010 StatusNet, Inc.
48 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
49 * @link http://status.net/
53 const SPEC = 'http://activitystrea.ms/spec/1.0/';
54 const SCHEMA = 'http://activitystrea.ms/schema/1.0/';
55 const MEDIA = 'http://purl.org/syndication/atommedia';
58 const OBJECT = 'object';
59 const ACTOR = 'actor';
60 const SUBJECT = 'subject';
61 const OBJECTTYPE = 'object-type';
62 const CONTEXT = 'context';
63 const TARGET = 'target';
65 const ATOM = 'http://www.w3.org/2005/Atom';
67 const AUTHOR = 'author';
68 const PUBLISHED = 'published';
69 const UPDATED = 'updated';
71 const RSS = null; // no namespace!
73 const PUBDATE = 'pubDate';
74 const DESCRIPTION = 'description';
77 const IMAGE = 'image';
80 const DC = 'http://purl.org/dc/elements/1.1/';
82 const CREATOR = 'creator';
84 const CONTENTNS = 'http://purl.org/rss/1.0/modules/content/';
85 const ENCODED = 'encoded';
87 public $actor; // an ActivityObject
88 public $verb; // a string (the URL)
89 public $objects = array(); // an array of ActivityObjects
90 public $target; // an ActivityObject
91 public $context; // an ActivityObject
92 public $time; // Time of the activity
93 public $link; // an ActivityObject
94 public $entry; // the source entry
95 public $feed; // the source feed
97 public $summary; // summary of activity
98 public $content; // HTML content of activity
99 public $id; // ID of the activity
100 public $title; // title of the activity
101 public $categories = array(); // list of AtomCategory objects
102 public $enclosures = array(); // list of enclosure URL references
104 public $extra = array(); // extra elements as array(tag, attrs, content)
105 public $source; // ActivitySource object representing 'home feed'
106 public $selfLink; // <link rel='self' type='application/atom+xml'>
107 public $editLink; // <link rel='edit' type='application/atom+xml'>
110 * Turns a regular old Atom <entry> into a magical activity
112 * @param DOMElement $entry Atom entry to poke at
113 * @param DOMElement $feed Atom feed, for context
115 function __construct($entry = null, $feed = null)
117 if (is_null($entry)) {
121 // Insist on a feed's root DOMElement; don't allow a DOMDocument
122 if ($feed instanceof DOMDocument) {
123 throw new ClientException(
124 // TRANS: Client exception thrown when a feed instance is a DOMDocument.
125 _('Expecting a root feed element but got a whole XML document.')
129 $this->entry = $entry;
132 if ($entry->namespaceURI == Activity::ATOM &&
133 $entry->localName == 'entry') {
134 $this->_fromAtomEntry($entry, $feed);
135 } else if ($entry->namespaceURI == Activity::RSS &&
136 $entry->localName == 'item') {
137 $this->_fromRssItem($entry, $feed);
138 } else if ($entry->namespaceURI == Activity::SPEC &&
139 $entry->localName == 'object') {
140 $this->_fromAtomEntry($entry, $feed);
142 // Low level exception. No need for i18n.
143 throw new Exception("Unknown DOM element: {$entry->namespaceURI} {$entry->localName}");
147 function _fromAtomEntry($entry, $feed)
149 $pubEl = $this->_child($entry, self::PUBLISHED, self::ATOM);
151 if (!empty($pubEl)) {
152 $this->time = strtotime($pubEl->textContent);
154 // XXX technically an error; being liberal. Good idea...?
155 $updateEl = $this->_child($entry, self::UPDATED, self::ATOM);
156 if (!empty($updateEl)) {
157 $this->time = strtotime($updateEl->textContent);
163 $this->link = ActivityUtils::getPermalink($entry);
165 $verbEl = $this->_child($entry, self::VERB);
167 if (!empty($verbEl)) {
168 $this->verb = trim($verbEl->textContent);
170 $this->verb = ActivityVerb::POST;
171 // XXX: do other implied stuff here
174 // get immediate object children
176 $objectEls = ActivityUtils::children($entry, self::OBJECT, self::SPEC);
178 if (count($objectEls) > 0) {
179 foreach ($objectEls as $objectEl) {
180 // Special case for embedded activities
181 $objectType = ActivityUtils::childContent($objectEl, self::OBJECTTYPE, self::SPEC);
182 if (!empty($objectType) && $objectType == ActivityObject::ACTIVITY) {
183 $this->objects[] = new Activity($objectEl);
185 $this->objects[] = new ActivityObject($objectEl);
190 $this->objects[] = new ActivityObject($entry);
193 $actorEl = $this->_child($entry, self::ACTOR);
195 if (!empty($actorEl)) {
196 // Standalone <activity:actor> elements are a holdover from older
197 // versions of ActivityStreams. Newer feeds should have this data
198 // integrated straight into <atom:author>.
200 $this->actor = new ActivityObject($actorEl);
202 // Cliqset has bad actor IDs (just nickname of user). We
203 // work around it by getting the author data and using its
206 if (!preg_match('/^\w+:/', $this->actor->id)) {
207 $authorEl = ActivityUtils::child($entry, 'author');
208 if (!empty($authorEl)) {
209 $authorObj = new ActivityObject($authorEl);
210 $this->actor->id = $authorObj->id;
213 } else if ($authorEl = $this->_child($entry, self::AUTHOR, self::ATOM)) {
215 // An <atom:author> in the entry overrides any author info on
216 // the surrounding feed.
217 $this->actor = new ActivityObject($authorEl);
219 } else if (!empty($feed) &&
220 $subjectEl = $this->_child($feed, self::SUBJECT)) {
222 // Feed subject is used for things like groups.
223 // Should actually possibly not be interpreted as an actor...?
224 $this->actor = new ActivityObject($subjectEl);
226 } else if (!empty($feed) && $authorEl = $this->_child($feed, self::AUTHOR,
229 // If there's no <atom:author> on the entry, it's safe to assume
230 // the containing feed's authorship info applies.
231 $this->actor = new ActivityObject($authorEl);
234 $contextEl = $this->_child($entry, self::CONTEXT);
236 if (!empty($contextEl)) {
237 $this->context = new ActivityContext($contextEl);
239 $this->context = new ActivityContext($entry);
242 $targetEl = $this->_child($entry, self::TARGET);
244 if (!empty($targetEl)) {
245 $this->target = new ActivityObject($targetEl);
248 $this->summary = ActivityUtils::childContent($entry, 'summary');
249 $this->id = ActivityUtils::childContent($entry, 'id');
250 $this->content = ActivityUtils::getContent($entry);
252 $catEls = $entry->getElementsByTagNameNS(self::ATOM, 'category');
254 for ($i = 0; $i < $catEls->length; $i++) {
255 $catEl = $catEls->item($i);
256 $this->categories[] = new AtomCategory($catEl);
260 foreach (ActivityUtils::getLinks($entry, 'enclosure') as $link) {
261 $this->enclosures[] = $link->getAttribute('href');
264 // From APP. Might be useful.
266 $this->selfLink = ActivityUtils::getLink($entry, 'self', 'application/atom+xml');
267 $this->editLink = ActivityUtils::getLink($entry, 'edit', 'application/atom+xml');
270 function _fromRssItem($item, $channel)
272 $verbEl = $this->_child($item, self::VERB);
274 if (!empty($verbEl)) {
275 $this->verb = trim($verbEl->textContent);
277 $this->verb = ActivityVerb::POST;
278 // XXX: do other implied stuff here
281 $pubDateEl = $this->_child($item, self::PUBDATE, self::RSS);
283 if (!empty($pubDateEl)) {
284 $this->time = strtotime($pubDateEl->textContent);
287 if ($authorEl = $this->_child($item, self::AUTHOR, self::RSS)) {
288 $this->actor = ActivityObject::fromRssAuthor($authorEl);
289 } else if ($dcCreatorEl = $this->_child($item, self::CREATOR, self::DC)) {
290 $this->actor = ActivityObject::fromDcCreator($dcCreatorEl);
291 } else if ($posterousEl = $this->_child($item, ActivityObject::AUTHOR, ActivityObject::POSTEROUS)) {
292 // Special case for Posterous.com
293 $this->actor = ActivityObject::fromPosterousAuthor($posterousEl);
294 } else if (!empty($channel)) {
295 $this->actor = ActivityObject::fromRssChannel($channel);
300 $this->title = ActivityUtils::childContent($item, ActivityObject::TITLE, self::RSS);
302 $contentEl = ActivityUtils::child($item, self::ENCODED, self::CONTENTNS);
304 if (!empty($contentEl)) {
305 // <content:encoded> XML node's text content is HTML; no further processing needed.
306 $this->content = $contentEl->textContent;
308 $descriptionEl = ActivityUtils::child($item, self::DESCRIPTION, self::RSS);
309 if (!empty($descriptionEl)) {
310 // Per spec, <description> must be plaintext.
311 // In practice, often there's HTML... but these days good
312 // feeds are using <content:encoded> which is explicitly
314 // We'll treat this following spec, and do HTML escaping
315 // to convert from plaintext to HTML.
316 $this->content = htmlspecialchars($descriptionEl->textContent);
320 $this->link = ActivityUtils::childContent($item, ActivityUtils::LINK, self::RSS);
323 // @fixme thumbnails... maybe
325 $guidEl = ActivityUtils::child($item, self::GUID, self::RSS);
327 if (!empty($guidEl)) {
328 $this->id = $guidEl->textContent;
330 if ($guidEl->hasAttribute('isPermaLink') && $guidEl->getAttribute('isPermaLink') != 'false') {
332 $this->link = $this->id;
336 $this->objects[] = new ActivityObject($item);
337 $this->context = new ActivityContext($item);
341 * Returns an Atom <entry> based on this activity
343 * @return DOMElement Atom entry
346 function toAtomEntry()
352 * Returns an array based on this activity suitable
353 * for encoding as a JSON object
355 * @return array $activity
363 $activity['actor'] = $this->actor->asArray();
366 $activity['content'] = $this->content;
368 // generator <-- We could use this when we know a notice is created
369 // locally. Or if we know the upstream Generator.
371 // icon <-- possibly a mini object representing verb?
374 $activity['id'] = $this->id;
377 if ($this->verb == ActivityVerb::POST && count($this->objects) == 1) {
378 $activity['object'] = $this->objects[0]->asArray();
380 // Context stuff. For now I'm just sticking most of it
381 // in a property called "context"
383 if (!empty($this->context)) {
385 if (!empty($this->context->location)) {
386 $loc = $this->context->location;
390 $activity['geopoint'] = array(
392 'coordinates' => array($loc->lat, $loc->lon)
397 $activity['to'] = $this->context->getToArray();
398 $activity['context'] = $this->context->asArray();
401 // Instead of adding enclosures as an extension to JSON
402 // Activities, it seems like we should be using the
403 // attachements property of ActivityObject
405 $attachments = array();
407 // XXX: OK, this is kinda cheating. We should probably figure out
408 // what kind of objects these are based on mime-type and then
409 // create specific object types. Right now this rely on
410 // duck-typing. Also, we should include an embed code for
411 // video attachments.
413 foreach ($this->enclosures as $enclosure) {
415 if (is_string($enclosure)) {
417 $attachments[]['id'] = $enclosure;
421 $attachments[]['id'] = $enclosure->url;
423 $mediaLink = new ActivityStreamsMediaLink(
428 // XXX: Add 'size' as an extension to MediaLink?
431 $attachments[]['mediaLink'] = $mediaLink->asArray(); // extension
433 if ($enclosure->title) {
434 $attachments[]['displayName'] = $enclosure->title;
439 if (!empty($attachments)) {
440 $activity['object']['attachments'] = $attachments;
444 $activity['object'] = array();
445 foreach($this->objects as $object) {
446 $oa = $object->asArray();
447 if ($object instanceof Activity) {
450 $oa['objectType'] = 'activity';
452 $activity['object'][] = $oa;
457 $activity['published'] = self::iso8601Date($this->time);
461 'objectType' => 'service',
462 'displayName' => common_config('site', 'name'),
463 'url' => common_root_url()
466 $activity['provider'] = $provider;
469 if (!empty($this->target)) {
470 $activity['target'] = $this->target->asArray();
474 $activity['title'] = $this->title;
476 // updated <-- Optional. Should we use this to indicate the time we r
477 // eceived a remote notice? Probably not.
481 // We can probably use the whole schema URL here but probably the
482 // relative simple name is easier to parse
483 $activity['verb'] = substr($this->verb, strrpos($this->verb, '/') + 1);
486 $activity['url'] = $this->id;
488 /* Purely extensions hereafter */
492 // Use an Activity Object for term? Which object? Note?
493 foreach ($this->categories as $cat) {
494 $tags[] = $cat->term;
497 $activity['tags'] = $tags;
499 // XXX: a bit of a hack... Since JSON isn't namespaced we probably
500 // shouldn't be using 'statusnet:notice_info', but this will work
503 foreach ($this->extra as $e) {
504 list($objectName, $props, $txt) = $e;
505 if (!empty($objectName)) {
506 $activity[$objectName] = $props;
510 return array_filter($activity);
513 function asString($namespace=false, $author=true, $source=false)
515 $xs = new XMLStringer(true);
516 $this->outputTo($xs, $namespace, $author, $source);
517 return $xs->getString();
520 function outputTo($xs, $namespace=false, $author=true, $source=false, $tag='entry')
523 $attrs = array('xmlns' => 'http://www.w3.org/2005/Atom',
524 'xmlns:thr' => 'http://purl.org/syndication/thread/1.0',
525 'xmlns:activity' => 'http://activitystrea.ms/spec/1.0/',
526 'xmlns:georss' => 'http://www.georss.org/georss',
527 'xmlns:ostatus' => 'http://ostatus.org/schema/1.0',
528 'xmlns:poco' => 'http://portablecontacts.net/spec/1.0',
529 'xmlns:media' => 'http://purl.org/syndication/atommedia',
530 'xmlns:statusnet' => 'http://status.net/schema/api/1/');
535 $xs->elementStart($tag, $attrs);
537 if ($tag != 'entry') {
538 $xs->element('activity:object-type', null, ActivityObject::ACTIVITY);
541 if ($this->verb == ActivityVerb::POST && count($this->objects) == 1 && $tag == 'entry') {
543 $obj = $this->objects[0];
544 $obj->outputTo($xs, null);
547 $xs->element('id', null, $this->id);
548 $xs->element('title', null, $this->title);
550 $xs->element('content', array('type' => 'html'), $this->content);
552 if (!empty($this->summary)) {
553 $xs->element('summary', null, $this->summary);
556 if (!empty($this->link)) {
557 $xs->element('link', array('rel' => 'alternate',
558 'type' => 'text/html'),
564 $xs->element('activity:verb', null, $this->verb);
566 $published = self::iso8601Date($this->time);
568 $xs->element('published', null, $published);
569 $xs->element('updated', null, $published);
572 $this->actor->outputTo($xs, 'author');
575 if ($this->verb != ActivityVerb::POST || count($this->objects) != 1 || $tag != 'entry') {
576 foreach($this->objects as $object) {
577 if ($object instanceof Activity) {
578 $object->outputTo($xs, false, true, true, 'activity:object');
580 $object->outputTo($xs, 'activity:object');
585 if (!empty($this->context)) {
587 if (!empty($this->context->replyToID)) {
588 if (!empty($this->context->replyToUrl)) {
589 $xs->element('thr:in-reply-to',
590 array('ref' => $this->context->replyToID,
591 'href' => $this->context->replyToUrl));
593 $xs->element('thr:in-reply-to',
594 array('ref' => $this->context->replyToID));
598 if (!empty($this->context->replyToUrl)) {
599 $xs->element('link', array('rel' => 'related',
600 'href' => $this->context->replyToUrl));
603 if (!empty($this->context->conversation)) {
604 $xs->element('link', array('rel' => 'ostatus:conversation',
605 'href' => $this->context->conversation));
608 foreach ($this->context->attention as $attnURI) {
609 $xs->element('link', array('rel' => 'ostatus:attention',
610 'href' => $attnURI));
611 $xs->element('link', array('rel' => 'mentioned',
612 'href' => $attnURI));
615 // XXX: shoulda used ActivityVerb::SHARE
617 if (!empty($this->context->forwardID)) {
618 if (!empty($this->context->forwardUrl)) {
619 $xs->element('ostatus:forward',
620 array('ref' => $this->context->forwardID,
621 'href' => $this->context->forwardUrl));
623 $xs->element('ostatus:forward',
624 array('ref' => $this->context->forwardID));
628 if (!empty($this->context->location)) {
629 $loc = $this->context->location;
630 $xs->element('georss:point', null, $loc->lat . ' ' . $loc->lon);
635 $this->target->outputTo($xs, 'activity:target');
638 foreach ($this->categories as $cat) {
642 // can be either URLs or enclosure objects
644 foreach ($this->enclosures as $enclosure) {
645 if (is_string($enclosure)) {
646 $xs->element('link', array('rel' => 'enclosure',
647 'href' => $enclosure));
649 $attributes = array('rel' => 'enclosure',
650 'href' => $enclosure->url,
651 'type' => $enclosure->mimetype,
652 'length' => $enclosure->size);
653 if ($enclosure->title) {
654 $attributes['title'] = $enclosure->title;
656 $xs->element('link', $attributes);
660 // Info on the source feed
662 if ($source && !empty($this->source)) {
663 $xs->elementStart('source');
665 $xs->element('id', null, $this->source->id);
666 $xs->element('title', null, $this->source->title);
668 if (array_key_exists('alternate', $this->source->links)) {
669 $xs->element('link', array('rel' => 'alternate',
670 'type' => 'text/html',
671 'href' => $this->source->links['alternate']));
674 if (array_key_exists('self', $this->source->links)) {
675 $xs->element('link', array('rel' => 'self',
676 'type' => 'application/atom+xml',
677 'href' => $this->source->links['self']));
680 if (array_key_exists('license', $this->source->links)) {
681 $xs->element('link', array('rel' => 'license',
682 'href' => $this->source->links['license']));
685 if (!empty($this->source->icon)) {
686 $xs->element('icon', null, $this->source->icon);
689 if (!empty($this->source->updated)) {
690 $xs->element('updated', null, $this->source->updated);
693 $xs->elementEnd('source');
696 if (!empty($this->selfLink)) {
697 $xs->element('link', array('rel' => 'self',
698 'type' => 'application/atom+xml',
699 'href' => $this->selfLink));
702 if (!empty($this->editLink)) {
703 $xs->element('link', array('rel' => 'edit',
704 'type' => 'application/atom+xml',
705 'href' => $this->editLink));
708 // For throwing in extra elements; used for statusnet:notice_info
710 foreach ($this->extra as $el) {
711 list($tag, $attrs, $content) = $el;
712 $xs->element($tag, $attrs, $content);
715 $xs->elementEnd($tag);
720 private function _child($element, $tag, $namespace=self::SPEC)
722 return ActivityUtils::child($element, $tag, $namespace);
726 * For consistency, we'll always output UTC rather than local time.
727 * Note that clients *should* accept any timezone we give them as long
728 * as it's properly formatted.
730 * @param int $tm Unix timestamp
733 static function iso8601Date($tm)
735 $dateStr = date('d F Y H:i:s', $tm);
736 $d = new DateTime($dateStr, new DateTimeZone('UTC'));
737 return $d->format('c');