* (bug 10181) Support the XCache object caching mechanism [patch from Kurt Radwanski]
[lhc/web/wiklou.git] / includes / api / ApiBase.php
index cd20e3e..723a679 100644 (file)
@@ -5,7 +5,7 @@
  *
  * API for MediaWiki 1.8+
  *
- * Copyright (C) 2006 Yuri Astrakhan <FirstnameLastname@gmail.com>
+ * Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  */
 
 /**
- * @todo Document - e.g. Provide top-level description of this class.
+ * This abstract class implements many basic API functions, and is the base of all API classes.
+ * The class functions are divided into several areas of functionality:
+ * 
+ * Module parameters: Derived classes can define getAllowedParams() to specify which parameters to expect,
+ *     how to parse and validate them.
+ * 
+ * Profiling: various methods to allow keeping tabs on various tasks and their time costs
+ * 
+ * Self-documentation: code to allow api to document its own state.
+ * 
  * @addtogroup API
  */
 abstract class ApiBase {
@@ -34,14 +43,14 @@ abstract class ApiBase {
        const PARAM_DFLT = 0;
        const PARAM_ISMULTI = 1;
        const PARAM_TYPE = 2;
-       const PARAM_MAX1 = 3;
+       const PARAM_MAX = 3;
        const PARAM_MAX2 = 4;
        const PARAM_MIN = 5;
 
-       const LIMIT_BIG1 = 500; // Fast query, user's limit
-       const LIMIT_BIG2 = 5000; // Fast query, bot's limit
-       const LIMIT_SML1 = 50; // Slow query, user's limit
-       const LIMIT_SML2 = 500; // Slow query, bot's limit
+       const LIMIT_BIG1 = 500; // Fast query, std user limit
+       const LIMIT_BIG2 = 5000; // Fast query, bot/sysop limit
+       const LIMIT_SML1 = 50; // Slow query, std user limit
+       const LIMIT_SML2 = 500; // Slow query, bot/sysop limit
 
        private $mMainModule, $mModuleName, $mParamPrefix;
 
@@ -66,6 +75,13 @@ abstract class ApiBase {
                return $this->mModuleName;
        }
 
+       /**
+        * Get parameter prefix (usually two letters or an empty string). 
+        */
+       public function getParamPrefix() {
+               return $this->mParamPrefix;
+       }       
+
        /**
         * Get the name of the module as shown in the profiler log 
         */
@@ -191,11 +207,38 @@ abstract class ApiBase {
                                                $prompt = 'One value: ';
 
                                        if (is_array($type)) {
-                                               $desc .= $paramPrefix . $prompt . implode(', ', $type);
-                                       }
-                                       elseif ($type == 'namespace') {
-                                               // Special handling because namespaces are type-limited, yet they are not given
-                                               $desc .= $paramPrefix . $prompt . implode(', ', ApiBase :: getValidNamespaces());
+                                               $choices = array();
+                                               $nothingPrompt = false;
+                                               foreach ($type as $t)
+                                                       if ($t=='')
+                                                               $nothingPrompt = 'Can be empty, or ';
+                                                       else
+                                                               $choices[] =  $t;
+                                               $desc .= $paramPrefix . $nothingPrompt . $prompt . implode(', ', $choices);
+                                       } else {
+                                               switch ($type) {
+                                                       case 'namespace':
+                                                               // Special handling because namespaces are type-limited, yet they are not given
+                                                               $desc .= $paramPrefix . $prompt . implode(', ', ApiBase :: getValidNamespaces());
+                                                               break;
+                                                       case 'limit':
+                                                               $desc .= $paramPrefix . "No more than {$paramSettings[self :: PARAM_MAX]} ({$paramSettings[self :: PARAM_MAX2]} for bots) allowed.";
+                                                               break;
+                                                       case 'integer':
+                                                               $hasMin = isset($paramSettings[self :: PARAM_MIN]);
+                                                               $hasMax = isset($paramSettings[self :: PARAM_MAX]);
+                                                               if ($hasMin || $hasMax) {
+                                                                       if (!$hasMax)
+                                                                               $intRangeStr = "The value must be no less than {$paramSettings[self :: PARAM_MIN]}";
+                                                                       elseif (!$hasMin)
+                                                                               $intRangeStr = "The value must be no more than {$paramSettings[self :: PARAM_MAX]}";
+                                                                       else
+                                                                               $intRangeStr = "The value must be between {$paramSettings[self :: PARAM_MIN]} and {$paramSettings[self :: PARAM_MAX]}";
+                                                                               
+                                                                       $desc .= $paramPrefix . $intRangeStr;
+                                                               }
+                                                               break;
+                                               }
                                        }
                                }
 
@@ -339,17 +382,33 @@ abstract class ApiBase {
                                                break;
                                        case 'string' : // nothing to do
                                                break;
-                                       case 'integer' : // Force everything using intval()
+                                       case 'integer' : // Force everything using intval() and optionally validate limits
+
                                                $value = is_array($value) ? array_map('intval', $value) : intval($value);
+                                               $checkMin = isset ($paramSettings[self :: PARAM_MIN]);
+                                               $checkMax = isset ($paramSettings[self :: PARAM_MAX]);
+                                               
+                                               if ($checkMin || $checkMax) {
+                                                       $min = $checkMin ? $paramSettings[self :: PARAM_MIN] : false;
+                                                       $max = $checkMax ? $paramSettings[self :: PARAM_MAX] : false;
+                                               
+                                                       $values = is_array($value) ? $value : array($value);
+                                                       foreach ($values as $v) {
+                                                               if ($checkMin && $v < $min)
+                                                                       $this->dieUsage("$paramName may not be less than $min (set to $v)", $paramName);
+                                                               if ($checkMax && $v > $max)
+                                                                       $this->dieUsage("$paramName may not be over $max (set to $v)", $paramName);
+                                                       }
+                                               }
                                                break;
                                        case 'limit' :
-                                               if (!isset ($paramSettings[self :: PARAM_MAX1]) || !isset ($paramSettings[self :: PARAM_MAX2]))
+                                               if (!isset ($paramSettings[self :: PARAM_MAX]) || !isset ($paramSettings[self :: PARAM_MAX2]))
                                                        ApiBase :: dieDebug(__METHOD__, "MAX1 or MAX2 are not defined for the limit $paramName");
                                                if ($multi)
                                                        ApiBase :: dieDebug(__METHOD__, "Multi-values not supported for $paramName");
                                                $min = isset ($paramSettings[self :: PARAM_MIN]) ? $paramSettings[self :: PARAM_MIN] : 0;
                                                $value = intval($value);
-                                               $this->validateLimit($paramName, $value, $min, $paramSettings[self :: PARAM_MAX1], $paramSettings[self :: PARAM_MAX2]);
+                                               $this->validateLimit($paramName, $value, $min, $paramSettings[self :: PARAM_MAX], $paramSettings[self :: PARAM_MAX2]);
                                                break;
                                        case 'boolean' :
                                                if ($multi)
@@ -363,6 +422,12 @@ abstract class ApiBase {
                                                        $this->dieUsage("Invalid value '$value' for timestamp parameter $paramName", "badtimestamp_{$paramName}");
                                                $value = wfTimestamp(TS_MW, $value);
                                                break;
+                                       case 'user' :
+                                               $title = Title::makeTitleSafe( NS_USER, $value );
+                                               if ( is_null( $title ) )
+                                                       $this->dieUsage("Invalid value $user for user parameter $paramName", "baduser_{$paramName}");
+                                               $value = $title->getText();
+                                               break;
                                        default :
                                                ApiBase :: dieDebug(__METHOD__, "Param $paramName's type is unknown - $type");
                                }
@@ -410,9 +475,9 @@ abstract class ApiBase {
                        $this->dieUsage("$varname may not be less than $min (set to $value)", $varname);
                }
 
-               if ($this->getMain()->isBot()) {
+               if ($this->getMain()->isBot() || $this->getMain()->isSysop()) {
                        if ($value > $botMax) {
-                               $this->dieUsage("$varname may not be over $botMax (set to $value) for bots", $varname);
+                               $this->dieUsage("$varname may not be over $botMax (set to $value) for bots or sysops", $varname);
                        }
                }
                elseif ($value > $max) {
@@ -527,9 +592,11 @@ abstract class ApiBase {
                return $this->mDBTime;
        }
        
-       public static function debugPrint($value, $name = 'unknown') {
-               print "\n\n<pre><b>Debuging value '$location':</b>\n\n";
+       public static function debugPrint($value, $name = 'unknown', $backtrace = false) {
+               print "\n\n<pre><b>Debuging value '$name':</b>\n\n";
                var_export($value);
+               if ($backtrace)
+                       print "\n" . wfBacktrace();
                print "\n</pre>\n";
        }