X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fpublicrss.php;h=5dcff3ba3d2f973c11118c90ae7e20c7ad9c1678;hb=34ce2f6cfaa5e52f330b4afa10e326e7dd27b296;hp=0c5d061cb65614148b6711eb0c2b60e24f1c25c9;hpb=b4b992bca77d34b8643910e8d590b5be7fede94b;p=quix0rs-gnu-social.git diff --git a/actions/publicrss.php b/actions/publicrss.php index 0c5d061cb6..5dcff3ba3d 100644 --- a/actions/publicrss.php +++ b/actions/publicrss.php @@ -1,5 +1,4 @@ . */ -if (!defined('STATUSNET') && !defined('LACONICA')) { - exit(1); -} - -require_once INSTALLDIR.'/lib/rssaction.php'; +if (!defined('GNUSOCIAL')) { exit(1); } /** * RSS feed for public timeline. @@ -49,30 +44,6 @@ require_once INSTALLDIR.'/lib/rssaction.php'; */ class PublicrssAction extends Rss10Action { - /** - * Read arguments and initialize members - * - * @param array $args Arguments from $_REQUEST - * @return boolean success - */ - - function prepare($args) - { - parent::prepare($args); - $this->notices = $this->getNotices($this->limit); - return true; - } - - /** - * Initialization. - * - * @return boolean true - */ - function init() - { - return true; - } - /** * Get notices * @@ -80,15 +51,10 @@ class PublicrssAction extends Rss10Action * * @return array notices */ - function getNotices($limit=0) + protected function getNotices() { - $notices = array(); - $notice = Notice::publicStream(0, ($limit == 0) ? 48 : $limit); - while ($notice->fetch()) { - $notices[] = clone($notice); - } - - return $notices; + $stream = Notice::publicStream(0, $this->limit); + return $stream->fetchAll(); } /** @@ -98,11 +64,14 @@ class PublicrssAction extends Rss10Action */ function getChannel() { + $sitename = common_config('site', 'name'); $c = array( - 'url' => common_local_url('publicrss') - , 'title' => sprintf(_('%s public timeline'), common_config('site', 'name')) - , 'link' => common_local_url('public') - , 'description' => sprintf(_('%s updates from everyone!'), common_config('site', 'name'))); + 'url' => common_local_url('publicrss'), + // TRANS: Public RSS feed title. %s is the StatusNet site name. + 'title' => sprintf(_('%s public timeline'), $sitename), + 'link' => common_local_url('public'), + // TRANS: Public RSS feed description. %s is the StatusNet site name. + 'description' => sprintf(_('%s updates from everyone.'), $sitename)); return $c; } @@ -110,7 +79,7 @@ class PublicrssAction extends Rss10Action * Get image. * * @return nothing - */ + */ function getImage() { // nop @@ -121,4 +90,3 @@ class PublicrssAction extends Rss10Action return true; } } -