| 
									
										
										
										
											2010-02-12 00:42:42 -05:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * StatusNet, the distributed open-source microblogging tool | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * An activity | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * PHP version 5 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * LICENCE: This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-02-22 17:10:50 -08:00
										 |  |  |  * @category  Feed | 
					
						
							| 
									
										
										
										
											2010-02-12 00:42:42 -05:00
										 |  |  |  * @package   StatusNet | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							| 
									
										
										
										
											2010-02-22 17:10:50 -08:00
										 |  |  |  * @author    Zach Copley <zach@status.net> | 
					
						
							| 
									
										
										
										
											2010-02-12 00:42:42 -05:00
										 |  |  |  * @copyright 2010 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 | 
					
						
							|  |  |  |  * @link      http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if (!defined('STATUSNET')) { | 
					
						
							|  |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  | /** | 
					
						
							|  |  |  |  * An activity in the ActivityStrea.ms world | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * An activity is kind of like a sentence: someone did something | 
					
						
							|  |  |  |  * to something else. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 'someone' is the 'actor'; 'did something' is the verb; | 
					
						
							|  |  |  |  * 'something else' is the object. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category  OStatus | 
					
						
							|  |  |  |  * @package   StatusNet | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @copyright 2010 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 | 
					
						
							|  |  |  |  * @link      http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Activity | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const SPEC   = 'http://activitystrea.ms/spec/1.0/'; | 
					
						
							|  |  |  |     const SCHEMA = 'http://activitystrea.ms/schema/1.0/'; | 
					
						
							| 
									
										
										
										
											2010-03-22 18:53:09 -07:00
										 |  |  |     const MEDIA  = 'http://purl.org/syndication/atommedia'; | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     const VERB       = 'verb'; | 
					
						
							|  |  |  |     const OBJECT     = 'object'; | 
					
						
							|  |  |  |     const ACTOR      = 'actor'; | 
					
						
							|  |  |  |     const SUBJECT    = 'subject'; | 
					
						
							|  |  |  |     const OBJECTTYPE = 'object-type'; | 
					
						
							|  |  |  |     const CONTEXT    = 'context'; | 
					
						
							|  |  |  |     const TARGET     = 'target'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const ATOM = 'http://www.w3.org/2005/Atom'; | 
					
						
							| 
									
										
										
										
											2010-02-12 00:42:42 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  |     const AUTHOR    = 'author'; | 
					
						
							|  |  |  |     const PUBLISHED = 'published'; | 
					
						
							| 
									
										
										
										
											2010-02-14 13:19:32 -05:00
										 |  |  |     const UPDATED   = 'updated'; | 
					
						
							| 
									
										
										
										
											2010-02-12 00:42:42 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-19 09:48:39 -05:00
										 |  |  |     const RSS = null; // no namespace!
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const PUBDATE     = 'pubDate'; | 
					
						
							|  |  |  |     const DESCRIPTION = 'description'; | 
					
						
							|  |  |  |     const GUID        = 'guid'; | 
					
						
							|  |  |  |     const SELF        = 'self'; | 
					
						
							|  |  |  |     const IMAGE       = 'image'; | 
					
						
							|  |  |  |     const URL         = 'url'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const DC = 'http://purl.org/dc/elements/1.1/'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const CREATOR = 'creator'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const CONTENTNS = 'http://purl.org/rss/1.0/modules/content/'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  |     public $actor;   // an ActivityObject
 | 
					
						
							|  |  |  |     public $verb;    // a string (the URL)
 | 
					
						
							| 
									
										
										
										
											2010-03-22 18:53:09 -07:00
										 |  |  |     public $objects = array();  // an array of ActivityObjects
 | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  |     public $target;  // an ActivityObject
 | 
					
						
							|  |  |  |     public $context; // an ActivityObject
 | 
					
						
							|  |  |  |     public $time;    // Time of the activity
 | 
					
						
							|  |  |  |     public $link;    // an ActivityObject
 | 
					
						
							|  |  |  |     public $entry;   // the source entry
 | 
					
						
							|  |  |  |     public $feed;    // the source feed
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-21 10:50:51 -05:00
										 |  |  |     public $summary; // summary of activity
 | 
					
						
							|  |  |  |     public $content; // HTML content of activity
 | 
					
						
							|  |  |  |     public $id;      // ID of the activity
 | 
					
						
							|  |  |  |     public $title;   // title of the activity
 | 
					
						
							| 
									
										
										
										
											2010-02-25 11:26:33 -08:00
										 |  |  |     public $categories = array(); // list of AtomCategory objects
 | 
					
						
							| 
									
										
										
										
											2010-03-02 16:30:09 -08:00
										 |  |  |     public $enclosures = array(); // list of enclosure URL references
 | 
					
						
							| 
									
										
										
										
											2010-02-21 10:50:51 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Turns a regular old Atom <entry> into a magical activity | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param DOMElement $entry Atom entry to poke at | 
					
						
							|  |  |  |      * @param DOMElement $feed  Atom feed, for context | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-21 10:50:51 -05:00
										 |  |  |     function __construct($entry = null, $feed = null) | 
					
						
							| 
									
										
										
										
											2010-02-12 00:42:42 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-02-21 10:50:51 -05:00
										 |  |  |         if (is_null($entry)) { | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-15 19:06:06 -07:00
										 |  |  |         // Insist on a feed's root DOMElement; don't allow a DOMDocument
 | 
					
						
							| 
									
										
										
										
											2010-03-03 20:55:53 -08:00
										 |  |  |         if ($feed instanceof DOMDocument) { | 
					
						
							| 
									
										
										
										
											2010-03-15 19:06:06 -07:00
										 |  |  |             throw new ClientException( | 
					
						
							|  |  |  |                 _("Expecting a root feed element but got a whole XML document.") | 
					
						
							| 
									
										
										
										
											2010-03-03 20:55:53 -08:00
										 |  |  |             ); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-19 09:48:39 -05:00
										 |  |  |         $this->entry = $entry; | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  |         $this->feed  = $feed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-19 09:48:39 -05:00
										 |  |  |         if ($entry->namespaceURI == Activity::ATOM && | 
					
						
							|  |  |  |             $entry->localName == 'entry') { | 
					
						
							|  |  |  |             $this->_fromAtomEntry($entry, $feed); | 
					
						
							|  |  |  |         } else if ($entry->namespaceURI == Activity::RSS && | 
					
						
							|  |  |  |                    $entry->localName == 'item') { | 
					
						
							|  |  |  |             $this->_fromRssItem($entry, $feed); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             throw new Exception("Unknown DOM element: {$entry->namespaceURI} {$entry->localName}"); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function _fromAtomEntry($entry, $feed) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  |         $pubEl = $this->_child($entry, self::PUBLISHED, self::ATOM); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($pubEl)) { | 
					
						
							|  |  |  |             $this->time = strtotime($pubEl->textContent); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             // XXX technically an error; being liberal. Good idea...?
 | 
					
						
							| 
									
										
										
										
											2010-02-14 13:19:32 -05:00
										 |  |  |             $updateEl = $this->_child($entry, self::UPDATED, self::ATOM); | 
					
						
							|  |  |  |             if (!empty($updateEl)) { | 
					
						
							|  |  |  |                 $this->time = strtotime($updateEl->textContent); | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $this->time = null; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-16 12:49:54 -05:00
										 |  |  |         $this->link = ActivityUtils::getPermalink($entry); | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $verbEl = $this->_child($entry, self::VERB); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($verbEl)) { | 
					
						
							|  |  |  |             $this->verb = trim($verbEl->textContent); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $this->verb = ActivityVerb::POST; | 
					
						
							|  |  |  |             // XXX: do other implied stuff here
 | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-22 18:53:09 -07:00
										 |  |  |         $objectEls = $entry->getElementsByTagNameNS(self::SPEC, self::OBJECT); | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-22 18:53:09 -07:00
										 |  |  |         if ($objectEls->length > 0) { | 
					
						
							|  |  |  |             for ($i = 0; $i < $objectEls->length; $i++) { | 
					
						
							|  |  |  |                 $objectEl = $objectEls->item($i); | 
					
						
							|  |  |  |                 $this->objects[] = new ActivityObject($objectEl); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2010-03-22 18:53:09 -07:00
										 |  |  |             $this->objects[] = new ActivityObject($entry); | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $actorEl = $this->_child($entry, self::ACTOR); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($actorEl)) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $this->actor = new ActivityObject($actorEl); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-27 22:44:10 -04:00
										 |  |  |             // Cliqset has bad actor IDs (just nickname of user). We
 | 
					
						
							|  |  |  |             // work around it by getting the author data and using its
 | 
					
						
							|  |  |  |             // id instead
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (!preg_match('/^\w+:/', $this->actor->id)) { | 
					
						
							|  |  |  |                 $authorEl = ActivityUtils::child($entry, 'author'); | 
					
						
							|  |  |  |                 if (!empty($authorEl)) { | 
					
						
							|  |  |  |                     $authorObj = new ActivityObject($authorEl); | 
					
						
							|  |  |  |                     $this->actor->id = $authorObj->id; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  |         } else if (!empty($feed) && | 
					
						
							|  |  |  |                    $subjectEl = $this->_child($feed, self::SUBJECT)) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $this->actor = new ActivityObject($subjectEl); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         } else if ($authorEl = $this->_child($entry, self::AUTHOR, self::ATOM)) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $this->actor = new ActivityObject($authorEl); | 
					
						
							| 
									
										
										
										
											2010-02-14 13:19:32 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         } else if (!empty($feed) && $authorEl = $this->_child($feed, self::AUTHOR, | 
					
						
							|  |  |  |                                                               self::ATOM)) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $this->actor = new ActivityObject($authorEl); | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $contextEl = $this->_child($entry, self::CONTEXT); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($contextEl)) { | 
					
						
							| 
									
										
										
										
											2010-02-18 22:18:14 -05:00
										 |  |  |             $this->context = new ActivityContext($contextEl); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $this->context = new ActivityContext($entry); | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $targetEl = $this->_child($entry, self::TARGET); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($targetEl)) { | 
					
						
							|  |  |  |             $this->target = new ActivityObject($targetEl); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-02-21 10:50:51 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $this->summary = ActivityUtils::childContent($entry, 'summary'); | 
					
						
							|  |  |  |         $this->id      = ActivityUtils::childContent($entry, 'id'); | 
					
						
							|  |  |  |         $this->content = ActivityUtils::getContent($entry); | 
					
						
							| 
									
										
										
										
											2010-02-25 11:26:33 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $catEls = $entry->getElementsByTagNameNS(self::ATOM, 'category'); | 
					
						
							|  |  |  |         if ($catEls) { | 
					
						
							|  |  |  |             for ($i = 0; $i < $catEls->length; $i++) { | 
					
						
							|  |  |  |                 $catEl = $catEls->item($i); | 
					
						
							|  |  |  |                 $this->categories[] = new AtomCategory($catEl); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-03-02 16:30:09 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         foreach (ActivityUtils::getLinks($entry, 'enclosure') as $link) { | 
					
						
							|  |  |  |             $this->enclosures[] = $link->getAttribute('href'); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-02-12 00:42:42 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-20 07:19:54 -05:00
										 |  |  |     function _fromRssItem($item, $channel) | 
					
						
							| 
									
										
										
										
											2010-03-19 09:48:39 -05:00
										 |  |  |     { | 
					
						
							|  |  |  |         $verbEl = $this->_child($item, self::VERB); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($verbEl)) { | 
					
						
							|  |  |  |             $this->verb = trim($verbEl->textContent); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $this->verb = ActivityVerb::POST; | 
					
						
							|  |  |  |             // XXX: do other implied stuff here
 | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $pubDateEl = $this->_child($item, self::PUBDATE, self::RSS); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($pubDateEl)) { | 
					
						
							|  |  |  |             $this->time = strtotime($pubDateEl->textContent); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-20 16:53:30 -05:00
										 |  |  |         if ($authorEl = $this->_child($item, self::AUTHOR, self::RSS)) { | 
					
						
							| 
									
										
										
										
											2010-03-19 15:41:48 -05:00
										 |  |  |             $this->actor = ActivityObject::fromRssAuthor($authorEl); | 
					
						
							| 
									
										
										
										
											2010-03-20 16:53:30 -05:00
										 |  |  |         } else if ($dcCreatorEl = $this->_child($item, self::CREATOR, self::DC)) { | 
					
						
							|  |  |  |             $this->actor = ActivityObject::fromDcCreator($dcCreatorEl); | 
					
						
							|  |  |  |         } else if ($posterousEl = $this->_child($item, ActivityObject::AUTHOR, ActivityObject::POSTEROUS)) { | 
					
						
							|  |  |  |             // Special case for Posterous.com
 | 
					
						
							|  |  |  |             $this->actor = ActivityObject::fromPosterousAuthor($posterousEl); | 
					
						
							|  |  |  |         } else if (!empty($channel)) { | 
					
						
							|  |  |  |             $this->actor = ActivityObject::fromRssChannel($channel); | 
					
						
							| 
									
										
										
										
											2010-03-19 09:48:39 -05:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2010-03-20 16:53:30 -05:00
										 |  |  |             // No actor!
 | 
					
						
							| 
									
										
										
										
											2010-03-19 09:48:39 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->title = ActivityUtils::childContent($item, ActivityObject::TITLE, self::RSS); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $contentEl = ActivityUtils::child($item, ActivityUtils::CONTENT, self::CONTENTNS); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($contentEl)) { | 
					
						
							|  |  |  |             $this->content = htmlspecialchars_decode($contentEl->textContent, ENT_QUOTES); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $descriptionEl = ActivityUtils::child($item, self::DESCRIPTION, self::RSS); | 
					
						
							|  |  |  |             if (!empty($descriptionEl)) { | 
					
						
							|  |  |  |                 $this->content = htmlspecialchars_decode($descriptionEl->textContent, ENT_QUOTES); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->link = ActivityUtils::childContent($item, ActivityUtils::LINK, self::RSS); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // @fixme enclosures
 | 
					
						
							|  |  |  |         // @fixme thumbnails... maybe
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $guidEl = ActivityUtils::child($item, self::GUID, self::RSS); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($guidEl)) { | 
					
						
							|  |  |  |             $this->id = $guidEl->textContent; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if ($guidEl->hasAttribute('isPermaLink') && $guidEl->getAttribute('isPermaLink') != 'false') { | 
					
						
							|  |  |  |                 // overwrites <link>
 | 
					
						
							|  |  |  |                 $this->link = $this->id; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-22 18:53:09 -07:00
										 |  |  |         $this->objects[] = new ActivityObject($item); | 
					
						
							|  |  |  |         $this->context   = new ActivityContext($item); | 
					
						
							| 
									
										
										
										
											2010-03-19 09:48:39 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Returns an Atom <entry> based on this activity | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return DOMElement Atom entry | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-12 00:42:42 -05:00
										 |  |  |     function toAtomEntry() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  |         return null; | 
					
						
							| 
									
										
										
										
											2010-02-12 00:42:42 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-21 10:50:51 -05:00
										 |  |  |     function asString($namespace=false) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $xs = new XMLStringer(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($namespace) { | 
					
						
							|  |  |  |             $attrs = array('xmlns' => 'http://www.w3.org/2005/Atom', | 
					
						
							|  |  |  |                            'xmlns:activity' => 'http://activitystrea.ms/spec/1.0/', | 
					
						
							| 
									
										
										
										
											2010-02-23 20:44:27 +00:00
										 |  |  |                            'xmlns:georss' => 'http://www.georss.org/georss', | 
					
						
							|  |  |  |                            'xmlns:ostatus' => 'http://ostatus.org/schema/1.0', | 
					
						
							| 
									
										
										
										
											2010-02-25 16:06:49 -08:00
										 |  |  |                            'xmlns:poco' => 'http://portablecontacts.net/spec/1.0', | 
					
						
							|  |  |  |                            'xmlns:media' => 'http://purl.org/syndication/atommedia'); | 
					
						
							| 
									
										
										
										
											2010-02-21 10:50:51 -05:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             $attrs = array(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $xs->elementStart('entry', $attrs); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $xs->element('id', null, $this->id); | 
					
						
							|  |  |  |         $xs->element('title', null, $this->title); | 
					
						
							|  |  |  |         $xs->element('published', null, common_date_iso8601($this->time)); | 
					
						
							|  |  |  |         $xs->element('content', array('type' => 'html'), $this->content); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($this->summary)) { | 
					
						
							|  |  |  |             $xs->element('summary', null, $this->summary); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($this->link)) { | 
					
						
							|  |  |  |             $xs->element('link', array('rel' => 'alternate', | 
					
						
							|  |  |  |                                        'type' => 'text/html'), | 
					
						
							|  |  |  |                          $this->link); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // XXX: add context
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-24 17:36:31 +00:00
										 |  |  |         $xs->elementStart('author'); | 
					
						
							|  |  |  |         $xs->element('uri', array(), $this->actor->id); | 
					
						
							|  |  |  |         if ($this->actor->title) { | 
					
						
							|  |  |  |             $xs->element('name', array(), $this->actor->title); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $xs->elementEnd('author'); | 
					
						
							| 
									
										
										
										
											2010-02-21 17:00:05 -05:00
										 |  |  |         $xs->raw($this->actor->asString('activity:actor')); | 
					
						
							| 
									
										
										
										
											2010-02-24 17:36:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-21 10:50:51 -05:00
										 |  |  |         $xs->element('activity:verb', null, $this->verb); | 
					
						
							| 
									
										
										
										
											2010-02-24 17:36:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-22 18:53:09 -07:00
										 |  |  |         if (!empty($this->objects)) { | 
					
						
							|  |  |  |             foreach($this->objects as $object) { | 
					
						
							|  |  |  |                 $xs->raw($object->asString()); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-02-24 17:36:31 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($this->target) { | 
					
						
							|  |  |  |             $xs->raw($this->target->asString('activity:target')); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-02-21 10:50:51 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-25 11:26:33 -08:00
										 |  |  |         foreach ($this->categories as $cat) { | 
					
						
							|  |  |  |             $xs->raw($cat->asString()); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-21 10:50:51 -05:00
										 |  |  |         $xs->elementEnd('entry'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $xs->getString(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  |     private function _child($element, $tag, $namespace=self::SPEC) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-02-16 12:49:54 -05:00
										 |  |  |         return ActivityUtils::child($element, $tag, $namespace); | 
					
						
							| 
									
										
										
										
											2010-02-14 12:12:47 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-02-25 11:26:33 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 |