]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apitimelinepublic.php
Merge branch 'master' of gitorious.org:statusnet/mainline
[quix0rs-gnu-social.git] / actions / apitimelinepublic.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Show the public timeline
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  API
23  * @package   StatusNet
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/
34  */
35
36 if (!defined('STATUSNET')) {
37     exit(1);
38 }
39
40 require_once INSTALLDIR . '/lib/apiprivateauth.php';
41
42 /**
43  * Returns the most recent notices (default 20) posted by everybody
44  *
45  * @category API
46  * @package  StatusNet
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/
56  */
57
58 class ApiTimelinePublicAction extends ApiPrivateAuthAction
59 {
60
61     var $notices = null;
62
63     /**
64      * Take arguments for running
65      *
66      * @param array $args $_REQUEST args
67      *
68      * @return boolean success flag
69      *
70      */
71
72     function prepare($args)
73     {
74         parent::prepare($args);
75
76         $this->notices = $this->getNotices();
77
78         return true;
79     }
80
81     /**
82      * Handle the request
83      *
84      * Just show the notices
85      *
86      * @param array $args $_REQUEST data (unused)
87      *
88      * @return void
89      */
90
91     function handle($args)
92     {
93         parent::handle($args);
94         $this->showTimeline();
95     }
96
97     /**
98      * Show the timeline of notices
99      *
100      * @return void
101      */
102
103     function showTimeline()
104     {
105         $sitename   = common_config('site', 'name');
106         $sitelogo   = (common_config('site', 'logo')) ? common_config('site', 'logo') : Theme::path('logo.png');
107         $title      = sprintf(_("%s public timeline"), $sitename);
108         $taguribase = TagURI::base();
109         $id         = "tag:$taguribase:PublicTimeline";
110         $link       = common_local_url('public');
111         $self       = $this->getSelfUri();
112         $subtitle   = sprintf(_("%s updates from everyone!"), $sitename);
113
114         switch($this->format) {
115         case 'xml':
116             $this->showXmlTimeline($this->notices);
117             break;
118         case 'rss':
119             $this->showRssTimeline(
120                 $this->notices,
121                 $title,
122                 $link,
123                 $subtitle,
124                 null,
125                 $sitelogo,
126                 $self
127             );
128             break;
129         case 'atom':
130
131             header('Content-Type: application/atom+xml; charset=utf-8');
132
133             $atom = new AtomNoticeFeed($this->auth_user);
134
135             $atom->setId($id);
136             $atom->setTitle($title);
137             $atom->setSubtitle($subtitle);
138             $atom->setLogo($sitelogo);
139             $atom->setUpdated('now');
140             $atom->addLink(common_local_url('public'));
141             $atom->setSelfLink($self);
142             $atom->addEntryFromNotices($this->notices);
143
144             $this->raw($atom->getString());
145
146             break;
147         case 'json':
148             $this->showJsonTimeline($this->notices);
149             break;
150         default:
151             $this->clientError(_('API method not found.'), $code = 404);
152             break;
153         }
154     }
155
156     /**
157      * Get notices
158      *
159      * @return array notices
160      */
161
162     function getNotices()
163     {
164         $notices = array();
165
166         $notice = Notice::publicStream(
167             ($this->page - 1) * $this->count, $this->count, $this->since_id,
168             $this->max_id
169         );
170
171         while ($notice->fetch()) {
172             $notices[] = clone($notice);
173         }
174
175         return $notices;
176     }
177
178     /**
179      * Is this action read only?
180      *
181      * @param array $args other arguments
182      *
183      * @return boolean true
184      */
185
186     function isReadOnly($args)
187     {
188         return true;
189     }
190
191     /**
192      * When was this feed last modified?
193      *
194      * @return string datestamp of the latest notice in the stream
195      */
196
197     function lastModified()
198     {
199         if (!empty($this->notices) && (count($this->notices) > 0)) {
200             return strtotime($this->notices[0]->created);
201         }
202
203         return null;
204     }
205
206     /**
207      * An entity tag for this stream
208      *
209      * Returns an Etag based on the action name, language, and
210      * timestamps of the first and last notice in the timeline
211      *
212      * @return string etag
213      */
214
215     function etag()
216     {
217         if (!empty($this->notices) && (count($this->notices) > 0)) {
218
219             $last = count($this->notices) - 1;
220
221             return '"' . implode(
222                 ':',
223                 array($this->arg('action'),
224                       common_language(),
225                       strtotime($this->notices[0]->created),
226                       strtotime($this->notices[$last]->created))
227             )
228             . '"';
229         }
230
231         return null;
232     }
233
234 }