. * * @category API * @package StatusNet * @author Evan Prodromou * @copyright 2010 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 * @link http://status.net/ */ require_once INSTALLDIR.'/lib/apibareauth.php'; /** * Shows an AtomPub service document for a user * * @category API * @package StatusNet * @author Evan Prodromou * @copyright 2010 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 * @link http://status.net/ */ class ApiAtomServiceAction extends ApiBareAuthAction { /** * Take arguments for running * * @param array $args $_REQUEST args * * @return boolean success flag * */ function prepare($args) { parent::prepare($args); $this->user = $this->getTargetUser($this->arg('id')); if (empty($this->user)) { $this->clientError(_('No such user.'), 404, $this->format); return; } return true; } /** * Handle the arguments. In our case, show a service document. * * @param Array $args unused. * * @return void */ function handle($args) { parent::handle($args); header('Content-Type: application/atomsvc+xml'); $this->startXML(); $this->elementStart('service', array('xmlns' => 'http://www.w3.org/2007/app', 'xmlns:atom' => 'http://www.w3.org/2005/Atom', 'xmlns:activity' => 'http://activitystrea.ms/spec/1.0/')); $this->elementStart('workspace'); $this->element('atom:title', null, _('Main')); $this->elementStart('collection', array('href' => common_local_url('ApiTimelineUser', array('id' => $this->user->id, 'format' => 'atom')))); $this->element('atom:title', null, sprintf(_("%s timeline"), $this->user->nickname)); $this->element('accept', null, 'application/atom+xml;type=entry'); $this->element('activity:verb', null, ActivityVerb::POST); $this->elementEnd('collection'); $this->elementStart('collection', array('href' => common_local_url('AtomPubSubscriptionFeed', array('subscriber' => $this->user->id)))); $this->element('atom:title', null, sprintf(_("%s subscriptions"), $this->user->nickname)); $this->element('accept', null, 'application/atom+xml;type=entry'); $this->element('activity:verb', null, ActivityVerb::FOLLOW); $this->elementEnd('collection'); $this->elementStart('collection', array('href' => common_local_url('AtomPubFavoriteFeed', array('profile' => $this->user->id)))); $this->element('atom:title', null, sprintf(_("%s favorites"), $this->user->nickname)); $this->element('accept', null, 'application/atom+xml;type=entry'); $this->element('activity:verb', null, ActivityVerb::FAVORITE); $this->elementEnd('collection'); $this->elementStart('collection', array('href' => common_local_url('AtomPubMembershipFeed', array('profile' => $this->user->id)))); $this->element('atom:title', null, sprintf(_("%s memberships"), $this->user->nickname)); $this->element('accept', null, 'application/atom+xml;type=entry'); $this->element('activity:verb', null, ActivityVerb::JOIN); $this->elementEnd('collection'); $this->elementEnd('workspace'); $this->elementEnd('service'); $this->endXML(); } }