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