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
54 class PublicAction extends Action
57 * page of the stream we're on; default = 1
62 var $userProfile = null;
64 function isReadOnly($args)
70 * Read and validate arguments
72 * @param array $args URL parameters
74 * @return boolean success value
76 function prepare($args)
78 parent::prepare($args);
79 $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
81 if ($this->page > MAX_PUBLIC_PAGE) {
82 // TRANS: Client error displayed when requesting a public timeline page beyond the page limit.
83 // TRANS: %s is the page limit.
84 $this->clientError(sprintf(_('Beyond the page limit (%s).'), MAX_PUBLIC_PAGE));
87 common_set_returnto($this->selfUrl());
89 $this->userProfile = Profile::current();
91 $stream = new ThreadingPublicNoticeStream($this->userProfile);
93 $this->notice = $stream->getNotices(($this->page-1)*NOTICES_PER_PAGE,
94 NOTICES_PER_PAGE + 1);
97 // TRANS: Server error displayed when a public timeline cannot be retrieved.
98 $this->serverError(_('Could not retrieve public timeline.'));
102 if($this->page > 1 && $this->notice->N == 0){
103 // TRANS: Server error when page not found (404).
104 $this->serverError(_('No such page.'),$code=404);
113 * Show the public stream, using recipe method showPage()
115 * @param array $args arguments, mostly unused
119 function handle($args)
121 parent::handle($args);
129 * @return page title, including page number if over 1
133 if ($this->page > 1) {
134 // TRANS: Title for all public timeline pages but the first.
135 // TRANS: %d is the page number.
136 return sprintf(_('Public timeline, page %d'), $this->page);
138 // TRANS: Title for the first public timeline page.
139 return _('Public timeline');
146 $this->element('meta', array('http-equiv' => 'X-XRDS-Location',
147 'content' => common_local_url('publicxrds')));
149 $rsd = common_local_url('rsd');
151 // RSD, http://tales.phrasewise.com/rfc/rsd
153 $this->element('link', array('rel' => 'EditURI',
154 'type' => 'application/rsd+xml',
159 * Output <head> elements for RSS and Atom feeds
165 return array(new Feed(Feed::JSON,
166 common_local_url('ApiTimelinePublic',
167 array('format' => 'as')),
168 // TRANS: Link description for public timeline feed.
169 _('Public Timeline Feed (Activity Streams JSON)')),
170 new Feed(Feed::RSS1, common_local_url('publicrss'),
171 // TRANS: Link description for public timeline feed.
172 _('Public Timeline Feed (RSS 1.0)')),
174 common_local_url('ApiTimelinePublic',
175 array('format' => 'rss')),
176 // TRANS: Link description for public timeline feed.
177 _('Public Timeline Feed (RSS 2.0)')),
179 common_local_url('ApiTimelinePublic',
180 array('format' => 'atom')),
181 // TRANS: Link description for public timeline feed.
182 _('Public Timeline Feed (Atom)')));
185 function showEmptyList()
187 // TRANS: Text displayed for public feed when there are no public notices.
188 $message = _('This is the public timeline for %%site.name%% but no one has posted anything yet.') . ' ';
190 if (common_logged_in()) {
191 // TRANS: Additional text displayed for public feed when there are no public notices for a logged in user.
192 $message .= _('Be the first to post!');
195 if (! (common_config('site','closed') || common_config('site','inviteonly'))) {
196 // TRANS: Additional text displayed for public feed when there are no public notices for a not logged in user.
197 $message .= _('Why not [register an account](%%action.register%%) and be the first to post!');
201 $this->elementStart('div', 'guide');
202 $this->raw(common_markup_to_html($message));
203 $this->elementEnd('div');
207 * Fill the content area
209 * Shows a list of the notices in the public stream, with some pagination
214 function showContent()
216 $nl = new ThreadedNoticeList($this->notice, $this, $this->userProfile);
221 $this->showEmptyList();
224 $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
225 $this->page, 'public');
228 function showSections()
230 // Show invite button, as long as site isn't closed, and
231 // we have a logged in user.
232 if (!common_config('site', 'closed') && common_logged_in()) {
233 if (!common_config('site', 'private')) {
234 $ibs = new InviteButtonSection(
236 // TRANS: Button text for inviting more users to the StatusNet instance.
237 // TRANS: Less business/enterprise-oriented language for public sites.
238 _m('BUTTON', 'Send invite')
241 $ibs = new InviteButtonSection($this);
246 $pop = new PopularNoticeSection($this);
248 if (!common_config('performance', 'high')) {
249 $cloud = new PublicTagCloudSection($this);
252 $feat = new FeaturedUsersSection($this);
256 function showAnonymousMessage()
258 if (! (common_config('site','closed') || common_config('site','inviteonly'))) {
259 // TRANS: Message for not logged in users at an invite-only site trying to view the public feed of notices.
260 // TRANS: This message contains Markdown links. Please mind the formatting.
261 $m = _('This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
262 'based on the Free Software [StatusNet](http://status.net/) tool. ' .
263 '[Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ' .
264 '([Read more](%%doc.help%%))');
266 // TRANS: Message for not logged in users at a closed site trying to view the public feed of notices.
267 // TRANS: This message contains Markdown links. Please mind the formatting.
268 $m = _('This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
269 'based on the Free Software [StatusNet](http://status.net/) tool.');
271 $this->elementStart('div', array('id' => 'anon_notice'));
272 $this->raw(common_markup_to_html($m));
273 $this->elementEnd('div');
277 class ThreadingPublicNoticeStream extends ThreadingNoticeStream
279 function __construct($profile)
281 parent::__construct(new PublicNoticeStream($profile));