X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fshowgroup.php;h=9d4051bd89dd03db8b39d38ca2629b88f018629c;hb=5eb6c0d73132a4fb408aca8ce88e4f75e1e79997;hp=21256294f34e9b65551573536b5d0dd556881959;hpb=59a0b2a82da418f688faf182407146d9e7a7af7a;p=quix0rs-gnu-social.git diff --git a/actions/showgroup.php b/actions/showgroup.php index 21256294f3..9d4051bd89 100644 --- a/actions/showgroup.php +++ b/actions/showgroup.php @@ -23,7 +23,7 @@ * @package StatusNet * @author Evan Prodromou * @author Sarven Capadisli - * @copyright 2008-2009 StatusNet, Inc. + * @copyright 2008-2011 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ @@ -35,8 +35,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { require_once INSTALLDIR.'/lib/noticelist.php'; require_once INSTALLDIR.'/lib/feedlist.php'; -define('MEMBERS_PER_SECTION', 27); - /** * Group main page * @@ -46,10 +44,12 @@ 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 ShowgroupAction extends GroupDesignAction +class ShowgroupAction extends GroupAction { /** page we're viewing. */ var $page = null; + var $userProfile = null; + var $notice = null; /** * Is this page read-only? @@ -97,52 +97,13 @@ class ShowgroupAction extends GroupDesignAction $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1; - $nickname_arg = $this->arg('nickname'); - $nickname = common_canonical_nickname($nickname_arg); - - // Permanent redirect on non-canonical 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; - } - - if (!$nickname) { - // TRANS: Client error displayed if no nickname argument was given requesting a group page. - $this->clientError(_('No nickname.'), 404); - return false; - } + $this->userProfile = Profile::current(); - $local = Local_group::staticGet('nickname', $nickname); + $stream = new ThreadingGroupNoticeStream($this->group, $this->userProfile); - if (!$local) { - $alias = Group_alias::staticGet('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; - } - } - - $this->group = User_group::staticGet('id', $local->group_id); - - 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; - } + $this->notice = $stream->getNotices(($this->page-1)*NOTICES_PER_PAGE, + NOTICES_PER_PAGE + 1); common_set_returnto($this->selfUrl()); @@ -162,17 +123,6 @@ class ShowgroupAction extends GroupDesignAction $this->showPage(); } - /** - * Local menu - * - * @return void - */ - function showLocalNav() - { - $nav = new GroupNav($this, $this->group); - $nav->show(); - } - /** * Show the page content * @@ -180,8 +130,6 @@ class ShowgroupAction extends GroupDesignAction */ function showContent() { - $this->showGroupProfile(); - $this->showGroupActions(); $this->showGroupNotices(); } @@ -192,10 +140,7 @@ class ShowgroupAction extends GroupDesignAction */ function showGroupNotices() { - $notice = $this->group->getNotices(($this->page-1)*NOTICES_PER_PAGE, - NOTICES_PER_PAGE + 1); - - $nl = new NoticeList($notice, $this); + $nl = new ThreadedNoticeList($this->notice, $this, $this->userProfile); $cnt = $nl->show(); $this->pagination($this->page > 1, @@ -205,121 +150,6 @@ class ShowgroupAction extends GroupDesignAction array('nickname' => $this->group->nickname)); } - /** - * Show the group profile - * - * Information about the group - * - * @return void - */ - function showGroupProfile() - { - $this->elementStart('div', array('id' => 'i', - 'class' => 'entity_profile vcard author')); - - $logo = ($this->group->homepage_logo) ? - $this->group->homepage_logo : User_group::defaultLogo(AVATAR_PROFILE_SIZE); - - $this->element('img', array('src' => $logo, - 'class' => 'photo avatar entity_depiction', - 'width' => AVATAR_PROFILE_SIZE, - 'height' => AVATAR_PROFILE_SIZE, - 'alt' => $this->group->nickname)); - - $hasFN = ($this->group->fullname) ? 'entity_nickname nickname url uid' : - 'entity_nickname fn org nickname url uid'; - $this->element('a', array('href' => $this->group->homeUrl(), - 'rel' => 'me', 'class' => $hasFN), - $this->group->nickname); - - if ($this->group->fullname) { - $this->element('div', 'entity_fn fn org', $this->group->fullname); - } - - if ($this->group->location) { - $this->element('div', 'entity_location label', $this->group->location); - } - - if ($this->group->homepage) { - $this->element('a', array('href' => $this->group->homepage, - 'rel' => 'me', - 'class' => 'url entity_url'), - $this->group->homepage); - } - - if ($this->group->description) { - $this->element('div', 'note entity_note', $this->group->description); - } - - if (common_config('group', 'maxaliases') > 0) { - $aliases = $this->group->getAliases(); - - if (!empty($aliases)) { - $this->element('div', - 'aliases entity_aliases', - implode(' ', $aliases)); - } - - if ($this->group->description) { - $this->elementStart('dl', 'entity_note'); - // TRANS: Label for group description or group note (dt). Text hidden by default. - $this->element('dt', null, _('Note')); - $this->element('dd', 'note', $this->group->description); - $this->elementEnd('dl'); - } - - if (common_config('group', 'maxaliases') > 0) { - $aliases = $this->group->getAliases(); - - if (!empty($aliases)) { - $this->elementStart('dl', 'entity_aliases'); - // TRANS: Label for group aliases (dt). Text hidden by default. - $this->element('dt', null, _('Aliases')); - $this->element('dd', 'aliases', implode(' ', $aliases)); - $this->elementEnd('dl'); - } - } - - Event::handle('EndGroupProfileElements', array($this, $this->group)); - } - - $this->elementEnd('div'); - } - - function showGroupActions() - { - $cur = common_current_user(); - $this->elementStart('div', 'entity_actions'); - // TRANS: Group actions header (h2). Text hidden by default. - $this->element('h2', null, _('Group actions')); - $this->elementStart('ul'); - if (Event::handle('StartGroupActionsList', array($this, $this->group))) { - $this->elementStart('li', 'entity_subscribe'); - if (Event::handle('StartGroupSubscribe', array($this, $this->group))) { - if ($cur) { - if ($cur->isMember($this->group)) { - $lf = new LeaveForm($this, $this->group); - $lf->show(); - } else if (!Group_block::isBlocked($this->group, $cur->getProfile())) { - $jf = new JoinForm($this, $this->group); - $jf->show(); - } - } - Event::handle('EndGroupSubscribe', array($this, $this->group)); - } - $this->elementEnd('li'); - if ($cur && $cur->hasRight(Right::DELETEGROUP)) { - $this->elementStart('li', 'entity_delete'); - $df = new DeleteGroupForm($this, $this->group); - $df->show(); - $this->elementEnd('li'); - } - Event::handle('EndGroupActionsList', array($this, $this->group)); - } - $this->elementEnd('ul'); - $this->elementEnd('div'); - } - /** * Get a list of the feeds for this page * @@ -331,7 +161,14 @@ class ShowgroupAction extends GroupDesignAction common_local_url('grouprss', array('nickname' => $this->group->nickname)); - return array(new Feed(Feed::RSS1, + return array(new Feed(Feed::JSON, + common_local_url('ApiTimelineGroup', + array('format' => 'as', + 'id' => $this->group->id)), + // TRANS: Tooltip for feed link. %s is a group nickname. + sprintf(_('Notice feed for %s group (Activity Streams JSON)'), + $this->group->nickname)), + new Feed(Feed::RSS1, common_local_url('grouprss', array('nickname' => $this->group->nickname)), // TRANS: Tooltip for feed link. %s is a group nickname. @@ -359,100 +196,6 @@ class ShowgroupAction extends GroupDesignAction $this->group->nickname))); } - /** - * Fill in the sidebar. - * - * @return void - */ - function showSections() - { - $this->showMembers(); - $this->showStatistics(); - $this->showAdmins(); - $cloud = new GroupTagCloudSection($this, $this->group); - $cloud->show(); - } - - /** - * Show mini-list of members - * - * @return void - */ - 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))) { - - // TRANS: Header for mini list of group members on a group page (h2). - $this->element('h2', null, _('Members')); - - $gmml = new GroupMembersMiniList($member, $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('groupmembers', - 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('EndShowGroupMembersMiniList', array($this)); - } - - $this->elementEnd('div'); - } - - /** - * Show list of admins - * - * @return void - */ - function showAdmins() - { - $adminSection = new GroupAdminSection($this, $this->group); - $adminSection->show(); - } - - /** - * Show some statistics - * - * @return void - */ - function showStatistics() - { - $this->elementStart('div', array('id' => 'entity_statistics', - 'class' => 'section')); - - // TRANS: Header for group statistics on a group page (h2). - $this->element('h2', null, _('Statistics')); - - $this->elementEnd('dl'); - $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->elementEnd('div'); - } - function showAnonymousMessage() { if (!(common_config('site','closed') || common_config('site','inviteonly'))) { @@ -481,57 +224,3 @@ class ShowgroupAction extends GroupDesignAction $this->elementEnd('div'); } } - -class GroupAdminSection extends ProfileSection -{ - var $group; - - function __construct($out, $group) - { - parent::__construct($out); - $this->group = $group; - } - - function getProfiles() - { - return $this->group->getAdmins(); - } - - function title() - { - // TRANS: Header for list of group administrators on a group page (h2). - return _('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; - } -}