summaryrefslogtreecommitdiff
path: root/actions/twitapigroups.php
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2009-07-30 22:15:24 -0400
committerCraig Andrews <candrews@integralblue.com>2009-07-30 22:15:24 -0400
commitec103b90e39c20bfdc2f5663e35eae8b1df212e9 (patch)
tree426d281c82b7dabaca62bca56da4fd6d5e089976 /actions/twitapigroups.php
parent80ad02610a428bef62b18e284e15ca847a435cde (diff)
Implemented the "show" method of the laconica groups api
Diffstat (limited to 'actions/twitapigroups.php')
-rw-r--r--actions/twitapigroups.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/actions/twitapigroups.php b/actions/twitapigroups.php
index 71a0776f4..f899bc369 100644
--- a/actions/twitapigroups.php
+++ b/actions/twitapigroups.php
@@ -51,6 +51,32 @@ require_once INSTALLDIR.'/lib/twitterapi.php';
class TwitapigroupsAction extends TwitterapiAction
{
+ function show($args, $apidata)
+ {
+ parent::handle($args);
+
+ common_debug("in groups api action");
+
+ $this->auth_user = $apidata['user'];
+ $group = $this->get_group($apidata['api_arg'], $apidata);
+
+ if (empty($group)) {
+ $this->clientError('Not Found', 404, $apidata['content-type']);
+ return;
+ }
+
+ switch($apidata['content-type']) {
+ case 'xml':
+ $this->show_single_xml_group($group);
+ break;
+ case 'json':
+ $this->show_single_json_group($group);
+ break;
+ default:
+ $this->clientError(_('API method not found!'), $code = 404);
+ }
+ }
+
function timeline($args, $apidata)
{
parent::handle($args);