ApiTimelineNetworkPublicAction available now
Feeds added in NetworkpublicAction too.
This commit is contained in:
parent
14e22b2985
commit
4c14794cae
16
actions/apitimelinenetworkpublic.php
Normal file
16
actions/apitimelinenetworkpublic.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
if (!defined('GNUSOCIAL')) { exit(1); }
|
||||
|
||||
class ApiTimelineNetworkPublicAction extends ApiTimelinePublicAction
|
||||
{
|
||||
function title()
|
||||
{
|
||||
return sprintf(_("%s network public timeline"), common_config('site', 'name'));
|
||||
}
|
||||
|
||||
protected function getStream()
|
||||
{
|
||||
return new NetworkPublicNoticeStream($this->scoped);
|
||||
}
|
||||
}
|
|
@ -154,7 +154,7 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction
|
|||
* @return boolean success flag
|
||||
*
|
||||
*/
|
||||
function prepare($args)
|
||||
protected function prepare(array $args=array())
|
||||
{
|
||||
parent::prepare($args);
|
||||
|
||||
|
@ -168,16 +168,20 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction
|
|||
*
|
||||
* Just show the notices
|
||||
*
|
||||
* @param array $args $_REQUEST data (unused)
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function handle($args)
|
||||
protected function handle()
|
||||
{
|
||||
parent::handle($args);
|
||||
parent::handle();
|
||||
$this->showTimeline();
|
||||
}
|
||||
|
||||
function title()
|
||||
{
|
||||
// TRANS: Title for site timeline. %s is the GNU social sitename.
|
||||
return sprintf(_("%s public timeline"), common_config('site', 'name'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the timeline of notices
|
||||
*
|
||||
|
@ -185,16 +189,16 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction
|
|||
*/
|
||||
function showTimeline()
|
||||
{
|
||||
$sitename = common_config('site', 'name');
|
||||
$nonapi_action = substr($this->action, strlen('apitimeline')); // Just so we don't need to set this explicitly
|
||||
|
||||
$sitelogo = (common_config('site', 'logo')) ? common_config('site', 'logo') : Theme::path('logo.png');
|
||||
// TRANS: Title for site timeline. %s is the StatusNet sitename.
|
||||
$title = sprintf(_("%s public timeline"), $sitename);
|
||||
$title = $this->title();
|
||||
$taguribase = TagURI::base();
|
||||
$id = "tag:$taguribase:PublicTimeline";
|
||||
$link = common_local_url('public');
|
||||
$id = "tag:$taguribase:" . ucfirst($nonapi_action) . 'Timeline'; // Public or Networkpublic probably
|
||||
$link = common_local_url($nonapi_action);
|
||||
$self = $this->getSelfUri();
|
||||
// TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
|
||||
$subtitle = sprintf(_("%s updates from everyone!"), $sitename);
|
||||
// TRANS: Subtitle for site timeline. %s is the GNU social sitename.
|
||||
$subtitle = sprintf(_("%s updates from everyone!"), common_config('site', 'name'));
|
||||
|
||||
switch($this->format) {
|
||||
case 'xml':
|
||||
|
@ -222,7 +226,7 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction
|
|||
$atom->setSubtitle($subtitle);
|
||||
$atom->setLogo($sitelogo);
|
||||
$atom->setUpdated('now');
|
||||
$atom->addLink(common_local_url('public'));
|
||||
$atom->addLink(common_local_url($nonapi_action));
|
||||
$atom->setSelfLink($self);
|
||||
$atom->addEntryFromNotices($this->notices);
|
||||
|
||||
|
@ -256,9 +260,7 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction
|
|||
{
|
||||
$notices = array();
|
||||
|
||||
$profile = ($this->auth_user) ? $this->auth_user->getProfile() : null;
|
||||
|
||||
$stream = new PublicNoticeStream($profile);
|
||||
$stream = $this->getStream();
|
||||
|
||||
$notice = $stream->getNotices(($this->page - 1) * $this->count,
|
||||
$this->count,
|
||||
|
@ -272,6 +274,11 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction
|
|||
return $notices;
|
||||
}
|
||||
|
||||
protected function getStream()
|
||||
{
|
||||
return new PublicNoticeStream($this->scoped);
|
||||
}
|
||||
|
||||
/**
|
||||
* Is this action read only?
|
||||
*
|
||||
|
|
|
@ -56,11 +56,25 @@ class NetworkpublicAction extends PublicAction
|
|||
// Network public tag cloud?
|
||||
}
|
||||
|
||||
/**
|
||||
* FIXME: Network public feed! Get a template from PublicAction
|
||||
*/
|
||||
function getFeeds()
|
||||
{
|
||||
return array();
|
||||
return array(new Feed(Feed::JSON,
|
||||
common_local_url('ApiTimelineNetworkPublic',
|
||||
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('ApiTimelineNetworkPublic',
|
||||
array('format' => 'rss')),
|
||||
// TRANS: Link description for public timeline feed.
|
||||
_('Public Timeline Feed (RSS 2.0)')),
|
||||
new Feed(Feed::ATOM,
|
||||
common_local_url('ApiTimelineNetworkPublic',
|
||||
array('format' => 'atom')),
|
||||
// TRANS: Link description for public timeline feed.
|
||||
_('Public Timeline Feed (Atom)')));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -334,6 +334,11 @@ class Router
|
|||
array('action' => 'ApiTimelinePublic',
|
||||
'format' => '(xml|json|rss|atom|as)'));
|
||||
|
||||
// this is not part of the Twitter API. Also may require authentication depending on server config!
|
||||
$m->connect('api/statuses/networkpublic_timeline.:format',
|
||||
array('action' => 'ApiTimelineNetworkPublic',
|
||||
'format' => '(xml|json|rss|atom|as)'));
|
||||
|
||||
$m->connect('api/statuses/friends_timeline/:id.:format',
|
||||
array('action' => 'ApiTimelineFriends',
|
||||
'id' => Nickname::INPUT_FMT,
|
||||
|
|
Loading…
Reference in New Issue
Block a user