X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fgrouprss.php;h=14d85d89cd9e5c06a8ceed43e85011289a11620e;hb=d45457e4a9495b0c1a134182c01e407a4ae41ab8;hp=0f54fc435b8584c70d2a6285b42a66558b64896f;hpb=8b46624d19b7d95045c355f116e5d6ca66776e1c;p=quix0rs-gnu-social.git diff --git a/actions/grouprss.php b/actions/grouprss.php index 0f54fc435b..14d85d89cd 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,10 +41,10 @@ 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? @@ -60,18 +56,8 @@ class groupRssAction extends Rss10Action 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; }