. */ if (!defined('LACONICA')) { exit(1); } require_once(INSTALLDIR.'/lib/twitterapi.php'); class TwitapiblocksAction extends TwitterapiAction { function create($args, $apidata) { parent::handle($args); $blockee = $this->get_user($apidata['api_arg'], $apidata); if (!$blockee) { $this->client_error('Not Found', 404, $apidata['content-type']); return; } $user = $apidata['user']; if ($user->hasBlocked($blockee) || $user->block($blockee)) { $this->show_profile($blockee, $apidata['content-type']); } else { common_server_error(_('Block user failed.')); } } function destroy($args, $apidata) { parent::handle($args); $blockee = $this->get_user($apidata['api_arg'], $apidata); if (!$blockee) { $this->client_error('Not Found', 404, $apidata['content-type']); return; } $user = $apidata['user']; if (!$user->hasBlocked($blockee) || $user->unblock($blockee)) { $this->show_profile($blockee, $apidata['content-type']); } else { common_server_error(_('Unblock user failed.')); } } }