]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/leavegroup.php
Merge branch '0.7.x' of git@gitorious.org:laconica/dev into 0.7.x
[quix0rs-gnu-social.git] / actions / leavegroup.php
1 <?php
2 /**
3  * Laconica, 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   Laconica
24  * @author    Evan Prodromou <evan@controlyourself.ca>
25  * @copyright 2008-2009 Control Yourself, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://laconi.ca/
28  */
29
30 if (!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  Laconica
42  * @author   Evan Prodromou <evan@controlyourself.ca>
43  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
44  * @link     http://laconi.ca/
45  */
46
47 class LeavegroupAction extends Action
48 {
49     var $group = null;
50
51     /**
52      * Prepare to run
53      */
54
55     function prepare($args)
56     {
57         parent::prepare($args);
58
59         if (!common_config('inboxes','enabled')) {
60             $this->serverError(_('Inboxes must be enabled for groups to work.'));
61             return false;
62         }
63
64         if (!common_logged_in()) {
65             $this->clientError(_('You must be logged in to leave a group.'));
66             return false;
67         }
68
69         $nickname_arg = $this->trimmed('nickname');
70         $nickname = common_canonical_nickname($nickname_arg);
71
72         // Permanent redirect on non-canonical nickname
73
74         if ($nickname_arg != $nickname) {
75             $args = array('nickname' => $nickname);
76             common_redirect(common_local_url('leavegroup', $args), 301);
77             return false;
78         }
79
80         if (!$nickname) {
81             $this->clientError(_('No nickname.'), 404);
82             return false;
83         }
84
85         $this->group = User_group::staticGet('nickname', $nickname);
86
87         if (!$this->group) {
88             $this->clientError(_('No such group.'), 404);
89             return false;
90         }
91
92         $cur = common_current_user();
93
94         if (!$cur->isMember($this->group)) {
95             $this->clientError(_('You are not a member of that group.'), 403);
96             return false;
97         }
98
99         if ($cur->isAdmin($this->group)) {
100             $this->clientError(_('You may not leave a group while you are its administrator.'), 403);
101             return false;
102
103         }
104
105         return true;
106     }
107
108     /**
109      * Handle the request
110      *
111      * On POST, add the current user to the group
112      *
113      * @param array $args unused
114      *
115      * @return void
116      */
117
118     function handle($args)
119     {
120         parent::handle($args);
121
122         $cur = common_current_user();
123
124         $member = new Group_member();
125
126         $member->group_id   = $this->group->id;
127         $member->profile_id = $cur->id;
128
129         if (!$member->find(true)) {
130             $this->serverError(_('Could not find membership record.'));
131             return;
132         }
133
134         $result = $member->delete();
135
136         if (!$result) {
137             common_log_db_error($member, 'INSERT', __FILE__);
138             $this->serverError(sprintf(_('Could not remove user %s to group %s'),
139                                        $cur->nickname, $this->group->nickname));
140         }
141
142         if ($this->boolean('ajax')) {
143             $this->startHTML('text/xml;charset=utf-8');
144             $this->elementStart('head');
145             $this->element('title', null, sprintf(_('%s left group %s'),
146                                                   $cur->nickname,
147                                                   $this->group->nickname));
148             $this->elementEnd('head');
149             $this->elementStart('body');
150             $jf = new JoinForm($this, $this->group);
151             $jf->show();
152             $this->elementEnd('body');
153             $this->elementEnd('html');
154         } else {
155             common_redirect(common_local_url('groupmembers', array('nickname' =>
156                                                                    $this->group->nickname)));
157         }
158     }
159 }