]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/subqueue.php
Merge branch 'master' into 1.0.x
[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             return false;
64         }
65         return true;
66     }
67
68     function title()
69     {
70         if ($this->page == 1) {
71             // TRANS: Title of the first page showing pending subscribers still awaiting approval.
72             // TRANS: %s is the name of the user.
73             return sprintf(_('%s subscribers awaiting approval'),
74                            $this->profile->nickname);
75         } else {
76             // TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval.
77             // TRANS: %1$s is the name of the user, %2$d is the page number of the members list.
78             return sprintf(_('%1$s subscribers awaiting approval, page %2$d'),
79                            $this->profile->nickname,
80                            $this->page);
81         }
82     }
83
84     function showPageNotice()
85     {
86         $this->element('p', 'instructions',
87                        // TRANS: Page notice for group members page.
88                        _('A list of users awaiting approval to subscribe to you.'));
89     }
90
91
92     function showContent()
93     {
94         $offset = ($this->page-1) * PROFILES_PER_PAGE;
95         $limit =  PROFILES_PER_PAGE + 1;
96
97         $cnt = 0;
98
99         $members = $this->profile->getRequests($offset, $limit);
100
101         if ($members) {
102             // @fixme change!
103             $member_list = new SubQueueList($members, $this);
104             $cnt = $member_list->show();
105         }
106
107         $members->free();
108
109         $this->pagination($this->page > 1, $cnt > PROFILES_PER_PAGE,
110                           $this->page, 'subqueue',
111                           array('nickname' => $this->profile->nickname)); // urgh
112     }
113 }
114
115 class SubQueueList extends ProfileList
116 {
117     function newListItem($profile)
118     {
119         return new SubQueueListItem($profile, $this->action);
120     }
121 }
122
123 class SubQueueListItem extends ProfileListItem
124 {
125     function showActions()
126     {
127         $this->startActions();
128         if (Event::handle('StartProfileListItemActionElements', array($this))) {
129             $this->showApproveButtons();
130             Event::handle('EndProfileListItemActionElements', array($this));
131         }
132         $this->endActions();
133     }
134
135     function showApproveButtons()
136     {
137         $this->out->elementStart('li', 'entity_approval');
138         $form = new ApproveSubForm($this->out, $this->profile);
139         $form->show();
140         $this->out->elementEnd('li');
141     }
142 }