2008-05-08 22:16:04 -04:00
|
|
|
<?php
|
2009-01-13 23:48:05 -05:00
|
|
|
/**
|
2009-08-25 18:12:20 -04:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2008-05-20 15:14:12 -04:00
|
|
|
*
|
2009-01-13 23:48:05 -05: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 15:26:48 -04: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 15:14:12 -04:00
|
|
|
*
|
2008-05-14 15:26:48 -04: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 15:14:12 -04:00
|
|
|
*
|
2008-05-14 15:26:48 -04: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-13 23:48:05 -05:00
|
|
|
*
|
|
|
|
* @category Public
|
2009-08-25 18:12:20 -04:00
|
|
|
* @package StatusNet
|
2009-08-25 18:19:04 -04:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-08-25 18:12:20 -04:00
|
|
|
* @copyright 2008-2009 StatusNet, Inc.
|
2009-01-13 23:48:05 -05:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 18:16:46 -04:00
|
|
|
* @link http://status.net/
|
2008-05-14 15:26:48 -04:00
|
|
|
*/
|
|
|
|
|
2014-06-28 16:09:46 +02:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2009-01-15 20:13:11 +00:00
|
|
|
|
2009-01-13 23:48:05 -05:00
|
|
|
/**
|
|
|
|
* Action for displaying the public stream
|
|
|
|
*
|
|
|
|
* @category Public
|
2009-08-25 18:12:20 -04:00
|
|
|
* @package StatusNet
|
2009-08-25 18:19:04 -04:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-01-13 23:48:05 -05:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 18:16:46 -04:00
|
|
|
* @link http://status.net/
|
2009-01-13 23:48:05 -05:00
|
|
|
*
|
|
|
|
* @see PublicrssAction
|
|
|
|
*/
|
2015-06-04 00:50:08 +02:00
|
|
|
class PublicAction extends SitestreamAction
|
2008-12-23 14:49:23 -05:00
|
|
|
{
|
2015-01-21 23:45:49 +01: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-13 23:48:05 -05:00
|
|
|
/**
|
|
|
|
* Title of the page
|
|
|
|
*
|
|
|
|
* @return page title, including page number if over 1
|
|
|
|
*/
|
|
|
|
function title()
|
2008-12-23 14:33:23 -05:00
|
|
|
{
|
2009-01-13 23:48:05 -05:00
|
|
|
if ($this->page > 1) {
|
2011-03-11 17:07:27 +01:00
|
|
|
// TRANS: Title for all public timeline pages but the first.
|
|
|
|
// TRANS: %d is the page number.
|
2009-01-13 23:48:05 -05:00
|
|
|
return sprintf(_('Public timeline, page %d'), $this->page);
|
2008-12-23 14:19:07 -05:00
|
|
|
} else {
|
2011-03-11 17:07:27 +01:00
|
|
|
// TRANS: Title for the first public timeline page.
|
2009-01-13 23:48:05 -05:00
|
|
|
return _('Public timeline');
|
2008-12-23 14:19:07 -05:00
|
|
|
}
|
|
|
|
}
|
2010-01-31 15:16:59 -05:00
|
|
|
|
2009-01-22 20:08:16 +01:00
|
|
|
function showSections()
|
|
|
|
{
|
2011-07-05 17:27:11 -07:00
|
|
|
// Show invite button, as long as site isn't closed, and
|
|
|
|
// we have a logged in user.
|
2012-10-17 10:09:40 -04:00
|
|
|
if (common_config('invite', 'enabled') && !common_config('site', 'closed') && common_logged_in()) {
|
2011-07-05 17:27:11 -07: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();
|
|
|
|
}
|
|
|
|
|
2009-01-22 21:42:34 +00:00
|
|
|
$feat = new FeaturedUsersSection($this);
|
|
|
|
$feat->show();
|
2009-01-22 20:08:16 +01:00
|
|
|
}
|
2009-01-23 04:06:03 +01:00
|
|
|
|
2015-06-04 00:50:08 +02:00
|
|
|
/**
|
|
|
|
* Output <head> elements for RSS and Atom feeds
|
|
|
|
*
|
2019-05-06 23:58:45 +01:00
|
|
|
* @return array
|
2015-06-04 00:50:08 +02:00
|
|
|
*/
|
|
|
|
function getFeeds()
|
2009-01-23 04:06:03 +01:00
|
|
|
{
|
2019-05-03 13:26:06 +01:00
|
|
|
return [
|
|
|
|
new Feed(Feed::ATOM,
|
|
|
|
common_local_url('ApiTimelinePublic',
|
|
|
|
array('format' => 'atom')),
|
|
|
|
// TRANS: Link description for public timeline feed.
|
|
|
|
_('Public Timeline Feed (Atom)')
|
|
|
|
),
|
|
|
|
new Feed(Feed::JSON,
|
|
|
|
common_local_url('ApiTimelinePublic',
|
|
|
|
array('format' => 'as')),
|
|
|
|
// TRANS: Link description for public timeline feed.
|
|
|
|
_('Public Timeline Feed (Activity Streams JSON)')
|
|
|
|
),
|
|
|
|
new Feed(Feed::RSS1, common_local_url('publicrss'),
|
|
|
|
// TRANS: Link description for public timeline feed.
|
|
|
|
_('Public Timeline Feed (RSS 1.0)')
|
|
|
|
),
|
|
|
|
new Feed(Feed::RSS2,
|
|
|
|
common_local_url('ApiTimelinePublic',
|
|
|
|
array('format' => 'rss')),
|
|
|
|
// TRANS: Link description for public timeline feed.
|
|
|
|
_('Public Timeline Feed (RSS 2.0)')
|
|
|
|
),
|
|
|
|
];
|
2009-01-23 04:06:03 +01:00
|
|
|
}
|
2008-12-05 17:14:02 -05:00
|
|
|
}
|