3 * StatusNet, the distributed open-source microblogging tool
5 * Action for displaying the public stream
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 Evan Prodromou <evan@status.net>
25 * @copyright 2008-2009 StatusNet, Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27 * @link http://status.net/
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
34 require_once INSTALLDIR.'/lib/publicgroupnav.php';
35 require_once INSTALLDIR.'/lib/noticelist.php';
36 require_once INSTALLDIR.'/lib/feedlist.php';
38 // Farther than any human will go
40 define('MAX_PUBLIC_PAGE', 100);
43 * Action for displaying the public stream
47 * @author Evan Prodromou <evan@status.net>
48 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
49 * @link http://status.net/
51 * @see PublicrssAction
52 * @see PublicxrdsAction
55 class PublicAction extends Action
58 * page of the stream we're on; default = 1
64 function isReadOnly($args)
70 * Read and validate arguments
72 * @param array $args URL parameters
74 * @return boolean success value
77 function prepare($args)
79 parent::prepare($args);
80 $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
82 if ($this->page > MAX_PUBLIC_PAGE) {
83 $this->clientError(sprintf(_("Beyond the page limit (%s)."), MAX_PUBLIC_PAGE));
86 common_set_returnto($this->selfUrl());
88 $this->notice = Notice::publicStream(($this->page-1)*NOTICES_PER_PAGE,
89 NOTICES_PER_PAGE + 1);
92 $this->serverError(_('Could not retrieve public stream.'));
96 if($this->page > 1 && $this->notice->N == 0){
97 // TRANS: Server error when page not found (404)
98 $this->serverError(_('No such page.'),$code=404);
107 * Show the public stream, using recipe method showPage()
109 * @param array $args arguments, mostly unused
114 function handle($args)
116 parent::handle($args);
124 * @return page title, including page number if over 1
129 if ($this->page > 1) {
130 return sprintf(_('Public timeline, page %d'), $this->page);
132 return _('Public timeline');
139 $this->element('meta', array('http-equiv' => 'X-XRDS-Location',
140 'content' => common_local_url('publicxrds')));
142 $rsd = common_local_url('rsd');
144 // RSD, http://tales.phrasewise.com/rfc/rsd
146 $this->element('link', array('rel' => 'EditURI',
147 'type' => 'application/rsd+xml',
152 * Output <head> elements for RSS and Atom feeds
159 return array(new Feed(Feed::RSS1, common_local_url('publicrss'),
160 _('Public Stream Feed (RSS 1.0)')),
162 common_local_url('ApiTimelinePublic',
163 array('format' => 'rss')),
164 _('Public Stream Feed (RSS 2.0)')),
166 common_local_url('ApiTimelinePublic',
167 array('format' => 'atom')),
168 _('Public Stream Feed (Atom)')));
172 * Show tabset for this page
174 * Uses the PublicGroupNav widget
177 * @see PublicGroupNav
180 function showLocalNav()
182 $nav = new PublicGroupNav($this);
186 function showEmptyList()
188 $message = _('This is the public timeline for %%site.name%% but no one has posted anything yet.') . ' ';
190 if (common_logged_in()) {
191 $message .= _('Be the first to post!');
194 if (! (common_config('site','closed') || common_config('site','inviteonly'))) {
195 $message .= _('Why not [register an account](%%action.register%%) and be the first to post!');
199 $this->elementStart('div', 'guide');
200 $this->raw(common_markup_to_html($message));
201 $this->elementEnd('div');
205 * Fill the content area
207 * Shows a list of the notices in the public stream, with some pagination
213 function showContent()
215 $nl = new NoticeList($this->notice, $this);
220 $this->showEmptyList();
223 $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
224 $this->page, 'public');
227 function showSections()
229 // $top = new TopPostersSection($this);
231 $pop = new PopularNoticeSection($this);
233 $gbp = new GroupsByMembersSection($this);
235 $feat = new FeaturedUsersSection($this);
239 function showAnonymousMessage()
241 if (! (common_config('site','closed') || common_config('site','inviteonly'))) {
242 $m = _('This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
243 'based on the Free Software [StatusNet](http://status.net/) tool. ' .
244 '[Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ' .
245 '([Read more](%%doc.help%%))');
247 $m = _('This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
248 'based on the Free Software [StatusNet](http://status.net/) tool.');
250 $this->elementStart('div', array('id' => 'anon_notice'));
251 $this->raw(common_markup_to_html($m));
252 $this->elementEnd('div');