2008-05-09 03:16:04 +01:00
|
|
|
<?php
|
2009-01-14 04:48:05 +00:00
|
|
|
/**
|
2009-08-25 23:12:20 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2008-05-20 20:14:12 +01:00
|
|
|
*
|
2009-01-14 04:48:05 +00:00
|
|
|
* Action for displaying the public stream
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
2008-05-14 20:26:48 +01:00
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2008-05-20 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2008-05-20 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-01-14 04:48:05 +00:00
|
|
|
*
|
|
|
|
* @category Public
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-08-25 23:12:20 +01:00
|
|
|
* @copyright 2008-2009 StatusNet, Inc.
|
2009-01-14 04:48:05 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2008-05-14 20:26:48 +01:00
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-01-14 04:48:05 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2008-05-09 03:16:04 +01:00
|
|
|
|
2009-01-15 20:13:11 +00:00
|
|
|
require_once INSTALLDIR.'/lib/publicgroupnav.php';
|
2009-01-15 20:19:32 +00:00
|
|
|
require_once INSTALLDIR.'/lib/noticelist.php';
|
2009-01-15 20:22:14 +00:00
|
|
|
require_once INSTALLDIR.'/lib/feedlist.php';
|
2009-01-15 20:13:11 +00:00
|
|
|
|
2009-06-25 21:23:59 +01:00
|
|
|
// Farther than any human will go
|
|
|
|
|
|
|
|
define('MAX_PUBLIC_PAGE', 100);
|
|
|
|
|
2009-01-14 04:48:05 +00:00
|
|
|
/**
|
|
|
|
* Action for displaying the public stream
|
|
|
|
*
|
|
|
|
* @category Public
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-01-14 04:48:05 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-14 04:48:05 +00:00
|
|
|
*
|
|
|
|
* @see PublicrssAction
|
|
|
|
* @see PublicxrdsAction
|
|
|
|
*/
|
2008-05-17 20:10:34 +01:00
|
|
|
|
2009-01-14 04:48:05 +00:00
|
|
|
class PublicAction extends Action
|
2008-12-23 19:49:23 +00:00
|
|
|
{
|
2009-01-14 04:48:05 +00:00
|
|
|
/**
|
|
|
|
* page of the stream we're on; default = 1
|
|
|
|
*/
|
2008-05-09 03:16:04 +01:00
|
|
|
|
2009-01-14 04:48:05 +00:00
|
|
|
var $page = null;
|
2009-08-16 15:37:04 +01:00
|
|
|
var $notice;
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-04-13 20:49:26 +01:00
|
|
|
function isReadOnly($args)
|
2009-01-23 08:42:23 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-01-14 04:48:05 +00:00
|
|
|
/**
|
|
|
|
* Read and validate arguments
|
|
|
|
*
|
|
|
|
* @param array $args URL parameters
|
|
|
|
*
|
|
|
|
* @return boolean success value
|
|
|
|
*/
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-14 04:48:05 +00:00
|
|
|
function prepare($args)
|
|
|
|
{
|
|
|
|
parent::prepare($args);
|
|
|
|
$this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
|
2009-02-11 15:35:15 +00:00
|
|
|
|
2009-06-25 21:23:59 +01:00
|
|
|
if ($this->page > MAX_PUBLIC_PAGE) {
|
2010-04-09 23:58:57 +01:00
|
|
|
$this->clientError(sprintf(_("Beyond the page limit (%s)."), MAX_PUBLIC_PAGE));
|
2009-06-25 21:23:59 +01:00
|
|
|
}
|
|
|
|
|
2009-02-06 00:16:10 +00:00
|
|
|
common_set_returnto($this->selfUrl());
|
2009-02-11 15:35:15 +00:00
|
|
|
|
2009-08-16 15:37:04 +01:00
|
|
|
$this->notice = Notice::publicStream(($this->page-1)*NOTICES_PER_PAGE,
|
|
|
|
NOTICES_PER_PAGE + 1);
|
|
|
|
|
|
|
|
if (!$this->notice) {
|
|
|
|
$this->serverError(_('Could not retrieve public stream.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-08-16 15:37:15 +01:00
|
|
|
if($this->page > 1 && $this->notice->N == 0){
|
2010-03-02 16:30:22 +00:00
|
|
|
// TRANS: Server error when page not found (404)
|
2010-04-09 23:07:20 +01:00
|
|
|
$this->serverError(_('No such page.'),$code=404);
|
2009-08-16 15:37:04 +01:00
|
|
|
}
|
|
|
|
|
2009-01-14 04:48:05 +00:00
|
|
|
return true;
|
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-14 04:48:05 +00:00
|
|
|
/**
|
|
|
|
* handle request
|
|
|
|
*
|
|
|
|
* Show the public stream, using recipe method showPage()
|
|
|
|
*
|
|
|
|
* @param array $args arguments, mostly unused
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-14 04:48:05 +00:00
|
|
|
function handle($args)
|
|
|
|
{
|
|
|
|
parent::handle($args);
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-14 04:48:05 +00:00
|
|
|
$this->showPage();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-14 04:48:05 +00:00
|
|
|
/**
|
|
|
|
* Title of the page
|
|
|
|
*
|
|
|
|
* @return page title, including page number if over 1
|
|
|
|
*/
|
|
|
|
|
|
|
|
function title()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-14 04:48:05 +00:00
|
|
|
if ($this->page > 1) {
|
|
|
|
return sprintf(_('Public timeline, page %d'), $this->page);
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
2009-01-14 04:48:05 +00:00
|
|
|
return _('Public timeline');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
2010-01-31 20:16:59 +00:00
|
|
|
|
2009-10-29 20:01:25 +00:00
|
|
|
function extraHead()
|
|
|
|
{
|
|
|
|
parent::extraHead();
|
|
|
|
$this->element('meta', array('http-equiv' => 'X-XRDS-Location',
|
|
|
|
'content' => common_local_url('publicxrds')));
|
2010-01-31 20:16:59 +00:00
|
|
|
|
|
|
|
$rsd = common_local_url('rsd');
|
|
|
|
|
|
|
|
// RSD, http://tales.phrasewise.com/rfc/rsd
|
|
|
|
|
|
|
|
$this->element('link', array('rel' => 'EditURI',
|
|
|
|
'type' => 'application/rsd+xml',
|
|
|
|
'href' => $rsd));
|
2009-10-29 20:01:25 +00:00
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-14 04:48:05 +00:00
|
|
|
/**
|
|
|
|
* Output <head> elements for RSS and Atom feeds
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-02-11 16:37:50 +00:00
|
|
|
function getFeeds()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-02-11 16:37:50 +00:00
|
|
|
return array(new Feed(Feed::RSS1, common_local_url('publicrss'),
|
|
|
|
_('Public Stream Feed (RSS 1.0)')),
|
|
|
|
new Feed(Feed::RSS2,
|
2009-10-29 23:09:42 +00:00
|
|
|
common_local_url('ApiTimelinePublic',
|
|
|
|
array('format' => 'rss')),
|
2009-02-11 16:37:50 +00:00
|
|
|
_('Public Stream Feed (RSS 2.0)')),
|
|
|
|
new Feed(Feed::ATOM,
|
2009-10-29 23:09:42 +00:00
|
|
|
common_local_url('ApiTimelinePublic',
|
|
|
|
array('format' => 'atom')),
|
2009-02-11 16:37:50 +00:00
|
|
|
_('Public Stream Feed (Atom)')));
|
2009-01-14 04:48:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show tabset for this page
|
|
|
|
*
|
|
|
|
* Uses the PublicGroupNav widget
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
* @see PublicGroupNav
|
|
|
|
*/
|
|
|
|
|
|
|
|
function showLocalNav()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-14 04:48:05 +00:00
|
|
|
$nav = new PublicGroupNav($this);
|
|
|
|
$nav->show();
|
|
|
|
}
|
|
|
|
|
2009-04-08 04:57:45 +01:00
|
|
|
function showEmptyList()
|
2009-03-30 22:07:48 +01:00
|
|
|
{
|
2009-04-07 22:12:11 +01:00
|
|
|
$message = _('This is the public timeline for %%site.name%% but no one has posted anything yet.') . ' ';
|
2009-03-30 22:07:48 +01:00
|
|
|
|
|
|
|
if (common_logged_in()) {
|
|
|
|
$message .= _('Be the first to post!');
|
|
|
|
}
|
|
|
|
else {
|
2009-06-16 23:18:48 +01:00
|
|
|
if (! (common_config('site','closed') || common_config('site','inviteonly'))) {
|
2009-08-21 21:45:42 +01:00
|
|
|
$message .= _('Why not [register an account](%%action.register%%) and be the first to post!');
|
2009-06-16 23:18:48 +01:00
|
|
|
}
|
|
|
|
}
|
2009-03-30 22:07:48 +01:00
|
|
|
|
2009-04-07 22:09:27 +01:00
|
|
|
$this->elementStart('div', 'guide');
|
2009-03-30 22:07:48 +01:00
|
|
|
$this->raw(common_markup_to_html($message));
|
|
|
|
$this->elementEnd('div');
|
|
|
|
}
|
|
|
|
|
2009-01-14 04:48:05 +00:00
|
|
|
/**
|
|
|
|
* Fill the content area
|
|
|
|
*
|
|
|
|
* Shows a list of the notices in the public stream, with some pagination
|
|
|
|
* controls.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-14 04:48:05 +00:00
|
|
|
function showContent()
|
|
|
|
{
|
2009-08-16 15:37:04 +01:00
|
|
|
$nl = new NoticeList($this->notice, $this);
|
2009-01-14 04:48:05 +00:00
|
|
|
|
|
|
|
$cnt = $nl->show();
|
2008-12-11 23:12:52 +00:00
|
|
|
|
2009-04-08 04:57:45 +01:00
|
|
|
if ($cnt == 0) {
|
|
|
|
$this->showEmptyList();
|
|
|
|
}
|
|
|
|
|
2009-01-14 04:48:05 +00:00
|
|
|
$this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
|
|
|
|
$this->page, 'public');
|
|
|
|
}
|
|
|
|
|
2009-01-22 19:08:16 +00:00
|
|
|
function showSections()
|
|
|
|
{
|
2009-01-23 09:36:16 +00:00
|
|
|
// $top = new TopPostersSection($this);
|
|
|
|
// $top->show();
|
2009-01-22 19:48:35 +00:00
|
|
|
$pop = new PopularNoticeSection($this);
|
|
|
|
$pop->show();
|
2009-07-27 20:07:39 +01:00
|
|
|
$gbp = new GroupsByMembersSection($this);
|
2009-01-22 20:17:32 +00:00
|
|
|
$gbp->show();
|
2009-01-22 21:42:34 +00:00
|
|
|
$feat = new FeaturedUsersSection($this);
|
|
|
|
$feat->show();
|
2009-01-22 19:08:16 +00:00
|
|
|
}
|
2009-01-23 03:06:03 +00:00
|
|
|
|
|
|
|
function showAnonymousMessage()
|
|
|
|
{
|
2009-03-19 18:08:49 +00:00
|
|
|
if (! (common_config('site','closed') || common_config('site','inviteonly'))) {
|
2009-09-01 23:43:56 +01:00
|
|
|
$m = _('This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
|
2009-08-27 19:16:45 +01:00
|
|
|
'based on the Free Software [StatusNet](http://status.net/) tool. ' .
|
2009-09-01 23:43:56 +01:00
|
|
|
'[Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ' .
|
|
|
|
'([Read more](%%doc.help%%))');
|
2009-03-19 18:08:49 +00:00
|
|
|
} else {
|
|
|
|
$m = _('This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' .
|
2009-08-25 23:16:46 +01:00
|
|
|
'based on the Free Software [StatusNet](http://status.net/) tool.');
|
2009-03-19 18:08:49 +00:00
|
|
|
}
|
2009-01-23 03:47:32 +00:00
|
|
|
$this->elementStart('div', array('id' => 'anon_notice'));
|
2009-01-23 03:06:03 +00:00
|
|
|
$this->raw(common_markup_to_html($m));
|
2009-01-23 03:31:50 +00:00
|
|
|
$this->elementEnd('div');
|
2009-01-23 03:06:03 +00:00
|
|
|
}
|
2008-12-05 22:14:02 +00:00
|
|
|
}
|