3 * StatusNet, the distributed open-source microblogging tool
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.
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.
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/>.
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/
30 if (!defined('STATUSNET')) {
37 * This is the action for leaving a group. It works more or less like the subscribe action
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/
47 class LeavegroupAction extends Action
55 function prepare($args)
57 parent::prepare($args);
59 if (!common_config('inboxes','enabled')) {
60 $this->serverError(_('Inboxes must be enabled for groups to work.'));
64 if (!common_logged_in()) {
65 $this->clientError(_('You must be logged in to leave a group.'));
69 $nickname_arg = $this->trimmed('nickname');
70 $nickname = common_canonical_nickname($nickname_arg);
72 // Permanent redirect on non-canonical nickname
74 if ($nickname_arg != $nickname) {
75 $args = array('nickname' => $nickname);
76 common_redirect(common_local_url('leavegroup', $args), 301);
81 $this->clientError(_('No nickname.'), 404);
85 $this->group = User_group::staticGet('nickname', $nickname);
88 $this->clientError(_('No such group.'), 404);
92 $cur = common_current_user();
94 if (!$cur->isMember($this->group)) {
95 $this->clientError(_('You are not a member of that group.'), 403);
105 * On POST, add the current user to the group
107 * @param array $args unused
112 function handle($args)
114 parent::handle($args);
116 $cur = common_current_user();
118 $member = new Group_member();
120 $member->group_id = $this->group->id;
121 $member->profile_id = $cur->id;
123 if (!$member->find(true)) {
124 $this->serverError(_('Could not find membership record.'));
128 $result = $member->delete();
131 common_log_db_error($member, 'INSERT', __FILE__);
132 $this->serverError(sprintf(_('Could not remove user %s to group %s'),
133 $cur->nickname, $this->group->nickname));
136 if ($this->boolean('ajax')) {
137 $this->startHTML('text/xml;charset=utf-8');
138 $this->elementStart('head');
139 $this->element('title', null, sprintf(_('%s left group %s'),
141 $this->group->nickname));
142 $this->elementEnd('head');
143 $this->elementStart('body');
144 $jf = new JoinForm($this, $this->group);
146 $this->elementEnd('body');
147 $this->elementEnd('html');
149 common_redirect(common_local_url('groupmembers', array('nickname' =>
150 $this->group->nickname)),