]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/rssaction.php
take an argument for fixup_utf8
[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         $this->notices = $this->getNotices($this->limit);
101         $this->showRss();
102     }
103
104     /**
105      * Get the notices to output in this stream
106      *
107      * @return array an array of Notice objects sorted in reverse chron
108      */
109
110     function getNotices()
111     {
112         return array();
113     }
114
115     /**
116      * Get a description of the channel
117      *
118      * Returns an array with the following
119      * @return array
120      */
121
122     function getChannel()
123     {
124         return array('url' => '',
125                      'title' => '',
126                      'link' => '',
127                      'description' => '');
128     }
129
130     function getImage()
131     {
132         return null;
133     }
134
135     function showRss()
136     {
137         $this->initRss();
138         $this->showChannel();
139         $this->showImage();
140
141         foreach ($this->notices as $n) {
142             $this->showItem($n);
143         }
144
145         $this->showCreators();
146         $this->endRss();
147     }
148
149     function showChannel()
150     {
151
152         $channel = $this->getChannel();
153         $image = $this->getImage();
154
155         $this->elementStart('channel', array('rdf:about' => $channel['url']));
156         $this->element('title', null, $channel['title']);
157         $this->element('link', null, $channel['link']);
158         $this->element('description', null, $channel['description']);
159         $this->element('cc:licence', array('rdf:resource' => common_config('license','url')));
160
161         if ($image) {
162             $this->element('image', array('rdf:resource' => $image));
163         }
164
165         $this->elementStart('items');
166         $this->elementStart('rdf:Seq');
167
168         foreach ($this->notices as $notice) {
169             $this->element('sioct:MicroblogPost', array('rdf:resource' => $notice->uri));
170         }
171
172         $this->elementEnd('rdf:Seq');
173         $this->elementEnd('items');
174
175         $this->elementEnd('channel');
176     }
177
178     function showImage()
179     {
180         $image = $this->getImage();
181         if ($image) {
182             $channel = $this->getChannel();
183             $this->elementStart('image', array('rdf:about' => $image));
184             $this->element('title', null, $channel['title']);
185             $this->element('link', null, $channel['link']);
186             $this->element('url', null, $image);
187             $this->elementEnd('image');
188         }
189     }
190
191     function showItem($notice)
192     {
193         $profile = Profile::staticGet($notice->profile_id);
194         $nurl = common_local_url('shownotice', array('notice' => $notice->id));
195         $creator_uri = common_profile_uri($profile);
196         $this->elementStart('item', array('rdf:about' => $notice->uri));
197         $title = $profile->nickname . ': ' . common_xml_safe_str(trim($notice->content));
198         $this->element('title', null, $title);
199         $this->element('link', null, $nurl);
200         $this->element('description', null, $profile->nickname."'s status on ".common_exact_date($notice->created));
201         $this->element('dc:date', null, common_date_w3dtf($notice->created));
202         $this->element('dc:creator', null, ($profile->fullname) ? $profile->fullname : $profile->nickname);
203         $this->element('sioc:has_creator', array('rdf:resource' => $creator_uri));
204         $this->element('laconica:postIcon', array('rdf:resource' => $profile->avatarUrl()));
205         $this->element('cc:licence', array('rdf:resource' => common_config('license', 'url')));
206         $this->elementEnd('item');
207         $this->creators[$creator_uri] = $profile;
208     }
209
210     function showCreators()
211     {
212         foreach ($this->creators as $uri => $profile) {
213             $id = $profile->id;
214             $nickname = $profile->nickname;
215             $this->elementStart('sioc:User', array('rdf:about' => $uri));
216             $this->element('foaf:nick', null, $nickname);
217             if ($profile->fullname) {
218                 $this->element('foaf:name', null, $profile->fullname);
219             }
220             $this->element('sioc:id', null, $id);
221             $avatar = $profile->avatarUrl();
222             $this->element('sioc:avatar', array('rdf:resource' => $avatar));
223             $this->elementEnd('sioc:User');
224         }
225     }
226
227     function initRss()
228     {
229         $channel = $this->getChannel();
230         header('Content-Type: application/rdf+xml');
231
232         $this->startXml();
233         $this->elementStart('rdf:RDF', array('xmlns:rdf' =>
234                                               'http://www.w3.org/1999/02/22-rdf-syntax-ns#',
235                                               'xmlns:dc' =>
236                                               'http://purl.org/dc/elements/1.1/',
237                                               'xmlns:cc' =>
238                                               'http://web.resource.org/cc/',
239                                               'xmlns:content' =>
240                                               'http://purl.org/rss/1.0/modules/content/',
241                                               'xmlns:foaf' =>
242                                               'http://xmlns.com/foaf/0.1/',
243                                               'xmlns:sioc' =>
244                                               'http://rdfs.org/sioc/ns#',
245                                               'xmlns:sioct' =>
246                                               'http://rdfs.org/sioc/types#',
247                                               'xmlns:laconica' =>
248                                               'http://laconi.ca/ont/',
249                                               'xmlns' => 'http://purl.org/rss/1.0/'));
250         $this->elementStart('sioc:Site', array('rdf:about' => common_root_url()));
251         $this->element('sioc:name', null, common_config('site', 'name'));
252         $this->elementStart('sioc:container_of');
253         $this->element('sioc:Container', array('rdf:about' =>
254                                                $channel['url']));
255         $this->elementEnd('sioc:container_of');
256         $this->elementEnd('sioc:Site');
257     }
258
259     function endRss()
260     {
261         $this->elementEnd('rdf:RDF');
262     }
263
264     /**
265      * When was this page last modified?
266      *
267      */
268
269     function lastModified()
270     {
271         if (empty($this->notices)) {
272             return null;
273         }
274
275         if (count($this->notices) == 0) {
276             return null;
277         }
278
279         // FIXME: doesn't handle modified profiles, avatars, deleted notices
280
281         return strtotime($this->notices[0]->created);
282     }
283 }
284