summaryrefslogtreecommitdiff
path: root/actions/twitapiblocks.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2008-12-08 13:57:28 -0500
committerEvan Prodromou <evan@controlyourself.ca>2008-12-08 13:57:28 -0500
commitef3d487ae02a6333b4e0f0714599ff1c3b7b729e (patch)
treef1e93c561e35ecc23fda597fd145bf3daf8ac733 /actions/twitapiblocks.php
parentcd5eec767aaa88fab29e781b12d53d0c92226f3b (diff)
enable block API
darcs-hash:20081208185728-5ed1f-8d5f6be6decfbb50deb4ca50bee13404d0c51b72.gz
Diffstat (limited to 'actions/twitapiblocks.php')
-rw-r--r--actions/twitapiblocks.php33
1 files changed, 30 insertions, 3 deletions
diff --git a/actions/twitapiblocks.php b/actions/twitapiblocks.php
index 21d620dd3..6bfdec0d0 100644
--- a/actions/twitapiblocks.php
+++ b/actions/twitapiblocks.php
@@ -24,13 +24,40 @@ require_once(INSTALLDIR.'/lib/twitterapi.php');
class TwitapiblocksAction extends TwitterapiAction {
function create($args, $apidata) {
+
parent::handle($args);
- common_server_error(_('API method under construction.'), $code=501);
+
+ $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);
- common_server_error(_('API method under construction.'), $code=501);
- }
+ $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.'));
+ }
+ }
} \ No newline at end of file