]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/rssaction.php
Merge branch 'testing'
[quix0rs-gnu-social.git] / lib / rssaction.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Base class for RSS 1.0 feed actions
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Mail
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @author    Earle Martin <earle@downlode.org>
26  * @copyright 2008-9 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
32
33 define('DEFAULT_RSS_LIMIT', 48);
34
35 class Rss10Action extends Action
36 {
37     # This will contain the details of each feed item's author and be used to generate SIOC data.
38
39     var $creators = array();
40     var $limit = DEFAULT_RSS_LIMIT;
41     var $notices = null;
42     var $tags_already_output = array();
43
44     /**
45      * Constructor
46      *
47      * Just wraps the Action constructor.
48      *
49      * @param string  $output URI to output to, default = stdout
50      * @param boolean $indent Whether to indent output, default true
51      *
52      * @see Action::__construct
53      */
54
55     function __construct($output='php://output', $indent=null)
56     {
57         parent::__construct($output, $indent);
58     }
59
60     /**
61      * Do we need to write to the database?
62      *
63      * @return boolean true
64      */
65
66     function isReadonly()
67     {
68         return true;
69     }
70
71     /**
72      * Read arguments and initialize members
73      *
74      * @param array $args Arguments from $_REQUEST
75      * @return boolean success
76      */
77
78     function prepare($args)
79     {
80         parent::prepare($args);
81
82         $this->limit = (int) $this->trimmed('limit');
83
84         if ($this->limit == 0) {
85             $this->limit = DEFAULT_RSS_LIMIT;
86         }
87
88         if (common_config('site', 'private')) {
89             if (!isset($_SERVER['PHP_AUTH_USER'])) {
90
91                 # This header makes basic auth go
92                 header('WWW-Authenticate: Basic realm="StatusNet RSS"');
93
94                 # If the user hits cancel -- bam!
95                 $this->show_basic_auth_error();
96                 return;
97             } else {
98                 $nickname = $_SERVER['PHP_AUTH_USER'];
99                 $password = $_SERVER['PHP_AUTH_PW'];
100
101                 if (!common_check_user($nickname, $password)) {
102                     # basic authentication failed
103                     list($proxy, $ip) = common_client_ip();
104
105                     common_log(LOG_WARNING, "Failed RSS auth attempt, nickname = $nickname, proxy = $proxy, ip = $ip.");
106                     $this->show_basic_auth_error();
107                     return;
108                 }
109             }
110         }
111
112         return true;
113     }
114
115     /**
116      * Handle a request
117      *
118      * @param array $args Arguments from $_REQUEST
119      *
120      * @return void
121      */
122
123     function handle($args)
124     {
125         // Parent handling, including cache check
126         parent::handle($args);
127         $this->showRss();
128     }
129
130     function show_basic_auth_error()
131     {
132         header('HTTP/1.1 401 Unauthorized');
133         header('Content-Type: application/xml; charset=utf-8');
134         $this->startXML();
135         $this->elementStart('hash');
136         $this->element('error', null, 'Could not authenticate you.');
137         $this->element('request', null, $_SERVER['REQUEST_URI']);
138         $this->elementEnd('hash');
139         $this->endXML();
140     }
141
142     /**
143      * Get the notices to output in this stream.
144      *
145      * @return array an array of Notice objects sorted in reverse chron
146      */
147
148     function getNotices()
149     {
150         return array();
151     }
152
153     /**
154      * Get a description of the channel
155      *
156      * Returns an array with the following
157      * @return array
158      */
159
160     function getChannel()
161     {
162         return array('url' => '',
163                      'title' => '',
164                      'link' => '',
165                      'description' => '');
166     }
167
168     function getImage()
169     {
170         return null;
171     }
172
173     function showRss()
174     {
175         $this->initRss();
176         $this->showChannel();
177         $this->showImage();
178
179         if (count($this->notices)) {
180             foreach ($this->notices as $n) {
181                 $this->showItem($n);
182             }
183         }
184
185         $this->showCreators();
186         $this->endRss();
187     }
188
189     function showChannel()
190     {
191
192         $channel = $this->getChannel();
193         $image = $this->getImage();
194
195         $this->elementStart('channel', array('rdf:about' => $channel['url']));
196         $this->element('title', null, $channel['title']);
197         $this->element('link', null, $channel['link']);
198         $this->element('description', null, $channel['description']);
199         $this->element('cc:licence', array('rdf:resource' => common_config('license','url')));
200
201         if ($image) {
202             $this->element('image', array('rdf:resource' => $image));
203         }
204
205         $this->elementStart('items');
206         $this->elementStart('rdf:Seq');
207
208         if (count($this->notices)) {
209             foreach ($this->notices as $notice) {
210                 $this->element('rdf:li', array('rdf:resource' => $notice->uri));
211             }
212         }
213
214         $this->elementEnd('rdf:Seq');
215         $this->elementEnd('items');
216
217         $this->elementEnd('channel');
218     }
219
220     function showImage()
221     {
222         $image = $this->getImage();
223         if ($image) {
224             $channel = $this->getChannel();
225             $this->elementStart('image', array('rdf:about' => $image));
226             $this->element('title', null, $channel['title']);
227             $this->element('link', null, $channel['link']);
228             $this->element('url', null, $image);
229             $this->elementEnd('image');
230         }
231     }
232
233     function showItem($notice)
234     {
235         $profile = Profile::staticGet($notice->profile_id);
236         $nurl = common_local_url('shownotice', array('notice' => $notice->id));
237         $creator_uri = common_profile_uri($profile);
238         $this->elementStart('item', array('rdf:about' => $notice->uri,
239                             'rdf:type' => 'http://rdfs.org/sioc/types#MicroblogPost'));
240         $title = $profile->nickname . ': ' . common_xml_safe_str(trim($notice->content));
241         $this->element('title', null, $title);
242         $this->element('link', null, $nurl);
243         $this->element('description', null, $profile->nickname."'s status on ".common_exact_date($notice->created));
244         if ($notice->rendered) {
245             $this->element('content:encoded', null, common_xml_safe_str($notice->rendered));
246         }
247         $this->element('dc:date', null, common_date_w3dtf($notice->created));
248         $this->element('dc:creator', null, ($profile->fullname) ? $profile->fullname : $profile->nickname);
249         $this->element('foaf:maker', array('rdf:resource' => $creator_uri));
250         $this->element('sioc:has_creator', array('rdf:resource' => $creator_uri.'#acct'));
251         $location = $notice->getLocation();
252         if ($location && isset($location->lat) && isset($location->lon)) {
253             $location_uri = $location->getRdfURL();
254             $attrs = array('geo:lat' => $location->lat,
255                 'geo:long' => $location->lon);
256             if (strlen($location_uri)) {
257                 $attrs['rdf:resource'] = $location_uri;
258             }
259             $this->element('statusnet:origin', $attrs);
260         }
261         $this->element('statusnet:postIcon', array('rdf:resource' => $profile->avatarUrl()));
262         $this->element('cc:licence', array('rdf:resource' => common_config('license', 'url')));
263         if ($notice->reply_to) {
264             $replyurl = common_local_url('shownotice', array('notice' => $notice->reply_to));
265             $this->element('sioc:reply_of', array('rdf:resource' => $replyurl));
266         }
267         if (!empty($notice->conversation)) {
268             $conversationurl = common_local_url('conversation',
269                                          array('id' => $notice->conversation));
270             $this->element('sioc:has_discussion', array('rdf:resource' => $conversationurl));
271         }
272         $attachments = $notice->attachments();
273         if($attachments){
274             foreach($attachments as $attachment){
275                 $enclosure=$attachment->getEnclosure();
276                 if ($enclosure) {
277                     $attribs = array('rdf:resource' => $enclosure->url);
278                     if ($enclosure->title) {
279                         $attribs['dc:title'] = $enclosure->title;
280                     }
281                     if ($enclosure->modified) {
282                         $attribs['dc:date'] = common_date_w3dtf($enclosure->modified);
283                     }
284                     if ($enclosure->size) {
285                         $attribs['enc:length'] = $enclosure->size;
286                     }
287                     if ($enclosure->mimetype) {
288                         $attribs['enc:type'] = $enclosure->mimetype;
289                     }
290                     $this->element('enc:enclosure', $attribs);
291                 }
292                 $this->element('sioc:links_to', array('rdf:resource'=>$attachment->url));
293             }
294         }
295
296         $tag = new Notice_tag();
297         $tag->notice_id = $notice->id;
298         if ($tag->find()) {
299             $entry['tags']=array();
300             while ($tag->fetch()) {
301                 $tagpage = common_local_url('tag', array('tag' => $tag->tag));
302
303                 if ( in_array($tag, $this->tags_already_output) ) {
304                     $this->element('ctag:tagged', array('rdf:resource'=>$tagpage.'#concept'));
305                     continue;
306                 }
307
308                 $tagrss  = common_local_url('tagrss', array('tag' => $tag->tag));
309                 $this->elementStart('ctag:tagged');
310                 $this->elementStart('ctag:Tag', array('rdf:about'=>$tagpage.'#concept', 'ctag:label'=>$tag->tag));
311                 $this->element('foaf:page', array('rdf:resource'=>$tagpage));
312                 $this->element('rdfs:seeAlso', array('rdf:resource'=>$tagrss));
313                 $this->elementEnd('ctag:Tag');
314                 $this->elementEnd('ctag:tagged');
315
316                 $this->tags_already_output[] = $tag->tag;
317             }
318         }
319         $this->elementEnd('item');
320         $this->creators[$creator_uri] = $profile;
321     }
322
323     function showCreators()
324     {
325         foreach ($this->creators as $uri => $profile) {
326             $id = $profile->id;
327             $nickname = $profile->nickname;
328             $this->elementStart('foaf:Agent', array('rdf:about' => $uri));
329             $this->element('foaf:nick', null, $nickname);
330             if ($profile->fullname) {
331                 $this->element('foaf:name', null, $profile->fullname);
332             }
333             $this->element('foaf:holdsAccount', array('rdf:resource' => $uri.'#acct'));
334             $avatar = $profile->avatarUrl();
335             $this->element('foaf:depiction', array('rdf:resource' => $avatar));
336             $this->elementEnd('foaf:Agent');
337         }
338     }
339
340     function initRss()
341     {
342         $channel = $this->getChannel();
343         header('Content-Type: application/rdf+xml');
344
345         $this->startXml();
346         $this->elementStart('rdf:RDF', array('xmlns:rdf' =>
347                                               'http://www.w3.org/1999/02/22-rdf-syntax-ns#',
348                                               'xmlns:dc' =>
349                                               'http://purl.org/dc/elements/1.1/',
350                                               'xmlns:cc' =>
351                                               'http://creativecommons.org/ns#',
352                                               'xmlns:content' =>
353                                               'http://purl.org/rss/1.0/modules/content/',
354                                               'xmlns:ctag' =>
355                                               'http://commontag.org/ns#',
356                                               'xmlns:foaf' =>
357                                               'http://xmlns.com/foaf/0.1/',
358                                               'xmlns:enc' =>
359                                               'http://purl.oclc.org/net/rss_2.0/enc#',
360                                               'xmlns:sioc' =>
361                                               'http://rdfs.org/sioc/ns#',
362                                               'xmlns:sioct' =>
363                                               'http://rdfs.org/sioc/types#',
364                                               'xmlns:rdfs' =>
365                                               'http://www.w3.org/2000/01/rdf-schema#',
366                                               'xmlns:geo' =>
367                                               'http://www.w3.org/2003/01/geo/wgs84_pos#',
368                                               'xmlns:statusnet' =>
369                                               'http://status.net/ont/',
370                                               'xmlns' => 'http://purl.org/rss/1.0/'));
371         $this->elementStart('sioc:Site', array('rdf:about' => common_root_url()));
372         $this->element('sioc:name', null, common_config('site', 'name'));
373         $this->elementStart('sioc:space_of');
374         $this->element('sioc:Container', array('rdf:about' =>
375                                                $channel['url']));
376         $this->elementEnd('sioc:space_of');
377         $this->elementEnd('sioc:Site');
378     }
379
380     function endRss()
381     {
382         $this->elementEnd('rdf:RDF');
383     }
384
385     /**
386      * When was this page last modified?
387      *
388      */
389
390     function lastModified()
391     {
392         if (empty($this->notices)) {
393             return null;
394         }
395
396         if (count($this->notices) == 0) {
397             return null;
398         }
399
400         // FIXME: doesn't handle modified profiles, avatars, deleted notices
401
402         return strtotime($this->notices[0]->created);
403     }
404 }
405