3 * Laconica, 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@controlyourself.ca>
25 * @copyright 2008-2009 Control Yourself, Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27 * @link http://laconi.ca/
30 if (!defined('LACONICA')) {
34 require_once INSTALLDIR.'/lib/publicgroupnav.php';
35 require_once INSTALLDIR.'/lib/noticelist.php';
36 require_once INSTALLDIR.'/lib/feedlist.php';
39 * Action for displaying the public stream
43 * @author Evan Prodromou <evan@controlyourself.ca>
44 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
45 * @link http://laconi.ca/
47 * @see PublicrssAction
48 * @see PublicxrdsAction
51 class PublicAction extends Action
54 * page of the stream we're on; default = 1
60 * Read and validate arguments
62 * @param array $args URL parameters
64 * @return boolean success value
67 function prepare($args)
69 parent::prepare($args);
70 $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
77 * Show the public stream, using recipe method showPage()
79 * @param array $args arguments, mostly unused
84 function handle($args)
86 parent::handle($args);
88 header('X-XRDS-Location: '. common_local_url('publicxrds'));
96 * @return page title, including page number if over 1
101 if ($this->page > 1) {
102 return sprintf(_('Public timeline, page %d'), $this->page);
104 return _('Public timeline');
109 * Output <head> elements for RSS and Atom feeds
116 $this->element('link', array('rel' => 'alternate',
117 'href' => common_local_url('publicrss'),
118 'type' => 'application/rss+xml',
119 'title' => _('Public Stream Feed')));
123 * Extra head elements
125 * We include a <meta> element linking to the publicxrds page, for OpenID
126 * client-side authentication.
133 // for client side of OpenID authentication
134 $this->element('meta', array('http-equiv' => 'X-XRDS-Location',
135 'content' => common_local_url('publicxrds')));
139 * Show tabset for this page
141 * Uses the PublicGroupNav widget
144 * @see PublicGroupNav
147 function showLocalNav()
149 $nav = new PublicGroupNav($this);
154 * Fill the content area
156 * Shows a list of the notices in the public stream, with some pagination
162 function showContent()
164 $notice = Notice::publicStream(($this->page-1)*NOTICES_PER_PAGE,
165 NOTICES_PER_PAGE + 1);
168 $this->serverError(_('Could not retrieve public stream.'));
172 $nl = new NoticeList($notice, $this);
176 $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
177 $this->page, 'public');
181 * Makes a list of exported feeds for this page
188 function showExportData()
190 $fl = new FeedList($this);
191 $fl->show(array(0 => array('href' => common_local_url('publicrss'),
193 'version' => 'RSS 1.0',
194 'item' => 'publicrss'),
195 1 => array('href' => common_local_url('publicatom'),
197 'version' => 'Atom 1.0',
198 'item' => 'publicatom')));
201 function showSections()
203 $top = new TopPostersSection($this);
205 $pop = new PopularNoticeSection($this);
207 $gbp = new GroupsByPostsSection($this);
209 $feat = new FeaturedUsersSection($this);
213 function showAnonymousMessage()
215 $m = _('This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
216 'based on the Free Software [Laconica](http://laconi.ca/) tool. ' .
217 '[Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ([Read more](%%doc.help%%))');
218 $this->elementStart('div', array('id' => 'anon_notice'));
219 $this->raw(common_markup_to_html($m));
220 $this->elementEnd('div');