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('GNUSOCIAL')) { exit(1); }
32 // Farther than any human will go
34 define('MAX_PUBLIC_PAGE', 100);
37 * Action for displaying the public stream
41 * @author Evan Prodromou <evan@status.net>
42 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
43 * @link http://status.net/
45 * @see PublicrssAction
46 * @see PublicxrdsAction
48 class PublicAction extends Action
51 * page of the stream we're on; default = 1
57 protected $stream = null;
59 function isReadOnly($args)
65 * Read and validate arguments
67 * @param array $args URL parameters
69 * @return boolean success value
71 protected function prepare(array $args=array())
73 parent::prepare($args);
74 $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
76 if ($this->page > MAX_PUBLIC_PAGE) {
77 // TRANS: Client error displayed when requesting a public timeline page beyond the page limit.
78 // TRANS: %s is the page limit.
79 $this->clientError(sprintf(_('Beyond the page limit (%s).'), MAX_PUBLIC_PAGE));
82 common_set_returnto($this->selfUrl());
84 $this->streamPrepare();
86 $this->notice = $this->stream->getNotices(($this->page-1)*NOTICES_PER_PAGE,
87 NOTICES_PER_PAGE + 1);
90 // TRANS: Server error displayed when a public timeline cannot be retrieved.
91 $this->serverError(_('Could not retrieve public timeline.'));
94 if ($this->page > 1 && $this->notice->N == 0){
95 // TRANS: Server error when page not found (404).
96 $this->serverError(_('No such page.'),$code=404);
102 protected function streamPrepare()
104 if ($this->scoped instanceof Profile && $this->scoped->isLocal() && $this->scoped->getUser()->streamModeOnly()) {
105 $this->stream = new PublicNoticeStream($this->scoped);
107 $this->stream = new ThreadingPublicNoticeStream($this->scoped);
114 * Show the public stream, using recipe method showPage()
116 * @param array $args arguments, mostly unused
120 protected function handle()
130 * @return page title, including page number if over 1
134 if ($this->page > 1) {
135 // TRANS: Title for all public timeline pages but the first.
136 // TRANS: %d is the page number.
137 return sprintf(_('Public timeline, page %d'), $this->page);
139 // TRANS: Title for the first public timeline page.
140 return _('Public timeline');
147 $this->element('meta', array('http-equiv' => 'X-XRDS-Location',
148 'content' => common_local_url('publicxrds')));
150 $rsd = common_local_url('rsd');
152 // RSD, http://tales.phrasewise.com/rfc/rsd
154 $this->element('link', array('rel' => 'EditURI',
155 'type' => 'application/rsd+xml',
158 if ($this->page != 1) {
159 $this->element('link', array('rel' => 'canonical',
160 'href' => common_local_url('public')));
165 * Output <head> elements for RSS and Atom feeds
171 return array(new Feed(Feed::JSON,
172 common_local_url('ApiTimelinePublic',
173 array('format' => 'as')),
174 // TRANS: Link description for public timeline feed.
175 _('Public Timeline Feed (Activity Streams JSON)')),
176 new Feed(Feed::RSS1, common_local_url('publicrss'),
177 // TRANS: Link description for public timeline feed.
178 _('Public Timeline Feed (RSS 1.0)')),
180 common_local_url('ApiTimelinePublic',
181 array('format' => 'rss')),
182 // TRANS: Link description for public timeline feed.
183 _('Public Timeline Feed (RSS 2.0)')),
185 common_local_url('ApiTimelinePublic',
186 array('format' => 'atom')),
187 // TRANS: Link description for public timeline feed.
188 _('Public Timeline Feed (Atom)')));
191 function showEmptyList()
193 // TRANS: Text displayed for public feed when there are no public notices.
194 $message = _('This is the public timeline for %%site.name%% but no one has posted anything yet.') . ' ';
196 if (common_logged_in()) {
197 // TRANS: Additional text displayed for public feed when there are no public notices for a logged in user.
198 $message .= _('Be the first to post!');
201 if (! (common_config('site','closed') || common_config('site','inviteonly'))) {
202 // TRANS: Additional text displayed for public feed when there are no public notices for a not logged in user.
203 $message .= _('Why not [register an account](%%action.register%%) and be the first to post!');
207 $this->elementStart('div', 'guide');
208 $this->raw(common_markup_to_html($message));
209 $this->elementEnd('div');
213 * Fill the content area
215 * Shows a list of the notices in the public stream, with some pagination
220 function showContent()
222 $user = common_current_user();
224 if (!empty($user) && $user->streamModeOnly()) {
225 $nl = new PrimaryNoticeList($this->notice, $this, array('show_n'=>NOTICES_PER_PAGE));
227 $nl = new ThreadedNoticeList($this->notice, $this, $this->scoped);
233 $this->showEmptyList();
236 $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
237 $this->page, 'public');
240 function showSections()
242 // Show invite button, as long as site isn't closed, and
243 // we have a logged in user.
244 if (common_config('invite', 'enabled') && !common_config('site', 'closed') && common_logged_in()) {
245 if (!common_config('site', 'private')) {
246 $ibs = new InviteButtonSection(
248 // TRANS: Button text for inviting more users to the StatusNet instance.
249 // TRANS: Less business/enterprise-oriented language for public sites.
250 _m('BUTTON', 'Send invite')
253 $ibs = new InviteButtonSection($this);
258 $p = Profile::current();
260 if (!common_config('performance', 'high')) {
261 $cloud = new PublicTagCloudSection($this);
264 $feat = new FeaturedUsersSection($this);
268 function showAnonymousMessage()
270 if (! (common_config('site','closed') || common_config('site','inviteonly'))) {
271 // TRANS: Message for not logged in users at an invite-only site trying to view the public feed of notices.
272 // TRANS: This message contains Markdown links. Please mind the formatting.
273 $m = _('This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
274 'based on the Free Software [StatusNet](http://status.net/) tool. ' .
275 '[Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ' .
276 '([Read more](%%doc.help%%))');
278 // TRANS: Message for not logged in users at a closed site trying to view the public feed of notices.
279 // TRANS: This message contains Markdown links. Please mind the formatting.
280 $m = _('This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
281 'based on the Free Software [StatusNet](http://status.net/) tool.');
283 $this->elementStart('div', array('id' => 'anon_notice'));
284 $this->raw(common_markup_to_html($m));
285 $this->elementEnd('div');
289 class ThreadingPublicNoticeStream extends ThreadingNoticeStream
291 function __construct($profile)
293 parent::__construct(new PublicNoticeStream($profile));