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);
139 // Low level exception. No need for i18n.
140 throw new Exception("Unknown DOM element: {$entry->namespaceURI} {$entry->localName}");
144 function _fromAtomEntry($entry, $feed)
146 $pubEl = $this->_child($entry, self::PUBLISHED, self::ATOM);
148 if (!empty($pubEl)) {
149 $this->time = strtotime($pubEl->textContent);
151 // XXX technically an error; being liberal. Good idea...?
152 $updateEl = $this->_child($entry, self::UPDATED, self::ATOM);
153 if (!empty($updateEl)) {
154 $this->time = strtotime($updateEl->textContent);
160 $this->link = ActivityUtils::getPermalink($entry);
162 $verbEl = $this->_child($entry, self::VERB);
164 if (!empty($verbEl)) {
165 $this->verb = trim($verbEl->textContent);
167 $this->verb = ActivityVerb::POST;
168 // XXX: do other implied stuff here
171 $objectEls = $entry->getElementsByTagNameNS(self::SPEC, self::OBJECT);
173 if ($objectEls->length > 0) {
174 for ($i = 0; $i < $objectEls->length; $i++) {
175 $objectEl = $objectEls->item($i);
176 $this->objects[] = new ActivityObject($objectEl);
179 $this->objects[] = new ActivityObject($entry);
182 $actorEl = $this->_child($entry, self::ACTOR);
184 if (!empty($actorEl)) {
185 // Standalone <activity:actor> elements are a holdover from older
186 // versions of ActivityStreams. Newer feeds should have this data
187 // integrated straight into <atom:author>.
189 $this->actor = new ActivityObject($actorEl);
191 // Cliqset has bad actor IDs (just nickname of user). We
192 // work around it by getting the author data and using its
195 if (!preg_match('/^\w+:/', $this->actor->id)) {
196 $authorEl = ActivityUtils::child($entry, 'author');
197 if (!empty($authorEl)) {
198 $authorObj = new ActivityObject($authorEl);
199 $this->actor->id = $authorObj->id;
202 } else if ($authorEl = $this->_child($entry, self::AUTHOR, self::ATOM)) {
204 // An <atom:author> in the entry overrides any author info on
205 // the surrounding feed.
206 $this->actor = new ActivityObject($authorEl);
208 } else if (!empty($feed) && $authorEl = $this->_child($feed, self::AUTHOR,
211 // If there's no <atom:author> on the entry, it's safe to assume
212 // the containing feed's authorship info applies.
213 $this->actor = new ActivityObject($authorEl);
214 } else if (!empty($feed) &&
215 $subjectEl = $this->_child($feed, self::SUBJECT)) {
217 // Feed subject is used for things like groups.
218 // Should actually possibly not be interpreted as an actor...?
219 $this->actor = new ActivityObject($subjectEl);
222 $contextEl = $this->_child($entry, self::CONTEXT);
224 if (!empty($contextEl)) {
225 $this->context = new ActivityContext($contextEl);
227 $this->context = new ActivityContext($entry);
230 $targetEl = $this->_child($entry, self::TARGET);
232 if (!empty($targetEl)) {
233 $this->target = new ActivityObject($targetEl);
236 $this->summary = ActivityUtils::childContent($entry, 'summary');
237 $this->id = ActivityUtils::childContent($entry, 'id');
238 $this->content = ActivityUtils::getContent($entry);
240 $catEls = $entry->getElementsByTagNameNS(self::ATOM, 'category');
242 for ($i = 0; $i < $catEls->length; $i++) {
243 $catEl = $catEls->item($i);
244 $this->categories[] = new AtomCategory($catEl);
248 foreach (ActivityUtils::getLinks($entry, 'enclosure') as $link) {
249 $this->enclosures[] = $link->getAttribute('href');
252 // From APP. Might be useful.
254 $this->selfLink = ActivityUtils::getLink($entry, 'self', 'application/atom+xml');
255 $this->editLink = ActivityUtils::getLink($entry, 'edit', 'application/atom+xml');
258 function _fromRssItem($item, $channel)
260 $verbEl = $this->_child($item, self::VERB);
262 if (!empty($verbEl)) {
263 $this->verb = trim($verbEl->textContent);
265 $this->verb = ActivityVerb::POST;
266 // XXX: do other implied stuff here
269 $pubDateEl = $this->_child($item, self::PUBDATE, self::RSS);
271 if (!empty($pubDateEl)) {
272 $this->time = strtotime($pubDateEl->textContent);
275 if ($authorEl = $this->_child($item, self::AUTHOR, self::RSS)) {
276 $this->actor = ActivityObject::fromRssAuthor($authorEl);
277 } else if ($dcCreatorEl = $this->_child($item, self::CREATOR, self::DC)) {
278 $this->actor = ActivityObject::fromDcCreator($dcCreatorEl);
279 } else if ($posterousEl = $this->_child($item, ActivityObject::AUTHOR, ActivityObject::POSTEROUS)) {
280 // Special case for Posterous.com
281 $this->actor = ActivityObject::fromPosterousAuthor($posterousEl);
282 } else if (!empty($channel)) {
283 $this->actor = ActivityObject::fromRssChannel($channel);
288 $this->title = ActivityUtils::childContent($item, ActivityObject::TITLE, self::RSS);
290 $contentEl = ActivityUtils::child($item, self::ENCODED, self::CONTENTNS);
292 if (!empty($contentEl)) {
293 // <content:encoded> XML node's text content is HTML; no further processing needed.
294 $this->content = $contentEl->textContent;
296 $descriptionEl = ActivityUtils::child($item, self::DESCRIPTION, self::RSS);
297 if (!empty($descriptionEl)) {
298 // Per spec, <description> must be plaintext.
299 // In practice, often there's HTML... but these days good
300 // feeds are using <content:encoded> which is explicitly
302 // We'll treat this following spec, and do HTML escaping
303 // to convert from plaintext to HTML.
304 $this->content = htmlspecialchars($descriptionEl->textContent);
308 $this->link = ActivityUtils::childContent($item, ActivityUtils::LINK, self::RSS);
311 // @fixme thumbnails... maybe
313 $guidEl = ActivityUtils::child($item, self::GUID, self::RSS);
315 if (!empty($guidEl)) {
316 $this->id = $guidEl->textContent;
318 if ($guidEl->hasAttribute('isPermaLink') && $guidEl->getAttribute('isPermaLink') != 'false') {
320 $this->link = $this->id;
324 $this->objects[] = new ActivityObject($item);
325 $this->context = new ActivityContext($item);
329 * Returns an Atom <entry> based on this activity
331 * @return DOMElement Atom entry
334 function toAtomEntry()
339 function asString($namespace=false, $author=true, $source=false)
341 $xs = new XMLStringer(true);
342 $this->outputTo($xs, $namespace, $author, $source);
343 return $xs->getString();
346 function outputTo($xs, $namespace=false, $author=true, $source=false)
349 $attrs = array('xmlns' => 'http://www.w3.org/2005/Atom',
350 'xmlns:thr' => 'http://purl.org/syndication/thread/1.0',
351 'xmlns:activity' => 'http://activitystrea.ms/spec/1.0/',
352 'xmlns:georss' => 'http://www.georss.org/georss',
353 'xmlns:ostatus' => 'http://ostatus.org/schema/1.0',
354 'xmlns:poco' => 'http://portablecontacts.net/spec/1.0',
355 'xmlns:media' => 'http://purl.org/syndication/atommedia',
356 'xmlns:statusnet' => 'http://status.net/schema/api/1/');
361 $xs->elementStart('entry', $attrs);
363 if ($this->verb == ActivityVerb::POST && count($this->objects) == 1) {
365 $obj = $this->objects[0];
366 $obj->outputTo($xs, null);
369 $xs->element('id', null, $this->id);
370 $xs->element('title', null, $this->title);
372 $xs->element('content', array('type' => 'html'), $this->content);
374 if (!empty($this->summary)) {
375 $xs->element('summary', null, $this->summary);
378 if (!empty($this->link)) {
379 $xs->element('link', array('rel' => 'alternate',
380 'type' => 'text/html'),
386 $xs->element('activity:verb', null, $this->verb);
388 $published = self::iso8601Date($this->time);
390 $xs->element('published', null, $published);
391 $xs->element('updated', null, $published);
394 $this->actor->outputTo($xs, 'author');
396 // XXX: Remove <activity:actor> ASAP! Author information
397 // has been moved to the author element in the Activity
398 // Streams spec. We're outputting actor only for backward
399 // compatibility with clients that can only parse
400 // activities based on older versions of the spec.
402 $depMsg = 'Deprecation warning: activity:actor is present '
403 . 'only for backward compatibility. It will be '
404 . 'removed in the next version of StatusNet.';
405 $xs->comment($depMsg);
406 $this->actor->outputTo($xs, 'activity:actor');
409 if ($this->verb != ActivityVerb::POST || count($this->objects) != 1) {
410 foreach($this->objects as $object) {
411 $object->outputTo($xs, 'activity:object');
415 if (!empty($this->context)) {
417 if (!empty($this->context->replyToID)) {
418 if (!empty($this->context->replyToUrl)) {
419 $xs->element('thr:in-reply-to',
420 array('ref' => $this->context->replyToID,
421 'href' => $this->context->replyToUrl));
423 $xs->element('thr:in-reply-to',
424 array('ref' => $this->context->replyToID));
428 if (!empty($this->context->replyToUrl)) {
429 $xs->element('link', array('rel' => 'related',
430 'href' => $this->context->replyToUrl));
433 if (!empty($this->context->conversation)) {
434 $xs->element('link', array('rel' => 'ostatus:conversation',
435 'href' => $this->context->conversation));
438 foreach ($this->context->attention as $attnURI) {
439 $xs->element('link', array('rel' => 'ostatus:attention',
440 'href' => $attnURI));
441 $xs->element('link', array('rel' => 'mentioned',
442 'href' => $attnURI));
445 // XXX: shoulda used ActivityVerb::SHARE
447 if (!empty($this->context->forwardID)) {
448 if (!empty($this->context->forwardUrl)) {
449 $xs->element('ostatus:forward',
450 array('ref' => $this->context->forwardID,
451 'href' => $this->context->forwardUrl));
453 $xs->element('ostatus:forward',
454 array('ref' => $this->context->forwardID));
458 if (!empty($this->context->location)) {
459 $loc = $this->context->location;
460 $xs->element('georss:point', null, $loc->lat . ' ' . $loc->lon);
465 $this->target->outputTo($xs, 'activity:target');
468 foreach ($this->categories as $cat) {
472 // can be either URLs or enclosure objects
474 foreach ($this->enclosures as $enclosure) {
475 if (is_string($enclosure)) {
476 $xs->element('link', array('rel' => 'enclosure',
477 'href' => $enclosure));
479 $attributes = array('rel' => 'enclosure',
480 'href' => $enclosure->url,
481 'type' => $enclosure->mimetype,
482 'length' => $enclosure->size);
483 if ($enclosure->title) {
484 $attributes['title'] = $enclosure->title;
486 $xs->element('link', $attributes);
490 // Info on the source feed
492 if ($source && !empty($this->source)) {
493 $xs->elementStart('source');
495 $xs->element('id', null, $this->source->id);
496 $xs->element('title', null, $this->source->title);
498 if (array_key_exists('alternate', $this->source->links)) {
499 $xs->element('link', array('rel' => 'alternate',
500 'type' => 'text/html',
501 'href' => $this->source->links['alternate']));
504 if (array_key_exists('self', $this->source->links)) {
505 $xs->element('link', array('rel' => 'self',
506 'type' => 'application/atom+xml',
507 'href' => $this->source->links['self']));
510 if (array_key_exists('license', $this->source->links)) {
511 $xs->element('link', array('rel' => 'license',
512 'href' => $this->source->links['license']));
515 if (!empty($this->source->icon)) {
516 $xs->element('icon', null, $this->source->icon);
519 if (!empty($this->source->updated)) {
520 $xs->element('updated', null, $this->source->updated);
523 $xs->elementEnd('source');
526 if (!empty($this->selfLink)) {
527 $xs->element('link', array('rel' => 'self',
528 'type' => 'application/atom+xml',
529 'href' => $this->selfLink));
532 if (!empty($this->editLink)) {
533 $xs->element('link', array('rel' => 'edit',
534 'type' => 'application/atom+xml',
535 'href' => $this->editLink));
538 // For throwing in extra elements; used for statusnet:notice_info
540 foreach ($this->extra as $el) {
541 list($tag, $attrs, $content) = $el;
542 $xs->element($tag, $attrs, $content);
545 $xs->elementEnd('entry');
550 private function _child($element, $tag, $namespace=self::SPEC)
552 return ActivityUtils::child($element, $tag, $namespace);
555 static function iso8601Date($tm)
557 $dateStr = date('d F Y H:i:s', $tm);
558 $d = new DateTime($dateStr, new DateTimeZone('UTC'));
559 $d->setTimezone(new DateTimeZone(common_timezone()));
560 return $d->format('c');