]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
$format is used by every API action. Set it in the base class.
authorZach Copley <zach@status.net>
Fri, 9 Oct 2009 21:42:01 +0000 (14:42 -0700)
committerZach Copley <zach@status.net>
Fri, 9 Oct 2009 21:42:01 +0000 (14:42 -0700)
18 files changed:
actions/apiaccountratelimitstatus.php
actions/apiaccountverifycredentials.php
actions/apiblockcreate.php
actions/apiblockdestroy.php
actions/apidirectmessage.php
actions/apidirectmessagenew.php
actions/apifavoritecreate.php
actions/apifavoritedestroy.php
actions/apifriendshipscreate.php
actions/apifriendshipsdestroy.php
actions/apifriendshipsexists.php
actions/apifriendshipsshow.php
actions/apigroupshow.php
actions/apihelptest.php
actions/apistatusnetconfig.php
actions/apistatusnetversion.php
actions/apiusershow.php
lib/api.php

index 3c6c3e714dcf55a943877c2abab970a021a26360..9eba5c55db3aad07ef5c9fa1a712eb785085328a 100644 (file)
@@ -46,8 +46,6 @@ require_once INSTALLDIR.'/lib/apibareauth.php';
 
 class ApiAccountRateLimitStatusAction extends ApiBareAuthAction
 {
-    var $format = null;
-
     /**
      * Take arguments for running
      *
@@ -67,7 +65,6 @@ class ApiAccountRateLimitStatusAction extends ApiBareAuthAction
             }
         }
 
-        $this->format = $this->arg('format');
         return true;
     }
 
index b9c9bf0f725d1e0ef7c40ad0b6e29996e66aa55e..0d4928f6ce1b38c55381dac9ad3d4e00ddb67c6d 100644 (file)
@@ -47,8 +47,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
 
 class ApiAccountVerifyCredentialsAction extends ApiAuthAction
 {
-    var $format                = null;
-
     /**
      * Take arguments for running
      *
@@ -68,7 +66,6 @@ class ApiAccountVerifyCredentialsAction extends ApiAuthAction
             }
         }
 
-        $this->format = $this->arg('format');
         return true;
     }
 
index ff303863ecd79528ab7a4330a95942fb4885f1e0..6421712713e91ecf8dd51c57510cabe504be7af2 100644 (file)
@@ -47,7 +47,6 @@ require_once INSTALLDIR . '/lib/apiauth.php';
 
 class ApiBlockCreateAction extends ApiAuthAction
 {
-    var $format  = null;
     var $user    = null;
     var $other   = null;
 
@@ -72,7 +71,6 @@ class ApiBlockCreateAction extends ApiAuthAction
 
         $this->user   = $this->auth_user;
         $this->other  = $this->getTargetUser($this->arg('id'));
-        $this->format = $this->arg('format');
 
         return true;
     }
index 0f24be3aaf31f8570593f98b862fdded63e1e74b..109e66ac41380a7b3421cd67bab987ab924e0482 100644 (file)
@@ -46,7 +46,6 @@ require_once INSTALLDIR . '/lib/apiauth.php';
 
 class ApiBlockDestroyAction extends ApiAuthAction
 {
-    var $format  = null;
     var $user    = null;
     var $other   = null;
 
@@ -71,7 +70,6 @@ class ApiBlockDestroyAction extends ApiAuthAction
 
         $this->user   = $this->auth_user;
         $this->other  = $this->getTargetUser($this->arg('id'));
-        $this->format = $this->arg('format');
 
         return true;
     }
index 87ae44d7a5d53dd9e36a90774f3b29e055cd3208..fa68833117ce462a3b9c5ad84661c6970f7cb731 100644 (file)
@@ -45,7 +45,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
 
 class ApiDirectMessageAction extends ApiAuthAction
 {
-    var $format       = null;
     var $messages     = null;
     var $page         = null;
     var $count        = null;
@@ -122,8 +121,6 @@ class ApiDirectMessageAction extends ApiAuthAction
             $this->id = "tag:$taguribase:DirectMessages:" . $this->user->id;
         }
 
-        $this->format = $this->arg('format');
-
         $this->messages = $this->getMessages();
 
         return true;
index d836409ae01686d363e6577df319e2aab0211b60..b531d7c5c77d873466e76d7aceb657e023e599bc 100644 (file)
@@ -46,7 +46,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
 
 class ApiDirectMessageNewAction extends ApiAuthAction
 {
-    var $format  = null;
     var $source  = null;
     var $user    = null;
     var $other   = null;
@@ -97,8 +96,6 @@ class ApiDirectMessageNewAction extends ApiAuthAction
             $this->other = $this->getTargetUser($user_param);
         }
 
-        $this->format = $this->arg('format');
-
         return true;
     }
 
index e45603c6a24eaae07752d36daff95ffb1b7f5ac1..6ee6960ba56d8e13678ee965c7925e98c8d94e5f 100644 (file)
@@ -46,8 +46,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
 
 class ApiFavoriteCreateAction extends ApiAuthAction
 {
-
-    var $format = null;
     var $user   = null;
     var $notice = null;
 
@@ -70,7 +68,6 @@ class ApiFavoriteCreateAction extends ApiAuthAction
             }
         }
 
-        $this->format = $this->arg('format');
         $this->user   = $this->auth_user;
         $this->notice = Notice::staticGet($this->arg('id'));
 
index a70d5c79b140f2c1f6fe80e421e55bec69ffa980..36946fbfbe3183898f69501607323784fb8f3ab9 100644 (file)
@@ -47,9 +47,9 @@ require_once INSTALLDIR.'/lib/apiauth.php';
 class ApiFavoriteDestroyAction extends ApiAuthAction
 {
 
-    var $format = null;
     var $user   = null;
     var $notice = null;
+
     /**
      * Take arguments for running
      *
@@ -69,7 +69,6 @@ class ApiFavoriteDestroyAction extends ApiAuthAction
             }
         }
 
-        $this->format = $this->arg('format');
         $this->user   = $this->auth_user;
         $this->notice = Notice::staticGet($this->arg('id'));
 
index 969fc12820a3df734d580a1b4b6be51bb4179ba1..27bdbe0623bb3c87a547ae4507f0c4fcdd85529e 100644 (file)
@@ -47,8 +47,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
 
 class ApiFriendshipsCreateAction extends ApiAuthAction
 {
-
-    var $format = null;
     var $user   = null;
     var $other  = null;
 
@@ -71,7 +69,6 @@ class ApiFriendshipsCreateAction extends ApiAuthAction
             }
         }
 
-        $this->format = $this->arg('format');
         $this->user   = $this->auth_user;
         $this->other  = $this->getTargetUser($id);
 
index ef864c4db84d721a9e5f372ba65a2d4480e4206e..3ad12156dd44ae8f278b6a5f4c49bdc2d0ed3a7d 100644 (file)
@@ -47,8 +47,6 @@ require_once INSTALLDIR.'/lib/apiauth.php';
 
 class ApiFriendshipsDestroyAction extends ApiAuthAction
 {
-
-    var $format = null;
     var $user   = null;
     var $other  = null;
 
@@ -71,7 +69,6 @@ class ApiFriendshipsDestroyAction extends ApiAuthAction
             }
         }
 
-        $this->format = $this->arg('format');
         $this->user   = $this->auth_user;
         $this->other  = $this->getTargetUser($id);
 
index d1d5d520fcf058485660bbd3946d599867029ea3..1ebfc9e8fd31858fcf29485a82149e9e9163e547 100644 (file)
@@ -46,8 +46,6 @@ require_once INSTALLDIR.'/lib/api.php';
 
 class ApiFriendshipsExistsAction extends TwitterApiAction
 {
-
-    var $format = null;
     var $user_a = null;
     var $user_b = null;
 
@@ -64,8 +62,6 @@ class ApiFriendshipsExistsAction extends TwitterApiAction
     {
         parent::prepare($args);
 
-        $this->format = $this->arg('format');
-
         $user_a_id = $this->trimmed('user_a');
         $user_b_id = $this->trimmed('user_b');
 
index d35825a4333146c55e8f0ecfea454a84af92e61b..2f975b121bee1109f47e98ded2bb041163581443 100644 (file)
@@ -45,8 +45,6 @@ require_once INSTALLDIR.'/lib/apibareauth.php';
 
 class ApiFriendshipsShowAction extends ApiBareAuthAction
 {
-
-    var $format = null;
     var $user   = null;
     var $source = null;
     var $target = null;
@@ -70,8 +68,6 @@ class ApiFriendshipsShowAction extends ApiBareAuthAction
             }
         }
 
-        $this->format = $this->arg('format');
-
         $source_id          = (int)$this->trimmed('source_id');
         $source_screen_name = $this->trimmed('source_screen_name');
         $target_id          = (int)$this->trimmed('target_id');
index a38d50afe7fb801b26222581d3eb1c1e0d38b51b..cdaf707aa99132b842615fea8d2ecdbc1eb2a360 100644 (file)
@@ -45,7 +45,6 @@ require_once INSTALLDIR.'/lib/api.php';
 
 class ApiGroupShowAction extends TwitterApiAction
 {
-    var $format = null;
     var $group = null;
 
     /**
@@ -61,7 +60,6 @@ class ApiGroupShowAction extends TwitterApiAction
     {
         parent::prepare($args);
 
-        $this->format = $this->arg('format');
         $this->group = $this->getTargetGroup($this->arg('id'));
 
         return true;
index 2cec4646273229c4397c16b69ad90b964eab40d6..ac1bb1a5b3a0581e9be0634023d490584c5648dc 100644 (file)
@@ -45,7 +45,6 @@ require_once INSTALLDIR . '/lib/api.php';
 
 class ApiHelpTestAction extends TwitterApiAction
 {
-    var $format = null;
 
     /**
      * Take arguments for running
@@ -59,7 +58,6 @@ class ApiHelpTestAction extends TwitterApiAction
     function prepare($args)
     {
         parent::prepare($args);
-        $this->format = $this->arg('format');
         return true;
     }
 
index 6847a48fe13b28d7dd044d2070b5a2878d56bafb..6fb65331f4da54e0af7cdd8d35bed7717965eadd 100644 (file)
@@ -49,8 +49,6 @@ require_once INSTALLDIR . '/lib/api.php';
 
 class ApiStatusnetConfigAction extends TwitterApiAction
 {
-    var $format = null;
-
     var $keys = array(
         'site' => array('name', 'server', 'theme', 'path', 'fancy', 'language',
                         'email', 'broughtby', 'broughtbyurl', 'closed',
@@ -73,7 +71,6 @@ class ApiStatusnetConfigAction extends TwitterApiAction
     function prepare($args)
     {
         parent::prepare($args);
-        $this->format = $this->arg('format');
         return true;
     }
 
index e6f35e7d29586e513519ea5f3e8edbb6f8ec008d..2cd99edb7a83b9cdb91db91eed780b36623bea19 100644 (file)
@@ -48,8 +48,6 @@ require_once INSTALLDIR . '/lib/api.php';
 
 class ApiStatusnetVersionAction extends TwitterApiAction
 {
-    var $format = null;
-
     /**
      * Take arguments for running
      *
@@ -62,7 +60,6 @@ class ApiStatusnetVersionAction extends TwitterApiAction
     function prepare($args)
     {
         parent::prepare($args);
-        $this->format = $this->arg('format');
         return true;
     }
 
index afcbd3618da949d95a060729a44256cd7193753c..1cd0cdfd5fa634c1d2de98930ef6052335cd3b54 100644 (file)
@@ -46,8 +46,6 @@ require_once INSTALLDIR.'/lib/api.php';
 
 class ApiUserShowAction extends TwitterApiAction
 {
-
-    var $format = null;
     var $user   = null;
 
     /**
@@ -63,8 +61,6 @@ class ApiUserShowAction extends TwitterApiAction
     {
         parent::prepare($args);
 
-        $this->format = $this->arg('format');
-
         $email = $this->arg('email');
 
         // XXX: email field deprecated in Twitter's API
index 93b4a751385704a6589565d1568e134ae8a02722..fb51d5260e3d1375ceb918afda824528e8731d64 100644 (file)
@@ -43,6 +43,7 @@ if (!defined('STATUSNET')) {
 
 class ApiAction extends Action
 {
+     var $format = null;
 
     /**
      * Initialization.
@@ -55,6 +56,7 @@ class ApiAction extends Action
     function prepare($args)
     {
         parent::prepare($args);
+        $this->format   = $this->arg('format');
         return true;
     }