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/
54 const SPEC = 'http://activitystrea.ms/spec/1.0/';
55 const SCHEMA = 'http://activitystrea.ms/schema/1.0/';
56 const MEDIA = 'http://purl.org/syndication/atommedia';
59 const OBJECT = 'object';
60 const ACTOR = 'actor';
61 const SUBJECT = 'subject';
62 const OBJECTTYPE = 'object-type';
63 const CONTEXT = 'context';
64 const TARGET = 'target';
66 const ATOM = 'http://www.w3.org/2005/Atom';
68 const AUTHOR = 'author';
69 const PUBLISHED = 'published';
70 const UPDATED = 'updated';
72 const RSS = null; // no namespace!
74 const PUBDATE = 'pubDate';
75 const DESCRIPTION = 'description';
78 const IMAGE = 'image';
81 const DC = 'http://purl.org/dc/elements/1.1/';
83 const CREATOR = 'creator';
85 const CONTENTNS = 'http://purl.org/rss/1.0/modules/content/';
86 const ENCODED = 'encoded';
88 public $actor; // an ActivityObject
89 public $verb; // a string (the URL)
90 public $objects = array(); // an array of ActivityObjects
91 public $target; // an ActivityObject
92 public $context; // an ActivityObject
93 public $time; // Time of the activity
94 public $link; // an ActivityObject
95 public $entry; // the source entry
96 public $feed; // the source feed
98 public $summary; // summary of activity
99 public $content; // HTML content of activity
100 public $id; // ID of the activity
101 public $title; // title of the activity
102 public $categories = array(); // list of AtomCategory objects
103 public $enclosures = array(); // list of enclosure URL references
106 * Turns a regular old Atom <entry> into a magical activity
108 * @param DOMElement $entry Atom entry to poke at
109 * @param DOMElement $feed Atom feed, for context
112 function __construct($entry = null, $feed = null)
114 if (is_null($entry)) {
118 // Insist on a feed's root DOMElement; don't allow a DOMDocument
119 if ($feed instanceof DOMDocument) {
120 throw new ClientException(
121 // TRANS: Client exception thrown when a feed instance is a DOMDocument.
122 _('Expecting a root feed element but got a whole XML document.')
126 $this->entry = $entry;
129 if ($entry->namespaceURI == Activity::ATOM &&
130 $entry->localName == 'entry') {
131 $this->_fromAtomEntry($entry, $feed);
132 } else if ($entry->namespaceURI == Activity::RSS &&
133 $entry->localName == 'item') {
134 $this->_fromRssItem($entry, $feed);
136 throw new Exception("Unknown DOM element: {$entry->namespaceURI} {$entry->localName}");
140 function _fromAtomEntry($entry, $feed)
142 $pubEl = $this->_child($entry, self::PUBLISHED, self::ATOM);
144 if (!empty($pubEl)) {
145 $this->time = strtotime($pubEl->textContent);
147 // XXX technically an error; being liberal. Good idea...?
148 $updateEl = $this->_child($entry, self::UPDATED, self::ATOM);
149 if (!empty($updateEl)) {
150 $this->time = strtotime($updateEl->textContent);
156 $this->link = ActivityUtils::getPermalink($entry);
158 $verbEl = $this->_child($entry, self::VERB);
160 if (!empty($verbEl)) {
161 $this->verb = trim($verbEl->textContent);
163 $this->verb = ActivityVerb::POST;
164 // XXX: do other implied stuff here
167 $objectEls = $entry->getElementsByTagNameNS(self::SPEC, self::OBJECT);
169 if ($objectEls->length > 0) {
170 for ($i = 0; $i < $objectEls->length; $i++) {
171 $objectEl = $objectEls->item($i);
172 $this->objects[] = new ActivityObject($objectEl);
175 $this->objects[] = new ActivityObject($entry);
178 $actorEl = $this->_child($entry, self::ACTOR);
180 if (!empty($actorEl)) {
182 $this->actor = new ActivityObject($actorEl);
184 // Cliqset has bad actor IDs (just nickname of user). We
185 // work around it by getting the author data and using its
188 if (!preg_match('/^\w+:/', $this->actor->id)) {
189 $authorEl = ActivityUtils::child($entry, 'author');
190 if (!empty($authorEl)) {
191 $authorObj = new ActivityObject($authorEl);
192 $this->actor->id = $authorObj->id;
195 } else if (!empty($feed) &&
196 $subjectEl = $this->_child($feed, self::SUBJECT)) {
198 $this->actor = new ActivityObject($subjectEl);
200 } else if ($authorEl = $this->_child($entry, self::AUTHOR, self::ATOM)) {
202 $this->actor = new ActivityObject($authorEl);
204 } else if (!empty($feed) && $authorEl = $this->_child($feed, self::AUTHOR,
207 $this->actor = new ActivityObject($authorEl);
210 $contextEl = $this->_child($entry, self::CONTEXT);
212 if (!empty($contextEl)) {
213 $this->context = new ActivityContext($contextEl);
215 $this->context = new ActivityContext($entry);
218 $targetEl = $this->_child($entry, self::TARGET);
220 if (!empty($targetEl)) {
221 $this->target = new ActivityObject($targetEl);
224 $this->summary = ActivityUtils::childContent($entry, 'summary');
225 $this->id = ActivityUtils::childContent($entry, 'id');
226 $this->content = ActivityUtils::getContent($entry);
228 $catEls = $entry->getElementsByTagNameNS(self::ATOM, 'category');
230 for ($i = 0; $i < $catEls->length; $i++) {
231 $catEl = $catEls->item($i);
232 $this->categories[] = new AtomCategory($catEl);
236 foreach (ActivityUtils::getLinks($entry, 'enclosure') as $link) {
237 $this->enclosures[] = $link->getAttribute('href');
241 function _fromRssItem($item, $channel)
243 $verbEl = $this->_child($item, self::VERB);
245 if (!empty($verbEl)) {
246 $this->verb = trim($verbEl->textContent);
248 $this->verb = ActivityVerb::POST;
249 // XXX: do other implied stuff here
252 $pubDateEl = $this->_child($item, self::PUBDATE, self::RSS);
254 if (!empty($pubDateEl)) {
255 $this->time = strtotime($pubDateEl->textContent);
258 if ($authorEl = $this->_child($item, self::AUTHOR, self::RSS)) {
259 $this->actor = ActivityObject::fromRssAuthor($authorEl);
260 } else if ($dcCreatorEl = $this->_child($item, self::CREATOR, self::DC)) {
261 $this->actor = ActivityObject::fromDcCreator($dcCreatorEl);
262 } else if ($posterousEl = $this->_child($item, ActivityObject::AUTHOR, ActivityObject::POSTEROUS)) {
263 // Special case for Posterous.com
264 $this->actor = ActivityObject::fromPosterousAuthor($posterousEl);
265 } else if (!empty($channel)) {
266 $this->actor = ActivityObject::fromRssChannel($channel);
271 $this->title = ActivityUtils::childContent($item, ActivityObject::TITLE, self::RSS);
273 $contentEl = ActivityUtils::child($item, self::ENCODED, self::CONTENTNS);
275 if (!empty($contentEl)) {
276 // <content:encoded> XML node's text content is HTML; no further processing needed.
277 $this->content = $contentEl->textContent;
279 $descriptionEl = ActivityUtils::child($item, self::DESCRIPTION, self::RSS);
280 if (!empty($descriptionEl)) {
281 // Per spec, <description> must be plaintext.
282 // In practice, often there's HTML... but these days good
283 // feeds are using <content:encoded> which is explicitly
285 // We'll treat this following spec, and do HTML escaping
286 // to convert from plaintext to HTML.
287 $this->content = htmlspecialchars($descriptionEl->textContent);
291 $this->link = ActivityUtils::childContent($item, ActivityUtils::LINK, self::RSS);
294 // @fixme thumbnails... maybe
296 $guidEl = ActivityUtils::child($item, self::GUID, self::RSS);
298 if (!empty($guidEl)) {
299 $this->id = $guidEl->textContent;
301 if ($guidEl->hasAttribute('isPermaLink') && $guidEl->getAttribute('isPermaLink') != 'false') {
303 $this->link = $this->id;
307 $this->objects[] = new ActivityObject($item);
308 $this->context = new ActivityContext($item);
312 * Returns an Atom <entry> based on this activity
314 * @return DOMElement Atom entry
317 function toAtomEntry()
322 function asString($namespace=false, $author=true)
324 $xs = new XMLStringer(true);
327 $attrs = array('xmlns' => 'http://www.w3.org/2005/Atom',
328 'xmlns:activity' => 'http://activitystrea.ms/spec/1.0/',
329 'xmlns:georss' => 'http://www.georss.org/georss',
330 'xmlns:ostatus' => 'http://ostatus.org/schema/1.0',
331 'xmlns:poco' => 'http://portablecontacts.net/spec/1.0',
332 'xmlns:media' => 'http://purl.org/syndication/atommedia');
337 $xs->elementStart('entry', $attrs);
339 $xs->element('id', null, $this->id);
340 $xs->element('title', null, $this->title);
341 $xs->element('published', null, self::iso8601Date($this->time));
342 $xs->element('content', array('type' => 'html'), $this->content);
344 if (!empty($this->summary)) {
345 $xs->element('summary', null, $this->summary);
348 if (!empty($this->link)) {
349 $xs->element('link', array('rel' => 'alternate',
350 'type' => 'text/html'),
357 $xs->elementStart('author');
358 $xs->element('uri', array(), $this->actor->id);
359 if ($this->actor->title) {
360 $xs->element('name', array(), $this->actor->title);
362 $xs->elementEnd('author');
363 $xs->raw($this->actor->asString('activity:actor'));
366 $xs->element('activity:verb', null, $this->verb);
368 if (!empty($this->objects)) {
369 foreach($this->objects as $object) {
370 $xs->raw($object->asString());
375 $xs->raw($this->target->asString('activity:target'));
378 foreach ($this->categories as $cat) {
379 $xs->raw($cat->asString());
382 $xs->elementEnd('entry');
384 return $xs->getString();
387 private function _child($element, $tag, $namespace=self::SPEC)
389 return ActivityUtils::child($element, $tag, $namespace);
392 static function iso8601Date($tm)
394 $dateStr = date('d F Y H:i:s', $tm);
395 $d = new DateTime($dateStr, new DateTimeZone('UTC'));
396 $d->setTimezone(new DateTimeZone(common_timezone()));
397 return $d->format('c');