2011-03-06 18:06:38 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
|
|
*
|
|
|
|
* API method to check if a user belongs to a list.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* @author Shashi Gowda <connect2shashi@gmail.com>
|
|
|
|
* @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);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Action handler for Twitter list_memeber methods
|
|
|
|
*
|
|
|
|
* @category API
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Shashi Gowda <connect2shashi@gmail.com>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
* @see ApiBareAuthAction
|
|
|
|
*/
|
|
|
|
class ApiListMemberAction extends ApiBareAuthAction
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Set the flags for handling the request. Show the profile if this
|
|
|
|
* is a GET request AND the profile is a member of the list, add a member
|
|
|
|
* if it is a POST, remove the profile from the list if method is DELETE
|
|
|
|
* or if method is POST and an argument _method is set to DELETE. Act
|
|
|
|
* like we don't know if the current user has no access to the list.
|
|
|
|
*
|
|
|
|
* Takes parameters:
|
|
|
|
* - user: the user id or nickname
|
|
|
|
* - list_id: the id of the tag or the tag itself
|
|
|
|
* - id: the id of the member being looked for/added/removed
|
|
|
|
*
|
|
|
|
* @return boolean success flag
|
|
|
|
*/
|
2013-10-29 09:26:46 +00:00
|
|
|
protected function prepare(array $args=array())
|
2011-03-06 18:06:38 +00:00
|
|
|
{
|
|
|
|
parent::prepare($args);
|
|
|
|
|
2013-10-15 01:54:10 +01:00
|
|
|
$this->target = $this->getTargetProfile($this->arg('id'));
|
2011-03-06 18:06:38 +00:00
|
|
|
$this->list = $this->getTargetList($this->arg('user'), $this->arg('list_id'));
|
|
|
|
|
|
|
|
if (empty($this->list)) {
|
2011-04-10 18:59:55 +01:00
|
|
|
// TRANS: Client error displayed when referring to a non-existing list.
|
2013-10-15 01:54:10 +01:00
|
|
|
$this->clientError(_('List not found.'), 404);
|
2011-03-06 18:06:38 +00:00
|
|
|
}
|
|
|
|
|
2013-10-15 01:54:10 +01:00
|
|
|
if (!($this->target instanceof Profile)) {
|
2011-04-10 18:59:55 +01:00
|
|
|
// TRANS: Client error displayed when referring to a non-existing user.
|
2013-10-15 01:54:10 +01:00
|
|
|
$this->clientError(_('No such user.'), 404);
|
2011-03-06 18:06:38 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the request
|
|
|
|
*
|
|
|
|
* @return boolean success flag
|
|
|
|
*/
|
2013-10-15 01:54:10 +01:00
|
|
|
protected function handle()
|
2011-03-06 18:06:38 +00:00
|
|
|
{
|
2013-10-15 01:54:10 +01:00
|
|
|
parent::handle();
|
2011-03-06 18:06:38 +00:00
|
|
|
|
|
|
|
$arr = array('tagger' => $this->list->tagger,
|
|
|
|
'tag' => $this->list->tag,
|
2013-10-15 01:54:10 +01:00
|
|
|
'tagged' => $this->target->id);
|
2011-03-06 18:06:38 +00:00
|
|
|
$ptag = Profile_tag::pkeyGet($arr);
|
|
|
|
|
|
|
|
if(empty($ptag)) {
|
2013-10-15 01:54:10 +01:00
|
|
|
// TRANS: Client error displayed when referring to a non-list member.
|
|
|
|
$this->clientError(_('The specified user is not a member of this list.'));
|
2011-03-06 18:06:38 +00:00
|
|
|
}
|
|
|
|
|
2013-10-15 01:54:10 +01:00
|
|
|
$user = $this->twitterUserArray($this->target, true);
|
2011-03-06 18:06:38 +00:00
|
|
|
|
|
|
|
switch($this->format) {
|
|
|
|
case 'xml':
|
|
|
|
$this->showTwitterXmlUser($user, 'user', true);
|
|
|
|
break;
|
|
|
|
case 'json':
|
|
|
|
$this->showSingleJsonUser($user);
|
|
|
|
break;
|
|
|
|
default:
|
2013-10-15 01:54:10 +01:00
|
|
|
// TRANS: Client error displayed when coming across a non-supported API method.
|
|
|
|
$this->clientError(_('API method not found.'), 404);
|
2011-03-06 18:06:38 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|