]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/subqueue.php
Merge commit 'refs/merge-requests/199' of git://gitorious.org/statusnet/mainline...
[quix0rs-gnu-social.git] / actions / subqueue.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * List of group members
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  Group
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @copyright 2008-2009 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('STATUSNET') && !defined('LACONICA')) {
31     exit(1);
32 }
33
34 require_once(INSTALLDIR.'/lib/profilelist.php');
35
36 /**
37  * List of group members
38  *
39  * @category Group
40  * @package  StatusNet
41  * @author   Evan Prodromou <evan@status.net>
42  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
43  * @link     http://status.net/
44  */
45 class SubqueueAction extends GalleryAction
46 {
47     var $page = null;
48
49     function isReadOnly($args)
50     {
51         return true;
52     }
53
54     // @todo FIXME: most of this belongs in a base class, sounds common to most group actions?
55     function prepare($args)
56     {
57         parent::prepare($args);
58
59         $cur = common_current_user();
60         if (!$cur || $cur->id != $this->profile->id) {
61             // TRANS: Client error displayed when trying to approve group applicants without being a group administrator.
62             $this->clientError(_('You may only approve your own pending subscriptions.'));
63         }
64         return true;
65     }
66
67     function title()
68     {
69         if ($this->page == 1) {
70             // TRANS: Title of the first page showing pending subscribers still awaiting approval.
71             // TRANS: %s is the name of the user.
72             return sprintf(_('%s subscribers awaiting approval'),
73                            $this->profile->nickname);
74         } else {
75             // TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval.
76             // TRANS: %1$s is the name of the user, %2$d is the page number of the members list.
77             return sprintf(_('%1$s subscribers awaiting approval, page %2$d'),
78                            $this->profile->nickname,
79                            $this->page);
80         }
81     }
82
83     function showPageNotice()
84     {
85         $this->element('p', 'instructions',
86                        // TRANS: Page notice for group members page.
87                        _('A list of users awaiting approval to subscribe to you.'));
88     }
89
90
91     function showContent()
92     {
93         $offset = ($this->page-1) * PROFILES_PER_PAGE;
94         $limit =  PROFILES_PER_PAGE + 1;
95
96         $cnt = 0;
97
98         $members = $this->profile->getRequests($offset, $limit);
99
100         if ($members) {
101             // @fixme change!
102             $member_list = new SubQueueList($members, $this);
103             $cnt = $member_list->show();
104         }
105
106         $members->free();
107
108         $this->pagination($this->page > 1, $cnt > PROFILES_PER_PAGE,
109                           $this->page, 'subqueue',
110                           array('nickname' => $this->profile->nickname)); // urgh
111     }
112 }
113
114 class SubQueueList extends ProfileList
115 {
116     function newListItem($profile)
117     {
118         return new SubQueueListItem($profile, $this->action);
119     }
120 }
121
122 class SubQueueListItem extends ProfileListItem
123 {
124     function showActions()
125     {
126         $this->startActions();
127         if (Event::handle('StartProfileListItemActionElements', array($this))) {
128             $this->showApproveButtons();
129             Event::handle('EndProfileListItemActionElements', array($this));
130         }
131         $this->endActions();
132     }
133
134     function showApproveButtons()
135     {
136         $this->out->elementStart('li', 'entity_approval');
137         $form = new ApproveSubForm($this->out, $this->profile);
138         $form->show();
139         $this->out->elementEnd('li');
140     }
141 }