diff options
author | zach <zach@copley.name> | 2008-07-22 14:29:19 -0400 |
---|---|---|
committer | zach <zach@copley.name> | 2008-07-22 14:29:19 -0400 |
commit | 877eb138c4a793cb065e9575e4f31469caf86b36 (patch) | |
tree | f432cf57955d014d6ac2a89a7562640edff2b07b /actions/twitapifriendships.php | |
parent | 038f762bce95323ac929b0635cceb7f9425527ec (diff) |
Twitter-compatible API: made is_readonly() method smarter
darcs-hash:20080722182919-ca946-dce04d84290711066154567458da2dd3253dd957.gz
Diffstat (limited to 'actions/twitapifriendships.php')
-rw-r--r-- | actions/twitapifriendships.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/actions/twitapifriendships.php b/actions/twitapifriendships.php index 19bc71b7a..05c192ea6 100644 --- a/actions/twitapifriendships.php +++ b/actions/twitapifriendships.php @@ -23,6 +23,20 @@ require_once(INSTALLDIR.'/lib/twitterapi.php'); 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) { parent::handle($args); |