]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/atompubsubscriptionfeed.php
15e49c9f7c857dca2500d556586a284fd2b247d2
[quix0rs-gnu-social.git] / actions / atompubsubscriptionfeed.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2010, StatusNet, Inc.
5  *
6  * AtomPub subscription feed
7  *
8  * PHP version 5
9  *
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.
14  *
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.
19  *
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/>.
22  *
23  * @category  Cache
24  * @package   StatusNet
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/
29  */
30
31 if (!defined('STATUSNET')) {
32     // This check helps protect against security problems;
33     // your code file can't be executed directly from the web.
34     exit(1);
35 }
36
37 /**
38  * Subscription feed class for AtomPub
39  *
40  * Generates a list of the user's subscriptions
41  *
42  * @category  AtomPub
43  * @package   StatusNet
44  * @author    Evan Prodromou <evan@status.net>
45  * @copyright 2010 StatusNet, Inc.
46  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
47  * @link      http://status.net/
48  */
49 class AtompubsubscriptionfeedAction extends ApiAuthAction
50 {
51     private $_profile       = null;
52     private $_subscriptions = null;
53
54     /**
55      * For initializing members of the class.
56      *
57      * @param array $argarray misc. arguments
58      *
59      * @return boolean true
60      */
61     function prepare($argarray)
62     {
63         parent::prepare($argarray);
64
65         $subscriber = $this->trimmed('subscriber');
66
67         $this->_profile = Profile::getKV('id', $subscriber);
68
69         if (empty($this->_profile)) {
70             // TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
71             // TRANS: %d is the non-existing profile ID number.
72             throw new ClientException(sprintf(_('No such profile id: %d.'),
73                                               $subscriber), 404);
74         }
75
76         // page and count from ApiAction
77
78         $offset = ($this->page-1) * $this->count;
79
80         $this->_subscriptions = Subscription::bySubscriber($subscriber,
81                                                            $offset,
82                                                            $this->count + 1);
83
84         return true;
85     }
86
87     /**
88      * Handler method
89      *
90      * @param array $argarray is ignored since it's now passed in in prepare()
91      *
92      * @return void
93      */
94     function handle($argarray=null)
95     {
96         parent::handle($argarray);
97         switch ($_SERVER['REQUEST_METHOD']) {
98         case 'HEAD':
99         case 'GET':
100             $this->showFeed();
101             break;
102         case 'POST':
103             $this->addSubscription();
104             break;
105         default:
106             // TRANS: Client exception thrown when using an unsupported HTTP method.
107             $this->clientError(_('HTTP method not supported.'), 405);
108         }
109
110         return;
111     }
112
113     /**
114      * Show the feed of subscriptions
115      *
116      * @return void
117      */
118     function showFeed()
119     {
120         header('Content-Type: application/atom+xml; charset=utf-8');
121
122         $url = common_local_url('AtomPubSubscriptionFeed',
123                                 array('subscriber' => $this->_profile->id));
124
125         $feed = new Atom10Feed(true);
126
127         $feed->addNamespace('activity',
128                             'http://activitystrea.ms/spec/1.0/');
129
130         $feed->addNamespace('poco',
131                             'http://portablecontacts.net/spec/1.0');
132
133         $feed->addNamespace('media',
134                             'http://purl.org/syndication/atommedia');
135
136         $feed->addNamespace('georss',
137                             'http://www.georss.org/georss');
138
139         $feed->id = $url;
140
141         $feed->setUpdated('now');
142
143         $feed->addAuthor($this->_profile->getBestName(),
144                          $this->_profile->getURI());
145
146         // TRANS: Title for Atom subscription feed.
147         // TRANS: %s is a user nickname.
148         $feed->setTitle(sprintf(_("%s subscriptions"),
149                                 $this->_profile->getBestName()));
150
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')));
156
157         $feed->addLink(common_local_url('subscriptions',
158                                         array('nickname' =>
159                                               $this->_profile->nickname)));
160
161         $feed->addLink($url,
162                        array('rel' => 'self',
163                              'type' => 'application/atom+xml'));
164
165         // If there's more...
166
167         if ($this->page > 1) {
168             $feed->addLink($url,
169                            array('rel' => 'first',
170                                  'type' => 'application/atom+xml'));
171
172             $feed->addLink(common_local_url('AtomPubSubscriptionFeed',
173                                             array('subscriber' =>
174                                                   $this->_profile->id),
175                                             array('page' =>
176                                                   $this->page - 1)),
177                            array('rel' => 'prev',
178                                  'type' => 'application/atom+xml'));
179         }
180
181         if ($this->_subscriptions->N > $this->count) {
182
183             $feed->addLink(common_local_url('AtomPubSubscriptionFeed',
184                                             array('subscriber' =>
185                                                   $this->_profile->id),
186                                             array('page' =>
187                                                   $this->page + 1)),
188                            array('rel' => 'next',
189                                  'type' => 'application/atom+xml'));
190         }
191
192         $i = 0;
193
194         // XXX: This is kind of inefficient
195
196         while ($this->_subscriptions->fetch()) {
197
198             // We get one more than needed; skip that one
199
200             $i++;
201
202             if ($i > $this->count) {
203                 break;
204             }
205
206             $act = $this->_subscriptions->asActivity();
207             $feed->addEntryRaw($act->asString(false, false, false));
208         }
209
210         $this->raw($feed->getString());
211     }
212
213     /**
214      * Add a new subscription
215      *
216      * Handling the POST method for AtomPub
217      *
218      * @return void
219      */
220     function addSubscription()
221     {
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);
227         }
228
229         $xml = file_get_contents('php://input');
230
231         $dom = DOMDocument::loadXML($xml);
232
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.'));
237         }
238
239         $activity = new Activity($dom->documentElement);
240
241         $sub = null;
242
243         if (Event::handle('StartAtomPubNewActivity', array(&$activity))) {
244
245             if ($activity->verb != ActivityVerb::FOLLOW) {
246                 // TRANS: Client error displayed when not using the follow verb.
247                 $this->clientError(_('Can only handle Follow activities.'));
248             }
249
250             $person = $activity->objects[0];
251
252             if ($person->type != ActivityObject::PERSON) {
253                 // TRANS: Client exception thrown when subscribing to an object that is not a person.
254                 $this->clientError(_('Can only follow people.'));
255             }
256
257             // XXX: OStatus discovery (maybe)
258             try {
259                 $profile = Profile::fromUri($person->id);
260             } catch (UnknownUriException $e) {
261                 // TRANS: Client exception thrown when subscribing to a non-existing profile.
262                 // TRANS: %s is the unknown profile ID.
263                 $this->clientError(sprintf(_('Unknown profile %s.'), $person->id));
264             }
265
266             if (Subscription::exists($this->_profile, $profile)) {
267                 // 409 Conflict
268                 // TRANS: Client error displayed trying to subscribe to an already subscribed profile.
269                 // TRANS: %s is the profile the user already has a subscription on.
270                 $this->clientError(sprintf(_('Already subscribed to %s.'),
271                                            $person->id),
272                                    409);
273             }
274
275             if (Subscription::start($this->_profile, $profile)) {
276                 $sub = Subscription::pkeyGet(array('subscriber' => $this->_profile->id,
277                                                    'subscribed' => $profile->id));
278             }
279
280             Event::handle('EndAtomPubNewActivity', array($activity, $sub));
281         }
282
283         if (!empty($sub)) {
284             $act = $sub->asActivity();
285
286             header('Content-Type: application/atom+xml; charset=utf-8');
287             header('Content-Location: ' . $act->selfLink);
288
289             $this->startXML();
290             $this->raw($act->asString(true, true, true));
291             $this->endXML();
292         }
293     }
294
295     /**
296      * Return true if read only.
297      *
298      * @param array $args other arguments
299      *
300      * @return boolean is read only action?
301      */
302     function isReadOnly($args)
303     {
304         return $_SERVER['REQUEST_METHOD'] != 'POST';
305     }
306
307     /**
308      * Return last modified, if applicable.
309      *
310      * @return string last modified http header
311      */
312     function lastModified()
313     {
314         return null;
315     }
316
317     /**
318      * Return etag, if applicable.
319      *
320      * @return string etag http header
321      */
322     function etag()
323     {
324         return null;
325     }
326
327     /**
328      * Does this require authentication?
329      *
330      * @return boolean true if delete, else false
331      */
332     function requiresAuth()
333     {
334         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
335             return true;
336         } else {
337             return false;
338         }
339     }
340 }