. * * @category API * @package StatusNet * @author Shashi Gowda * @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/apilistusers.php'; class ApiListMembersAction extends ApiListUsersAction { /** * Add a user to a list (tag someone) * * @return boolean success */ function handlePost() { if($this->auth_user->id != $this->list->tagger) { $this->clientError( _('You aren\'t allowed to add members to this list'), 401, $this->format ); return false; } if($this->user === false) { $this->clientError( _('You must specify a member'), 400, $this->format ); return false; } $result = Profile_tag::setTag($this->auth_user->id, $this->user->id, $this->list->tag); if(empty($result)) { $this->clientError( _('An error occured.'), 500, $this->format ); return false; } switch($this->format) { case 'xml': $this->showSingleXmlList($this->list); break; case 'json': $this->showSingleJsonList($this->list); break; default: $this->clientError( _('API method not found.'), 404, $this->format ); return false; break; } } /** * Remove a user from a list (untag someone) * * @return boolean success */ function handleDelete() { if($this->auth_user->id != $this->list->tagger) { $this->clientError( _('You aren\'t allowed to remove members from this list'), 401, $this->format ); return false; } if($this->user === false) { $this->clientError( _('You must specify a member'), 400, $this->format ); return false; } $args = array('tagger' => $this->auth_user->id, 'tagged' => $this->user->id, 'tag' => $this->list->tag); $ptag = Profile_tag::pkeyGet($args); if(empty($ptag)) { $this->clientError( _('The user you are trying to remove from the list is not a member'), 400, $this->format ); return false; } $result = $ptag->delete(); if(empty($result)) { $this->clientError( _('An error occured.'), 500, $this->format ); return false; } switch($this->format) { case 'xml': $this->showSingleXmlList($this->list); break; case 'json': $this->showSingleJsonList($this->list); break; default: $this->clientError( _('API method not found.'), 404, $this->format ); return false; break; } return true; } /** * List the members of a list (people tagged) */ function getUsers() { $fn = array($this->list, 'getTagged'); list($this->users, $this->next_cursor, $this->prev_cursor) = Profile_list::getAtCursor($fn, array(), $this->cursor, 20); } }