123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377 |
- <?php
- if (!defined('STATUSNET') && !defined('LACONICA')) {
- exit(1);
- }
- define('MEMBERS_PER_SECTION', 27);
- class GroupAction extends Action
- {
- protected $group;
- protected function prepare(array $args=array())
- {
- parent::prepare($args);
- $nickname_arg = $this->arg('nickname');
- $nickname = common_canonical_nickname($nickname_arg);
-
- if ($nickname_arg != $nickname) {
- $args = array('nickname' => $nickname);
- if ($this->page != 1) {
- $args['page'] = $this->page;
- }
- common_redirect(common_local_url('showgroup', $args), 301);
- }
- if (!$nickname) {
-
- $this->clientError(_('No nickname.'), 404);
- }
- $local = Local_group::getKV('nickname', $nickname);
- if (!$local) {
- $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);
- } else {
- common_log(LOG_NOTICE, "Couldn't find local group for nickname '$nickname'");
-
- $this->clientError(_('No such group.'), 404);
- }
- }
- $this->group = User_group::getKV('id', $local->group_id);
- if (!$this->group) {
-
- $this->clientError(_('No such group.'), 404);
- }
- }
- function showProfileBlock()
- {
- $block = new GroupProfileBlock($this, $this->group);
- $block->show();
- }
-
- function showSections()
- {
- $this->showMembers();
- $cur = common_current_user();
- if ($cur && $cur->isAdmin($this->group)) {
- $this->showPending();
- $this->showBlocked();
- }
- $this->showAdmins();
- if (!common_config('performance', 'high')) {
- $cloud = new GroupTagCloudSection($this, $this->group);
- $cloud->show();
- }
- }
-
- function showMembers()
- {
- $member = $this->group->getMembers(0, MEMBERS_PER_SECTION);
- if (!$member) {
- return;
- }
- $this->elementStart('div', array('id' => 'entity_members',
- 'class' => 'section'));
- if (Event::handle('StartShowGroupMembersMiniList', array($this))) {
- $this->elementStart('h2');
- $this->element('a', array('href' => common_local_url('groupmembers', array('nickname' =>
- $this->group->nickname))),
-
- _('Members'));
- $this->text(' ');
- $this->text($this->group->getMemberCount());
- $this->elementEnd('h2');
- $gmml = new GroupMembersMiniList($member, $this);
- $cnt = $gmml->show();
- if ($cnt == 0) {
-
- $this->element('p', null, _('(None)'));
- }
-
-
- if ($cnt > MEMBERS_PER_SECTION) {
- $this->element('a', array('href' => common_local_url('groupmembers',
- array('nickname' => $this->group->nickname))),
-
- _('All members'));
- }
- Event::handle('EndShowGroupMembersMiniList', array($this));
- }
- $this->elementEnd('div');
- }
- function showPending()
- {
- if ($this->group->join_policy != User_group::JOIN_POLICY_MODERATE) {
- return;
- }
- $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'));
- if (Event::handle('StartShowGroupPendingMiniList', array($this))) {
- $this->elementStart('h2');
- $this->element('a', array('href' => common_local_url('groupqueue', array('nickname' =>
- $this->group->nickname))),
-
- _('Pending'));
- $this->text(' ');
- $this->text($pending);
- $this->elementEnd('h2');
- $gmml = new ProfileMiniList($request, $this);
- $gmml->show();
- Event::handle('EndShowGroupPendingMiniList', array($this));
- }
- $this->elementEnd('div');
- }
- function showBlocked()
- {
- $blocked = $this->group->getBlocked(0, MEMBERS_PER_SECTION);
- $this->elementStart('div', array('id' => 'entity_blocked',
- 'class' => 'section'));
- if (Event::handle('StartShowGroupBlockedMiniList', array($this))) {
- $this->elementStart('h2');
- $this->element('a', array('href' => common_local_url('blockedfromgroup', array('nickname' =>
- $this->group->nickname))),
-
- _('Blocked'));
- $this->text(' ');
- $this->text($this->group->getBlockedCount());
- $this->elementEnd('h2');
- $gmml = new GroupBlockedMiniList($blocked, $this);
- $cnt = $gmml->show();
- if ($cnt == 0) {
-
- $this->element('p', null, _('(None)'));
- }
-
-
- if ($cnt > MEMBERS_PER_SECTION) {
- $this->element('a', array('href' => common_local_url('blockedfromgroup',
- array('nickname' => $this->group->nickname))),
-
- _('All members'));
- }
- Event::handle('EndShowGroupBlockedMiniList', array($this));
- }
- $this->elementEnd('div');
- }
-
- function showAdmins()
- {
- $adminSection = new GroupAdminSection($this, $this->group);
- $adminSection->show();
- }
- function noticeFormOptions()
- {
- $options = parent::noticeFormOptions();
- $cur = common_current_user();
- if (!empty($cur) && $cur->isMember($this->group)) {
- $options['to_group'] = $this->group;
- }
- return $options;
- }
- function getGroup()
- {
- return $this->group;
- }
- }
- class GroupAdminSection extends ProfileSection
- {
- var $group;
- function __construct($out, $group)
- {
- parent::__construct($out);
- $this->group = $group;
- }
- function getProfiles()
- {
- return $this->group->getAdmins();
- }
- function title()
- {
-
- return _m('TITLE','Admins');
- }
- function divId()
- {
- return 'group_admins';
- }
- function moreUrl()
- {
- return null;
- }
- }
- class GroupMembersMiniList extends ProfileMiniList
- {
- function newListItem($profile)
- {
- return new GroupMembersMiniListItem($profile, $this->action);
- }
- }
- class GroupMembersMiniListItem extends ProfileMiniListItem
- {
- function linkAttributes()
- {
- $aAttrs = parent::linkAttributes();
- if (common_config('nofollow', 'members')) {
- $aAttrs['rel'] .= ' nofollow';
- }
- return $aAttrs;
- }
- }
- class GroupBlockedMiniList extends ProfileMiniList
- {
- function newListItem($profile)
- {
- return new GroupBlockedMiniListItem($profile, $this->action);
- }
- }
- class GroupBlockedMiniListItem extends ProfileMiniListItem
- {
- function linkAttributes()
- {
- $aAttrs = parent::linkAttributes();
- if (common_config('nofollow', 'members')) {
- $aAttrs['rel'] .= ' nofollow';
- }
- return $aAttrs;
- }
- }
- class ThreadingGroupNoticeStream extends ThreadingNoticeStream
- {
- function __construct($group, $profile)
- {
- parent::__construct(new GroupNoticeStream($group, $profile));
- }
- }
|