2009-10-08 01:20:08 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
|
|
*
|
|
|
|
* Leave a group via the API
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @category API
|
|
|
|
* @package StatusNet
|
2009-10-13 00:36:00 +01:00
|
|
|
* @author Craig Andrews <candrews@integralblue.com>
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Jeffery To <jeffery.to@gmail.com>
|
2009-10-08 01:20:08 +01:00
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @copyright 2009 StatusNet, Inc.
|
2010-05-27 23:26:47 +01:00
|
|
|
* @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
|
2009-10-08 01:20:08 +01:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('STATUSNET')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
require_once INSTALLDIR . '/lib/apiauth.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes the authenticated user from the group specified by ID
|
|
|
|
*
|
|
|
|
* @category API
|
|
|
|
* @package StatusNet
|
2009-10-13 00:36:00 +01:00
|
|
|
* @author Craig Andrews <candrews@integralblue.com>
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Jeffery To <jeffery.to@gmail.com>
|
2009-10-08 01:20:08 +01:00
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
class ApiGroupLeaveAction extends ApiAuthAction
|
|
|
|
{
|
|
|
|
var $group = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Take arguments for running
|
|
|
|
*
|
|
|
|
* @param array $args $_REQUEST args
|
|
|
|
*
|
|
|
|
* @return boolean success flag
|
|
|
|
*/
|
|
|
|
function prepare($args)
|
|
|
|
{
|
|
|
|
parent::prepare($args);
|
|
|
|
|
|
|
|
$this->user = $this->auth_user;
|
|
|
|
$this->group = $this->getTargetGroup($this->arg('id'));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the request
|
|
|
|
*
|
|
|
|
* Save the new message
|
|
|
|
*
|
|
|
|
* @param array $args $_REQUEST data (unused)
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function handle($args)
|
|
|
|
{
|
|
|
|
parent::handle($args);
|
|
|
|
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] != 'POST') {
|
|
|
|
$this->clientError(
|
2010-09-12 16:08:49 +01:00
|
|
|
// TRANS: Client error. POST is a HTTP command. It should not be translated.
|
2009-10-08 01:20:08 +01:00
|
|
|
_('This method requires a POST.'),
|
|
|
|
400,
|
|
|
|
$this->format
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($this->user)) {
|
2010-10-25 22:51:00 +01:00
|
|
|
// TRANS: Client error displayed when trying to have a non-existing user leave a group.
|
2009-11-08 22:10:44 +00:00
|
|
|
$this->clientError(_('No such user.'), 404, $this->format);
|
2009-10-08 01:20:08 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($this->group)) {
|
2010-10-25 22:51:00 +01:00
|
|
|
// TRANS: Client error displayed when trying to leave a group that does not exist.
|
2010-04-09 23:58:57 +01:00
|
|
|
$this->clientError(_('Group not found.'), 404, $this->format);
|
2009-10-08 01:20:08 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$member = new Group_member();
|
|
|
|
|
|
|
|
$member->group_id = $this->group->id;
|
2010-01-07 00:21:29 +00:00
|
|
|
$member->profile_id = $this->auth_user->id;
|
2009-10-08 01:20:08 +01:00
|
|
|
|
|
|
|
if (!$member->find(true)) {
|
2010-10-25 22:51:00 +01:00
|
|
|
// TRANS: Server error displayed when trying to leave a group the user is not a member of.
|
2009-10-08 01:20:08 +01:00
|
|
|
$this->serverError(_('You are not a member of this group.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-02-28 10:56:02 +00:00
|
|
|
try {
|
2011-03-21 21:35:29 +00:00
|
|
|
$this->user->leaveGroup($this->group);
|
2011-02-28 10:56:02 +00:00
|
|
|
} catch (Exception $e) {
|
|
|
|
// TRANS: Server error displayed when leaving a group failed in the database.
|
|
|
|
// TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
|
|
|
|
$this->serverError(sprintf(_('Could not remove user %1$s from group %2$s.'),
|
|
|
|
$cur->nickname, $this->group->nickname));
|
2009-10-08 01:20:08 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
switch($this->format) {
|
|
|
|
case 'xml':
|
2010-01-16 16:56:07 +00:00
|
|
|
$this->showSingleXmlGroup($this->group);
|
2009-10-08 01:20:08 +01:00
|
|
|
break;
|
|
|
|
case 'json':
|
2009-10-10 01:53:35 +01:00
|
|
|
$this->showSingleJsonGroup($this->group);
|
2009-10-08 01:20:08 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$this->clientError(
|
2010-10-25 22:51:00 +01:00
|
|
|
// TRANS: Client error displayed trying to execute an unknown API method leaving a group.
|
2010-01-10 11:26:24 +00:00
|
|
|
_('API method not found.'),
|
2009-10-08 01:20:08 +01:00
|
|
|
404,
|
|
|
|
$this->format
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|