]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/approvesub.php
Merge commit 'refs/merge-requests/164' of git://gitorious.org/statusnet/mainline...
[quix0rs-gnu-social.git] / actions / approvesub.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Approve group subscription request
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 /**
35  * Leave a group
36  *
37  * This is the action for leaving a group. It works more or less like the subscribe action
38  * for users.
39  *
40  * @category Group
41  * @package  StatusNet
42  * @author   Evan Prodromou <evan@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 class ApprovesubAction extends Action
47 {
48     var $profile = null;
49
50     /**
51      * Prepare to run
52      */
53     function prepare($args)
54     {
55         parent::prepare($args);
56
57         $cur = common_current_user();
58         if (empty($cur)) {
59             // TRANS: Client error displayed trying to approve group membership while not logged in.
60             $this->clientError(_('Must be logged in.'), 403);
61             return false;
62         }
63         if ($this->arg('profile_id')) {
64             $this->profile = Profile::staticGet('id', $this->arg('profile_id'));
65         } else {
66             // TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve.
67             $this->clientError(_('Must specify a profile.'));
68             return false;
69         }
70
71         $this->request = Subscription_queue::pkeyGet(array('subscriber' => $this->profile->id,
72                                                            'subscribed' => $cur->id));
73
74         if (empty($this->request)) {
75             // TRANS: Client error displayed trying to approve subscription for a non-existing request.
76             // TRANS: %s is a user nickname.
77             $this->clientError(sprintf(_('%s is not in the moderation queue for your subscriptions.'), $this->profile->nickname), 403);
78         }
79
80         $this->approve = (bool)$this->arg('approve');
81         $this->cancel = (bool)$this->arg('cancel');
82         if (!$this->approve && !$this->cancel) {
83             // TRANS: Client error displayed trying to approve/deny subscription.
84             $this->clientError(_('Internal error: received neither cancel nor abort.'));
85         }
86         if ($this->approve && $this->cancel) {
87             // TRANS: Client error displayed trying to approve/deny  subscription
88             $this->clientError(_('Internal error: received both cancel and abort.'));
89         }
90         return true;
91     }
92
93     /**
94      * Handle the request
95      *
96      * On POST, add the current user to the group
97      *
98      * @param array $args unused
99      *
100      * @return void
101      */
102     function handle($args)
103     {
104         parent::handle($args);
105         $cur = common_current_user();
106
107         try {
108             if ($this->approve) {
109                 $this->request->complete();
110             } elseif ($this->cancel) {
111                 $this->request->abort();
112             }
113         } catch (Exception $e) {
114             common_log(LOG_ERR, "Exception canceling sub: " . $e->getMessage());
115             // TRANS: Server error displayed when cancelling a queued subscription request fails.
116             // TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed.
117             $this->serverError(sprintf(_('Could not cancel or approve request for user %1$s to join group %2$s.'),
118                                        $this->profile->nickname, $cur->nickname));
119             return;
120         }
121
122         if ($this->boolean('ajax')) {
123             $this->startHTML('text/xml;charset=utf-8');
124             $this->elementStart('head');
125             // TRANS: Title for subscription approval ajax return
126             // TRANS: %1$s is the approved user's nickname
127             $this->element('title', null, sprintf(_m('TITLE','%1$s\'s request'),
128                                                   $this->profile->nickname));
129             $this->elementEnd('head');
130             $this->elementStart('body');
131             if ($this->approve) {
132                 // TRANS: Message on page for user after approving a subscription request.
133                 $this->element('p', 'success', _('Subscription approved.'));
134             } elseif ($this->cancel) {
135                 // TRANS: Message on page for user after rejecting a subscription request.
136                 $this->element('p', 'success', _('Subscription canceled.'));
137             }
138             $this->elementEnd('body');
139             $this->elementEnd('html');
140         } else {
141             common_redirect(common_local_url('subqueue', array('nickname' =>
142                                                                $cur->nickname)),
143                             303);
144         }
145     }
146 }