Twitter-compatible API - Error handling that better matches Twitter's
darcs-hash:20080720070905-ca946-dda57dd92210461361fd58b7a3244bf24c01e801.gz
This commit is contained in:
parent
00a6f3d015
commit
140689800b
|
@ -46,8 +46,6 @@ class ApiAction extends Action {
|
||||||
$this->content_type = strtolower($cmdext[1]);
|
$this->content_type = strtolower($cmdext[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
# common_debug("apiaction = $this->api_action, method = $this->api_method, argument = $this->api_arg, ctype = $this->content_type");
|
|
||||||
|
|
||||||
# XXX Maybe check to see if the command actually exists first?
|
# XXX Maybe check to see if the command actually exists first?
|
||||||
if($this->requires_auth()) {
|
if($this->requires_auth()) {
|
||||||
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
||||||
|
@ -56,7 +54,7 @@ class ApiAction extends Action {
|
||||||
header('WWW-Authenticate: Basic realm="Laconica API"');
|
header('WWW-Authenticate: Basic realm="Laconica API"');
|
||||||
|
|
||||||
# if the user hits cancel -- bam!
|
# if the user hits cancel -- bam!
|
||||||
common_show_basic_auth_error();
|
$this->show_basic_auth_error();
|
||||||
} else {
|
} else {
|
||||||
$nickname = $_SERVER['PHP_AUTH_USER'];
|
$nickname = $_SERVER['PHP_AUTH_USER'];
|
||||||
$password = $_SERVER['PHP_AUTH_PW'];
|
$password = $_SERVER['PHP_AUTH_PW'];
|
||||||
|
@ -67,7 +65,7 @@ class ApiAction extends Action {
|
||||||
$this->process_command();
|
$this->process_command();
|
||||||
} else {
|
} else {
|
||||||
# basic authentication failed
|
# basic authentication failed
|
||||||
common_show_basic_auth_error();
|
$this->show_basic_auth_error();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -124,4 +122,11 @@ class ApiAction extends Action {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function show_basic_auth_error() {
|
||||||
|
header('HTTP/1.1 401 Unauthorized');
|
||||||
|
header('Content-type: text/plain');
|
||||||
|
print("Could not authenticate you."); # exactly what Twitter says - no \n
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,7 +31,7 @@ class TwitapifriendshipsAction extends TwitterapiAction {
|
||||||
$other = $this->get_user($id);
|
$other = $this->get_user($id);
|
||||||
|
|
||||||
if (!$other) {
|
if (!$other) {
|
||||||
$this->client_error(_('No such user'));
|
$this->client_error(_('Could not follow user: User not found.'), 403, $apidata['content-type']);
|
||||||
exit();
|
exit();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -39,7 +39,7 @@ class TwitapifriendshipsAction extends TwitterapiAction {
|
||||||
$user = $apidata['user'];
|
$user = $apidata['user'];
|
||||||
|
|
||||||
if ($user->isSubscribed($other)) {
|
if ($user->isSubscribed($other)) {
|
||||||
$this->client_error(_('Already subscribed.'));
|
$this->client_error("Could not follow user: $other->nickname is already on your list.", 403, $apidata['content-type']);
|
||||||
exit();
|
exit();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -55,7 +55,7 @@ class TwitapifriendshipsAction extends TwitterapiAction {
|
||||||
$result = $sub->insert();
|
$result = $sub->insert();
|
||||||
|
|
||||||
if (!$result) {
|
if (!$result) {
|
||||||
$this->server_error(_('Could not subscribe'));
|
$this->client_error("Could not follow user: $other->nickname.", 400, $apidata['content-type']);
|
||||||
exit();
|
exit();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -101,7 +101,7 @@ class TwitapifriendshipsAction extends TwitterapiAction {
|
||||||
$sub->delete();
|
$sub->delete();
|
||||||
$sub->query('COMMIT');
|
$sub->query('COMMIT');
|
||||||
} else {
|
} else {
|
||||||
$this->client_error(_('Not subscribed'));
|
$this->client_error(_('You are not friends with the specified user.'), 403, $apidata['content-type']);
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -127,14 +127,21 @@ class TwitapifriendshipsAction extends TwitterapiAction {
|
||||||
|
|
||||||
function exists($args, $apidata) {
|
function exists($args, $apidata) {
|
||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
|
|
||||||
|
|
||||||
$user_a_id = $this->trimmed('user_a');
|
$user_a_id = $this->trimmed('user_a');
|
||||||
$user_b_id = $this->trimmed('user_b');
|
$user_b_id = $this->trimmed('user_b');
|
||||||
|
|
||||||
$user_a = $this->get_profile($user_a_id);
|
$user_a = $this->get_profile($user_a_id);
|
||||||
$user_b = $this->get_profile($user_b_id);
|
$user_b = $this->get_profile($user_b_id);
|
||||||
|
|
||||||
|
if($user_a) { print "got user a profile";}
|
||||||
|
if($user_b) { print "got user b profile";}
|
||||||
|
|
||||||
|
|
||||||
if (!$user_a || !$user_b) {
|
if (!$user_a || !$user_b) {
|
||||||
$this->client_error(_('No such user'));
|
$this->client_error(_('Two user ids or screen_names must be supplied.'), 400, $apidata['content-type']);
|
||||||
return;
|
exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($user_a->isSubscribed($user_b)) {
|
if ($user_a->isSubscribed($user_b)) {
|
||||||
|
@ -151,13 +158,13 @@ class TwitapifriendshipsAction extends TwitterapiAction {
|
||||||
break;
|
break;
|
||||||
case 'json':
|
case 'json':
|
||||||
print json_encode($result);
|
print json_encode($result);
|
||||||
print "\n";
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
print $result;
|
print $result;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_profile($id) {
|
function get_profile($id) {
|
||||||
|
|
|
@ -281,6 +281,53 @@ class TwitterapiAction extends Action {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function client_error($msg, $code = 400, $content_type = 'json') {
|
||||||
|
|
||||||
|
static $status = array(400 => 'Bad Request',
|
||||||
|
401 => 'Unauthorized',
|
||||||
|
402 => 'Payment Required',
|
||||||
|
403 => 'Forbidden',
|
||||||
|
404 => 'Not Found',
|
||||||
|
405 => 'Method Not Allowed',
|
||||||
|
406 => 'Not Acceptable',
|
||||||
|
407 => 'Proxy Authentication Required',
|
||||||
|
408 => 'Request Timeout',
|
||||||
|
409 => 'Conflict',
|
||||||
|
410 => 'Gone',
|
||||||
|
411 => 'Length Required',
|
||||||
|
412 => 'Precondition Failed',
|
||||||
|
413 => 'Request Entity Too Large',
|
||||||
|
414 => 'Request-URI Too Long',
|
||||||
|
415 => 'Unsupported Media Type',
|
||||||
|
416 => 'Requested Range Not Satisfiable',
|
||||||
|
417 => 'Expectation Failed');
|
||||||
|
|
||||||
|
$action = $this->trimmed('action');
|
||||||
|
|
||||||
|
common_debug("User error '$code' on '$action': $msg", __FILE__);
|
||||||
|
|
||||||
|
if (!array_key_exists($code, $status)) {
|
||||||
|
$code = 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
$status_string = $status[$code];
|
||||||
|
header('HTTP/1.1 '.$code.' '.$status_string);
|
||||||
|
|
||||||
|
if ($content_type == 'xml') {
|
||||||
|
common_start_xml();
|
||||||
|
common_element_start('hash');
|
||||||
|
common_element('error', NULL, $msg);
|
||||||
|
common_element('request', NULL, $_SERVER['REQUEST_URI']);
|
||||||
|
common_element_end('hash');
|
||||||
|
common_end_xml();
|
||||||
|
} else {
|
||||||
|
$error_array = array('error' => $msg, 'request' => $_SERVER['REQUEST_URI']);
|
||||||
|
print(json_encode($error_array));
|
||||||
|
}
|
||||||
|
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
|
||||||
function init_twitter_rss() {
|
function init_twitter_rss() {
|
||||||
common_start_xml();
|
common_start_xml();
|
||||||
common_element_start('rss', array('version' => '2.0'));
|
common_element_start('rss', array('version' => '2.0'));
|
||||||
|
|
|
@ -223,14 +223,6 @@ function common_show_header($pagetitle, $callable=NULL, $data=NULL, $headercall=
|
||||||
common_element_start('div', array('id' => 'content'));
|
common_element_start('div', array('id' => 'content'));
|
||||||
}
|
}
|
||||||
|
|
||||||
# XXX: Refactor w/common_user_error() ?
|
|
||||||
function common_show_basic_auth_error() {
|
|
||||||
header('HTTP/1.1 401 Unauthorized');
|
|
||||||
header('Content-type: text/plain');
|
|
||||||
print("Could not authenticate you."); # exactly what Twitter says - no \n
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
|
|
||||||
function common_show_footer() {
|
function common_show_footer() {
|
||||||
global $xw, $config;
|
global $xw, $config;
|
||||||
common_element_end('div'); # content div
|
common_element_end('div'); # content div
|
||||||
|
|
Loading…
Reference in New Issue
Block a user