]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/cancelgroup.php
Merge branch 'master' into 1.0.x
[quix0rs-gnu-social.git] / actions / cancelgroup.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Leave a group
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 CancelgroupAction extends Action
47 {
48     var $group = null;
49
50     /**
51      * Prepare to run
52      */
53     function prepare($args)
54     {
55         parent::prepare($args);
56
57         if (!common_logged_in()) {
58             // TRANS: Client error displayed when trying to leave a group while not logged in.
59             $this->clientError(_('You must be logged in to leave a group.'));
60             return false;
61         }
62
63         $nickname_arg = $this->trimmed('nickname');
64         $id = intval($this->arg('id'));
65         if ($id) {
66             $this->group = User_group::staticGet('id', $id);
67         } else if ($nickname_arg) {
68             $nickname = common_canonical_nickname($nickname_arg);
69
70             // Permanent redirect on non-canonical nickname
71             if ($nickname_arg != $nickname) {
72                 $args = array('nickname' => $nickname);
73                 common_redirect(common_local_url('leavegroup', $args), 301);
74                 return false;
75             }
76
77             $local = Local_group::staticGet('nickname', $nickname);
78
79             if (!$local) {
80                 // TRANS: Client error displayed when trying to leave a non-local group.
81                 $this->clientError(_('No such group.'), 404);
82                 return false;
83             }
84
85             $this->group = User_group::staticGet('id', $local->group_id);
86         } else {
87             // TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
88             $this->clientError(_('No nickname or ID.'), 404);
89             return false;
90         }
91
92         if (!$this->group) {
93             // TRANS: Client error displayed when trying to leave a non-existing group.
94             $this->clientError(_('No such group.'), 404);
95             return false;
96         }
97
98         $cur = common_current_user();
99         if (empty($cur)) {
100             // TRANS: Client error displayed when trying to leave a group while not logged in.
101             $this->clientError(_('Must be logged in.'), 403);
102             return false;
103         }
104         if ($this->arg('profile_id')) {
105             if ($cur->isAdmin($this->group)) {
106                 $this->profile = Profile::staticGet('id', $this->arg('profile_id'));
107             } else {
108                 // TRANS: Client error displayed when trying to approve or cancel a group join request without
109                 // TRANS: being a group administrator.
110                 $this->clientError(_('Only group admin can approve or cancel join requests.'), 403);
111                 return false;
112             }
113         } else {
114             $this->profile = $cur->getProfile();
115         }
116
117         $this->request = Group_join_queue::pkeyGet(array('profile_id' => $this->profile->id,
118                                                          'group_id' => $this->group->id));
119
120         if (empty($this->request)) {
121             // TRANS: Client error displayed when trying to approve a non-existing group join request.
122             // TRANS: %s is a user nickname.
123             $this->clientError(sprintf(_('%s is not in the moderation queue for this group.'), $this->profile->nickname), 403);
124         }
125         return true;
126     }
127
128     /**
129      * Handle the request
130      *
131      * On POST, add the current user to the group
132      *
133      * @param array $args unused
134      *
135      * @return void
136      */
137     function handle($args)
138     {
139         parent::handle($args);
140
141         try {
142             $this->request->abort();
143         } catch (Exception $e) {
144             common_log(LOG_ERR, "Exception canceling group sub: " . $e->getMessage());
145             // TRANS: Server error displayed when cancelling a queued group join request fails.
146             // TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
147             $this->serverError(sprintf(_('Could not cancel request for user %1$s to join group %2$s.'),
148                                        $this->profile->nickname, $this->group->nickname));
149             return;
150         }
151
152         if ($this->boolean('ajax')) {
153             $this->startHTML('text/xml;charset=utf-8');
154             $this->elementStart('head');
155             // TRANS: Title for leave group page after leaving.
156             // TRANS: %s$s is the leaving user's name, %2$s is the group name.
157             $this->element('title', null, sprintf(_m('TITLE','%1$s left group %2$s'),
158                                                   $this->profile->nickname,
159                                                   $this->group->nickname));
160             $this->elementEnd('head');
161             $this->elementStart('body');
162             $jf = new JoinForm($this, $this->group);
163             $jf->show();
164             $this->elementEnd('body');
165             $this->elementEnd('html');
166         } else {
167             common_redirect(common_local_url('groupmembers', array('nickname' =>
168                                                                    $this->group->nickname)),
169                             303);
170         }
171     }
172 }