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
|
* @return boolean success flag
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
function prepare($args)
|
protected function prepare(array $args=array())
|
||||||
{
|
{
|
||||||
parent::prepare($args);
|
parent::prepare($args);
|
||||||
|
|
||||||
|
@ -168,16 +168,20 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction
|
||||||
*
|
*
|
||||||
* Just show the notices
|
* Just show the notices
|
||||||
*
|
*
|
||||||
* @param array $args $_REQUEST data (unused)
|
|
||||||
*
|
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
function handle($args)
|
protected function handle()
|
||||||
{
|
{
|
||||||
parent::handle($args);
|
parent::handle();
|
||||||
$this->showTimeline();
|
$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
|
* Show the timeline of notices
|
||||||
*
|
*
|
||||||
|
@ -185,16 +189,16 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction
|
||||||
*/
|
*/
|
||||||
function showTimeline()
|
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');
|
$sitelogo = (common_config('site', 'logo')) ? common_config('site', 'logo') : Theme::path('logo.png');
|
||||||
// TRANS: Title for site timeline. %s is the StatusNet sitename.
|
$title = $this->title();
|
||||||
$title = sprintf(_("%s public timeline"), $sitename);
|
|
||||||
$taguribase = TagURI::base();
|
$taguribase = TagURI::base();
|
||||||
$id = "tag:$taguribase:PublicTimeline";
|
$id = "tag:$taguribase:" . ucfirst($nonapi_action) . 'Timeline'; // Public or Networkpublic probably
|
||||||
$link = common_local_url('public');
|
$link = common_local_url($nonapi_action);
|
||||||
$self = $this->getSelfUri();
|
$self = $this->getSelfUri();
|
||||||
// TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
|
// TRANS: Subtitle for site timeline. %s is the GNU social sitename.
|
||||||
$subtitle = sprintf(_("%s updates from everyone!"), $sitename);
|
$subtitle = sprintf(_("%s updates from everyone!"), common_config('site', 'name'));
|
||||||
|
|
||||||
switch($this->format) {
|
switch($this->format) {
|
||||||
case 'xml':
|
case 'xml':
|
||||||
|
@ -222,7 +226,7 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction
|
||||||
$atom->setSubtitle($subtitle);
|
$atom->setSubtitle($subtitle);
|
||||||
$atom->setLogo($sitelogo);
|
$atom->setLogo($sitelogo);
|
||||||
$atom->setUpdated('now');
|
$atom->setUpdated('now');
|
||||||
$atom->addLink(common_local_url('public'));
|
$atom->addLink(common_local_url($nonapi_action));
|
||||||
$atom->setSelfLink($self);
|
$atom->setSelfLink($self);
|
||||||
$atom->addEntryFromNotices($this->notices);
|
$atom->addEntryFromNotices($this->notices);
|
||||||
|
|
||||||
|
@ -256,9 +260,7 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction
|
||||||
{
|
{
|
||||||
$notices = array();
|
$notices = array();
|
||||||
|
|
||||||
$profile = ($this->auth_user) ? $this->auth_user->getProfile() : null;
|
$stream = $this->getStream();
|
||||||
|
|
||||||
$stream = new PublicNoticeStream($profile);
|
|
||||||
|
|
||||||
$notice = $stream->getNotices(($this->page - 1) * $this->count,
|
$notice = $stream->getNotices(($this->page - 1) * $this->count,
|
||||||
$this->count,
|
$this->count,
|
||||||
|
@ -272,6 +274,11 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction
|
||||||
return $notices;
|
return $notices;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function getStream()
|
||||||
|
{
|
||||||
|
return new PublicNoticeStream($this->scoped);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Is this action read only?
|
* Is this action read only?
|
||||||
*
|
*
|
||||||
|
|
|
@ -56,11 +56,25 @@ class NetworkpublicAction extends PublicAction
|
||||||
// Network public tag cloud?
|
// Network public tag cloud?
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* FIXME: Network public feed! Get a template from PublicAction
|
|
||||||
*/
|
|
||||||
function getFeeds()
|
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',
|
array('action' => 'ApiTimelinePublic',
|
||||||
'format' => '(xml|json|rss|atom|as)'));
|
'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',
|
$m->connect('api/statuses/friends_timeline/:id.:format',
|
||||||
array('action' => 'ApiTimelineFriends',
|
array('action' => 'ApiTimelineFriends',
|
||||||
'id' => Nickname::INPUT_FMT,
|
'id' => Nickname::INPUT_FMT,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user