2010-02-12 05:42:42 +00: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/>.
|
|
|
|
*
|
|
|
|
* @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/
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('STATUSNET')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2010-02-14 17:12:47 +00:00
|
|
|
/**
|
|
|
|
* Utilities for turning DOMish things into Activityish things
|
|
|
|
*
|
|
|
|
* Some common functions that I didn't have the bandwidth to try to factor
|
|
|
|
* into some kind of reasonable superclass, so just dumped here. Might
|
|
|
|
* be useful to have an ActivityObject parent class or something.
|
|
|
|
*
|
|
|
|
* @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 ActivityUtils
|
|
|
|
{
|
|
|
|
const ATOM = 'http://www.w3.org/2005/Atom';
|
|
|
|
|
|
|
|
const LINK = 'link';
|
|
|
|
const REL = 'rel';
|
|
|
|
const TYPE = 'type';
|
|
|
|
const HREF = 'href';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the permalink for an Activity object
|
|
|
|
*
|
|
|
|
* @param DOMElement $element A DOM element
|
|
|
|
*
|
|
|
|
* @return string related link, if any
|
|
|
|
*/
|
|
|
|
|
2010-02-16 17:49:54 +00:00
|
|
|
static function getPermalink($element)
|
|
|
|
{
|
|
|
|
return self::getLink($element, 'alternate', 'text/html');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the permalink for an Activity object
|
|
|
|
*
|
|
|
|
* @param DOMElement $element A DOM element
|
|
|
|
*
|
|
|
|
* @return string related link, if any
|
|
|
|
*/
|
|
|
|
|
|
|
|
static function getLink($element, $rel, $type=null)
|
2010-02-14 17:12:47 +00:00
|
|
|
{
|
|
|
|
$links = $element->getElementsByTagnameNS(self::ATOM, self::LINK);
|
|
|
|
|
|
|
|
foreach ($links as $link) {
|
2010-02-14 18:19:32 +00:00
|
|
|
|
2010-02-16 17:49:54 +00:00
|
|
|
$linkRel = $link->getAttribute(self::REL);
|
|
|
|
$linkType = $link->getAttribute(self::TYPE);
|
2010-02-14 18:19:32 +00:00
|
|
|
|
2010-02-16 17:49:54 +00:00
|
|
|
if ($linkRel == $rel &&
|
|
|
|
(is_null($type) || $linkType == $type)) {
|
2010-02-14 18:19:32 +00:00
|
|
|
return $link->getAttribute(self::HREF);
|
2010-02-14 17:12:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
2010-02-16 17:49:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the first child element with the given tag
|
|
|
|
*
|
|
|
|
* @param DOMElement $element element to pick at
|
|
|
|
* @param string $tag tag to look for
|
|
|
|
* @param string $namespace Namespace to look under
|
|
|
|
*
|
|
|
|
* @return DOMElement found element or null
|
|
|
|
*/
|
|
|
|
|
|
|
|
static function child($element, $tag, $namespace=self::ATOM)
|
|
|
|
{
|
|
|
|
$els = $element->getElementsByTagnameNS($namespace, $tag);
|
|
|
|
|
|
|
|
if (empty($els) || $els->length == 0) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return $els->item(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Grab the text content of a DOM element child of the current element
|
|
|
|
*
|
|
|
|
* @param DOMElement $element Element whose children we examine
|
|
|
|
* @param string $tag Tag to look up
|
|
|
|
* @param string $namespace Namespace to use, defaults to Atom
|
|
|
|
*
|
|
|
|
* @return string content of the child
|
|
|
|
*/
|
|
|
|
|
|
|
|
static function childContent($element, $tag, $namespace=self::ATOM)
|
|
|
|
{
|
|
|
|
$el = self::child($element, $tag, $namespace);
|
|
|
|
|
|
|
|
if (empty($el)) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return $el->textContent;
|
|
|
|
}
|
|
|
|
}
|
2010-02-14 17:12:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A noun-ish thing in the activity universe
|
|
|
|
*
|
|
|
|
* The activity streams spec talks about activity objects, while also having
|
|
|
|
* a tag activity:object, which is in fact an activity object. Aaaaaah!
|
|
|
|
*
|
|
|
|
* This is just a thing in the activity universe. Can be the subject, object,
|
|
|
|
* or indirect object (target!) of an activity verb. Rotten name, and I'm
|
|
|
|
* propagating it. *sigh*
|
|
|
|
*
|
|
|
|
* @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 ActivityObject
|
2010-02-12 05:42:42 +00:00
|
|
|
{
|
|
|
|
const ARTICLE = 'http://activitystrea.ms/schema/1.0/article';
|
|
|
|
const BLOGENTRY = 'http://activitystrea.ms/schema/1.0/blog-entry';
|
|
|
|
const NOTE = 'http://activitystrea.ms/schema/1.0/note';
|
|
|
|
const STATUS = 'http://activitystrea.ms/schema/1.0/status';
|
|
|
|
const FILE = 'http://activitystrea.ms/schema/1.0/file';
|
|
|
|
const PHOTO = 'http://activitystrea.ms/schema/1.0/photo';
|
|
|
|
const ALBUM = 'http://activitystrea.ms/schema/1.0/photo-album';
|
|
|
|
const PLAYLIST = 'http://activitystrea.ms/schema/1.0/playlist';
|
|
|
|
const VIDEO = 'http://activitystrea.ms/schema/1.0/video';
|
|
|
|
const AUDIO = 'http://activitystrea.ms/schema/1.0/audio';
|
|
|
|
const BOOKMARK = 'http://activitystrea.ms/schema/1.0/bookmark';
|
|
|
|
const PERSON = 'http://activitystrea.ms/schema/1.0/person';
|
|
|
|
const GROUP = 'http://activitystrea.ms/schema/1.0/group';
|
|
|
|
const PLACE = 'http://activitystrea.ms/schema/1.0/place';
|
2010-02-14 17:12:47 +00:00
|
|
|
const COMMENT = 'http://activitystrea.ms/schema/1.0/comment';
|
|
|
|
// ^^^^^^^^^^ tea!
|
|
|
|
|
|
|
|
// Atom elements we snarf
|
|
|
|
|
|
|
|
const TITLE = 'title';
|
|
|
|
const SUMMARY = 'summary';
|
|
|
|
const CONTENT = 'content';
|
|
|
|
const ID = 'id';
|
|
|
|
const SOURCE = 'source';
|
|
|
|
|
2010-02-14 18:19:32 +00:00
|
|
|
const NAME = 'name';
|
|
|
|
const URI = 'uri';
|
|
|
|
const EMAIL = 'email';
|
2010-02-12 05:42:42 +00:00
|
|
|
|
2010-02-16 17:49:54 +00:00
|
|
|
public $element;
|
2010-02-12 05:42:42 +00:00
|
|
|
public $type;
|
|
|
|
public $id;
|
|
|
|
public $title;
|
|
|
|
public $summary;
|
|
|
|
public $content;
|
2010-02-14 17:12:47 +00:00
|
|
|
public $link;
|
|
|
|
public $source;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* This probably needs to be refactored
|
|
|
|
* to generate a local class (ActivityPerson, ActivityFile, ...)
|
|
|
|
* based on the object type.
|
|
|
|
*
|
|
|
|
* @param DOMElement $element DOM thing to turn into an Activity thing
|
|
|
|
*/
|
|
|
|
|
|
|
|
function __construct($element)
|
|
|
|
{
|
2010-02-16 17:49:54 +00:00
|
|
|
$this->element = $element;
|
2010-02-14 17:12:47 +00:00
|
|
|
|
|
|
|
if ($element->tagName == 'author') {
|
|
|
|
|
|
|
|
$this->type = self::PERSON; // XXX: is this fair?
|
|
|
|
$this->title = $this->_childContent($element, self::NAME);
|
|
|
|
$this->id = $this->_childContent($element, self::URI);
|
|
|
|
|
2010-02-14 18:19:32 +00:00
|
|
|
if (empty($this->id)) {
|
|
|
|
$email = $this->_childContent($element, self::EMAIL);
|
|
|
|
if (!empty($email)) {
|
|
|
|
// XXX: acct: ?
|
|
|
|
$this->id = 'mailto:'.$email;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-14 17:12:47 +00:00
|
|
|
} else {
|
|
|
|
|
|
|
|
$this->type = $this->_childContent($element, Activity::OBJECTTYPE,
|
|
|
|
Activity::SPEC);
|
|
|
|
|
2010-02-14 18:19:32 +00:00
|
|
|
if (empty($this->type)) {
|
|
|
|
$this->type = ActivityObject::NOTE;
|
|
|
|
}
|
|
|
|
|
2010-02-14 17:12:47 +00:00
|
|
|
$this->id = $this->_childContent($element, self::ID);
|
|
|
|
$this->title = $this->_childContent($element, self::TITLE);
|
|
|
|
$this->summary = $this->_childContent($element, self::SUMMARY);
|
|
|
|
$this->content = $this->_childContent($element, self::CONTENT);
|
|
|
|
|
2010-02-16 17:49:54 +00:00
|
|
|
$this->source = $this->_getSource($element);
|
|
|
|
|
|
|
|
$this->link = ActivityUtils::getPermalink($element);
|
2010-02-14 17:12:47 +00:00
|
|
|
|
|
|
|
// XXX: grab PoCo stuff
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-16 17:49:54 +00:00
|
|
|
private function _childContent($element, $tag, $namespace=ActivityUtils::ATOM)
|
|
|
|
{
|
|
|
|
return ActivityUtils::childContent($element, $tag, $namespace);
|
|
|
|
}
|
2010-02-14 17:12:47 +00:00
|
|
|
|
2010-02-16 17:49:54 +00:00
|
|
|
// Try to get a unique id for the source feed
|
|
|
|
|
|
|
|
private function _getSource($element)
|
2010-02-14 17:12:47 +00:00
|
|
|
{
|
2010-02-16 17:49:54 +00:00
|
|
|
$sourceEl = ActivityUtils::child($element, 'source');
|
2010-02-14 17:12:47 +00:00
|
|
|
|
2010-02-16 17:49:54 +00:00
|
|
|
if (empty($sourceEl)) {
|
2010-02-14 17:12:47 +00:00
|
|
|
return null;
|
|
|
|
} else {
|
2010-02-16 17:49:54 +00:00
|
|
|
$href = ActivityUtils::getLink($sourceEl, 'self');
|
|
|
|
if (!empty($href)) {
|
|
|
|
return $href;
|
|
|
|
} else {
|
|
|
|
return ActivityUtils::childContent($sourceEl, 'id');
|
|
|
|
}
|
2010-02-14 17:12:47 +00:00
|
|
|
}
|
|
|
|
}
|
2010-02-12 05:42:42 +00:00
|
|
|
}
|
|
|
|
|
2010-02-14 17:12:47 +00:00
|
|
|
/**
|
|
|
|
* Utility class to hold a bunch of constant defining default verb types
|
|
|
|
*
|
|
|
|
* @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/
|
|
|
|
*/
|
2010-02-12 05:42:42 +00:00
|
|
|
|
2010-02-14 17:12:47 +00:00
|
|
|
class ActivityVerb
|
|
|
|
{
|
2010-02-12 05:42:42 +00:00
|
|
|
const POST = 'http://activitystrea.ms/schema/1.0/post';
|
|
|
|
const SHARE = 'http://activitystrea.ms/schema/1.0/share';
|
|
|
|
const SAVE = 'http://activitystrea.ms/schema/1.0/save';
|
|
|
|
const FAVORITE = 'http://activitystrea.ms/schema/1.0/favorite';
|
|
|
|
const PLAY = 'http://activitystrea.ms/schema/1.0/play';
|
|
|
|
const FOLLOW = 'http://activitystrea.ms/schema/1.0/follow';
|
|
|
|
const FRIEND = 'http://activitystrea.ms/schema/1.0/make-friend';
|
|
|
|
const JOIN = 'http://activitystrea.ms/schema/1.0/join';
|
|
|
|
const TAG = 'http://activitystrea.ms/schema/1.0/tag';
|
2010-02-14 17:12:47 +00: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/';
|
|
|
|
|
|
|
|
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 05:42:42 +00:00
|
|
|
|
2010-02-14 17:12:47 +00:00
|
|
|
const AUTHOR = 'author';
|
|
|
|
const PUBLISHED = 'published';
|
2010-02-14 18:19:32 +00:00
|
|
|
const UPDATED = 'updated';
|
2010-02-12 05:42:42 +00:00
|
|
|
|
2010-02-14 17:12:47 +00:00
|
|
|
public $actor; // an ActivityObject
|
|
|
|
public $verb; // a string (the URL)
|
|
|
|
public $object; // an ActivityObject
|
|
|
|
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
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
function __construct($entry, $feed = null)
|
2010-02-12 05:42:42 +00:00
|
|
|
{
|
2010-02-14 17:12:47 +00:00
|
|
|
$this->entry = $entry;
|
|
|
|
$this->feed = $feed;
|
|
|
|
|
|
|
|
$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 18:19:32 +00:00
|
|
|
$updateEl = $this->_child($entry, self::UPDATED, self::ATOM);
|
|
|
|
if (!empty($updateEl)) {
|
|
|
|
$this->time = strtotime($updateEl->textContent);
|
|
|
|
} else {
|
|
|
|
$this->time = null;
|
|
|
|
}
|
2010-02-14 17:12:47 +00:00
|
|
|
}
|
|
|
|
|
2010-02-16 17:49:54 +00:00
|
|
|
$this->link = ActivityUtils::getPermalink($entry);
|
2010-02-14 17:12:47 +00: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
|
|
|
|
}
|
|
|
|
|
|
|
|
$objectEl = $this->_child($entry, self::OBJECT);
|
|
|
|
|
|
|
|
if (!empty($objectEl)) {
|
|
|
|
$this->object = new ActivityObject($objectEl);
|
|
|
|
} else {
|
|
|
|
$this->object = new ActivityObject($entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
$actorEl = $this->_child($entry, self::ACTOR);
|
|
|
|
|
|
|
|
if (!empty($actorEl)) {
|
|
|
|
|
|
|
|
$this->actor = new ActivityObject($actorEl);
|
|
|
|
|
|
|
|
} 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 18:19:32 +00:00
|
|
|
|
|
|
|
} else if (!empty($feed) && $authorEl = $this->_child($feed, self::AUTHOR,
|
|
|
|
self::ATOM)) {
|
|
|
|
|
|
|
|
$this->actor = new ActivityObject($authorEl);
|
2010-02-14 17:12:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$contextEl = $this->_child($entry, self::CONTEXT);
|
|
|
|
|
|
|
|
if (!empty($contextEl)) {
|
|
|
|
$this->context = new ActivityObject($contextEl);
|
|
|
|
}
|
|
|
|
|
|
|
|
$targetEl = $this->_child($entry, self::TARGET);
|
|
|
|
|
|
|
|
if (!empty($targetEl)) {
|
|
|
|
$this->target = new ActivityObject($targetEl);
|
|
|
|
}
|
2010-02-12 05:42:42 +00:00
|
|
|
}
|
|
|
|
|
2010-02-14 17:12:47 +00:00
|
|
|
/**
|
|
|
|
* Returns an Atom <entry> based on this activity
|
|
|
|
*
|
|
|
|
* @return DOMElement Atom entry
|
|
|
|
*/
|
|
|
|
|
2010-02-12 05:42:42 +00:00
|
|
|
function toAtomEntry()
|
|
|
|
{
|
2010-02-14 17:12:47 +00:00
|
|
|
return null;
|
2010-02-12 05:42:42 +00:00
|
|
|
}
|
2010-02-14 17:12:47 +00:00
|
|
|
|
|
|
|
private function _child($element, $tag, $namespace=self::SPEC)
|
|
|
|
{
|
2010-02-16 17:49:54 +00:00
|
|
|
return ActivityUtils::child($element, $tag, $namespace);
|
2010-02-14 17:12:47 +00:00
|
|
|
}
|
|
|
|
}
|