Twitter-compatible API - checks for is_readonly() now work!
darcs-hash:20081024213745-462f3-7c26611e7f75265affafd471c3d66e02ec7e686e.gz
This commit is contained in:
parent
18d4226ead
commit
f8a73c157e
@ -166,19 +166,26 @@ class ApiAction extends Action {
|
|||||||
$method = $_REQUEST['method'];
|
$method = $_REQUEST['method'];
|
||||||
list($cmdtext, $fmt) = explode('.', $method);
|
list($cmdtext, $fmt) = explode('.', $method);
|
||||||
|
|
||||||
# FIXME: probably need a table here, instead of this switch
|
static $write_methods = array(
|
||||||
|
'account' => array('update_location', 'update_delivery_device', 'end_session'),
|
||||||
|
'blocks' => array('create', 'destroy'),
|
||||||
|
'direct_messages' => array('create', 'destroy'),
|
||||||
|
'favorites' => array('create', 'destroy'),
|
||||||
|
'friendships' => array('create', 'destroy'),
|
||||||
|
'help' => array(),
|
||||||
|
'notifications' => array('follow', 'leave'),
|
||||||
|
'statuses' => array('update', 'destroy'),
|
||||||
|
'users' => array()
|
||||||
|
);
|
||||||
|
|
||||||
switch ($apiaction) {
|
if (array_key_exists($apiaction, $write_methods)) {
|
||||||
case 'statuses':
|
common_debug("checking method");
|
||||||
switch ($cmdtext) {
|
if (!in_array($cmdtext, $write_methods[$apiaction])) {
|
||||||
case 'update':
|
|
||||||
case 'destroy':
|
|
||||||
return false;
|
|
||||||
default:
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
default:
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -23,20 +23,6 @@ require_once(INSTALLDIR.'/lib/twitterapi.php');
|
|||||||
|
|
||||||
class TwitapiaccountAction extends TwitterapiAction {
|
class TwitapiaccountAction extends TwitterapiAction {
|
||||||
|
|
||||||
function is_readonly() {
|
|
||||||
|
|
||||||
static $write_methods = array( 'update_location',
|
|
||||||
'update_delivery_device');
|
|
||||||
|
|
||||||
$cmdtext = explode('.', $this->arg('method'));
|
|
||||||
|
|
||||||
if (in_array($cmdtext[0], $write_methods)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function verify_credentials($args, $apidata) {
|
function verify_credentials($args, $apidata) {
|
||||||
|
|
||||||
if ($apidata['content-type'] == 'xml') {
|
if ($apidata['content-type'] == 'xml') {
|
||||||
|
@ -23,20 +23,6 @@ require_once(INSTALLDIR.'/lib/twitterapi.php');
|
|||||||
|
|
||||||
class Twitapidirect_messagesAction extends TwitterapiAction {
|
class Twitapidirect_messagesAction extends TwitterapiAction {
|
||||||
|
|
||||||
function is_readonly() {
|
|
||||||
|
|
||||||
static $write_methods = array( 'direct_messages',
|
|
||||||
'sent');
|
|
||||||
|
|
||||||
$cmdtext = explode('.', $this->arg('method'));
|
|
||||||
|
|
||||||
if (in_array($cmdtext[0], $write_methods)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function direct_messages($args, $apidata) {
|
function direct_messages($args, $apidata) {
|
||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
return $this->show_messages($args, $apidata, 'received');
|
return $this->show_messages($args, $apidata, 'received');
|
||||||
|
@ -23,19 +23,6 @@ require_once(INSTALLDIR.'/lib/twitterapi.php');
|
|||||||
|
|
||||||
class TwitapifavoritesAction extends TwitterapiAction {
|
class TwitapifavoritesAction extends TwitterapiAction {
|
||||||
|
|
||||||
function is_readonly() {
|
|
||||||
|
|
||||||
static $write_methods = array('favorites');
|
|
||||||
|
|
||||||
$cmdtext = explode('.', $this->arg('method'));
|
|
||||||
|
|
||||||
if (in_array($cmdtext[0], $write_methods)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function favorites($args, $apidata) {
|
function favorites($args, $apidata) {
|
||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
|
|
||||||
|
@ -23,20 +23,6 @@ require_once(INSTALLDIR.'/lib/twitterapi.php');
|
|||||||
|
|
||||||
class TwitapifriendshipsAction extends TwitterapiAction {
|
class TwitapifriendshipsAction extends TwitterapiAction {
|
||||||
|
|
||||||
function is_readonly() {
|
|
||||||
|
|
||||||
static $write_methods = array( 'create',
|
|
||||||
'destroy');
|
|
||||||
|
|
||||||
$cmdtext = explode('.', $this->arg('method'));
|
|
||||||
|
|
||||||
if (in_array($cmdtext[0], $write_methods)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function create($args, $apidata) {
|
function create($args, $apidata) {
|
||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
|
|
||||||
|
@ -23,10 +23,6 @@ require_once(INSTALLDIR.'/lib/twitterapi.php');
|
|||||||
|
|
||||||
class TwitapihelpAction extends TwitterapiAction {
|
class TwitapihelpAction extends TwitterapiAction {
|
||||||
|
|
||||||
function is_readonly() {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Returns the string "ok" in the requested format with a 200 OK HTTP status code.
|
/* Returns the string "ok" in the requested format with a 200 OK HTTP status code.
|
||||||
* URL:http://identi.ca/api/help/test.format
|
* URL:http://identi.ca/api/help/test.format
|
||||||
* Formats: xml, json
|
* Formats: xml, json
|
||||||
|
@ -23,20 +23,6 @@ require_once(INSTALLDIR.'/lib/twitterapi.php');
|
|||||||
|
|
||||||
class TwitapistatusesAction extends TwitterapiAction {
|
class TwitapistatusesAction extends TwitterapiAction {
|
||||||
|
|
||||||
function is_readonly() {
|
|
||||||
|
|
||||||
static $write_methods = array( 'update',
|
|
||||||
'destroy');
|
|
||||||
|
|
||||||
$cmdtext = explode('.', $this->arg('method'));
|
|
||||||
|
|
||||||
if (in_array($cmdtext[0], $write_methods)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function public_timeline($args, $apidata) {
|
function public_timeline($args, $apidata) {
|
||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
|
|
||||||
@ -242,6 +228,10 @@ class TwitapistatusesAction extends TwitterapiAction {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
foreach ($_POST as $p => $v) {
|
||||||
|
common_debug("_POST: $p = $v");
|
||||||
|
}
|
||||||
|
|
||||||
$this->auth_user = $apidata['user'];
|
$this->auth_user = $apidata['user'];
|
||||||
$user = $this->auth_user;
|
$user = $this->auth_user;
|
||||||
$status = $this->trimmed('status');
|
$status = $this->trimmed('status');
|
||||||
|
@ -23,10 +23,6 @@ require_once(INSTALLDIR.'/lib/twitterapi.php');
|
|||||||
|
|
||||||
class TwitapiusersAction extends TwitterapiAction {
|
class TwitapiusersAction extends TwitterapiAction {
|
||||||
|
|
||||||
function is_readonly() {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function show($args, $apidata) {
|
function show($args, $apidata) {
|
||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user