Ping r108847, missed one half quote
[lhc/web/wiklou.git] / includes / api / ApiBase.php
index 336bc79..2cda312 100644 (file)
@@ -30,7 +30,7 @@
  * The class functions are divided into several areas of functionality:
  *
  * Module parameters: Derived classes can define getAllowedParams() to specify
- *     which parameters to expect,ow to parse and validate them.
+ *     which parameters to expect, how to parse and validate them.
  *
  * Profiling: various methods to allow keeping tabs on various tasks and their
  *     time costs
@@ -39,7 +39,7 @@
  *
  * @ingroup API
  */
-abstract class ApiBase {
+abstract class ApiBase extends ContextSource {
 
        // These constants allow modules to specify exactly how to treat incoming parameters.
 
@@ -72,6 +72,10 @@ abstract class ApiBase {
                $this->mMainModule = $mainModule;
                $this->mModuleName = $moduleName;
                $this->mModulePrefix = $modulePrefix;
+
+               if ( !$this->isMain() ) {
+                       $this->setContext( $mainModule->getContext() );
+               }
        }
 
        /*****************************************************************************
@@ -122,6 +126,9 @@ abstract class ApiBase {
 
        /**
         * Get the name of the module as shown in the profiler log
+        *
+        * @param $db DatabaseBase
+        *
         * @return string
         */
        public function getModuleProfileName( $db = false ) {
@@ -170,6 +177,20 @@ abstract class ApiBase {
                return $this->getResult()->getData();
        }
 
+       /**
+        * Create a new RequestContext object to use e.g. for calls to other parts
+        * the software.
+        * The object will have the WebRequest and the User object set to the ones
+        * used in this instance.
+        *
+        * @deprecated since 1.19 use getContext to get the current context
+        * @return DerivativeContext
+        */
+       public function createContext() {
+               wfDeprecated( __METHOD__, '1.19' );
+               return new DerivativeContext( $this->getContext() );
+       }
+
        /**
         * Set warning section for this module. Users should monitor this
         * section to notice any changes in API. Multiple calls to this
@@ -178,7 +199,8 @@ abstract class ApiBase {
         * @param $warning string Warning message
         */
        public function setWarning( $warning ) {
-               $data = $this->getResult()->getData();
+               $result = $this->getResult();
+               $data = $result->getData();
                if ( isset( $data['warnings'][$this->getModuleName()] ) ) {
                        // Don't add duplicate warnings
                        $warn_regex = preg_quote( $warning, '/' );
@@ -188,13 +210,13 @@ abstract class ApiBase {
                        $oldwarning = $data['warnings'][$this->getModuleName()]['*'];
                        // If there is a warning already, append it to the existing one
                        $warning = "$oldwarning\n$warning";
-                       $this->getResult()->unsetValue( 'warnings', $this->getModuleName() );
+                       $result->unsetValue( 'warnings', $this->getModuleName() );
                }
                $msg = array();
                ApiResult::setContent( $msg, $warning );
-               $this->getResult()->disableSizeCheck();
-               $this->getResult()->addValue( 'warnings', $this->getModuleName(), $msg );
-               $this->getResult()->enableSizeCheck();
+               $result->disableSizeCheck();
+               $result->addValue( 'warnings', $this->getModuleName(), $msg );
+               $result->enableSizeCheck();
        }
 
        /**
@@ -214,7 +236,7 @@ abstract class ApiBase {
        public function makeHelpMsg() {
                static $lnPrfx = "\n  ";
 
-               $msg = $this->getDescription();
+               $msg = $this->getFinalDescription();
 
                if ( $msg !== false ) {
 
@@ -235,8 +257,7 @@ abstract class ApiBase {
                                $msg .= "\nThis module only accepts POST requests";
                        }
                        if ( $this->isReadMode() || $this->isWriteMode() ||
-                                       $this->mustBePosted() )
-                       {
+                                       $this->mustBePosted() ) {
                                $msg .= "\n";
                        }
 
@@ -246,21 +267,32 @@ abstract class ApiBase {
                                $msg .= "Parameters:\n$paramsMsg";
                        }
 
-                       // Examples
                        $examples = $this->getExamples();
-                       if ( $examples !== false ) {
+                       if ( $examples !== false && $examples !== '' ) {
                                if ( !is_array( $examples ) ) {
                                        $examples = array(
                                                $examples
                                        );
                                }
+                               $msg .= "Example" . ( count( $examples ) > 1 ? 's' : '' ) . ":\n";
+                               foreach( $examples as $k => $v ) {
 
-                               if ( count( $examples ) > 0 ) {
-                                       $msg .= 'Example' . ( count( $examples ) > 1 ? 's' : '' ) . ":\n  ";
-                                       $msg .= implode( $lnPrfx, $examples ) . "\n";
+                                       if ( is_numeric( $k ) ) {
+                                               $msg .= "  $v\n";
+                                       } else {
+                                               $v .= ":";
+                                               if ( is_array( $v ) ) {
+                                                       $msgExample = implode( "\n", array_map( array( $this, 'indentExampleText' ), $v ) );
+                                               } else {
+                                                       $msgExample = "  $v";
+                                               }
+                                               $msg .= wordwrap( $msgExample, 100, "\n" ) . "\n    $k\n";
+                                       }
                                }
                        }
 
+                       $msg .= $this->makeHelpArrayToString( $lnPrfx, "Help page", $this->getHelpUrls() );
+
                        if ( $this->getMain()->getShowVersions() ) {
                                $versions = $this->getVersion();
                                $pattern = '/(\$.*) ([0-9a-z_]+\.php) (.*\$)/i';
@@ -282,10 +314,42 @@ abstract class ApiBase {
                return $msg;
        }
 
+       /**
+        * @param $item string
+        * @return string
+        */
+       private function indentExampleText( $item ) {
+               return "  " . $item;
+       }
+
+       /**
+        * @param $prefix string Text to split output items
+        * @param $title string What is being output
+        * @param $input string|array
+        * @return string
+        */
+       protected function makeHelpArrayToString( $prefix, $title, $input ) {
+               if ( $input === false ) {
+                       return '';
+               }
+               if ( !is_array( $input ) ) {
+                       $input = array(
+                               $input
+                       );
+               }
+
+               if ( count( $input ) > 0 ) {
+                       $msg = $title . ( count( $input ) > 1 ? 's' : '' ) . ":\n  ";
+                       $msg .= implode( $prefix, $input ) . "\n";
+                       return $msg;
+               }
+               return '';
+       }
+
        /**
         * Generates the parameter descriptions for this module, to be displayed in the
         * module's help.
-        * @return string
+        * @return string or false
         */
        public function makeHelpMsgParameters() {
                $params = $this->getFinalParams();
@@ -293,7 +357,8 @@ abstract class ApiBase {
 
                        $paramsDescription = $this->getFinalParamDescription();
                        $msg = '';
-                       $paramPrefix = "\n" . str_repeat( ' ', 19 );
+                       $paramPrefix = "\n" . str_repeat( ' ', 24 );
+                       $descWordwrap = "\n" . str_repeat( ' ', 28 );
                        foreach ( $params as $paramName => $paramSettings ) {
                                $desc = isset( $paramsDescription[$paramName] ) ? $paramsDescription[$paramName] : '';
                                if ( is_array( $desc ) ) {
@@ -307,20 +372,20 @@ abstract class ApiBase {
                                }
 
                                $deprecated = isset( $paramSettings[self::PARAM_DEPRECATED] ) ?
-                                       $paramSettings[self::PARAM_DEPRECATED] : false;
+                                               $paramSettings[self::PARAM_DEPRECATED] : false;
                                if ( $deprecated ) {
                                        $desc = "DEPRECATED! $desc";
                                }
 
                                $required = isset( $paramSettings[self::PARAM_REQUIRED] ) ?
-                                       $paramSettings[self::PARAM_REQUIRED] : false;
+                                               $paramSettings[self::PARAM_REQUIRED] : false;
                                if ( $required ) {
                                        $desc .= $paramPrefix . "This parameter is required";
                                }
 
                                $type = isset( $paramSettings[self::PARAM_TYPE] ) ? $paramSettings[self::PARAM_TYPE] : null;
                                if ( isset( $type ) ) {
-                                       if ( isset( $paramSettings[self::PARAM_ISMULTI] ) ) {
+                                       if ( isset( $paramSettings[self::PARAM_ISMULTI] ) && $paramSettings[self::PARAM_ISMULTI] ) {
                                                $prompt = 'Values (separate with \'|\'): ';
                                        } else {
                                                $prompt = 'One value: ';
@@ -338,12 +403,14 @@ abstract class ApiBase {
                                                }
                                                $desc .= $paramPrefix . $nothingPrompt . $prompt;
                                                $choicesstring = implode( ', ', $choices );
-                                               $desc .= wordwrap( $choicesstring, 100, "\n                       " );
+                                               $desc .= wordwrap( $choicesstring, 100, $descWordwrap );
                                        } else {
                                                switch ( $type ) {
                                                        case 'namespace':
                                                                // Special handling because namespaces are type-limited, yet they are not given
-                                                               $desc .= $paramPrefix . $prompt . implode( ', ', MWNamespace::getValidNamespaces() );
+                                                               $desc .= $paramPrefix . $prompt;
+                                                               $desc .= wordwrap( implode( ', ', MWNamespace::getValidNamespaces() ),
+                                                                       100, $descWordwrap );
                                                                break;
                                                        case 'limit':
                                                                $desc .= $paramPrefix . "No more than {$paramSettings[self :: PARAM_MAX]}";
@@ -375,7 +442,7 @@ abstract class ApiBase {
                                                        if ( !$isArray
                                                                        || $isArray && count( $paramSettings[self::PARAM_TYPE] ) > self::LIMIT_SML1 ) {
                                                                $desc .= $paramPrefix . "Maximum number of values " .
-                                                                       self::LIMIT_SML1 . " (" . self::LIMIT_SML2 . " for bots)";
+                                                                               self::LIMIT_SML1 . " (" . self::LIMIT_SML2 . " for bots)";
                                                        }
                                                }
                                        }
@@ -388,7 +455,7 @@ abstract class ApiBase {
                                        $desc .= $paramPrefix . "Default: $default";
                                }
 
-                               $msg .= sprintf( "  %-14s - %s\n", $this->encodeParamName( $paramName ), $desc );
+                               $msg .= sprintf( "  %-19s - %s\n", $this->encodeParamName( $paramName ), $desc );
                        }
                        return $msg;
 
@@ -400,6 +467,9 @@ abstract class ApiBase {
        /**
         * Callback for preg_replace_callback() call in makeHelpMsg().
         * Replaces a source file name with a link to ViewVC
+        *
+        * @param $matches array
+        * @return string
         */
        public function makeHelpMsg_callback( $matches ) {
                global $wgAutoloadClasses, $wgAutoloadLocalClasses;
@@ -425,9 +495,9 @@ abstract class ApiBase {
                // This is necessary to make stuff like ApiMain::getVersion()
                // returning the version string for ApiBase work
                if ( $path ) {
-                       return "{$matches[0]}\n   http://svn.wikimedia.org/" .
-                               "viewvc/mediawiki/trunk/" . dirname( $path ) .
-                               "/{$matches[2]}";
+                       return "{$matches[0]}\n   https://svn.wikimedia.org/" .
+                                       "viewvc/mediawiki/trunk/" . dirname( $path ) .
+                                       "/{$matches[2]}";
                }
                return $matches[0];
        }
@@ -441,8 +511,8 @@ abstract class ApiBase {
        }
 
        /**
-        * Returns usage examples for this module. Return null if no examples are available.
-        * @return mixed string or array of strings
+        * Returns usage examples for this module. Return false if no examples are available.
+        * @return false|string|array
         */
        protected function getExamples() {
                return false;
@@ -453,7 +523,7 @@ abstract class ApiBase {
         * value) or (parameter name) => (array with PARAM_* constants as keys)
         * Don't call this function directly: use getFinalParams() to allow
         * hooks to modify parameters as needed.
-        * @return array
+        * @return array or false
         */
        protected function getAllowedParams() {
                return false;
@@ -463,7 +533,7 @@ abstract class ApiBase {
         * Returns an array of parameter descriptions.
         * Don't call this functon directly: use getFinalParamDescription() to
         * allow hooks to modify descriptions as needed.
-        * @return array
+        * @return array or false
         */
        protected function getParamDescription() {
                return false;
@@ -472,7 +542,8 @@ abstract class ApiBase {
        /**
         * Get final list of parameters, after hooks have had a chance to
         * tweak it as needed.
-        * @return array
+        *
+        * @return array or false
         */
        public function getFinalParams() {
                $params = $this->getAllowedParams();
@@ -481,8 +552,9 @@ abstract class ApiBase {
        }
 
        /**
-        * Get final description, after hooks have had a chance to tweak it as
+        * Get final parameter descriptions, after hooks have had a chance to tweak it as
         * needed.
+        *
         * @return array
         */
        public function getFinalParamDescription() {
@@ -491,6 +563,18 @@ abstract class ApiBase {
                return $desc;
        }
 
+       /**
+        * Get final module description, after hooks have had a chance to tweak it as
+        * needed.
+        *
+        * @return array
+        */
+       public function getFinalDescription() {
+               $desc = $this->getDescription();
+               wfRunHooks( 'APIGetDescription', array( &$this, &$desc ) );
+               return $desc;
+       }
+
        /**
         * This method mangles parameter name based on the prefix supplied to the constructor.
         * Override this method to change parameter name during runtime
@@ -548,7 +632,7 @@ abstract class ApiBase {
                array_shift( $required );
 
                $intersection = array_intersect( array_keys( array_filter( $params,
-                               array( $this, "parameterNotEmpty" ) ) ), $required );
+                       array( $this, "parameterNotEmpty" ) ) ), $required );
 
                if ( count( $intersection ) > 1 ) {
                        $this->dieUsage( 'The parameters ' . implode( ', ', $intersection ) . ' can not be used together', 'invalidparammix' );
@@ -573,6 +657,38 @@ abstract class ApiBase {
                );
        }
 
+       /**
+        * Die if more than one of a certain set of parameters is set and not false.
+        *
+        * @param $params array
+        */
+       public function requireMaxOneParameter( $params ) {
+               $required = func_get_args();
+               array_shift( $required );
+
+               $intersection = array_intersect( array_keys( array_filter( $params,
+                       array( $this, "parameterNotEmpty" ) ) ), $required );
+
+               if ( count( $intersection ) > 1 ) {
+                       $this->dieUsage( 'The parameters ' . implode( ', ', $intersection ) . ' can not be used together', 'invalidparammix' );
+               }
+       }
+
+       /**
+        * Generates the possible error requireMaxOneParameter() can die with
+        *
+        * @param $params array
+        * @return array
+        */
+       public function getRequireMaxOneParameterErrorMessages( $params ) {
+               $p = $this->getModulePrefix();
+               $params = implode( ", {$p}", $params );
+
+               return array(
+                       array( 'code' => "{$p}invalidparammix", 'info' => "The parameters {$p}{$params} can not be used together" )
+               );
+       }
+
        /**
         * Callback function used in requireOnlyOneParameter to check whether reequired parameters are set
         *
@@ -584,9 +700,12 @@ abstract class ApiBase {
        }
 
        /**
-        * @deprecated use MWNamespace::getValidNamespaces()
+        * @deprecated since 1.17 use MWNamespace::getValidNamespaces()
+        *
+        * @return array
         */
        public static function getValidNamespaces() {
+               wfDeprecated( __METHOD__, '1.17' );
                return MWNamespace::getValidNamespaces();
        }
 
@@ -596,13 +715,12 @@ abstract class ApiBase {
         * @param $titleObj Title the page under consideration
         * @param $userOption String The user option to consider when $watchlist=preferences.
         *      If not set will magically default to either watchdefault or watchcreations
-        * @returns Boolean
+        * @return bool
         */
        protected function getWatchlistValue ( $watchlist, $titleObj, $userOption = null ) {
 
                $userWatching = $titleObj->userIsWatching();
 
-               global $wgUser;
                switch ( $watchlist ) {
                        case 'watch':
                                return true;
@@ -618,10 +736,10 @@ abstract class ApiBase {
                                # If no user option was passed, use watchdefault or watchcreation
                                if ( is_null( $userOption ) ) {
                                        $userOption = $titleObj->exists()
-                                               ? 'watchdefault' : 'watchcreations';
+                                                       ? 'watchdefault' : 'watchcreations';
                                }
                                # Watch the article based on the user preference
-                               return (bool)$wgUser->getOption( $userOption );
+                               return (bool)$this->getUser()->getOption( $userOption );
 
                        case 'nochange':
                                return $userWatching;
@@ -637,17 +755,17 @@ abstract class ApiBase {
         * @param $titleObj Title the article's title to change
         * @param $userOption String The user option to consider when $watch=preferences
         */
-       protected function setWatch ( $watch, $titleObj, $userOption = null ) {
+       protected function setWatch( $watch, $titleObj, $userOption = null ) {
                $value = $this->getWatchlistValue( $watch, $titleObj, $userOption );
                if ( $value === null ) {
                        return;
                }
 
-               $articleObj = new Article( $titleObj );
+               $user = $this->getUser();
                if ( $value ) {
-                       $articleObj->doWatch();
+                       WatchAction::doWatch( $titleObj, $user );
                } else {
-                       $articleObj->doUnwatch();
+                       WatchAction::doUnwatch( $titleObj, $user );
                }
        }
 
@@ -695,9 +813,9 @@ abstract class ApiBase {
                                ApiBase::dieDebug( __METHOD__, "Boolean param $encParamName's default is set to '$default'" );
                        }
 
-                       $value = $this->getMain()->getRequest()->getCheck( $encParamName );
+                       $value = $this->getRequest()->getCheck( $encParamName );
                } else {
-                       $value = $this->getMain()->getRequest()->getVal( $encParamName, $default );
+                       $value = $this->getRequest()->getVal( $encParamName, $default );
 
                        if ( isset( $value ) && $type == 'namespace' ) {
                                $type = MWNamespace::getValidNamespaces();
@@ -767,14 +885,13 @@ abstract class ApiBase {
                                                }
                                                break;
                                        case 'timestamp':
-                                               if ( $multi ) {
-                                                       ApiBase::dieDebug( __METHOD__, "Multi-values not supported for $encParamName" );
-                                               }
-                                               $value = wfTimestamp( TS_UNIX, $value );
-                                               if ( $value === 0 ) {
-                                                       $this->dieUsage( "Invalid value '$value' for timestamp parameter $encParamName", "badtimestamp_{$encParamName}" );
+                                               if ( is_array( $value ) ) {
+                                                       foreach ( $value as $key => $val ) {
+                                                               $value[$key] = $this->validateTimestamp( $val, $encParamName );
+                                                       }
+                                               } else {
+                                                       $value = $this->validateTimestamp( $value, $encParamName );
                                                }
-                                               $value = wfTimestamp( TS_MW, $value );
                                                break;
                                        case 'user':
                                                if ( !is_array( $value ) ) {
@@ -807,7 +924,7 @@ abstract class ApiBase {
                        if ( $deprecated && $value !== false ) {
                                $this->setWarning( "The $encParamName parameter has been deprecated." );
                        }
-               } else if ( $required ) {
+               } elseif ( $required ) {
                        $this->dieUsageMsg( array( 'missingparam', $paramName ) );
                }
 
@@ -835,13 +952,18 @@ abstract class ApiBase {
                // This is a bit awkward, but we want to avoid calling canApiHighLimits() because it unstubs $wgUser
                $valuesList = explode( '|', $value, self::LIMIT_SML2 + 1 );
                $sizeLimit = count( $valuesList ) > self::LIMIT_SML1 && $this->mMainModule->canApiHighLimits() ?
-                       self::LIMIT_SML2 : self::LIMIT_SML1;
+                               self::LIMIT_SML2 : self::LIMIT_SML1;
 
                if ( self::truncateArray( $valuesList, $sizeLimit ) ) {
                        $this->setWarning( "Too many values supplied for parameter '$valueName': the limit is $sizeLimit" );
                }
 
                if ( !$allowMultiple && count( $valuesList ) != 1 ) {
+                       // Bug 33482 - Allow entries with | in them for non-multiple values
+                       if ( in_array( $value, $allowedValues ) ) {
+                               return $value;
+                       }
+
                        $possibleValues = is_array( $allowedValues ) ? "of '" . implode( "', '", $allowedValues ) . "'" : '';
                        $this->dieUsage( "Only one $possibleValues is allowed for parameter '$valueName'", "multival_$valueName" );
                }
@@ -905,6 +1027,19 @@ abstract class ApiBase {
                }
        }
 
+       /**
+        * @param $value string
+        * @param $paramName string
+        * @return string
+        */
+       function validateTimestamp( $value, $paramName ) {
+               $value = wfTimestamp( TS_UNIX, $value );
+               if ( $value === 0 ) {
+                       $this->dieUsage( "Invalid value '$value' for timestamp parameter $paramName", "badtimestamp_{$paramName}" );
+               }
+               return wfTimestamp( TS_MW, $value );
+       }
+
        /**
         * Adds a warning to the output, else dies
         *
@@ -946,7 +1081,7 @@ abstract class ApiBase {
         * @param $extradata array Data to add to the <error> element; array in ApiResult format
         */
        public function dieUsage( $description, $errorCode, $httpRespCode = 0, $extradata = null ) {
-               wfProfileClose();
+               Profiler::instance()->close();
                throw new UsageException( $description, $this->encodeParamName( $errorCode ), $httpRespCode, $extradata );
        }
 
@@ -955,16 +1090,17 @@ abstract class ApiBase {
         */
        public static $messageMap = array(
                // This one MUST be present, or dieUsageMsg() will recurse infinitely
-               'unknownerror' => array( 'code' => 'unknownerror', 'info' => "Unknown error: ``\$1''" ),
+               'unknownerror' => array( 'code' => 'unknownerror', 'info' => "Unknown error: \"\$1\"" ),
                'unknownerror-nocode' => array( 'code' => 'unknownerror', 'info' => 'Unknown error' ),
 
                // Messages from Title::getUserPermissionsErrors()
                'ns-specialprotected' => array( 'code' => 'unsupportednamespace', 'info' => "Pages in the Special namespace can't be edited" ),
                'protectedinterface' => array( 'code' => 'protectednamespace-interface', 'info' => "You're not allowed to edit interface messages" ),
-               'namespaceprotected' => array( 'code' => 'protectednamespace', 'info' => "You're not allowed to edit pages in the ``\$1'' namespace" ),
-               'customcssjsprotected' => array( 'code' => 'customcssjsprotected', 'info' => "You're not allowed to edit custom CSS and JavaScript pages" ),
+               'namespaceprotected' => array( 'code' => 'protectednamespace', 'info' => "You're not allowed to edit pages in the \"\$1\" namespace" ),
+               'customcssprotected' => array( 'code' => 'customcssprotected', 'info' => "You're not allowed to edit custom CSS pages" ),
+               'customjsprotected' => array( 'code' => 'customjsprotected', 'info' => "You're not allowed to edit custom JavaScript pages" ),
                'cascadeprotected' => array( 'code' => 'cascadeprotected', 'info' => "The page you're trying to edit is protected because it's included in a cascade-protected page" ),
-               'protectedpagetext' => array( 'code' => 'protectedpage', 'info' => "The ``\$1'' right is required to edit this page" ),
+               'protectedpagetext' => array( 'code' => 'protectedpage', 'info' => "The \"\$1\" right is required to edit this page" ),
                'protect-cantedit' => array( 'code' => 'cantedit', 'info' => "You can't protect this page because you can't edit it" ),
                'badaccess-group0' => array( 'code' => 'permissiondenied', 'info' => "Permission denied" ), // Generic permission denied message
                'badaccess-groups' => array( 'code' => 'permissiondenied', 'info' => "Permission denied" ),
@@ -983,7 +1119,7 @@ abstract class ApiBase {
                'cantrollback' => array( 'code' => 'onlyauthor', 'info' => "The page you tried to rollback only has one author" ),
                'readonlytext' => array( 'code' => 'readonly', 'info' => "The wiki is currently in read-only mode" ),
                'sessionfailure' => array( 'code' => 'badtoken', 'info' => "Invalid token" ),
-               'cannotdelete' => array( 'code' => 'cantdelete', 'info' => "Couldn't delete ``\$1''. Maybe it was deleted already by someone else" ),
+               'cannotdelete' => array( 'code' => 'cantdelete', 'info' => "Couldn't delete \"\$1\". Maybe it was deleted already by someone else" ),
                'notanarticle' => array( 'code' => 'missingtitle', 'info' => "The page you requested doesn't exist" ),
                'selfmove' => array( 'code' => 'selfmove', 'info' => "Can't move a page to itself" ),
                'immobile_namespace' => array( 'code' => 'immobilenamespace', 'info' => "You tried to move pages from or to a namespace that is protected from moving" ),
@@ -1001,7 +1137,7 @@ abstract class ApiBase {
                'badipaddress' => array( 'code' => 'invalidip', 'info' => "Invalid IP address specified" ),
                'ipb_expiry_invalid' => array( 'code' => 'invalidexpiry', 'info' => "Invalid expiry time" ),
                'ipb_already_blocked' => array( 'code' => 'alreadyblocked', 'info' => "The user you tried to block was already blocked" ),
-               'ipb_blocked_as_range' => array( 'code' => 'blockedasrange', 'info' => "IP address ``\$1'' was blocked as part of range ``\$2''. You can't unblock the IP invidually, but you can unblock the range as a whole." ),
+               'ipb_blocked_as_range' => array( 'code' => 'blockedasrange', 'info' => "IP address \"\$1\" was blocked as part of range \"\$2\". You can't unblock the IP invidually, but you can unblock the range as a whole." ),
                'ipb_cant_unblock' => array( 'code' => 'cantunblock', 'info' => "The block you specified was not found. It may have been unblocked already" ),
                'mailnologin' => array( 'code' => 'cantsend', 'info' => "You are not logged in, you do not have a confirmed e-mail address, or you are not allowed to send e-mail to other users, so you cannot send e-mail" ),
                'ipbblocked' => array( 'code' => 'ipbblocked', 'info' => 'You cannot block or unblock users while you are yourself blocked' ),
@@ -1015,9 +1151,9 @@ abstract class ApiBase {
                'delete-toobig' => array( 'code' => 'bigdelete', 'info' => "You can't delete this page because it has more than \$1 revisions" ),
                'movenotallowedfile' => array( 'code' => 'cantmovefile', 'info' => "You don't have permission to move files" ),
                'userrights-no-interwiki' => array( 'code' => 'nointerwikiuserrights', 'info' => "You don't have permission to change user rights on other wikis" ),
-               'userrights-nodatabase' => array( 'code' => 'nosuchdatabase', 'info' => "Database ``\$1'' does not exist or is not local" ),
-               'nouserspecified' => array( 'code' => 'invaliduser', 'info' => "Invalid username ``\$1''" ),
-               'noname' => array( 'code' => 'invaliduser', 'info' => "Invalid username ``\$1''" ),
+               'userrights-nodatabase' => array( 'code' => 'nosuchdatabase', 'info' => "Database \"\$1\" does not exist or is not local" ),
+               'nouserspecified' => array( 'code' => 'invaliduser', 'info' => "Invalid username \"\$1\"" ),
+               'noname' => array( 'code' => 'invaliduser', 'info' => "Invalid username \"\$1\"" ),
                'summaryrequired' => array( 'code' => 'summaryrequired', 'info' => 'Summary required' ),
 
                // API-specific messages
@@ -1025,13 +1161,13 @@ abstract class ApiBase {
                'writedisabled' => array( 'code' => 'noapiwrite', 'info' => "Editing of this wiki through the API is disabled. Make sure the \$wgEnableWriteAPI=true; statement is included in the wiki's LocalSettings.php file" ),
                'writerequired' => array( 'code' => 'writeapidenied', 'info' => "You're not allowed to edit this wiki through the API" ),
                'missingparam' => array( 'code' => 'no$1', 'info' => "The \$1 parameter must be set" ),
-               'invalidtitle' => array( 'code' => 'invalidtitle', 'info' => "Bad title ``\$1''" ),
+               'invalidtitle' => array( 'code' => 'invalidtitle', 'info' => "Bad title \"\$1\"" ),
                'nosuchpageid' => array( 'code' => 'nosuchpageid', 'info' => "There is no page with ID \$1" ),
                'nosuchrevid' => array( 'code' => 'nosuchrevid', 'info' => "There is no revision with ID \$1" ),
-               'nosuchuser' => array( 'code' => 'nosuchuser', 'info' => "User ``\$1'' doesn't exist" ),
-               'invaliduser' => array( 'code' => 'invaliduser', 'info' => "Invalid username ``\$1''" ),
-               'invalidexpiry' => array( 'code' => 'invalidexpiry', 'info' => "Invalid expiry time ``\$1''" ),
-               'pastexpiry' => array( 'code' => 'pastexpiry', 'info' => "Expiry time ``\$1'' is in the past" ),
+               'nosuchuser' => array( 'code' => 'nosuchuser', 'info' => "User \"\$1\" doesn't exist" ),
+               'invaliduser' => array( 'code' => 'invaliduser', 'info' => "Invalid username \"\$1\"" ),
+               'invalidexpiry' => array( 'code' => 'invalidexpiry', 'info' => "Invalid expiry time \"\$1\"" ),
+               'pastexpiry' => array( 'code' => 'pastexpiry', 'info' => "Expiry time \"\$1\" is in the past" ),
                'create-titleexists' => array( 'code' => 'create-titleexists', 'info' => "Existing titles can't be protected with 'create'" ),
                'missingtitle-createonly' => array( 'code' => 'missingtitle-createonly', 'info' => "Missing titles can only be protected with 'create'" ),
                'cantblock' => array( 'code' => 'cantblock', 'info' => "You don't have permission to block users" ),
@@ -1044,9 +1180,9 @@ abstract class ApiBase {
                'permdenied-undelete' => array( 'code' => 'permissiondenied', 'info' => "You don't have permission to restore deleted revisions" ),
                'createonly-exists' => array( 'code' => 'articleexists', 'info' => "The article you tried to create has been created already" ),
                'nocreate-missing' => array( 'code' => 'missingtitle', 'info' => "The article you tried to edit doesn't exist" ),
-               'nosuchrcid' => array( 'code' => 'nosuchrcid', 'info' => "There is no change with rcid ``\$1''" ),
-               'protect-invalidaction' => array( 'code' => 'protect-invalidaction', 'info' => "Invalid protection type ``\$1''" ),
-               'protect-invalidlevel' => array( 'code' => 'protect-invalidlevel', 'info' => "Invalid protection level ``\$1''" ),
+               'nosuchrcid' => array( 'code' => 'nosuchrcid', 'info' => "There is no change with rcid \"\$1\"" ),
+               'protect-invalidaction' => array( 'code' => 'protect-invalidaction', 'info' => "Invalid protection type \"\$1\"" ),
+               'protect-invalidlevel' => array( 'code' => 'protect-invalidlevel', 'info' => "Invalid protection level \"\$1\"" ),
                'toofewexpiries' => array( 'code' => 'toofewexpiries', 'info' => "\$1 expiry timestamps were provided where \$2 were needed" ),
                'cantimport' => array( 'code' => 'cantimport', 'info' => "You don't have permission to import pages" ),
                'cantimport-upload' => array( 'code' => 'cantimport-upload', 'info' => "You don't have permission to import uploaded pages" ),
@@ -1058,17 +1194,19 @@ abstract class ApiBase {
                'importcantopen' => array( 'code' => 'cantopenfile', 'info' => "Couldn't open the uploaded file" ),
                'import-noarticle' => array( 'code' => 'badinterwiki', 'info' => 'Invalid interwiki title specified' ),
                'importbadinterwiki' => array( 'code' => 'badinterwiki', 'info' => 'Invalid interwiki title specified' ),
-               'import-unknownerror' => array( 'code' => 'import-unknownerror', 'info' => "Unknown error on import: ``\$1''" ),
+               'import-unknownerror' => array( 'code' => 'import-unknownerror', 'info' => "Unknown error on import: \"\$1\"" ),
                'cantoverwrite-sharedfile' => array( 'code' => 'cantoverwrite-sharedfile', 'info' => 'The target file exists on a shared repository and you do not have permission to override it' ),
                'sharedfile-exists' => array( 'code' => 'fileexists-sharedrepo-perm', 'info' => 'The target file exists on a shared repository. Use the ignorewarnings parameter to override it.' ),
                'mustbeposted' => array( 'code' => 'mustbeposted', 'info' => "The \$1 module requires a POST request" ),
                'show' => array( 'code' => 'show', 'info' => 'Incorrect parameter - mutually exclusive values may not be supplied' ),
                'specialpage-cantexecute' => array( 'code' => 'specialpage-cantexecute', 'info' => "You don't have permission to view the results of this special page" ),
+               'invalidoldimage' => array( 'code' => 'invalidoldimage', 'info' => 'The oldimage parameter has invalid format' ),
+               'nodeleteablefile' => array( 'code' => 'nodeleteablefile', 'info' => 'No such old version of the file' ),
 
                // ApiEditPage messages
                'noimageredirect-anon' => array( 'code' => 'noimageredirect-anon', 'info' => "Anonymous users can't create image redirects" ),
                'noimageredirect-logged' => array( 'code' => 'noimageredirect', 'info' => "You don't have permission to create image redirects" ),
-               'spamdetected' => array( 'code' => 'spamdetected', 'info' => "Your edit was refused because it contained a spam fragment: ``\$1''" ),
+               'spamdetected' => array( 'code' => 'spamdetected', 'info' => "Your edit was refused because it contained a spam fragment: \"\$1\"" ),
                'filtered' => array( 'code' => 'filtered', 'info' => "The filter callback function refused your edit" ),
                'contenttoobig' => array( 'code' => 'contenttoobig', 'info' => "The content you supplied exceeds the article size limit of \$1 kilobytes" ),
                'noedit-anon' => array( 'code' => 'noedit-anon', 'info' => "Anonymous users can't edit pages" ),
@@ -1079,16 +1217,23 @@ abstract class ApiBase {
                'hashcheckfailed' => array( 'code' => 'badmd5', 'info' => "The supplied MD5 hash was incorrect" ),
                'missingtext' => array( 'code' => 'notext', 'info' => "One of the text, appendtext, prependtext and undo parameters must be set" ),
                'emptynewsection' => array( 'code' => 'emptynewsection', 'info' => 'Creating empty new sections is not possible.' ),
-               'revwrongpage' => array( 'code' => 'revwrongpage', 'info' => "r\$1 is not a revision of ``\$2''" ),
+               'revwrongpage' => array( 'code' => 'revwrongpage', 'info' => "r\$1 is not a revision of \"\$2\"" ),
                'undo-failure' => array( 'code' => 'undofailure', 'info' => 'Undo failed due to conflicting intermediate edits' ),
 
+               // Messages from WikiPage::doEit()
+               'edit-hook-aborted' => array( 'code' => 'edit-hook-aborted', 'info' => "Your edit was aborted by an ArticleSave hook" ),
+               'edit-gone-missing' => array( 'code' => 'edit-gone-missing', 'info' => "The page you tried to edit doesn't seem to exist anymore" ),
+               'edit-conflict' => array( 'code' => 'editconflict', 'info' => "Edit conflict detected" ),
+               'edit-already-exists' => array( 'code' => 'edit-already-exists', 'info' => "It seems the page you tried to create already exist" ),
+
                // uploadMsgs
                'invalid-session-key' => array( 'code' => 'invalid-session-key', 'info' => 'Not a valid session key' ),
                'nouploadmodule' => array( 'code' => 'nouploadmodule', 'info' => 'No upload module set' ),
                'uploaddisabled' => array( 'code' => 'uploaddisabled', 'info' => 'Uploads are not enabled.  Make sure $wgEnableUploads is set to true in LocalSettings.php and the PHP ini setting file_uploads is true' ),
                'copyuploaddisabled' => array( 'code' => 'copyuploaddisabled', 'info' => 'Uploads by URL is not enabled.  Make sure $wgAllowCopyUploads is set to true in LocalSettings.php.' ),
-               
+
                'filename-tooshort' => array( 'code' => 'filename-tooshort', 'info' => 'The filename is too short' ),
+               'filename-toolong' => array( 'code' => 'filename-toolong', 'info' => 'The filename is too long' ),
                'illegal-filename' => array( 'code' => 'illegal-filename', 'info' => 'The filename is not allowed' ),
                'filetype-missing' => array( 'code' => 'filetype-missing', 'info' => 'The file is missing an extension' ),
        );
@@ -1104,9 +1249,14 @@ abstract class ApiBase {
 
        /**
         * Output the error message related to a certain array
-        * @param $error array Element of a getUserPermissionsErrors()-style array
+        * @param $error (array|string) Element of a getUserPermissionsErrors()-style array
         */
        public function dieUsageMsg( $error ) {
+               # most of the time we send a 1 element, so we might as well send it as
+               # a string and make this an array here.
+               if( is_string( $error ) ) {
+                       $error = array( $error );
+               }
                $parsed = $this->parseMsg( $error );
                $this->dieUsage( $parsed['info'], $parsed['code'] );
        }
@@ -1118,13 +1268,22 @@ abstract class ApiBase {
         */
        public function parseMsg( $error ) {
                $key = array_shift( $error );
+
+               // Check whether the error array was nested
+               // array( array( <code>, <params> ), array( <another_code>, <params> ) )
+               if( is_array( $key ) ){
+                       $error = $key;
+                       $key = array_shift( $error );
+               }
+
                if ( isset( self::$messageMap[$key] ) ) {
                        return array( 'code' =>
-                               wfMsgReplaceArgs( self::$messageMap[$key]['code'], $error ),
-                                       'info' =>
+                       wfMsgReplaceArgs( self::$messageMap[$key]['code'], $error ),
+                               'info' =>
                                wfMsgReplaceArgs( self::$messageMap[$key]['info'], $error )
                        );
                }
+
                // If the key isn't present, throw an "unknown error"
                return $this->parseMsg( array( 'unknownerror', $key ) );
        }
@@ -1171,7 +1330,7 @@ abstract class ApiBase {
 
        /**
         * Returns whether this module requires a Token to execute
-        * @returns bool
+        * @return bool
         */
        public function needsToken() {
                return false;
@@ -1179,22 +1338,22 @@ abstract class ApiBase {
 
        /**
         * Returns the token salt if there is one, '' if the module doesn't require a salt, else false if the module doesn't need a token
-        * @returns bool
+        * @return bool|string
         */
        public function getTokenSalt() {
                return false;
        }
 
        /**
-       * Gets the user for whom to get the watchlist
-       *
-       * @returns User
-       */
+        * Gets the user for whom to get the watchlist
+        *
+        * @param $params array
+        * @return User
+        */
        public function getWatchlistUser( $params ) {
-               global $wgUser;
                if ( !is_null( $params['owner'] ) && !is_null( $params['token'] ) ) {
                        $user = User::newFromName( $params['owner'], false );
-                       if ( !$user->getId() ) {
+                       if ( !($user && $user->getId()) ) {
                                $this->dieUsage( 'Specified user does not exist', 'bad_wlowner' );
                        }
                        $token = $user->getOption( 'watchlisttoken' );
@@ -1202,14 +1361,21 @@ abstract class ApiBase {
                                $this->dieUsage( 'Incorrect watchlist token provided -- please set a correct token in Special:Preferences', 'bad_wltoken' );
                        }
                } else {
-                       if ( !$wgUser->isLoggedIn() ) {
+                       if ( !$this->getUser()->isLoggedIn() ) {
                                $this->dieUsage( 'You must be logged-in to have a watchlist', 'notloggedin' );
                        }
-                       $user = $wgUser;
+                       $user = $this->getUser();
                }
                return $user;
        }
 
+       /**
+        * @return false|string|array Returns a false if the module has no help url, else returns a (array of) string
+        */
+       public function getHelpUrls() {
+               return false;
+       }
+
        /**
         * Returns a list of all possible errors returned by the module
         * @return array in the format of array( key, param1, param2, ... ) or array( 'code' => ..., 'info' => ... )
@@ -1370,6 +1536,13 @@ abstract class ApiBase {
                return $this->mDBTime;
        }
 
+       /**
+        * @return DatabaseBase
+        */
+       protected function getDB() {
+               return wfGetDB( DB_SLAVE, 'api' );
+       }
+
        /**
         * Debugging function that prints a value and an optional backtrace
         * @param $value mixed Value to print