3 * StatusNet, the distributed open-source microblogging tool
5 * Show the public timeline
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.
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.
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/>.
24 * @author Craig Andrews <candrews@integralblue.com>
25 * @author Evan Prodromou <evan@status.net>
26 * @author Jeffery To <jeffery.to@gmail.com>
27 * @author mac65 <mac65@mac65.com>
28 * @author Mike Cochrane <mikec@mikenz.geek.nz>
29 * @author Robin Millette <robin@millette.info>
30 * @author Zach Copley <zach@status.net>
31 * @copyright 2009 StatusNet, Inc.
32 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
33 * @link http://status.net/
36 if (!defined('STATUSNET')) {
40 require_once INSTALLDIR . '/lib/apiprivateauth.php';
43 * Returns the most recent notices (default 20) posted by everybody
47 * @author Craig Andrews <candrews@integralblue.com>
48 * @author Evan Prodromou <evan@status.net>
49 * @author Jeffery To <jeffery.to@gmail.com>
50 * @author mac65 <mac65@mac65.com>
51 * @author Mike Cochrane <mikec@mikenz.geek.nz>
52 * @author Robin Millette <robin@millette.info>
53 * @author Zach Copley <zach@status.net>
54 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
55 * @link http://status.net/
58 class ApiTimelinePublicAction extends ApiPrivateAuthAction
64 * Take arguments for running
66 * @param array $args $_REQUEST args
68 * @return boolean success flag
72 function prepare($args)
74 parent::prepare($args);
76 $this->notices = $this->getNotices();
84 * Just show the notices
86 * @param array $args $_REQUEST data (unused)
91 function handle($args)
93 parent::handle($args);
94 $this->showTimeline();
98 * Show the timeline of notices
103 function showTimeline()
105 $sitename = common_config('site', 'name');
106 $title = sprintf(_("%s public timeline"), $sitename);
107 $taguribase = common_config('integration', 'taguri');
108 $id = "tag:$taguribase:PublicTimeline";
109 $link = common_root_url();
110 $subtitle = sprintf(_("%s updates from everyone!"), $sitename);
112 switch($this->format) {
114 $this->showXmlTimeline($this->notices);
117 $this->showRssTimeline($this->notices, $title, $link, $subtitle);
120 $selfuri = common_root_url() . 'api/statuses/public_timeline.atom';
121 $this->showAtomTimeline(
122 $this->notices, $title, $id, $link,
123 $subtitle, null, $selfuri
127 $this->showJsonTimeline($this->notices);
130 $this->clientError(_('API method not found!'), $code = 404);
138 * @return array notices
141 function getNotices()
145 $notice = Notice::publicStream(
146 ($this->page - 1) * $this->count, $this->count, $this->since_id,
147 $this->max_id, $this->since
150 while ($notice->fetch()) {
151 $notices[] = clone($notice);
158 * Is this action read only?
160 * @param array $args other arguments
162 * @return boolean true
165 function isReadOnly($args)
171 * When was this feed last modified?
173 * @return string datestamp of the latest notice in the stream
176 function lastModified()
178 if (!empty($this->notices) && (count($this->notices) > 0)) {
179 return strtotime($this->notices[0]->created);
186 * An entity tag for this stream
188 * Returns an Etag based on the action name, language, and
189 * timestamps of the first and last notice in the timeline
191 * @return string etag
196 if (!empty($this->notices) && (count($this->notices) > 0)) {
198 $last = count($this->notices) - 1;
200 return '"' . implode(
202 array($this->arg('action'),
204 strtotime($this->notices[0]->created),
205 strtotime($this->notices[$last]->created))