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
|
|
|
*/
|
|
|
|
|
2014-06-28 15:09:46 +01:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
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
|
|
|
|
*/
|
2015-01-28 19:25:39 +00:00
|
|
|
class PublicAction extends ManagedAction
|
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;
|
2015-01-21 22:45:49 +00:00
|
|
|
|
|
|
|
protected $stream = null;
|
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;
|
|
|
|
}
|
|
|
|
|
2015-01-28 19:25:39 +00:00
|
|
|
protected function doPreparation()
|
2009-01-14 04:48:05 +00:00
|
|
|
{
|
|
|
|
$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) {
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Client error displayed when requesting a public timeline page beyond the page limit.
|
|
|
|
// TRANS: %s is the page limit.
|
|
|
|
$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
|
|
|
|
2015-01-21 22:45:49 +00:00
|
|
|
$this->streamPrepare();
|
2011-04-11 01:16:51 +01:00
|
|
|
|
2015-01-21 22:45:49 +00:00
|
|
|
$this->notice = $this->stream->getNotices(($this->page-1)*NOTICES_PER_PAGE,
|
2011-04-11 01:16:51 +01:00
|
|
|
NOTICES_PER_PAGE + 1);
|
2009-08-16 15:37:04 +01:00
|
|
|
|
|
|
|
if (!$this->notice) {
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Server error displayed when a public timeline cannot be retrieved.
|
2011-08-15 14:57:36 +01:00
|
|
|
$this->serverError(_('Could not retrieve public timeline.'));
|
2009-08-16 15:37:04 +01:00
|
|
|
}
|
|
|
|
|
2015-01-21 22:45:49 +00:00
|
|
|
if ($this->page > 1 && $this->notice->N == 0){
|
2015-01-29 22:35:49 +00:00
|
|
|
// TRANS: Client error when page not found (404).
|
|
|
|
$this->clientError(_('No such page.'), 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
|
|
|
|
2015-01-21 22:45:49 +00:00
|
|
|
protected function streamPrepare()
|
|
|
|
{
|
|
|
|
if ($this->scoped instanceof Profile && $this->scoped->isLocal() && $this->scoped->getUser()->streamModeOnly()) {
|
|
|
|
$this->stream = new PublicNoticeStream($this->scoped);
|
|
|
|
} else {
|
|
|
|
$this->stream = new ThreadingPublicNoticeStream($this->scoped);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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) {
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Title for all public timeline pages but the first.
|
|
|
|
// TRANS: %d is the page number.
|
2009-01-14 04:48:05 +00:00
|
|
|
return sprintf(_('Public timeline, page %d'), $this->page);
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Title for the first public timeline page.
|
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));
|
2012-01-26 16:02:29 +00:00
|
|
|
|
|
|
|
if ($this->page != 1) {
|
|
|
|
$this->element('link', array('rel' => 'canonical',
|
|
|
|
'href' => common_local_url('public')));
|
|
|
|
}
|
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
|
|
|
|
*/
|
2009-02-11 16:37:50 +00:00
|
|
|
function getFeeds()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2011-06-22 22:19:46 +01:00
|
|
|
return array(new Feed(Feed::JSON,
|
|
|
|
common_local_url('ApiTimelinePublic',
|
|
|
|
array('format' => 'as')),
|
|
|
|
// TRANS: Link description for public timeline feed.
|
2011-08-15 14:57:36 +01:00
|
|
|
_('Public Timeline Feed (Activity Streams JSON)')),
|
2011-06-22 22:19:46 +01:00
|
|
|
new Feed(Feed::RSS1, common_local_url('publicrss'),
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Link description for public timeline feed.
|
2011-08-15 14:57:36 +01:00
|
|
|
_('Public Timeline Feed (RSS 1.0)')),
|
2009-02-11 16:37:50 +00:00
|
|
|
new Feed(Feed::RSS2,
|
2009-10-29 23:09:42 +00:00
|
|
|
common_local_url('ApiTimelinePublic',
|
|
|
|
array('format' => 'rss')),
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Link description for public timeline feed.
|
2011-08-15 14:57:36 +01:00
|
|
|
_('Public Timeline Feed (RSS 2.0)')),
|
2009-02-11 16:37:50 +00:00
|
|
|
new Feed(Feed::ATOM,
|
2009-10-29 23:09:42 +00:00
|
|
|
common_local_url('ApiTimelinePublic',
|
|
|
|
array('format' => 'atom')),
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Link description for public timeline feed.
|
2011-08-15 14:57:36 +01:00
|
|
|
_('Public Timeline Feed (Atom)')));
|
2009-01-14 04:48:05 +00:00
|
|
|
}
|
|
|
|
|
2009-04-08 04:57:45 +01:00
|
|
|
function showEmptyList()
|
2009-03-30 22:07:48 +01:00
|
|
|
{
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Text displayed for public feed when there are no public notices.
|
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()) {
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Additional text displayed for public feed when there are no public notices for a logged in user.
|
2009-03-30 22:07:48 +01:00
|
|
|
$message .= _('Be the first to post!');
|
|
|
|
}
|
|
|
|
else {
|
2009-06-16 23:18:48 +01:00
|
|
|
if (! (common_config('site','closed') || common_config('site','inviteonly'))) {
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Additional text displayed for public feed when there are no public notices for a not logged in user.
|
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
|
|
|
}
|
2011-03-11 16:07:27 +00: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
|
|
|
|
*/
|
|
|
|
function showContent()
|
|
|
|
{
|
2015-01-28 19:25:39 +00:00
|
|
|
if ($this->scoped instanceof Profile && $this->scoped->isLocal() && $this->scoped->getUser()->streamModeOnly()) {
|
2015-01-08 19:29:09 +00:00
|
|
|
$nl = new PrimaryNoticeList($this->notice, $this, array('show_n'=>NOTICES_PER_PAGE));
|
2011-09-23 22:28:54 +01:00
|
|
|
} else {
|
2015-01-21 22:45:49 +00:00
|
|
|
$nl = new ThreadedNoticeList($this->notice, $this, $this->scoped);
|
2011-09-23 22:28:54 +01:00
|
|
|
}
|
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,
|
2015-01-28 19:25:39 +00:00
|
|
|
$this->page, $this->action);
|
2009-01-14 04:48:05 +00:00
|
|
|
}
|
|
|
|
|
2009-01-22 19:08:16 +00:00
|
|
|
function showSections()
|
|
|
|
{
|
2011-07-06 01:27:11 +01:00
|
|
|
// Show invite button, as long as site isn't closed, and
|
|
|
|
// we have a logged in user.
|
2012-10-17 15:09:40 +01:00
|
|
|
if (common_config('invite', 'enabled') && !common_config('site', 'closed') && common_logged_in()) {
|
2011-07-06 01:27:11 +01:00
|
|
|
if (!common_config('site', 'private')) {
|
|
|
|
$ibs = new InviteButtonSection(
|
|
|
|
$this,
|
|
|
|
// TRANS: Button text for inviting more users to the StatusNet instance.
|
|
|
|
// TRANS: Less business/enterprise-oriented language for public sites.
|
|
|
|
_m('BUTTON', 'Send invite')
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$ibs = new InviteButtonSection($this);
|
|
|
|
}
|
|
|
|
$ibs->show();
|
|
|
|
}
|
|
|
|
|
2011-10-20 15:40:39 +01:00
|
|
|
$p = Profile::current();
|
|
|
|
|
2011-09-20 03:01:47 +01:00
|
|
|
if (!common_config('performance', 'high')) {
|
2011-09-20 00:37:58 +01:00
|
|
|
$cloud = new PublicTagCloudSection($this);
|
|
|
|
$cloud->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'))) {
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Message for not logged in users at an invite-only site trying to view the public feed of notices.
|
|
|
|
// TRANS: This message contains Markdown links. Please mind the formatting.
|
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 {
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Message for not logged in users at a closed site trying to view the public feed of notices.
|
|
|
|
// TRANS: This message contains Markdown links. Please mind the formatting.
|
2009-03-19 18:08:49 +00:00
|
|
|
$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
|
|
|
}
|