2010-12-09 21:05:07 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2010, StatusNet, Inc.
|
|
|
|
*
|
|
|
|
* AtomPub subscription feed
|
2011-01-20 19:00:45 +00:00
|
|
|
*
|
2010-12-09 21:05:07 +00:00
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* 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 Cache
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2010 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
|
2015-01-12 02:15:41 +00:00
|
|
|
if (!defined('GNUSOCIAL') && !defined('STATUSNET')) { exit(1); }
|
2010-12-09 21:05:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Subscription feed class for AtomPub
|
|
|
|
*
|
|
|
|
* Generates a list of the user's subscriptions
|
2011-01-20 19:00:45 +00:00
|
|
|
*
|
2010-12-09 21:05:07 +00:00
|
|
|
* @category AtomPub
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2010 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
2015-01-12 02:15:41 +00:00
|
|
|
class AtompubsubscriptionfeedAction extends AtompubAction
|
2010-12-09 21:05:07 +00:00
|
|
|
{
|
2010-12-11 16:24:07 +00:00
|
|
|
private $_profile = null;
|
|
|
|
private $_subscriptions = null;
|
2010-12-09 21:05:07 +00:00
|
|
|
|
2015-01-12 02:15:41 +00:00
|
|
|
protected function atompubPrepare()
|
2010-12-09 21:05:07 +00:00
|
|
|
{
|
|
|
|
$subscriber = $this->trimmed('subscriber');
|
|
|
|
|
2013-08-18 12:04:58 +01:00
|
|
|
$this->_profile = Profile::getKV('id', $subscriber);
|
2010-12-09 21:05:07 +00:00
|
|
|
|
2015-01-12 02:15:41 +00:00
|
|
|
if (!$this->_profile instanceof Profile) {
|
2011-01-20 19:00:45 +00:00
|
|
|
// TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
|
|
|
|
// TRANS: %d is the non-existing profile ID number.
|
|
|
|
throw new ClientException(sprintf(_('No such profile id: %d.'),
|
2010-12-09 21:05:07 +00:00
|
|
|
$subscriber), 404);
|
|
|
|
}
|
|
|
|
|
2015-01-12 02:15:41 +00:00
|
|
|
$this->_subscriptions = Subscription::bySubscriber($this->_profile->id,
|
|
|
|
$this->offset,
|
|
|
|
$this->limit);
|
2010-12-09 21:05:07 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-12 02:15:41 +00:00
|
|
|
protected function handleGet()
|
2010-12-09 21:05:07 +00:00
|
|
|
{
|
2015-01-12 02:15:41 +00:00
|
|
|
$this->showFeed();
|
|
|
|
}
|
2010-12-09 21:05:07 +00:00
|
|
|
|
2015-01-12 02:15:41 +00:00
|
|
|
protected function handlePost()
|
|
|
|
{
|
|
|
|
$this->addSubscription();
|
2010-12-09 21:05:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the feed of subscriptions
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showFeed()
|
|
|
|
{
|
|
|
|
header('Content-Type: application/atom+xml; charset=utf-8');
|
|
|
|
|
|
|
|
$url = common_local_url('AtomPubSubscriptionFeed',
|
|
|
|
array('subscriber' => $this->_profile->id));
|
|
|
|
|
|
|
|
$feed = new Atom10Feed(true);
|
|
|
|
|
|
|
|
$feed->addNamespace('activity',
|
|
|
|
'http://activitystrea.ms/spec/1.0/');
|
|
|
|
|
|
|
|
$feed->addNamespace('poco',
|
|
|
|
'http://portablecontacts.net/spec/1.0');
|
|
|
|
|
|
|
|
$feed->addNamespace('media',
|
|
|
|
'http://purl.org/syndication/atommedia');
|
|
|
|
|
2014-08-13 05:45:34 +01:00
|
|
|
$feed->addNamespace('georss',
|
|
|
|
'http://www.georss.org/georss');
|
|
|
|
|
2010-12-09 21:05:07 +00:00
|
|
|
$feed->id = $url;
|
|
|
|
|
|
|
|
$feed->setUpdated('now');
|
|
|
|
|
|
|
|
$feed->addAuthor($this->_profile->getBestName(),
|
|
|
|
$this->_profile->getURI());
|
|
|
|
|
2011-01-20 19:00:45 +00:00
|
|
|
// TRANS: Title for Atom subscription feed.
|
|
|
|
// TRANS: %s is a user nickname.
|
2010-12-09 21:05:07 +00:00
|
|
|
$feed->setTitle(sprintf(_("%s subscriptions"),
|
|
|
|
$this->_profile->getBestName()));
|
|
|
|
|
2011-01-20 19:00:45 +00:00
|
|
|
// TRANS: Subtitle for Atom subscription feed.
|
|
|
|
// TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
|
2011-01-31 22:00:22 +00:00
|
|
|
$feed->setSubtitle(sprintf(_("People %1\$s has subscribed to on %2\$s"),
|
2010-12-12 17:13:54 +00:00
|
|
|
$this->_profile->getBestName(),
|
|
|
|
common_config('site', 'name')));
|
2010-12-09 21:05:07 +00:00
|
|
|
|
|
|
|
$feed->addLink(common_local_url('subscriptions',
|
2011-01-20 19:00:45 +00:00
|
|
|
array('nickname' =>
|
2010-12-09 21:05:07 +00:00
|
|
|
$this->_profile->nickname)));
|
|
|
|
|
|
|
|
$feed->addLink($url,
|
|
|
|
array('rel' => 'self',
|
|
|
|
'type' => 'application/atom+xml'));
|
2011-01-20 19:00:45 +00:00
|
|
|
|
2010-12-09 21:05:07 +00:00
|
|
|
// If there's more...
|
|
|
|
|
|
|
|
if ($this->page > 1) {
|
|
|
|
$feed->addLink($url,
|
|
|
|
array('rel' => 'first',
|
|
|
|
'type' => 'application/atom+xml'));
|
|
|
|
|
|
|
|
$feed->addLink(common_local_url('AtomPubSubscriptionFeed',
|
2011-01-20 19:00:45 +00:00
|
|
|
array('subscriber' =>
|
2010-12-13 18:07:25 +00:00
|
|
|
$this->_profile->id),
|
2011-01-20 19:00:45 +00:00
|
|
|
array('page' =>
|
2010-12-09 21:05:07 +00:00
|
|
|
$this->page - 1)),
|
|
|
|
array('rel' => 'prev',
|
|
|
|
'type' => 'application/atom+xml'));
|
|
|
|
}
|
|
|
|
|
2010-12-11 16:24:07 +00:00
|
|
|
if ($this->_subscriptions->N > $this->count) {
|
2010-12-09 21:05:07 +00:00
|
|
|
|
|
|
|
$feed->addLink(common_local_url('AtomPubSubscriptionFeed',
|
|
|
|
array('subscriber' =>
|
2010-12-13 18:07:25 +00:00
|
|
|
$this->_profile->id),
|
|
|
|
array('page' =>
|
2010-12-09 21:05:07 +00:00
|
|
|
$this->page + 1)),
|
|
|
|
array('rel' => 'next',
|
|
|
|
'type' => 'application/atom+xml'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$i = 0;
|
|
|
|
|
|
|
|
// XXX: This is kind of inefficient
|
|
|
|
|
2010-12-11 16:24:07 +00:00
|
|
|
while ($this->_subscriptions->fetch()) {
|
2010-12-09 21:05:07 +00:00
|
|
|
|
|
|
|
// We get one more than needed; skip that one
|
|
|
|
|
|
|
|
$i++;
|
|
|
|
|
|
|
|
if ($i > $this->count) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-12-11 16:24:07 +00:00
|
|
|
$act = $this->_subscriptions->asActivity();
|
2010-12-09 21:05:07 +00:00
|
|
|
$feed->addEntryRaw($act->asString(false, false, false));
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->raw($feed->getString());
|
|
|
|
}
|
|
|
|
|
2010-12-11 16:24:07 +00:00
|
|
|
/**
|
|
|
|
* Add a new subscription
|
|
|
|
*
|
|
|
|
* Handling the POST method for AtomPub
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-12-09 21:25:47 +00:00
|
|
|
function addSubscription()
|
|
|
|
{
|
|
|
|
if (empty($this->auth_user) ||
|
|
|
|
$this->auth_user->id != $this->_profile->id) {
|
2011-01-20 19:00:45 +00:00
|
|
|
// TRANS: Client exception thrown when trying to subscribe another user.
|
|
|
|
throw new ClientException(_("Cannot add someone else's".
|
|
|
|
" subscription."), 403);
|
2010-12-09 21:25:47 +00:00
|
|
|
}
|
2011-01-20 19:00:45 +00:00
|
|
|
|
2010-12-09 21:25:47 +00:00
|
|
|
$xml = file_get_contents('php://input');
|
|
|
|
|
|
|
|
$dom = DOMDocument::loadXML($xml);
|
|
|
|
|
|
|
|
if ($dom->documentElement->namespaceURI != Activity::ATOM ||
|
|
|
|
$dom->documentElement->localName != 'entry') {
|
|
|
|
// TRANS: Client error displayed when not using an Atom entry.
|
|
|
|
$this->clientError(_('Atom post must be an Atom entry.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$activity = new Activity($dom->documentElement);
|
|
|
|
|
|
|
|
$sub = null;
|
|
|
|
|
|
|
|
if (Event::handle('StartAtomPubNewActivity', array(&$activity))) {
|
|
|
|
|
|
|
|
if ($activity->verb != ActivityVerb::FOLLOW) {
|
2011-01-28 23:33:13 +00:00
|
|
|
// TRANS: Client error displayed when not using the follow verb.
|
2010-12-09 21:25:47 +00:00
|
|
|
$this->clientError(_('Can only handle Follow activities.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$person = $activity->objects[0];
|
|
|
|
|
|
|
|
if ($person->type != ActivityObject::PERSON) {
|
2011-01-20 19:00:45 +00:00
|
|
|
// TRANS: Client exception thrown when subscribing to an object that is not a person.
|
2010-12-09 21:25:47 +00:00
|
|
|
$this->clientError(_('Can only follow people.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX: OStatus discovery (maybe)
|
2014-05-26 14:05:14 +01:00
|
|
|
try {
|
|
|
|
$profile = Profile::fromUri($person->id);
|
|
|
|
} catch (UnknownUriException $e) {
|
2011-01-20 19:00:45 +00:00
|
|
|
// TRANS: Client exception thrown when subscribing to a non-existing profile.
|
2011-01-28 23:33:13 +00:00
|
|
|
// TRANS: %s is the unknown profile ID.
|
2011-01-20 19:00:45 +00:00
|
|
|
$this->clientError(sprintf(_('Unknown profile %s.'), $person->id));
|
2010-12-09 21:25:47 +00:00
|
|
|
}
|
|
|
|
|
2015-03-04 10:38:04 +00:00
|
|
|
try {
|
|
|
|
$sub = Subscription::start($this->_profile, $profile);
|
|
|
|
} catch (AlreadyFulfilledException $e) {
|
2011-01-17 20:57:04 +00:00
|
|
|
// 409 Conflict
|
2015-03-04 10:38:04 +00:00
|
|
|
$this->clientError($e->getMessage(), 409);
|
2010-12-09 21:25:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Event::handle('EndAtomPubNewActivity', array($activity, $sub));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($sub)) {
|
|
|
|
$act = $sub->asActivity();
|
|
|
|
|
|
|
|
header('Content-Type: application/atom+xml; charset=utf-8');
|
|
|
|
header('Content-Location: ' . $act->selfLink);
|
|
|
|
|
|
|
|
$this->startXML();
|
|
|
|
$this->raw($act->asString(true, true, true));
|
|
|
|
$this->endXML();
|
|
|
|
}
|
|
|
|
}
|
2010-12-09 21:05:07 +00:00
|
|
|
}
|