]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/rssaction.php
Merge branch '0.7.x' into 0.8.x
[quix0rs-gnu-social.git] / lib / rssaction.php
1 <?php
2 /**
3  * Laconica, 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   Laconica
24  * @author    Evan Prodromou <evan@controlyourself.ca>
25  * @author    Earle Martin <earle@downlode.org>
26  * @copyright 2008-9 Control Yourself, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://laconi.ca/
29  */
30
31 if (!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
43     /**
44      * Constructor
45      *
46      * Just wraps the Action constructor.
47      *
48      * @param string  $output URI to output to, default = stdout
49      * @param boolean $indent Whether to indent output, default true
50      *
51      * @see Action::__construct
52      */
53
54     function __construct($output='php://output', $indent=true)
55     {
56         parent::__construct($output, $indent);
57     }
58
59     /**
60      * Do we need to write to the database?
61      *
62      * @return boolean true
63      */
64
65     function isReadonly()
66     {
67         return true;
68     }
69
70     /**
71      * Read arguments and initialize members
72      *
73      * @param array $args Arguments from $_REQUEST
74      * @return boolean success
75      */
76
77     function prepare($args)
78     {
79         parent::prepare($args);
80         $this->limit = (int) $this->trimmed('limit');
81         if ($this->limit == 0) {
82             $this->limit = DEFAULT_RSS_LIMIT;
83         }
84         return true;
85     }
86
87     /**
88      * Handle a request
89      *
90      * @param array $args Arguments from $_REQUEST
91      *
92      * @return void
93      */
94
95     function handle($args)
96     {
97         // Parent handling, including cache check
98         parent::handle($args);
99         // Get the list of notices
100         if (empty($this->tag)) {
101             $this->notices = $this->getNotices($this->limit);
102         } else {
103             $this->notices = $this->getTaggedNotices($this->tag, $this->limit);
104         }
105         $this->showRss();
106     }
107
108     /**
109      * Get the notices to output in this stream
110      *
111      * @return array an array of Notice objects sorted in reverse chron
112      */
113
114     function getNotices()
115     {
116         return array();
117     }
118
119     /**
120      * Get a description of the channel
121      *
122      * Returns an array with the following
123      * @return array
124      */
125
126     function getChannel()
127     {
128         return array('url' => '',
129                      'title' => '',
130                      'link' => '',
131                      'description' => '');
132     }
133
134     function getImage()
135     {
136         return null;
137     }
138
139     function showRss()
140     {
141         $this->initRss();
142         $this->showChannel();
143         $this->showImage();
144
145         foreach ($this->notices as $n) {
146             $this->showItem($n);
147         }
148
149         $this->showCreators();
150         $this->endRss();
151     }
152
153     function showChannel()
154     {
155
156         $channel = $this->getChannel();
157         $image = $this->getImage();
158
159         $this->elementStart('channel', array('rdf:about' => $channel['url']));
160         $this->element('title', null, $channel['title']);
161         $this->element('link', null, $channel['link']);
162         $this->element('description', null, $channel['description']);
163         $this->element('cc:licence', array('rdf:resource' => common_config('license','url')));
164
165         if ($image) {
166             $this->element('image', array('rdf:resource' => $image));
167         }
168
169         $this->elementStart('items');
170         $this->elementStart('rdf:Seq');
171
172         foreach ($this->notices as $notice) {
173             $this->element('sioct:MicroblogPost', array('rdf:resource' => $notice->uri));
174         }
175
176         $this->elementEnd('rdf:Seq');
177         $this->elementEnd('items');
178
179         $this->elementEnd('channel');
180     }
181
182     function showImage()
183     {
184         $image = $this->getImage();
185         if ($image) {
186             $channel = $this->getChannel();
187             $this->elementStart('image', array('rdf:about' => $image));
188             $this->element('title', null, $channel['title']);
189             $this->element('link', null, $channel['link']);
190             $this->element('url', null, $image);
191             $this->elementEnd('image');
192         }
193     }
194
195     function showItem($notice)
196     {
197         $profile = Profile::staticGet($notice->profile_id);
198         $nurl = common_local_url('shownotice', array('notice' => $notice->id));
199         $creator_uri = common_profile_uri($profile);
200         $this->elementStart('item', array('rdf:about' => $notice->uri));
201         $title = $profile->nickname . ': ' . common_xml_safe_str(trim($notice->content));
202         $this->element('title', null, $title);
203         $this->element('link', null, $nurl);
204         $this->element('description', null, $profile->nickname."'s status on ".common_exact_date($notice->created));
205         $this->element('dc:date', null, common_date_w3dtf($notice->created));
206         $this->element('dc:creator', null, ($profile->fullname) ? $profile->fullname : $profile->nickname);
207         $this->element('sioc:has_creator', array('rdf:resource' => $creator_uri));
208         $this->element('laconica:postIcon', array('rdf:resource' => $profile->avatarUrl()));
209         $this->element('cc:licence', array('rdf:resource' => common_config('license', 'url')));
210         $this->elementEnd('item');
211         $this->creators[$creator_uri] = $profile;
212     }
213
214     function showCreators()
215     {
216         foreach ($this->creators as $uri => $profile) {
217             $id = $profile->id;
218             $nickname = $profile->nickname;
219             $this->elementStart('sioc:User', array('rdf:about' => $uri));
220             $this->element('foaf:nick', null, $nickname);
221             if ($profile->fullname) {
222                 $this->element('foaf:name', null, $profile->fullname);
223             }
224             $this->element('sioc:id', null, $id);
225             $avatar = $profile->avatarUrl();
226             $this->element('sioc:avatar', array('rdf:resource' => $avatar));
227             $this->elementEnd('sioc:User');
228         }
229     }
230
231     function initRss()
232     {
233         $channel = $this->getChannel();
234         header('Content-Type: application/rdf+xml');
235
236         $this->startXml();
237         $this->elementStart('rdf:RDF', array('xmlns:rdf' =>
238                                               'http://www.w3.org/1999/02/22-rdf-syntax-ns#',
239                                               'xmlns:dc' =>
240                                               'http://purl.org/dc/elements/1.1/',
241                                               'xmlns:cc' =>
242                                               'http://web.resource.org/cc/',
243                                               'xmlns:content' =>
244                                               'http://purl.org/rss/1.0/modules/content/',
245                                               'xmlns:foaf' =>
246                                               'http://xmlns.com/foaf/0.1/',
247                                               'xmlns:sioc' =>
248                                               'http://rdfs.org/sioc/ns#',
249                                               'xmlns:sioct' =>
250                                               'http://rdfs.org/sioc/types#',
251                                               'xmlns:laconica' =>
252                                               'http://laconi.ca/ont/',
253                                               'xmlns' => 'http://purl.org/rss/1.0/'));
254         $this->elementStart('sioc:Site', array('rdf:about' => common_root_url()));
255         $this->element('sioc:name', null, common_config('site', 'name'));
256         $this->elementStart('sioc:container_of');
257         $this->element('sioc:Container', array('rdf:about' =>
258                                                $channel['url']));
259         $this->elementEnd('sioc:container_of');
260         $this->elementEnd('sioc:Site');
261     }
262
263     function endRss()
264     {
265         $this->elementEnd('rdf:RDF');
266     }
267
268     /**
269      * When was this page last modified?
270      *
271      */
272
273     function lastModified()
274     {
275         if (empty($this->notices)) {
276             return null;
277         }
278
279         if (count($this->notices) == 0) {
280             return null;
281         }
282
283         // FIXME: doesn't handle modified profiles, avatars, deleted notices
284
285         return strtotime($this->notices[0]->created);
286     }
287 }
288