X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fgrouprss.php;h=166118b4ea7c76d0c28197d3591049d8da5291cf;hb=d6b28c64830f632bb2f4b6f3c9369b9e56ad217a;hp=0f54fc435b8584c70d2a6285b42a66558b64896f;hpb=cb183359e23ae7a5cfb483fa06c6c4b7a8b05fff;p=quix0rs-gnu-social.git diff --git a/actions/grouprss.php b/actions/grouprss.php index 0f54fc435b..166118b4ea 100644 --- a/actions/grouprss.php +++ b/actions/grouprss.php @@ -28,11 +28,7 @@ * @link http://status.net/ */ -if (!defined('STATUSNET') && !defined('LACONICA')) { - exit(1); -} - -require_once INSTALLDIR.'/lib/rssaction.php'; +if (!defined('GNUSOCIAL')) { exit(1); } define('MEMBERS_PER_SECTION', 27); @@ -45,33 +41,23 @@ define('MEMBERS_PER_SECTION', 27); * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ -class groupRssAction extends Rss10Action +class GroupRssAction extends TargetedRss10Action { /** group we're viewing. */ - var $group = null; + protected $group = null; /** * Is this page read-only? * * @return boolean true */ - function isReadOnly($args) + function isReadOnly(array $args=array()) { return true; } - /** - * Prepare the action - * - * Reads and validates arguments and instantiates the attributes. - * - * @param array $args $_REQUEST args - * - * @return boolean success flag - */ - function prepare($args) + protected function doStreamPreparation() { - parent::prepare($args); $nickname_arg = $this->arg('nickname'); $nickname = common_canonical_nickname($nickname_arg); @@ -81,65 +67,41 @@ class groupRssAction extends Rss10Action if ($nickname_arg != $nickname) { $args = array('nickname' => $nickname); common_redirect(common_local_url('showgroup', $args), 301); - return false; } if (!$nickname) { // TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. $this->clientError(_('No nickname.'), 404); - return false; } - $local = Local_group::staticGet('nickname', $nickname); + $local = Local_group::getKV('nickname', $nickname); - if (!$local) { + if (!$local instanceof Local_group) { // TRANS: Client error displayed when requesting a group RSS feed for group that does not exist. $this->clientError(_('No such group.'), 404); - return false; - } - - $this->group = User_group::staticGet('id', $local->group_id); - - if (!$this->group) { - // TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group. - $this->clientError(_('No such group.'), 404); - return false; } - $this->notices = $this->getNotices($this->limit); - return true; + $this->group = $local->getGroup(); + $this->target = $this->group->getProfile(); } - function getNotices($limit=0) + protected function getNotices() { - $group = $this->group; - - if (is_null($group)) { - return null; - } - - $notices = array(); - $notice = $group->getNotices(0, ($limit == 0) ? NOTICES_PER_PAGE : $limit); - - while ($notice->fetch()) { - $notices[] = clone($notice); - } - - return $notices; + $stream = $this->group->getNotices(0, $this->limit); + return $stream->fetchAll(); } function getChannel() { - $group = $this->group; $c = array('url' => common_local_url('grouprss', array('nickname' => - $group->nickname)), + $this->target->getNickname())), // TRANS: Message is used as link title. %s is a user nickname. - 'title' => sprintf(_('%s timeline'), $group->nickname), - 'link' => common_local_url('showgroup', array('nickname' => $group->nickname)), + 'title' => sprintf(_('%s timeline'), $this->target->getNickname()), + 'link' => common_local_url('showgroup', array('nickname' => $this->target->getNickname())), // TRANS: Message is used as link description. %1$s is a group name, %2$s is a site name. 'description' => sprintf(_('Updates from members of %1$s on %2$s!'), - $group->nickname, common_config('site', 'name'))); + $this->target->getNickname(), common_config('site', 'name'))); return $c; }