3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2010, StatusNet, Inc.
6 * AtomPub subscription feed
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU Affero General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Affero General Public License for more details.
20 * You should have received a copy of the GNU Affero General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 * @author Evan Prodromou <evan@status.net>
26 * @copyright 2010 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET')) {
32 // This check helps protect against security problems;
33 // your code file can't be executed directly from the web.
37 require_once INSTALLDIR . '/lib/apiauth.php';
40 * Subscription feed class for AtomPub
42 * Generates a list of the user's subscriptions
46 * @author Evan Prodromou <evan@status.net>
47 * @copyright 2010 StatusNet, Inc.
48 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
49 * @link http://status.net/
51 class AtompubsubscriptionfeedAction extends ApiAuthAction
53 private $_profile = null;
54 private $_subscriptions = null;
57 * For initializing members of the class.
59 * @param array $argarray misc. arguments
61 * @return boolean true
63 function prepare($argarray)
65 parent::prepare($argarray);
67 $subscriber = $this->trimmed('subscriber');
69 $this->_profile = Profile::staticGet('id', $subscriber);
71 if (empty($this->_profile)) {
72 // TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
73 // TRANS: %d is the non-existing profile ID number.
74 throw new ClientException(sprintf(_('No such profile id: %d.'),
78 // page and count from ApiAction
80 $offset = ($this->page-1) * $this->count;
82 $this->_subscriptions = Subscription::bySubscriber($subscriber,
92 * @param array $argarray is ignored since it's now passed in in prepare()
96 function handle($argarray=null)
98 parent::handle($argarray);
99 switch ($_SERVER['REQUEST_METHOD']) {
105 $this->addSubscription();
108 // TRANS: Client exception thrown when using an unsupported HTTP method.
109 $this->clientError(_('HTTP method not supported.'), 405);
117 * Show the feed of subscriptions
123 header('Content-Type: application/atom+xml; charset=utf-8');
125 $url = common_local_url('AtomPubSubscriptionFeed',
126 array('subscriber' => $this->_profile->id));
128 $feed = new Atom10Feed(true);
130 $feed->addNamespace('activity',
131 'http://activitystrea.ms/spec/1.0/');
133 $feed->addNamespace('poco',
134 'http://portablecontacts.net/spec/1.0');
136 $feed->addNamespace('media',
137 'http://purl.org/syndication/atommedia');
141 $feed->setUpdated('now');
143 $feed->addAuthor($this->_profile->getBestName(),
144 $this->_profile->getURI());
146 // TRANS: Title for Atom subscription feed.
147 // TRANS: %s is a user nickname.
148 $feed->setTitle(sprintf(_("%s subscriptions"),
149 $this->_profile->getBestName()));
151 // TRANS: Subtitle for Atom subscription feed.
152 // TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
153 $feed->setSubtitle(sprintf(_("People %1\$s has subscribed to on %2\$s"),
154 $this->_profile->getBestName(),
155 common_config('site', 'name')));
157 $feed->addLink(common_local_url('subscriptions',
159 $this->_profile->nickname)));
162 array('rel' => 'self',
163 'type' => 'application/atom+xml'));
165 // If there's more...
167 if ($this->page > 1) {
169 array('rel' => 'first',
170 'type' => 'application/atom+xml'));
172 $feed->addLink(common_local_url('AtomPubSubscriptionFeed',
173 array('subscriber' =>
174 $this->_profile->id),
177 array('rel' => 'prev',
178 'type' => 'application/atom+xml'));
181 if ($this->_subscriptions->N > $this->count) {
183 $feed->addLink(common_local_url('AtomPubSubscriptionFeed',
184 array('subscriber' =>
185 $this->_profile->id),
188 array('rel' => 'next',
189 'type' => 'application/atom+xml'));
194 // XXX: This is kind of inefficient
196 while ($this->_subscriptions->fetch()) {
198 // We get one more than needed; skip that one
202 if ($i > $this->count) {
206 $act = $this->_subscriptions->asActivity();
207 $feed->addEntryRaw($act->asString(false, false, false));
210 $this->raw($feed->getString());
214 * Add a new subscription
216 * Handling the POST method for AtomPub
220 function addSubscription()
222 if (empty($this->auth_user) ||
223 $this->auth_user->id != $this->_profile->id) {
224 // TRANS: Client exception thrown when trying to subscribe another user.
225 throw new ClientException(_("Cannot add someone else's".
226 " subscription."), 403);
229 $xml = file_get_contents('php://input');
231 $dom = DOMDocument::loadXML($xml);
233 if ($dom->documentElement->namespaceURI != Activity::ATOM ||
234 $dom->documentElement->localName != 'entry') {
235 // TRANS: Client error displayed when not using an Atom entry.
236 $this->clientError(_('Atom post must be an Atom entry.'));
240 $activity = new Activity($dom->documentElement);
244 if (Event::handle('StartAtomPubNewActivity', array(&$activity))) {
246 if ($activity->verb != ActivityVerb::FOLLOW) {
247 // TRANS: Client error displayed when not using the follow verb.
248 $this->clientError(_('Can only handle Follow activities.'));
252 $person = $activity->objects[0];
254 if ($person->type != ActivityObject::PERSON) {
255 // TRANS: Client exception thrown when subscribing to an object that is not a person.
256 $this->clientError(_('Can only follow people.'));
260 // XXX: OStatus discovery (maybe)
262 $profile = Profile::fromURI($person->id);
264 if (empty($profile)) {
265 // TRANS: Client exception thrown when subscribing to a non-existing profile.
266 // TRANS: %s is the unknown profile ID.
267 $this->clientError(sprintf(_('Unknown profile %s.'), $person->id));
271 if (Subscription::exists($this->_profile, $profile)) {
273 // TRANS: Client error displayed trying to subscribe to an already subscribed profile.
274 // TRANS: %s is the profile the user already has a subscription on.
275 $this->clientError(sprintf(_('Already subscribed to %s.'),
281 if (Subscription::start($this->_profile, $profile)) {
282 $sub = Subscription::pkeyGet(array('subscriber' => $this->_profile->id,
283 'subscribed' => $profile->id));
286 Event::handle('EndAtomPubNewActivity', array($activity, $sub));
290 $act = $sub->asActivity();
292 header('Content-Type: application/atom+xml; charset=utf-8');
293 header('Content-Location: ' . $act->selfLink);
296 $this->raw($act->asString(true, true, true));
302 * Return true if read only.
304 * @param array $args other arguments
306 * @return boolean is read only action?
308 function isReadOnly($args)
310 return $_SERVER['REQUEST_METHOD'] != 'POST';
314 * Return last modified, if applicable.
316 * @return string last modified http header
318 function lastModified()
324 * Return etag, if applicable.
326 * @return string etag http header
334 * Does this require authentication?
336 * @return boolean true if delete, else false
338 function requiresAuth()
340 if ($_SERVER['REQUEST_METHOD'] == 'POST') {