]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Directory/lib/sortablegrouplist.php
Only administrators can delete other privileged users.
[quix0rs-gnu-social.git] / plugins / Directory / lib / sortablegrouplist.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Widget to show a sortable list of profiles
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Public
23  * @package   StatusNet
24  * @author    Zach Copley <zach@status.net>
25  * @copyright 2011 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('GNUSOCIAL')) { exit(1); }
31
32 /**
33  * Widget to show a sortable list of subscriptions
34  *
35  * @category Public
36  * @package  StatusNet
37  * @author   Zach Copley <zach@status.net>
38  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
39  * @link     http://status.net/
40  */
41 class SortableGroupList extends SortableSubscriptionList
42 {
43     function startList()
44     {
45         $this->out->elementStart('table', array('class' => 'profile_list xoxo'));
46         $this->out->elementStart('thead');
47         $this->out->elementStart('tr');
48
49         $tableHeaders = array(
50             // TRANS: Column header in table for user nickname.
51             'nickname'    => _m('Nickname'),
52             // TRANS: Column header in table for timestamp when user was created.
53             'created'     => _m('Created')
54         );
55
56         foreach ($tableHeaders as $id => $label) {
57             $attrs   = array('id' => $id);
58             $current = (!empty($this->action->sort) && $this->action->sort == $id);
59
60             if ($current || empty($this->action->sort) && $id == 'nickname') {
61                 $attrs['class'] = 'current';
62             }
63
64             if ($current && $this->action->reverse) {
65                 $attrs['class'] .= ' reverse';
66                 $attrs['class'] = trim($attrs['class']);
67             }
68
69             $this->out->elementStart('th', $attrs);
70
71             $linkAttrs = array();
72             $params    = array('sort' => $id);
73
74             if (!empty($this->action->q)) {
75                 $params['q'] = $this->action->q;
76             }
77
78             if ($current && !$this->action->reverse) {
79                 $params['reverse'] = 'true';
80             }
81
82             $args = array();
83
84             $filter = $this->action->arg('filter');
85
86             if (!empty($filter)) {
87                 $args['filter'] = $filter;
88             }
89
90             $linkAttrs['href'] = common_local_url(
91                 $this->action->arg('action'), $args, $params
92             );
93
94             $this->out->element('a', $linkAttrs, $label);
95             $this->out->elementEnd('th');
96         }
97
98         // TRANS: Column header in table for members of a group.
99         $this->out->element('th', array('id' => 'Members'), _m('Members'));
100         $this->out->element('th', array('id' => 'controls'), null);
101
102         $this->out->elementEnd('tr');
103         $this->out->elementEnd('thead');
104
105         $this->out->elementStart('tbody');
106     }
107
108     function newListItem(Profile $profile)
109     {
110         return new SortableGroupListItem($profile, $this->owner, $this->action);
111     }
112 }
113
114 class SortableGroupListItem extends SortableSubscriptionListItem
115 {
116     function showHomepage()
117     {
118         if ($this->profile->getHomepage()) {
119             $this->out->text(' ');
120             $aAttrs = $this->homepageAttributes();
121             $this->out->elementStart('a', $aAttrs);
122             $this->out->text($this->profile->getHomepage());
123             $this->out->elementEnd('a');
124         }
125     }
126
127     function showDescription()
128     {
129         if ($this->profile->getDescription()) {
130             $this->out->elementStart('p', 'note');
131             $this->out->text($this->profile->getDescription());
132             $this->out->elementEnd('p');
133         }
134
135     }
136
137     // TODO: Make sure we can do ->getAvatar() for group profiles too!
138     function showAvatar(Profile $profile, $size=null)
139     {
140         $logo = $profile->getGroup()->stream_logo ?: User_group::defaultLogo($size ?: $this->avatarSize());
141
142         $this->out->element('img', array('src'    => $logo,
143                                          'class'  => 'avatar u-photo',
144                                          'width'  => AVATAR_STREAM_SIZE,
145                                          'height' => AVATAR_STREAM_SIZE,
146                                          'alt'    => $profile->getBestName()));
147     }
148
149     function show()
150     {
151         if (Event::handle('StartProfileListItem', array($this))) {
152             $this->startItem();
153             if (Event::handle('StartProfileListItemProfile', array($this))) {
154                 $this->showProfile();
155                 Event::handle('EndProfileListItemProfile', array($this));
156             }
157
158             // XXX Add events?
159             $this->showCreatedDate();
160             $this->showMemberCount();
161
162             if (Event::handle('StartProfileListItemActions', array($this))) {
163                 $this->showActions();
164                 Event::handle('EndProfileListItemActions', array($this));
165             }
166             $this->endItem();
167
168             Event::handle('EndProfileListItem', array($this));
169         }
170     }
171
172     function showProfile()
173     {
174         $this->startProfile();
175
176         $this->showAvatar($this->profile);
177         $this->out->element('a', array('href'  => $this->profile->getUrl(),
178                                             'class' => 'p-org p-nickname',
179                                             'rel'   => 'contact group'),
180                                  $this->profile->getNickname());
181
182         $this->showFullName();
183         $this->showLocation();
184         $this->showHomepage();
185         $this->showDescription(); // groups have this instead of bios
186         // Relevant portion!
187         $this->showTags();
188         $this->endProfile();
189     }
190
191     function endActions()
192     {
193         // delete button
194         $cur = common_current_user();
195         list($action, $r2args) = $this->out->returnToArgs();
196         $r2args['action'] = $action;
197         if ($cur instanceof User && $cur->hasRight(Right::DELETEGROUP)) {
198             $this->out->elementStart('li', 'entity_delete');
199             $df = new DeleteGroupForm($this->out, $this->profile->getGroup(), $r2args);
200             $df->show();
201             $this->out->elementEnd('li');
202         }
203
204         $this->out->elementEnd('ul');
205         $this->out->elementEnd('td');
206     }
207
208     function showActions()
209     {
210         $this->startActions();
211         if (Event::handle('StartProfileListItemActionElements', array($this))) {
212             $this->showJoinButton();
213             Event::handle('EndProfileListItemActionElements', array($this));
214         }
215         $this->endActions();
216     }
217
218     function showJoinButton()
219     {
220         $user = $this->owner;
221         if ($user) {
222
223             $this->out->elementStart('li', 'entity_subscribe');
224             // XXX: special-case for user looking at own
225             // subscriptions page
226             if ($user->isMember($this->profile->getGroup())) {
227                 $lf = new LeaveForm($this->out, $this->profile->getGroup());
228                 $lf->show();
229             } else if (!Group_block::isBlocked($this->profile->getGroup(), $user->getProfile())) {
230                 $jf = new JoinForm($this->out, $this->profile->getGroup());
231                 $jf->show();
232             }
233
234             $this->out->elementEnd('li');
235         }
236     }
237
238     function showMemberCount()
239     {
240         $this->out->elementStart('td', 'entry_member_count');
241         $this->out->text($this->profile->getGroup()->getMemberCount());
242         $this->out->elementEnd('td');
243     }
244
245     function showCreatedDate()
246     {
247         $this->out->elementStart('td', 'entry_created');
248         // @todo FIXME: Should we provide i18n for timestamps in core?
249         $this->out->text(date('j M Y', strtotime($this->profile->created)));
250         $this->out->elementEnd('td');
251     }
252
253     function showAdmins()
254     {
255         $this->out->elementStart('td', 'entry_admins');
256         // @todo
257         $this->out->text('gargargar');
258         $this->out->elementEnd('td');
259     }
260
261     /**
262      * Only show the tags if we're logged in
263      */
264     function showTags()
265     {
266          if (common_logged_in()) {
267             parent::showTags();
268         }
269
270     }
271 }