X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fgroupaction.php;h=2fcec360bcd6f8af0ad1c60422436919e843b9d9;hb=dd8e17a3874aa99063b62b51e9a637a5abb0b923;hp=96d38ebab51fa7498f7a063694799d666c75b609;hpb=dd5da6c9e871037be342b9bb5f49bb8f1d5da099;p=quix0rs-gnu-social.git diff --git a/lib/groupaction.php b/lib/groupaction.php index 96d38ebab5..2fcec360bc 100644 --- a/lib/groupaction.php +++ b/lib/groupaction.php @@ -27,9 +27,7 @@ * @link http://status.net/ */ -if (!defined('STATUSNET') && !defined('LACONICA')) { - exit(1); -} +if (!defined('GNUSOCIAL')) { exit(1); } define('MEMBERS_PER_SECTION', 27); @@ -41,61 +39,54 @@ define('MEMBERS_PER_SECTION', 27); * @author Zach Copley * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ - * */ -class GroupAction extends Action +class GroupAction extends ShowstreamAction { protected $group; - function prepare($args) + protected function doPreparation() { - parent::prepare($args); - $nickname_arg = $this->arg('nickname'); $nickname = common_canonical_nickname($nickname_arg); // Permanent redirect on non-canonical nickname - if ($nickname_arg != $nickname) { + if ($nickname_arg !== $nickname) { $args = array('nickname' => $nickname); if ($this->page != 1) { $args['page'] = $this->page; } - common_redirect(common_local_url('showgroup', $args), 301); - return false; + common_redirect(common_local_url($this->getActionName(), $args), 301); } if (!$nickname) { // TRANS: Client error displayed if no nickname argument was given requesting a group page. $this->clientError(_('No nickname.'), 404); - return false; } - $local = Local_group::staticGet('nickname', $nickname); + $local = Local_group::getKV('nickname', $nickname); if (!$local) { - $alias = Group_alias::staticGet('alias', $nickname); + $alias = Group_alias::getKV('alias', $nickname); if ($alias) { $args = array('id' => $alias->group_id); if ($this->page != 1) { $args['page'] = $this->page; } common_redirect(common_local_url('groupbyid', $args), 301); - return false; } else { common_log(LOG_NOTICE, "Couldn't find local group for nickname '$nickname'"); // TRANS: Client error displayed if no remote group with a given name was found requesting group page. - $this->clientError(_('No such group.'), 404); - return false; + throw new ClientException(_('No such group.'), 404); } } - $this->group = User_group::staticGet('id', $local->group_id); + $this->group = User_group::getKV('id', $local->group_id); + $this->target = $this->group->getProfile(); - if (!$this->group) { - // TRANS: Client error displayed if no local group with a given name was found requesting group page. - $this->clientError(_('No such group.'), 404); - return false; + if (!$this->group instanceof User_group) { + // TRANS: Client error displayed if no local group with a given name was found requesting group page. + throw new ClientException(_('No such group.'), 404); } } @@ -105,19 +96,6 @@ class GroupAction extends Action $block->show(); } - /** - * Local menu - * - * @return void - */ - - function showObjectNav() - { - $nav = new GroupNav($this, $this->group); - $nav->show(); - } - - /** * Fill in the sidebar. * @@ -126,10 +104,12 @@ class GroupAction extends Action function showSections() { $this->showMembers(); - $this->showStatistics(); + if ($this->scoped instanceof Profile && $this->scoped->isAdmin($this->group)) { + $this->showPending(); + $this->showBlocked(); + } + $this->showAdmins(); - $cloud = new GroupTagCloudSection($this, $this->group); - $cloud->show(); } /** @@ -149,9 +129,18 @@ class GroupAction extends Action 'class' => 'section')); if (Event::handle('StartShowGroupMembersMiniList', array($this))) { + $this->elementStart('h2'); - // TRANS: Header for mini list of group members on a group page (h2). - $this->element('h2', null, _('Members')); + $this->element('a', array('href' => common_local_url('groupmembers', array('nickname' => + $this->group->nickname))), + // TRANS: Header for mini list of group members on a group page (h2). + _('Members')); + + $this->text(' '); + + $this->text($this->group->getMemberCount()); + + $this->elementEnd('h2'); $gmml = new GroupMembersMiniList($member, $this); $cnt = $gmml->show(); @@ -175,118 +164,120 @@ class GroupAction extends Action $this->elementEnd('div'); } - /** - * Show list of admins - * - * @return void - */ - function showAdmins() + function showPending() { - $adminSection = new GroupAdminSection($this, $this->group); - $adminSection->show(); - } + if ($this->group->join_policy != User_group::JOIN_POLICY_MODERATE) { + return; + } - /** - * Show some statistics - * - * @return void - */ - function showStatistics() - { - $this->elementStart('div', array('id' => 'entity_statistics', + $pending = $this->group->getQueueCount(); + + if (!$pending) { + return; + } + + $request = $this->group->getRequests(0, MEMBERS_PER_SECTION); + + if (!$request) { + return; + } + + $this->elementStart('div', array('id' => 'entity_pending', 'class' => 'section')); - // TRANS: Header for group statistics on a group page (h2). - $this->element('h2', null, _('Statistics')); + if (Event::handle('StartShowGroupPendingMiniList', array($this))) { - $this->elementStart('dl'); + $this->elementStart('h2'); - // TRANS: Label for group creation date. - $this->element('dt', null, _m('LABEL','Created')); - $this->element('dd', 'entity_created', date('j M Y', - strtotime($this->group->created))); - // @todo FIXME: i18n issue. This label gets a colon added from somewhere. Should be part of the message. - // TRANS: Label for member count in statistics on group page. - $this->element('dt', null, _m('LABEL','Members')); - $this->element('dd', null, $this->group->getMemberCount()); - $this->elementEnd('dl'); + $this->element('a', array('href' => common_local_url('groupqueue', array('nickname' => + $this->group->nickname))), + // TRANS: Header for mini list of users with a pending membership request on a group page (h2). + _('Pending')); - $this->elementEnd('div'); - } + $this->text(' '); + $this->text($pending); - function noticeFormOptions() - { - $options = parent::noticeFormOptions(); - $cur = common_current_user(); + $this->elementEnd('h2'); - if (!empty($cur) && $cur->isMember($this->group)) { - $options['to_group'] = $this->group; + $gmml = new ProfileMiniList($request, $this); + $gmml->show(); + + Event::handle('EndShowGroupPendingMiniList', array($this)); } - return $options; + $this->elementEnd('div'); } -} -class GroupAdminSection extends ProfileSection -{ - var $group; - - function __construct($out, $group) + function showBlocked() { - parent::__construct($out); - $this->group = $group; - } + $blocked = $this->group->getBlocked(0, MEMBERS_PER_SECTION); - function getProfiles() - { - return $this->group->getAdmins(); - } + $this->elementStart('div', array('id' => 'entity_blocked', + 'class' => 'section')); - function title() - { - // TRANS: Title for list of group administrators on a group page. - return _m('TITLE','Admins'); - } + if (Event::handle('StartShowGroupBlockedMiniList', array($this))) { - function divId() - { - return 'group_admins'; - } + $this->elementStart('h2'); - function moreUrl() - { - return null; + $this->element('a', array('href' => common_local_url('blockedfromgroup', array('nickname' => + $this->group->nickname))), + // TRANS: Header for mini list of users that are blocked in a group page (h2). + _('Blocked')); + + $this->text(' '); + + $this->text($this->group->getBlockedCount()); + + $this->elementEnd('h2'); + + $gmml = new GroupBlockedMiniList($blocked, $this); + $cnt = $gmml->show(); + if ($cnt == 0) { + // TRANS: Description for mini list of group members on a group page when the group has no members. + $this->element('p', null, _('(None)')); + } + + // @todo FIXME: Should be shown if a group has more than 27 members, but I do not see it displayed at + // for example http://identi.ca/group/statusnet. Broken? + if ($cnt > MEMBERS_PER_SECTION) { + $this->element('a', array('href' => common_local_url('blockedfromgroup', + array('nickname' => $this->group->nickname))), + // TRANS: Link to all group members from mini list of group members if group has more than n members. + _('All members')); + } + + Event::handle('EndShowGroupBlockedMiniList', array($this)); + } + + $this->elementEnd('div'); } -} -class GroupMembersMiniList extends ProfileMiniList -{ - function newListItem($profile) + /** + * Show list of admins + * + * @return void + */ + function showAdmins() { - return new GroupMembersMiniListItem($profile, $this->action); + $adminSection = new GroupAdminSection($this, $this->group); + $adminSection->show(); } -} -class GroupMembersMiniListItem extends ProfileMiniListItem -{ - function linkAttributes() + function noticeFormOptions() { - $aAttrs = parent::linkAttributes(); + $options = parent::noticeFormOptions(); + $cur = common_current_user(); - if (common_config('nofollow', 'members')) { - $aAttrs['rel'] .= ' nofollow'; + if (!empty($cur) && $cur->isMember($this->group)) { + $options['to_group'] = $this->group; } - return $aAttrs; + return $options; } -} -class ThreadingGroupNoticeStream extends ThreadingNoticeStream -{ - function __construct($group, $profile) + function getGroup() { - parent::__construct(new GroupNoticeStream($group, $profile)); + return $this->group; } } -