Allow passing detailed permission errors data to API
[lhc/web/wiklou.git] / includes / api / ApiBase.php
1 <?php
2 /**
3 *
4 *
5 * Created on Sep 5, 2006
6 *
7 * Copyright © 2006, 2010 Yuri Astrakhan "<Firstname><Lastname>@gmail.com"
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 */
26
27 /**
28 * This abstract class implements many basic API functions, and is the base of
29 * all API classes.
30 * The class functions are divided into several areas of functionality:
31 *
32 * Module parameters: Derived classes can define getAllowedParams() to specify
33 * which parameters to expect, how to parse and validate them.
34 *
35 * Self-documentation: code to allow the API to document its own state
36 *
37 * @ingroup API
38 */
39 abstract class ApiBase extends ContextSource {
40 // These constants allow modules to specify exactly how to treat incoming parameters.
41
42 // Default value of the parameter
43 const PARAM_DFLT = 0;
44 // Boolean, do we accept more than one item for this parameter (e.g.: titles)?
45 const PARAM_ISMULTI = 1;
46 // Can be either a string type (e.g.: 'integer') or an array of allowed values
47 const PARAM_TYPE = 2;
48 // Max value allowed for a parameter. Only applies if TYPE='integer'
49 const PARAM_MAX = 3;
50 // Max value allowed for a parameter for bots and sysops. Only applies if TYPE='integer'
51 const PARAM_MAX2 = 4;
52 // Lowest value allowed for a parameter. Only applies if TYPE='integer'
53 const PARAM_MIN = 5;
54 // Boolean, do we allow the same value to be set more than once when ISMULTI=true
55 const PARAM_ALLOW_DUPLICATES = 6;
56 // Boolean, is the parameter deprecated (will show a warning)
57 const PARAM_DEPRECATED = 7;
58 /// @since 1.17
59 const PARAM_REQUIRED = 8; // Boolean, is the parameter required?
60 /// @since 1.17
61 // Boolean, if MIN/MAX are set, enforce (die) these?
62 // Only applies if TYPE='integer' Use with extreme caution
63 const PARAM_RANGE_ENFORCE = 9;
64 /// @since 1.25
65 // Specify an alternative i18n message for this help parameter.
66 // Value is $msg for ApiBase::makeMessage()
67 const PARAM_HELP_MSG = 10;
68 /// @since 1.25
69 // Specify additional i18n messages to append to the normal message. Value
70 // is an array of $msg for ApiBase::makeMessage()
71 const PARAM_HELP_MSG_APPEND = 11;
72 /// @since 1.25
73 // Specify additional information tags for the parameter. Value is an array
74 // of arrays, with the first member being the 'tag' for the info and the
75 // remaining members being the values. In the help, this is formatted using
76 // apihelp-{$path}-paraminfo-{$tag}, which is passed $1 = count, $2 =
77 // comma-joined list of values, $3 = module prefix.
78 const PARAM_HELP_MSG_INFO = 12;
79 /// @since 1.25
80 // When PARAM_TYPE is an array, this may be an array mapping those values
81 // to page titles which will be linked in the help.
82 const PARAM_VALUE_LINKS = 13;
83 /// @since 1.25
84 // When PARAM_TYPE is an array, this is an array mapping those values to
85 // $msg for ApiBase::makeMessage(). Any value not having a mapping will use
86 // apihelp-{$path}-paramvalue-{$param}-{$value} is used.
87 const PARAM_HELP_MSG_PER_VALUE = 14;
88 /// @since 1.26
89 // When PARAM_TYPE is 'submodule', map parameter values to submodule paths.
90 // Default is to use all modules in $this->getModuleManager() in the group
91 // matching the parameter name.
92 const PARAM_SUBMODULE_MAP = 15;
93 /// @since 1.26
94 // When PARAM_TYPE is 'submodule', used to indicate the 'g' prefix added by
95 // ApiQueryGeneratorBase (and similar if anything else ever does that).
96 const PARAM_SUBMODULE_PARAM_PREFIX = 16;
97
98 const LIMIT_BIG1 = 500; // Fast query, std user limit
99 const LIMIT_BIG2 = 5000; // Fast query, bot/sysop limit
100 const LIMIT_SML1 = 50; // Slow query, std user limit
101 const LIMIT_SML2 = 500; // Slow query, bot/sysop limit
102
103 /**
104 * getAllowedParams() flag: When set, the result could take longer to generate,
105 * but should be more thorough. E.g. get the list of generators for ApiSandBox extension
106 * @since 1.21
107 */
108 const GET_VALUES_FOR_HELP = 1;
109
110 /** @var array Maps extension paths to info arrays */
111 private static $extensionInfo = null;
112
113 /** @var ApiMain */
114 private $mMainModule;
115 /** @var string */
116 private $mModuleName, $mModulePrefix;
117 private $mSlaveDB = null;
118 private $mParamCache = array();
119 /** @var array|null|bool */
120 private $mModuleSource = false;
121
122 /**
123 * @param ApiMain $mainModule
124 * @param string $moduleName Name of this module
125 * @param string $modulePrefix Prefix to use for parameter names
126 */
127 public function __construct( ApiMain $mainModule, $moduleName, $modulePrefix = '' ) {
128 $this->mMainModule = $mainModule;
129 $this->mModuleName = $moduleName;
130 $this->mModulePrefix = $modulePrefix;
131
132 if ( !$this->isMain() ) {
133 $this->setContext( $mainModule->getContext() );
134 }
135 }
136
137
138 /************************************************************************//**
139 * @name Methods to implement
140 * @{
141 */
142
143 /**
144 * Evaluates the parameters, performs the requested query, and sets up
145 * the result. Concrete implementations of ApiBase must override this
146 * method to provide whatever functionality their module offers.
147 * Implementations must not produce any output on their own and are not
148 * expected to handle any errors.
149 *
150 * The execute() method will be invoked directly by ApiMain immediately
151 * before the result of the module is output. Aside from the
152 * constructor, implementations should assume that no other methods
153 * will be called externally on the module before the result is
154 * processed.
155 *
156 * The result data should be stored in the ApiResult object available
157 * through getResult().
158 */
159 abstract public function execute();
160
161 /**
162 * Get the module manager, or null if this module has no sub-modules
163 * @since 1.21
164 * @return ApiModuleManager
165 */
166 public function getModuleManager() {
167 return null;
168 }
169
170 /**
171 * If the module may only be used with a certain format module,
172 * it should override this method to return an instance of that formatter.
173 * A value of null means the default format will be used.
174 * @note Do not use this just because you don't want to support non-json
175 * formats. This should be used only when there is a fundamental
176 * requirement for a specific format.
177 * @return mixed Instance of a derived class of ApiFormatBase, or null
178 */
179 public function getCustomPrinter() {
180 return null;
181 }
182
183 /**
184 * Returns usage examples for this module.
185 *
186 * Return value has query strings as keys, with values being either strings
187 * (message key), arrays (message key + parameter), or Message objects.
188 *
189 * Do not call this base class implementation when overriding this method.
190 *
191 * @since 1.25
192 * @return array
193 */
194 protected function getExamplesMessages() {
195 // Fall back to old non-localised method
196 $ret = array();
197
198 $examples = $this->getExamples();
199 if ( $examples ) {
200 if ( !is_array( $examples ) ) {
201 $examples = array( $examples );
202 } elseif ( $examples && ( count( $examples ) & 1 ) == 0 &&
203 array_keys( $examples ) === range( 0, count( $examples ) - 1 ) &&
204 !preg_match( '/^\s*api\.php\?/', $examples[0] )
205 ) {
206 // Fix up the ugly "even numbered elements are description, odd
207 // numbered elemts are the link" format (see doc for self::getExamples)
208 $tmp = array();
209 $examplesCount = count( $examples );
210 for ( $i = 0; $i < $examplesCount; $i += 2 ) {
211 $tmp[$examples[$i + 1]] = $examples[$i];
212 }
213 $examples = $tmp;
214 }
215
216 foreach ( $examples as $k => $v ) {
217 if ( is_numeric( $k ) ) {
218 $qs = $v;
219 $msg = '';
220 } else {
221 $qs = $k;
222 $msg = self::escapeWikiText( $v );
223 if ( is_array( $msg ) ) {
224 $msg = join( " ", $msg );
225 }
226 }
227
228 $qs = preg_replace( '/^\s*api\.php\?/', '', $qs );
229 $ret[$qs] = $this->msg( 'api-help-fallback-example', array( $msg ) );
230 }
231 }
232
233 return $ret;
234 }
235
236 /**
237 * Return links to more detailed help pages about the module.
238 * @since 1.25, returning boolean false is deprecated
239 * @return string|array
240 */
241 public function getHelpUrls() {
242 return array();
243 }
244
245 /**
246 * Returns an array of allowed parameters (parameter name) => (default
247 * value) or (parameter name) => (array with PARAM_* constants as keys)
248 * Don't call this function directly: use getFinalParams() to allow
249 * hooks to modify parameters as needed.
250 *
251 * Some derived classes may choose to handle an integer $flags parameter
252 * in the overriding methods. Callers of this method can pass zero or
253 * more OR-ed flags like GET_VALUES_FOR_HELP.
254 *
255 * @return array
256 */
257 protected function getAllowedParams( /* $flags = 0 */ ) {
258 // int $flags is not declared because it causes "Strict standards"
259 // warning. Most derived classes do not implement it.
260 return array();
261 }
262
263 /**
264 * Indicates if this module needs maxlag to be checked
265 * @return bool
266 */
267 public function shouldCheckMaxlag() {
268 return true;
269 }
270
271 /**
272 * Indicates whether this module requires read rights
273 * @return bool
274 */
275 public function isReadMode() {
276 return true;
277 }
278
279 /**
280 * Indicates whether this module requires write mode
281 * @return bool
282 */
283 public function isWriteMode() {
284 return false;
285 }
286
287 /**
288 * Indicates whether this module must be called with a POST request
289 * @return bool
290 */
291 public function mustBePosted() {
292 return $this->needsToken() !== false;
293 }
294
295 /**
296 * Indicates whether this module is deprecated
297 * @since 1.25
298 * @return bool
299 */
300 public function isDeprecated() {
301 return false;
302 }
303
304 /**
305 * Indicates whether this module is "internal"
306 * Internal API modules are not (yet) intended for 3rd party use and may be unstable.
307 * @since 1.25
308 * @return bool
309 */
310 public function isInternal() {
311 return false;
312 }
313
314 /**
315 * Returns the token type this module requires in order to execute.
316 *
317 * Modules are strongly encouraged to use the core 'csrf' type unless they
318 * have specialized security needs. If the token type is not one of the
319 * core types, you must use the ApiQueryTokensRegisterTypes hook to
320 * register it.
321 *
322 * Returning a non-falsey value here will force the addition of an
323 * appropriate 'token' parameter in self::getFinalParams(). Also,
324 * self::mustBePosted() must return true when tokens are used.
325 *
326 * In previous versions of MediaWiki, true was a valid return value.
327 * Returning true will generate errors indicating that the API module needs
328 * updating.
329 *
330 * @return string|false
331 */
332 public function needsToken() {
333 return false;
334 }
335
336 /**
337 * Fetch the salt used in the Web UI corresponding to this module.
338 *
339 * Only override this if the Web UI uses a token with a non-constant salt.
340 *
341 * @since 1.24
342 * @param array $params All supplied parameters for the module
343 * @return string|array|null
344 */
345 protected function getWebUITokenSalt( array $params ) {
346 return null;
347 }
348
349 /**
350 * Returns data for HTTP conditional request mechanisms.
351 *
352 * @since 1.26
353 * @param string $condition Condition being queried:
354 * - last-modified: Return a timestamp representing the maximum of the
355 * last-modified dates for all resources involved in the request. See
356 * RFC 7232 § 2.2 for semantics.
357 * - etag: Return an entity-tag representing the state of all resources involved
358 * in the request. Quotes must be included. See RFC 7232 § 2.3 for semantics.
359 * @return string|boolean|null As described above, or null if no value is available.
360 */
361 public function getConditionalRequestData( $condition ) {
362 return null;
363 }
364
365 /**@}*/
366
367 /************************************************************************//**
368 * @name Data access methods
369 * @{
370 */
371
372 /**
373 * Get the name of the module being executed by this instance
374 * @return string
375 */
376 public function getModuleName() {
377 return $this->mModuleName;
378 }
379
380 /**
381 * Get parameter prefix (usually two letters or an empty string).
382 * @return string
383 */
384 public function getModulePrefix() {
385 return $this->mModulePrefix;
386 }
387
388 /**
389 * Get the main module
390 * @return ApiMain
391 */
392 public function getMain() {
393 return $this->mMainModule;
394 }
395
396 /**
397 * Returns true if this module is the main module ($this === $this->mMainModule),
398 * false otherwise.
399 * @return bool
400 */
401 public function isMain() {
402 return $this === $this->mMainModule;
403 }
404
405 /**
406 * Get the parent of this module
407 * @since 1.25
408 * @return ApiBase|null
409 */
410 public function getParent() {
411 return $this->isMain() ? null : $this->getMain();
412 }
413
414 /**
415 * Returns true if the current request breaks the same-origin policy.
416 *
417 * For example, json with callbacks.
418 *
419 * https://en.wikipedia.org/wiki/Same-origin_policy
420 *
421 * @since 1.25
422 * @return bool
423 */
424 public function lacksSameOriginSecurity() {
425 return $this->getMain()->getRequest()->getVal( 'callback' ) !== null;
426 }
427
428 /**
429 * Get the path to this module
430 *
431 * @since 1.25
432 * @return string
433 */
434 public function getModulePath() {
435 if ( $this->isMain() ) {
436 return 'main';
437 } elseif ( $this->getParent()->isMain() ) {
438 return $this->getModuleName();
439 } else {
440 return $this->getParent()->getModulePath() . '+' . $this->getModuleName();
441 }
442 }
443
444 /**
445 * Get a module from its module path
446 *
447 * @since 1.25
448 * @param string $path
449 * @return ApiBase|null
450 * @throws UsageException
451 */
452 public function getModuleFromPath( $path ) {
453 $module = $this->getMain();
454 if ( $path === 'main' ) {
455 return $module;
456 }
457
458 $parts = explode( '+', $path );
459 if ( count( $parts ) === 1 ) {
460 // In case the '+' was typed into URL, it resolves as a space
461 $parts = explode( ' ', $path );
462 }
463
464 $count = count( $parts );
465 for ( $i = 0; $i < $count; $i++ ) {
466 $parent = $module;
467 $manager = $parent->getModuleManager();
468 if ( $manager === null ) {
469 $errorPath = join( '+', array_slice( $parts, 0, $i ) );
470 $this->dieUsage( "The module \"$errorPath\" has no submodules", 'badmodule' );
471 }
472 $module = $manager->getModule( $parts[$i] );
473
474 if ( $module === null ) {
475 $errorPath = $i ? join( '+', array_slice( $parts, 0, $i ) ) : $parent->getModuleName();
476 $this->dieUsage(
477 "The module \"$errorPath\" does not have a submodule \"{$parts[$i]}\"",
478 'badmodule'
479 );
480 }
481 }
482
483 return $module;
484 }
485
486 /**
487 * Get the result object
488 * @return ApiResult
489 */
490 public function getResult() {
491 // Main module has getResult() method overridden
492 // Safety - avoid infinite loop:
493 if ( $this->isMain() ) {
494 ApiBase::dieDebug( __METHOD__, 'base method was called on main module. ' );
495 }
496
497 return $this->getMain()->getResult();
498 }
499
500 /**
501 * Get the error formatter
502 * @return ApiErrorFormatter
503 */
504 public function getErrorFormatter() {
505 // Main module has getErrorFormatter() method overridden
506 // Safety - avoid infinite loop:
507 if ( $this->isMain() ) {
508 ApiBase::dieDebug( __METHOD__, 'base method was called on main module. ' );
509 }
510
511 return $this->getMain()->getErrorFormatter();
512 }
513
514 /**
515 * Gets a default slave database connection object
516 * @return DatabaseBase
517 */
518 protected function getDB() {
519 if ( !isset( $this->mSlaveDB ) ) {
520 $this->mSlaveDB = wfGetDB( DB_SLAVE, 'api' );
521 }
522
523 return $this->mSlaveDB;
524 }
525
526 /**
527 * Get the continuation manager
528 * @return ApiContinuationManager|null
529 */
530 public function getContinuationManager() {
531 // Main module has getContinuationManager() method overridden
532 // Safety - avoid infinite loop:
533 if ( $this->isMain() ) {
534 ApiBase::dieDebug( __METHOD__, 'base method was called on main module. ' );
535 }
536
537 return $this->getMain()->getContinuationManager();
538 }
539
540 /**
541 * Set the continuation manager
542 * @param ApiContinuationManager|null
543 */
544 public function setContinuationManager( $manager ) {
545 // Main module has setContinuationManager() method overridden
546 // Safety - avoid infinite loop:
547 if ( $this->isMain() ) {
548 ApiBase::dieDebug( __METHOD__, 'base method was called on main module. ' );
549 }
550
551 $this->getMain()->setContinuationManager( $manager );
552 }
553
554 /**@}*/
555
556 /************************************************************************//**
557 * @name Parameter handling
558 * @{
559 */
560
561 /**
562 * This method mangles parameter name based on the prefix supplied to the constructor.
563 * Override this method to change parameter name during runtime
564 * @param string $paramName Parameter name
565 * @return string Prefixed parameter name
566 */
567 public function encodeParamName( $paramName ) {
568 return $this->mModulePrefix . $paramName;
569 }
570
571 /**
572 * Using getAllowedParams(), this function makes an array of the values
573 * provided by the user, with key being the name of the variable, and
574 * value - validated value from user or default. limits will not be
575 * parsed if $parseLimit is set to false; use this when the max
576 * limit is not definitive yet, e.g. when getting revisions.
577 * @param bool $parseLimit True by default
578 * @return array
579 */
580 public function extractRequestParams( $parseLimit = true ) {
581 // Cache parameters, for performance and to avoid bug 24564.
582 if ( !isset( $this->mParamCache[$parseLimit] ) ) {
583 $params = $this->getFinalParams();
584 $results = array();
585
586 if ( $params ) { // getFinalParams() can return false
587 foreach ( $params as $paramName => $paramSettings ) {
588 $results[$paramName] = $this->getParameterFromSettings(
589 $paramName, $paramSettings, $parseLimit );
590 }
591 }
592 $this->mParamCache[$parseLimit] = $results;
593 }
594
595 return $this->mParamCache[$parseLimit];
596 }
597
598 /**
599 * Get a value for the given parameter
600 * @param string $paramName Parameter name
601 * @param bool $parseLimit See extractRequestParams()
602 * @return mixed Parameter value
603 */
604 protected function getParameter( $paramName, $parseLimit = true ) {
605 $params = $this->getFinalParams();
606 $paramSettings = $params[$paramName];
607
608 return $this->getParameterFromSettings( $paramName, $paramSettings, $parseLimit );
609 }
610
611 /**
612 * Die if none or more than one of a certain set of parameters is set and not false.
613 *
614 * @param array $params User provided set of parameters, as from $this->extractRequestParams()
615 * @param string $required,... Names of parameters of which exactly one must be set
616 */
617 public function requireOnlyOneParameter( $params, $required /*...*/ ) {
618 $required = func_get_args();
619 array_shift( $required );
620 $p = $this->getModulePrefix();
621
622 $intersection = array_intersect( array_keys( array_filter( $params,
623 array( $this, "parameterNotEmpty" ) ) ), $required );
624
625 if ( count( $intersection ) > 1 ) {
626 $this->dieUsage(
627 "The parameters {$p}" . implode( ", {$p}", $intersection ) . ' can not be used together',
628 'invalidparammix' );
629 } elseif ( count( $intersection ) == 0 ) {
630 $this->dieUsage(
631 "One of the parameters {$p}" . implode( ", {$p}", $required ) . ' is required',
632 'missingparam'
633 );
634 }
635 }
636
637 /**
638 * Die if more than one of a certain set of parameters is set and not false.
639 *
640 * @param array $params User provided set of parameters, as from $this->extractRequestParams()
641 * @param string $required,... Names of parameters of which at most one must be set
642 */
643 public function requireMaxOneParameter( $params, $required /*...*/ ) {
644 $required = func_get_args();
645 array_shift( $required );
646 $p = $this->getModulePrefix();
647
648 $intersection = array_intersect( array_keys( array_filter( $params,
649 array( $this, "parameterNotEmpty" ) ) ), $required );
650
651 if ( count( $intersection ) > 1 ) {
652 $this->dieUsage(
653 "The parameters {$p}" . implode( ", {$p}", $intersection ) . ' can not be used together',
654 'invalidparammix'
655 );
656 }
657 }
658
659 /**
660 * Die if none of a certain set of parameters is set and not false.
661 *
662 * @since 1.23
663 * @param array $params User provided set of parameters, as from $this->extractRequestParams()
664 * @param string $required,... Names of parameters of which at least one must be set
665 */
666 public function requireAtLeastOneParameter( $params, $required /*...*/ ) {
667 $required = func_get_args();
668 array_shift( $required );
669 $p = $this->getModulePrefix();
670
671 $intersection = array_intersect(
672 array_keys( array_filter( $params, array( $this, "parameterNotEmpty" ) ) ),
673 $required
674 );
675
676 if ( count( $intersection ) == 0 ) {
677 $this->dieUsage( "At least one of the parameters {$p}" .
678 implode( ", {$p}", $required ) . ' is required', "{$p}missingparam" );
679 }
680 }
681
682 /**
683 * Callback function used in requireOnlyOneParameter to check whether required parameters are set
684 *
685 * @param object $x Parameter to check is not null/false
686 * @return bool
687 */
688 private function parameterNotEmpty( $x ) {
689 return !is_null( $x ) && $x !== false;
690 }
691
692 /**
693 * Get a WikiPage object from a title or pageid param, if possible.
694 * Can die, if no param is set or if the title or page id is not valid.
695 *
696 * @param array $params
697 * @param bool|string $load Whether load the object's state from the database:
698 * - false: don't load (if the pageid is given, it will still be loaded)
699 * - 'fromdb': load from a slave database
700 * - 'fromdbmaster': load from the master database
701 * @return WikiPage
702 */
703 public function getTitleOrPageId( $params, $load = false ) {
704 $this->requireOnlyOneParameter( $params, 'title', 'pageid' );
705
706 $pageObj = null;
707 if ( isset( $params['title'] ) ) {
708 $titleObj = Title::newFromText( $params['title'] );
709 if ( !$titleObj || $titleObj->isExternal() ) {
710 $this->dieUsageMsg( array( 'invalidtitle', $params['title'] ) );
711 }
712 if ( !$titleObj->canExist() ) {
713 $this->dieUsage( "Namespace doesn't allow actual pages", 'pagecannotexist' );
714 }
715 $pageObj = WikiPage::factory( $titleObj );
716 if ( $load !== false ) {
717 $pageObj->loadPageData( $load );
718 }
719 } elseif ( isset( $params['pageid'] ) ) {
720 if ( $load === false ) {
721 $load = 'fromdb';
722 }
723 $pageObj = WikiPage::newFromID( $params['pageid'], $load );
724 if ( !$pageObj ) {
725 $this->dieUsageMsg( array( 'nosuchpageid', $params['pageid'] ) );
726 }
727 }
728
729 return $pageObj;
730 }
731
732 /**
733 * Return true if we're to watch the page, false if not, null if no change.
734 * @param string $watchlist Valid values: 'watch', 'unwatch', 'preferences', 'nochange'
735 * @param Title $titleObj The page under consideration
736 * @param string $userOption The user option to consider when $watchlist=preferences.
737 * If not set will use watchdefault always and watchcreations if $titleObj doesn't exist.
738 * @return bool
739 */
740 protected function getWatchlistValue( $watchlist, $titleObj, $userOption = null ) {
741
742 $userWatching = $this->getUser()->isWatched( $titleObj, WatchedItem::IGNORE_USER_RIGHTS );
743
744 switch ( $watchlist ) {
745 case 'watch':
746 return true;
747
748 case 'unwatch':
749 return false;
750
751 case 'preferences':
752 # If the user is already watching, don't bother checking
753 if ( $userWatching ) {
754 return true;
755 }
756 # If no user option was passed, use watchdefault and watchcreations
757 if ( is_null( $userOption ) ) {
758 return $this->getUser()->getBoolOption( 'watchdefault' ) ||
759 $this->getUser()->getBoolOption( 'watchcreations' ) && !$titleObj->exists();
760 }
761
762 # Watch the article based on the user preference
763 return $this->getUser()->getBoolOption( $userOption );
764
765 case 'nochange':
766 return $userWatching;
767
768 default:
769 return $userWatching;
770 }
771 }
772
773 /**
774 * Using the settings determine the value for the given parameter
775 *
776 * @param string $paramName Parameter name
777 * @param array|mixed $paramSettings Default value or an array of settings
778 * using PARAM_* constants.
779 * @param bool $parseLimit Parse limit?
780 * @return mixed Parameter value
781 */
782 protected function getParameterFromSettings( $paramName, $paramSettings, $parseLimit ) {
783 // Some classes may decide to change parameter names
784 $encParamName = $this->encodeParamName( $paramName );
785
786 if ( !is_array( $paramSettings ) ) {
787 $default = $paramSettings;
788 $multi = false;
789 $type = gettype( $paramSettings );
790 $dupes = false;
791 $deprecated = false;
792 $required = false;
793 } else {
794 $default = isset( $paramSettings[self::PARAM_DFLT] )
795 ? $paramSettings[self::PARAM_DFLT]
796 : null;
797 $multi = isset( $paramSettings[self::PARAM_ISMULTI] )
798 ? $paramSettings[self::PARAM_ISMULTI]
799 : false;
800 $type = isset( $paramSettings[self::PARAM_TYPE] )
801 ? $paramSettings[self::PARAM_TYPE]
802 : null;
803 $dupes = isset( $paramSettings[self::PARAM_ALLOW_DUPLICATES] )
804 ? $paramSettings[self::PARAM_ALLOW_DUPLICATES]
805 : false;
806 $deprecated = isset( $paramSettings[self::PARAM_DEPRECATED] )
807 ? $paramSettings[self::PARAM_DEPRECATED]
808 : false;
809 $required = isset( $paramSettings[self::PARAM_REQUIRED] )
810 ? $paramSettings[self::PARAM_REQUIRED]
811 : false;
812
813 // When type is not given, and no choices, the type is the same as $default
814 if ( !isset( $type ) ) {
815 if ( isset( $default ) ) {
816 $type = gettype( $default );
817 } else {
818 $type = 'NULL'; // allow everything
819 }
820 }
821 }
822
823 if ( $type == 'boolean' ) {
824 if ( isset( $default ) && $default !== false ) {
825 // Having a default value of anything other than 'false' is not allowed
826 ApiBase::dieDebug(
827 __METHOD__,
828 "Boolean param $encParamName's default is set to '$default'. " .
829 "Boolean parameters must default to false."
830 );
831 }
832
833 $value = $this->getMain()->getCheck( $encParamName );
834 } elseif ( $type == 'upload' ) {
835 if ( isset( $default ) ) {
836 // Having a default value is not allowed
837 ApiBase::dieDebug(
838 __METHOD__,
839 "File upload param $encParamName's default is set to " .
840 "'$default'. File upload parameters may not have a default." );
841 }
842 if ( $multi ) {
843 ApiBase::dieDebug( __METHOD__, "Multi-values not supported for $encParamName" );
844 }
845 $value = $this->getMain()->getUpload( $encParamName );
846 if ( !$value->exists() ) {
847 // This will get the value without trying to normalize it
848 // (because trying to normalize a large binary file
849 // accidentally uploaded as a field fails spectacularly)
850 $value = $this->getMain()->getRequest()->unsetVal( $encParamName );
851 if ( $value !== null ) {
852 $this->dieUsage(
853 "File upload param $encParamName is not a file upload; " .
854 "be sure to use multipart/form-data for your POST and include " .
855 "a filename in the Content-Disposition header.",
856 "badupload_{$encParamName}"
857 );
858 }
859 }
860 } else {
861 $value = $this->getMain()->getVal( $encParamName, $default );
862
863 if ( isset( $value ) && $type == 'namespace' ) {
864 $type = MWNamespace::getValidNamespaces();
865 }
866 if ( isset( $value ) && $type == 'submodule' ) {
867 if ( isset( $paramSettings[self::PARAM_SUBMODULE_MAP] ) ) {
868 $type = array_keys( $paramSettings[self::PARAM_SUBMODULE_MAP] );
869 } else {
870 $type = $this->getModuleManager()->getNames( $paramName );
871 }
872 }
873 }
874
875 if ( isset( $value ) && ( $multi || is_array( $type ) ) ) {
876 $value = $this->parseMultiValue(
877 $encParamName,
878 $value,
879 $multi,
880 is_array( $type ) ? $type : null
881 );
882 }
883
884 // More validation only when choices were not given
885 // choices were validated in parseMultiValue()
886 if ( isset( $value ) ) {
887 if ( !is_array( $type ) ) {
888 switch ( $type ) {
889 case 'NULL': // nothing to do
890 break;
891 case 'string':
892 case 'text':
893 case 'password':
894 if ( $required && $value === '' ) {
895 $this->dieUsageMsg( array( 'missingparam', $paramName ) );
896 }
897 break;
898 case 'integer': // Force everything using intval() and optionally validate limits
899 $min = isset( $paramSettings[self::PARAM_MIN] ) ? $paramSettings[self::PARAM_MIN] : null;
900 $max = isset( $paramSettings[self::PARAM_MAX] ) ? $paramSettings[self::PARAM_MAX] : null;
901 $enforceLimits = isset( $paramSettings[self::PARAM_RANGE_ENFORCE] )
902 ? $paramSettings[self::PARAM_RANGE_ENFORCE] : false;
903
904 if ( is_array( $value ) ) {
905 $value = array_map( 'intval', $value );
906 if ( !is_null( $min ) || !is_null( $max ) ) {
907 foreach ( $value as &$v ) {
908 $this->validateLimit( $paramName, $v, $min, $max, null, $enforceLimits );
909 }
910 }
911 } else {
912 $value = intval( $value );
913 if ( !is_null( $min ) || !is_null( $max ) ) {
914 $this->validateLimit( $paramName, $value, $min, $max, null, $enforceLimits );
915 }
916 }
917 break;
918 case 'limit':
919 if ( !$parseLimit ) {
920 // Don't do any validation whatsoever
921 break;
922 }
923 if ( !isset( $paramSettings[self::PARAM_MAX] )
924 || !isset( $paramSettings[self::PARAM_MAX2] )
925 ) {
926 ApiBase::dieDebug(
927 __METHOD__,
928 "MAX1 or MAX2 are not defined for the limit $encParamName"
929 );
930 }
931 if ( $multi ) {
932 ApiBase::dieDebug( __METHOD__, "Multi-values not supported for $encParamName" );
933 }
934 $min = isset( $paramSettings[self::PARAM_MIN] ) ? $paramSettings[self::PARAM_MIN] : 0;
935 if ( $value == 'max' ) {
936 $value = $this->getMain()->canApiHighLimits()
937 ? $paramSettings[self::PARAM_MAX2]
938 : $paramSettings[self::PARAM_MAX];
939 $this->getResult()->addParsedLimit( $this->getModuleName(), $value );
940 } else {
941 $value = intval( $value );
942 $this->validateLimit(
943 $paramName,
944 $value,
945 $min,
946 $paramSettings[self::PARAM_MAX],
947 $paramSettings[self::PARAM_MAX2]
948 );
949 }
950 break;
951 case 'boolean':
952 if ( $multi ) {
953 ApiBase::dieDebug( __METHOD__, "Multi-values not supported for $encParamName" );
954 }
955 break;
956 case 'timestamp':
957 if ( is_array( $value ) ) {
958 foreach ( $value as $key => $val ) {
959 $value[$key] = $this->validateTimestamp( $val, $encParamName );
960 }
961 } else {
962 $value = $this->validateTimestamp( $value, $encParamName );
963 }
964 break;
965 case 'user':
966 if ( is_array( $value ) ) {
967 foreach ( $value as $key => $val ) {
968 $value[$key] = $this->validateUser( $val, $encParamName );
969 }
970 } else {
971 $value = $this->validateUser( $value, $encParamName );
972 }
973 break;
974 case 'upload': // nothing to do
975 break;
976 default:
977 ApiBase::dieDebug( __METHOD__, "Param $encParamName's type is unknown - $type" );
978 }
979 }
980
981 // Throw out duplicates if requested
982 if ( !$dupes && is_array( $value ) ) {
983 $value = array_unique( $value );
984 }
985
986 // Set a warning if a deprecated parameter has been passed
987 if ( $deprecated && $value !== false ) {
988 $this->setWarning( "The $encParamName parameter has been deprecated." );
989 }
990 } elseif ( $required ) {
991 $this->dieUsageMsg( array( 'missingparam', $paramName ) );
992 }
993
994 return $value;
995 }
996
997 /**
998 * Return an array of values that were given in a 'a|b|c' notation,
999 * after it optionally validates them against the list allowed values.
1000 *
1001 * @param string $valueName The name of the parameter (for error
1002 * reporting)
1003 * @param mixed $value The value being parsed
1004 * @param bool $allowMultiple Can $value contain more than one value
1005 * separated by '|'?
1006 * @param string[]|null $allowedValues An array of values to check against. If
1007 * null, all values are accepted.
1008 * @return string|string[] (allowMultiple ? an_array_of_values : a_single_value)
1009 */
1010 protected function parseMultiValue( $valueName, $value, $allowMultiple, $allowedValues ) {
1011 if ( trim( $value ) === '' && $allowMultiple ) {
1012 return array();
1013 }
1014
1015 // This is a bit awkward, but we want to avoid calling canApiHighLimits()
1016 // because it unstubs $wgUser
1017 $valuesList = explode( '|', $value, self::LIMIT_SML2 + 1 );
1018 $sizeLimit = count( $valuesList ) > self::LIMIT_SML1 && $this->mMainModule->canApiHighLimits()
1019 ? self::LIMIT_SML2
1020 : self::LIMIT_SML1;
1021
1022 if ( self::truncateArray( $valuesList, $sizeLimit ) ) {
1023 $this->setWarning( "Too many values supplied for parameter '$valueName': " .
1024 "the limit is $sizeLimit" );
1025 }
1026
1027 if ( !$allowMultiple && count( $valuesList ) != 1 ) {
1028 // Bug 33482 - Allow entries with | in them for non-multiple values
1029 if ( in_array( $value, $allowedValues, true ) ) {
1030 return $value;
1031 }
1032
1033 $possibleValues = is_array( $allowedValues )
1034 ? "of '" . implode( "', '", $allowedValues ) . "'"
1035 : '';
1036 $this->dieUsage(
1037 "Only one $possibleValues is allowed for parameter '$valueName'",
1038 "multival_$valueName"
1039 );
1040 }
1041
1042 if ( is_array( $allowedValues ) ) {
1043 // Check for unknown values
1044 $unknown = array_diff( $valuesList, $allowedValues );
1045 if ( count( $unknown ) ) {
1046 if ( $allowMultiple ) {
1047 $s = count( $unknown ) > 1 ? 's' : '';
1048 $vals = implode( ", ", $unknown );
1049 $this->setWarning( "Unrecognized value$s for parameter '$valueName': $vals" );
1050 } else {
1051 $this->dieUsage(
1052 "Unrecognized value for parameter '$valueName': {$valuesList[0]}",
1053 "unknown_$valueName"
1054 );
1055 }
1056 }
1057 // Now throw them out
1058 $valuesList = array_intersect( $valuesList, $allowedValues );
1059 }
1060
1061 return $allowMultiple ? $valuesList : $valuesList[0];
1062 }
1063
1064 /**
1065 * Validate the value against the minimum and user/bot maximum limits.
1066 * Prints usage info on failure.
1067 * @param string $paramName Parameter name
1068 * @param int $value Parameter value
1069 * @param int|null $min Minimum value
1070 * @param int|null $max Maximum value for users
1071 * @param int $botMax Maximum value for sysops/bots
1072 * @param bool $enforceLimits Whether to enforce (die) if value is outside limits
1073 */
1074 protected function validateLimit( $paramName, &$value, $min, $max, $botMax = null,
1075 $enforceLimits = false
1076 ) {
1077 if ( !is_null( $min ) && $value < $min ) {
1078 $msg = $this->encodeParamName( $paramName ) . " may not be less than $min (set to $value)";
1079 $this->warnOrDie( $msg, $enforceLimits );
1080 $value = $min;
1081 }
1082
1083 // Minimum is always validated, whereas maximum is checked only if not
1084 // running in internal call mode
1085 if ( $this->getMain()->isInternalMode() ) {
1086 return;
1087 }
1088
1089 // Optimization: do not check user's bot status unless really needed -- skips db query
1090 // assumes $botMax >= $max
1091 if ( !is_null( $max ) && $value > $max ) {
1092 if ( !is_null( $botMax ) && $this->getMain()->canApiHighLimits() ) {
1093 if ( $value > $botMax ) {
1094 $msg = $this->encodeParamName( $paramName ) .
1095 " may not be over $botMax (set to $value) for bots or sysops";
1096 $this->warnOrDie( $msg, $enforceLimits );
1097 $value = $botMax;
1098 }
1099 } else {
1100 $msg = $this->encodeParamName( $paramName ) . " may not be over $max (set to $value) for users";
1101 $this->warnOrDie( $msg, $enforceLimits );
1102 $value = $max;
1103 }
1104 }
1105 }
1106
1107 /**
1108 * Validate and normalize of parameters of type 'timestamp'
1109 * @param string $value Parameter value
1110 * @param string $encParamName Parameter name
1111 * @return string Validated and normalized parameter
1112 */
1113 protected function validateTimestamp( $value, $encParamName ) {
1114 // Confusing synonyms for the current time accepted by wfTimestamp()
1115 // (wfTimestamp() also accepts various non-strings and the string of 14
1116 // ASCII NUL bytes, but those can't get here)
1117 if ( !$value ) {
1118 $this->logFeatureUsage( 'unclear-"now"-timestamp' );
1119 $this->setWarning(
1120 "Passing '$value' for timestamp parameter $encParamName has been deprecated." .
1121 ' If for some reason you need to explicitly specify the current time without' .
1122 ' calculating it client-side, use "now".'
1123 );
1124 return wfTimestamp( TS_MW );
1125 }
1126
1127 // Explicit synonym for the current time
1128 if ( $value === 'now' ) {
1129 return wfTimestamp( TS_MW );
1130 }
1131
1132 $unixTimestamp = wfTimestamp( TS_UNIX, $value );
1133 if ( $unixTimestamp === false ) {
1134 $this->dieUsage(
1135 "Invalid value '$value' for timestamp parameter $encParamName",
1136 "badtimestamp_{$encParamName}"
1137 );
1138 }
1139
1140 return wfTimestamp( TS_MW, $unixTimestamp );
1141 }
1142
1143 /**
1144 * Validate the supplied token.
1145 *
1146 * @since 1.24
1147 * @param string $token Supplied token
1148 * @param array $params All supplied parameters for the module
1149 * @return bool
1150 * @throws MWException
1151 */
1152 final public function validateToken( $token, array $params ) {
1153 $tokenType = $this->needsToken();
1154 $salts = ApiQueryTokens::getTokenTypeSalts();
1155 if ( !isset( $salts[$tokenType] ) ) {
1156 throw new MWException(
1157 "Module '{$this->getModuleName()}' tried to use token type '$tokenType' " .
1158 'without registering it'
1159 );
1160 }
1161
1162 if ( $this->getUser()->matchEditToken(
1163 $token,
1164 $salts[$tokenType],
1165 $this->getRequest()
1166 ) ) {
1167 return true;
1168 }
1169
1170 $webUiSalt = $this->getWebUITokenSalt( $params );
1171 if ( $webUiSalt !== null && $this->getUser()->matchEditToken(
1172 $token,
1173 $webUiSalt,
1174 $this->getRequest()
1175 ) ) {
1176 return true;
1177 }
1178
1179 return false;
1180 }
1181
1182 /**
1183 * Validate and normalize of parameters of type 'user'
1184 * @param string $value Parameter value
1185 * @param string $encParamName Parameter name
1186 * @return string Validated and normalized parameter
1187 */
1188 private function validateUser( $value, $encParamName ) {
1189 $title = Title::makeTitleSafe( NS_USER, $value );
1190 if ( $title === null ) {
1191 $this->dieUsage(
1192 "Invalid value '$value' for user parameter $encParamName",
1193 "baduser_{$encParamName}"
1194 );
1195 }
1196
1197 return $title->getText();
1198 }
1199
1200 /**@}*/
1201
1202 /************************************************************************//**
1203 * @name Utility methods
1204 * @{
1205 */
1206
1207 /**
1208 * Set a watch (or unwatch) based the based on a watchlist parameter.
1209 * @param string $watch Valid values: 'watch', 'unwatch', 'preferences', 'nochange'
1210 * @param Title $titleObj The article's title to change
1211 * @param string $userOption The user option to consider when $watch=preferences
1212 */
1213 protected function setWatch( $watch, $titleObj, $userOption = null ) {
1214 $value = $this->getWatchlistValue( $watch, $titleObj, $userOption );
1215 if ( $value === null ) {
1216 return;
1217 }
1218
1219 WatchAction::doWatchOrUnwatch( $value, $titleObj, $this->getUser() );
1220 }
1221
1222 /**
1223 * Truncate an array to a certain length.
1224 * @param array $arr Array to truncate
1225 * @param int $limit Maximum length
1226 * @return bool True if the array was truncated, false otherwise
1227 */
1228 public static function truncateArray( &$arr, $limit ) {
1229 $modified = false;
1230 while ( count( $arr ) > $limit ) {
1231 array_pop( $arr );
1232 $modified = true;
1233 }
1234
1235 return $modified;
1236 }
1237
1238 /**
1239 * Gets the user for whom to get the watchlist
1240 *
1241 * @param array $params
1242 * @return User
1243 */
1244 public function getWatchlistUser( $params ) {
1245 if ( !is_null( $params['owner'] ) && !is_null( $params['token'] ) ) {
1246 $user = User::newFromName( $params['owner'], false );
1247 if ( !( $user && $user->getId() ) ) {
1248 $this->dieUsage( 'Specified user does not exist', 'bad_wlowner' );
1249 }
1250 $token = $user->getOption( 'watchlisttoken' );
1251 if ( $token == '' || !hash_equals( $token, $params['token'] ) ) {
1252 $this->dieUsage(
1253 'Incorrect watchlist token provided -- please set a correct token in Special:Preferences',
1254 'bad_wltoken'
1255 );
1256 }
1257 } else {
1258 if ( !$this->getUser()->isLoggedIn() ) {
1259 $this->dieUsage( 'You must be logged-in to have a watchlist', 'notloggedin' );
1260 }
1261 if ( !$this->getUser()->isAllowed( 'viewmywatchlist' ) ) {
1262 $this->dieUsage( 'You don\'t have permission to view your watchlist', 'permissiondenied' );
1263 }
1264 $user = $this->getUser();
1265 }
1266
1267 return $user;
1268 }
1269
1270 /**
1271 * A subset of wfEscapeWikiText for BC texts
1272 *
1273 * @since 1.25
1274 * @param string|array $v
1275 * @return string|array
1276 */
1277 private static function escapeWikiText( $v ) {
1278 if ( is_array( $v ) ) {
1279 return array_map( 'self::escapeWikiText', $v );
1280 } else {
1281 return strtr( $v, array(
1282 '__' => '_&#95;', '{' => '&#123;', '}' => '&#125;',
1283 '[[Category:' => '[[:Category:',
1284 '[[File:' => '[[:File:', '[[Image:' => '[[:Image:',
1285 ) );
1286 }
1287 }
1288
1289 /**
1290 * Create a Message from a string or array
1291 *
1292 * A string is used as a message key. An array has the message key as the
1293 * first value and message parameters as subsequent values.
1294 *
1295 * @since 1.25
1296 * @param string|array|Message $msg
1297 * @param IContextSource $context
1298 * @param array $params
1299 * @return Message|null
1300 */
1301 public static function makeMessage( $msg, IContextSource $context, array $params = null ) {
1302 if ( is_string( $msg ) ) {
1303 $msg = wfMessage( $msg );
1304 } elseif ( is_array( $msg ) ) {
1305 $msg = call_user_func_array( 'wfMessage', $msg );
1306 }
1307 if ( !$msg instanceof Message ) {
1308 return null;
1309 }
1310
1311 $msg->setContext( $context );
1312 if ( $params ) {
1313 $msg->params( $params );
1314 }
1315
1316 return $msg;
1317 }
1318
1319 /**@}*/
1320
1321 /************************************************************************//**
1322 * @name Warning and error reporting
1323 * @{
1324 */
1325
1326 /**
1327 * Set warning section for this module. Users should monitor this
1328 * section to notice any changes in API. Multiple calls to this
1329 * function will result in the warning messages being separated by
1330 * newlines
1331 * @param string $warning Warning message
1332 */
1333 public function setWarning( $warning ) {
1334 $msg = new ApiRawMessage( $warning, 'warning' );
1335 $this->getErrorFormatter()->addWarning( $this->getModuleName(), $msg );
1336 }
1337
1338 /**
1339 * Adds a warning to the output, else dies
1340 *
1341 * @param string $msg Message to show as a warning, or error message if dying
1342 * @param bool $enforceLimits Whether this is an enforce (die)
1343 */
1344 private function warnOrDie( $msg, $enforceLimits = false ) {
1345 if ( $enforceLimits ) {
1346 $this->dieUsage( $msg, 'integeroutofrange' );
1347 }
1348
1349 $this->setWarning( $msg );
1350 }
1351
1352 /**
1353 * Throw a UsageException, which will (if uncaught) call the main module's
1354 * error handler and die with an error message.
1355 *
1356 * @param string $description One-line human-readable description of the
1357 * error condition, e.g., "The API requires a valid action parameter"
1358 * @param string $errorCode Brief, arbitrary, stable string to allow easy
1359 * automated identification of the error, e.g., 'unknown_action'
1360 * @param int $httpRespCode HTTP response code
1361 * @param array|null $extradata Data to add to the "<error>" element; array in ApiResult format
1362 * @throws UsageException always
1363 */
1364 public function dieUsage( $description, $errorCode, $httpRespCode = 0, $extradata = null ) {
1365 throw new UsageException(
1366 $description,
1367 $this->encodeParamName( $errorCode ),
1368 $httpRespCode,
1369 $extradata
1370 );
1371 }
1372
1373 /**
1374 * Get error (as code, string) from a Status object.
1375 *
1376 * @since 1.23
1377 * @param Status $status
1378 * @param array|null &$extraData Set if extra data from IApiMessage is available (since 1.27)
1379 * @return array Array of code and error string
1380 * @throws MWException
1381 */
1382 public function getErrorFromStatus( $status, &$extraData = null ) {
1383 if ( $status->isGood() ) {
1384 throw new MWException( 'Successful status passed to ApiBase::dieStatus' );
1385 }
1386
1387 $errors = $status->getErrorsArray();
1388 if ( !$errors ) {
1389 // No errors? Assume the warnings should be treated as errors
1390 $errors = $status->getWarningsArray();
1391 }
1392 if ( !$errors ) {
1393 // Still no errors? Punt
1394 $errors = array( array( 'unknownerror-nocode' ) );
1395 }
1396
1397 // Cannot use dieUsageMsg() because extensions might return custom
1398 // error messages.
1399 if ( $errors[0] instanceof Message ) {
1400 $msg = $errors[0];
1401 if ( $msg instanceof IApiMessage ) {
1402 $extraData = $msg->getApiData();
1403 $code = $msg->getApiCode();
1404 } else {
1405 $code = $msg->getKey();
1406 }
1407 } else {
1408 $code = array_shift( $errors[0] );
1409 $msg = wfMessage( $code, $errors[0] );
1410 }
1411 if ( isset( ApiBase::$messageMap[$code] ) ) {
1412 // Translate message to code, for backwards compatibility
1413 $code = ApiBase::$messageMap[$code]['code'];
1414 }
1415
1416 return array( $code, $msg->inLanguage( 'en' )->useDatabase( false )->plain() );
1417 }
1418
1419 /**
1420 * Throw a UsageException based on the errors in the Status object.
1421 *
1422 * @since 1.22
1423 * @param Status $status
1424 * @throws UsageException always
1425 */
1426 public function dieStatus( $status ) {
1427 $extraData = null;
1428 list( $code, $msg ) = $this->getErrorFromStatus( $status, $extraData );
1429 $this->dieUsage( $msg, $code, 0, $extraData );
1430 }
1431
1432 // @codingStandardsIgnoreStart Allow long lines. Cannot split these.
1433 /**
1434 * Array that maps message keys to error messages. $1 and friends are replaced.
1435 */
1436 public static $messageMap = array(
1437 // This one MUST be present, or dieUsageMsg() will recurse infinitely
1438 'unknownerror' => array( 'code' => 'unknownerror', 'info' => "Unknown error: \"\$1\"" ),
1439 'unknownerror-nocode' => array( 'code' => 'unknownerror', 'info' => 'Unknown error' ),
1440
1441 // Messages from Title::getUserPermissionsErrors()
1442 'ns-specialprotected' => array(
1443 'code' => 'unsupportednamespace',
1444 'info' => "Pages in the Special namespace can't be edited"
1445 ),
1446 'protectedinterface' => array(
1447 'code' => 'protectednamespace-interface',
1448 'info' => "You're not allowed to edit interface messages"
1449 ),
1450 'namespaceprotected' => array(
1451 'code' => 'protectednamespace',
1452 'info' => "You're not allowed to edit pages in the \"\$1\" namespace"
1453 ),
1454 'customcssprotected' => array(
1455 'code' => 'customcssprotected',
1456 'info' => "You're not allowed to edit custom CSS pages"
1457 ),
1458 'customjsprotected' => array(
1459 'code' => 'customjsprotected',
1460 'info' => "You're not allowed to edit custom JavaScript pages"
1461 ),
1462 'cascadeprotected' => array(
1463 'code' => 'cascadeprotected',
1464 'info' => "The page you're trying to edit is protected because it's included in a cascade-protected page"
1465 ),
1466 'protectedpagetext' => array(
1467 'code' => 'protectedpage',
1468 'info' => "The \"\$1\" right is required to edit this page"
1469 ),
1470 'protect-cantedit' => array(
1471 'code' => 'cantedit',
1472 'info' => "You can't protect this page because you can't edit it"
1473 ),
1474 'deleteprotected' => array(
1475 'code' => 'cantedit',
1476 'info' => "You can't delete this page because it has been protected"
1477 ),
1478 'badaccess-group0' => array(
1479 'code' => 'permissiondenied',
1480 'info' => "Permission denied"
1481 ), // Generic permission denied message
1482 'badaccess-groups' => array(
1483 'code' => 'permissiondenied',
1484 'info' => "Permission denied"
1485 ),
1486 'titleprotected' => array(
1487 'code' => 'protectedtitle',
1488 'info' => "This title has been protected from creation"
1489 ),
1490 'nocreate-loggedin' => array(
1491 'code' => 'cantcreate',
1492 'info' => "You don't have permission to create new pages"
1493 ),
1494 'nocreatetext' => array(
1495 'code' => 'cantcreate-anon',
1496 'info' => "Anonymous users can't create new pages"
1497 ),
1498 'movenologintext' => array(
1499 'code' => 'cantmove-anon',
1500 'info' => "Anonymous users can't move pages"
1501 ),
1502 'movenotallowed' => array(
1503 'code' => 'cantmove',
1504 'info' => "You don't have permission to move pages"
1505 ),
1506 'confirmedittext' => array(
1507 'code' => 'confirmemail',
1508 'info' => "You must confirm your email address before you can edit"
1509 ),
1510 'blockedtext' => array(
1511 'code' => 'blocked',
1512 'info' => "You have been blocked from editing"
1513 ),
1514 'autoblockedtext' => array(
1515 'code' => 'autoblocked',
1516 'info' => "Your IP address has been blocked automatically, because it was used by a blocked user"
1517 ),
1518
1519 // Miscellaneous interface messages
1520 'actionthrottledtext' => array(
1521 'code' => 'ratelimited',
1522 'info' => "You've exceeded your rate limit. Please wait some time and try again"
1523 ),
1524 'alreadyrolled' => array(
1525 'code' => 'alreadyrolled',
1526 'info' => "The page you tried to rollback was already rolled back"
1527 ),
1528 'cantrollback' => array(
1529 'code' => 'onlyauthor',
1530 'info' => "The page you tried to rollback only has one author"
1531 ),
1532 'readonlytext' => array(
1533 'code' => 'readonly',
1534 'info' => "The wiki is currently in read-only mode"
1535 ),
1536 'sessionfailure' => array(
1537 'code' => 'badtoken',
1538 'info' => "Invalid token" ),
1539 'cannotdelete' => array(
1540 'code' => 'cantdelete',
1541 'info' => "Couldn't delete \"\$1\". Maybe it was deleted already by someone else"
1542 ),
1543 'notanarticle' => array(
1544 'code' => 'missingtitle',
1545 'info' => "The page you requested doesn't exist"
1546 ),
1547 'selfmove' => array( 'code' => 'selfmove', 'info' => "Can't move a page to itself"
1548 ),
1549 'immobile_namespace' => array(
1550 'code' => 'immobilenamespace',
1551 'info' => "You tried to move pages from or to a namespace that is protected from moving"
1552 ),
1553 'articleexists' => array(
1554 'code' => 'articleexists',
1555 'info' => "The destination article already exists and is not a redirect to the source article"
1556 ),
1557 'protectedpage' => array(
1558 'code' => 'protectedpage',
1559 'info' => "You don't have permission to perform this move"
1560 ),
1561 'hookaborted' => array(
1562 'code' => 'hookaborted',
1563 'info' => "The modification you tried to make was aborted by an extension hook"
1564 ),
1565 'cantmove-titleprotected' => array(
1566 'code' => 'protectedtitle',
1567 'info' => "The destination article has been protected from creation"
1568 ),
1569 'imagenocrossnamespace' => array(
1570 'code' => 'nonfilenamespace',
1571 'info' => "Can't move a file to a non-file namespace"
1572 ),
1573 'imagetypemismatch' => array(
1574 'code' => 'filetypemismatch',
1575 'info' => "The new file extension doesn't match its type"
1576 ),
1577 // 'badarticleerror' => shouldn't happen
1578 // 'badtitletext' => shouldn't happen
1579 'ip_range_invalid' => array( 'code' => 'invalidrange', 'info' => "Invalid IP range" ),
1580 'range_block_disabled' => array(
1581 'code' => 'rangedisabled',
1582 'info' => "Blocking IP ranges has been disabled"
1583 ),
1584 'nosuchusershort' => array(
1585 'code' => 'nosuchuser',
1586 'info' => "The user you specified doesn't exist"
1587 ),
1588 'badipaddress' => array( 'code' => 'invalidip', 'info' => "Invalid IP address specified" ),
1589 'ipb_expiry_invalid' => array( 'code' => 'invalidexpiry', 'info' => "Invalid expiry time" ),
1590 'ipb_already_blocked' => array(
1591 'code' => 'alreadyblocked',
1592 'info' => "The user you tried to block was already blocked"
1593 ),
1594 'ipb_blocked_as_range' => array(
1595 'code' => 'blockedasrange',
1596 'info' => "IP address \"\$1\" was blocked as part of range \"\$2\". You can't unblock the IP individually, but you can unblock the range as a whole."
1597 ),
1598 'ipb_cant_unblock' => array(
1599 'code' => 'cantunblock',
1600 'info' => "The block you specified was not found. It may have been unblocked already"
1601 ),
1602 'mailnologin' => array(
1603 'code' => 'cantsend',
1604 'info' => "You are not logged in, you do not have a confirmed email address, or you are not allowed to send email to other users, so you cannot send email"
1605 ),
1606 'ipbblocked' => array(
1607 'code' => 'ipbblocked',
1608 'info' => 'You cannot block or unblock users while you are yourself blocked'
1609 ),
1610 'ipbnounblockself' => array(
1611 'code' => 'ipbnounblockself',
1612 'info' => 'You are not allowed to unblock yourself'
1613 ),
1614 'usermaildisabled' => array(
1615 'code' => 'usermaildisabled',
1616 'info' => "User email has been disabled"
1617 ),
1618 'blockedemailuser' => array(
1619 'code' => 'blockedfrommail',
1620 'info' => "You have been blocked from sending email"
1621 ),
1622 'notarget' => array(
1623 'code' => 'notarget',
1624 'info' => "You have not specified a valid target for this action"
1625 ),
1626 'noemail' => array(
1627 'code' => 'noemail',
1628 'info' => "The user has not specified a valid email address, or has chosen not to receive email from other users"
1629 ),
1630 'rcpatroldisabled' => array(
1631 'code' => 'patroldisabled',
1632 'info' => "Patrolling is disabled on this wiki"
1633 ),
1634 'markedaspatrollederror-noautopatrol' => array(
1635 'code' => 'noautopatrol',
1636 'info' => "You don't have permission to patrol your own changes"
1637 ),
1638 'delete-toobig' => array(
1639 'code' => 'bigdelete',
1640 'info' => "You can't delete this page because it has more than \$1 revisions"
1641 ),
1642 'movenotallowedfile' => array(
1643 'code' => 'cantmovefile',
1644 'info' => "You don't have permission to move files"
1645 ),
1646 'userrights-no-interwiki' => array(
1647 'code' => 'nointerwikiuserrights',
1648 'info' => "You don't have permission to change user rights on other wikis"
1649 ),
1650 'userrights-nodatabase' => array(
1651 'code' => 'nosuchdatabase',
1652 'info' => "Database \"\$1\" does not exist or is not local"
1653 ),
1654 'nouserspecified' => array( 'code' => 'invaliduser', 'info' => "Invalid username \"\$1\"" ),
1655 'noname' => array( 'code' => 'invaliduser', 'info' => "Invalid username \"\$1\"" ),
1656 'summaryrequired' => array( 'code' => 'summaryrequired', 'info' => 'Summary required' ),
1657 'import-rootpage-invalid' => array(
1658 'code' => 'import-rootpage-invalid',
1659 'info' => 'Root page is an invalid title'
1660 ),
1661 'import-rootpage-nosubpage' => array(
1662 'code' => 'import-rootpage-nosubpage',
1663 'info' => 'Namespace "$1" of the root page does not allow subpages'
1664 ),
1665
1666 // API-specific messages
1667 'readrequired' => array(
1668 'code' => 'readapidenied',
1669 'info' => "You need read permission to use this module"
1670 ),
1671 'writedisabled' => array(
1672 'code' => 'noapiwrite',
1673 '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"
1674 ),
1675 'writerequired' => array(
1676 'code' => 'writeapidenied',
1677 'info' => "You're not allowed to edit this wiki through the API"
1678 ),
1679 'missingparam' => array( 'code' => 'no$1', 'info' => "The \$1 parameter must be set" ),
1680 'invalidtitle' => array( 'code' => 'invalidtitle', 'info' => "Bad title \"\$1\"" ),
1681 'nosuchpageid' => array( 'code' => 'nosuchpageid', 'info' => "There is no page with ID \$1" ),
1682 'nosuchrevid' => array( 'code' => 'nosuchrevid', 'info' => "There is no revision with ID \$1" ),
1683 'nosuchuser' => array( 'code' => 'nosuchuser', 'info' => "User \"\$1\" doesn't exist" ),
1684 'invaliduser' => array( 'code' => 'invaliduser', 'info' => "Invalid username \"\$1\"" ),
1685 'invalidexpiry' => array( 'code' => 'invalidexpiry', 'info' => "Invalid expiry time \"\$1\"" ),
1686 'pastexpiry' => array( 'code' => 'pastexpiry', 'info' => "Expiry time \"\$1\" is in the past" ),
1687 'create-titleexists' => array(
1688 'code' => 'create-titleexists',
1689 'info' => "Existing titles can't be protected with 'create'"
1690 ),
1691 'missingtitle-createonly' => array(
1692 'code' => 'missingtitle-createonly',
1693 'info' => "Missing titles can only be protected with 'create'"
1694 ),
1695 'cantblock' => array( 'code' => 'cantblock',
1696 'info' => "You don't have permission to block users"
1697 ),
1698 'canthide' => array(
1699 'code' => 'canthide',
1700 'info' => "You don't have permission to hide user names from the block log"
1701 ),
1702 'cantblock-email' => array(
1703 'code' => 'cantblock-email',
1704 'info' => "You don't have permission to block users from sending email through the wiki"
1705 ),
1706 'unblock-notarget' => array(
1707 'code' => 'notarget',
1708 'info' => "Either the id or the user parameter must be set"
1709 ),
1710 'unblock-idanduser' => array(
1711 'code' => 'idanduser',
1712 'info' => "The id and user parameters can't be used together"
1713 ),
1714 'cantunblock' => array(
1715 'code' => 'permissiondenied',
1716 'info' => "You don't have permission to unblock users"
1717 ),
1718 'cannotundelete' => array(
1719 'code' => 'cantundelete',
1720 'info' => "Couldn't undelete: the requested revisions may not exist, or may have been undeleted already"
1721 ),
1722 'permdenied-undelete' => array(
1723 'code' => 'permissiondenied',
1724 'info' => "You don't have permission to restore deleted revisions"
1725 ),
1726 'createonly-exists' => array(
1727 'code' => 'articleexists',
1728 'info' => "The article you tried to create has been created already"
1729 ),
1730 'nocreate-missing' => array(
1731 'code' => 'missingtitle',
1732 'info' => "The article you tried to edit doesn't exist"
1733 ),
1734 'cantchangecontentmodel' => array(
1735 'code' => 'cantchangecontentmodel',
1736 'info' => "You don't have permission to change the content model of a page"
1737 ),
1738 'nosuchrcid' => array(
1739 'code' => 'nosuchrcid',
1740 'info' => "There is no change with rcid \"\$1\""
1741 ),
1742 'nosuchlogid' => array(
1743 'code' => 'nosuchlogid',
1744 'info' => "There is no log entry with ID \"\$1\""
1745 ),
1746 'protect-invalidaction' => array(
1747 'code' => 'protect-invalidaction',
1748 'info' => "Invalid protection type \"\$1\""
1749 ),
1750 'protect-invalidlevel' => array(
1751 'code' => 'protect-invalidlevel',
1752 'info' => "Invalid protection level \"\$1\""
1753 ),
1754 'toofewexpiries' => array(
1755 'code' => 'toofewexpiries',
1756 'info' => "\$1 expiry timestamps were provided where \$2 were needed"
1757 ),
1758 'cantimport' => array(
1759 'code' => 'cantimport',
1760 'info' => "You don't have permission to import pages"
1761 ),
1762 'cantimport-upload' => array(
1763 'code' => 'cantimport-upload',
1764 'info' => "You don't have permission to import uploaded pages"
1765 ),
1766 'importnofile' => array( 'code' => 'nofile', 'info' => "You didn't upload a file" ),
1767 'importuploaderrorsize' => array(
1768 'code' => 'filetoobig',
1769 'info' => 'The file you uploaded is bigger than the maximum upload size'
1770 ),
1771 'importuploaderrorpartial' => array(
1772 'code' => 'partialupload',
1773 'info' => 'The file was only partially uploaded'
1774 ),
1775 'importuploaderrortemp' => array(
1776 'code' => 'notempdir',
1777 'info' => 'The temporary upload directory is missing'
1778 ),
1779 'importcantopen' => array(
1780 'code' => 'cantopenfile',
1781 'info' => "Couldn't open the uploaded file"
1782 ),
1783 'import-noarticle' => array(
1784 'code' => 'badinterwiki',
1785 'info' => 'Invalid interwiki title specified'
1786 ),
1787 'importbadinterwiki' => array(
1788 'code' => 'badinterwiki',
1789 'info' => 'Invalid interwiki title specified'
1790 ),
1791 'import-unknownerror' => array(
1792 'code' => 'import-unknownerror',
1793 'info' => "Unknown error on import: \"\$1\""
1794 ),
1795 'cantoverwrite-sharedfile' => array(
1796 'code' => 'cantoverwrite-sharedfile',
1797 'info' => 'The target file exists on a shared repository and you do not have permission to override it'
1798 ),
1799 'sharedfile-exists' => array(
1800 'code' => 'fileexists-sharedrepo-perm',
1801 'info' => 'The target file exists on a shared repository. Use the ignorewarnings parameter to override it.'
1802 ),
1803 'mustbeposted' => array(
1804 'code' => 'mustbeposted',
1805 'info' => "The \$1 module requires a POST request"
1806 ),
1807 'show' => array(
1808 'code' => 'show',
1809 'info' => 'Incorrect parameter - mutually exclusive values may not be supplied'
1810 ),
1811 'specialpage-cantexecute' => array(
1812 'code' => 'specialpage-cantexecute',
1813 'info' => "You don't have permission to view the results of this special page"
1814 ),
1815 'invalidoldimage' => array(
1816 'code' => 'invalidoldimage',
1817 'info' => 'The oldimage parameter has invalid format'
1818 ),
1819 'nodeleteablefile' => array(
1820 'code' => 'nodeleteablefile',
1821 'info' => 'No such old version of the file'
1822 ),
1823 'fileexists-forbidden' => array(
1824 'code' => 'fileexists-forbidden',
1825 'info' => 'A file with name "$1" already exists, and cannot be overwritten.'
1826 ),
1827 'fileexists-shared-forbidden' => array(
1828 'code' => 'fileexists-shared-forbidden',
1829 'info' => 'A file with name "$1" already exists in the shared file repository, and cannot be overwritten.'
1830 ),
1831 'filerevert-badversion' => array(
1832 'code' => 'filerevert-badversion',
1833 'info' => 'There is no previous local version of this file with the provided timestamp.'
1834 ),
1835
1836 // ApiEditPage messages
1837 'noimageredirect-anon' => array(
1838 'code' => 'noimageredirect-anon',
1839 'info' => "Anonymous users can't create image redirects"
1840 ),
1841 'noimageredirect-logged' => array(
1842 'code' => 'noimageredirect',
1843 'info' => "You don't have permission to create image redirects"
1844 ),
1845 'spamdetected' => array(
1846 'code' => 'spamdetected',
1847 'info' => "Your edit was refused because it contained a spam fragment: \"\$1\""
1848 ),
1849 'contenttoobig' => array(
1850 'code' => 'contenttoobig',
1851 'info' => "The content you supplied exceeds the article size limit of \$1 kilobytes"
1852 ),
1853 'noedit-anon' => array( 'code' => 'noedit-anon', 'info' => "Anonymous users can't edit pages" ),
1854 'noedit' => array( 'code' => 'noedit', 'info' => "You don't have permission to edit pages" ),
1855 'wasdeleted' => array(
1856 'code' => 'pagedeleted',
1857 'info' => "The page has been deleted since you fetched its timestamp"
1858 ),
1859 'blankpage' => array(
1860 'code' => 'emptypage',
1861 'info' => "Creating new, empty pages is not allowed"
1862 ),
1863 'editconflict' => array( 'code' => 'editconflict', 'info' => "Edit conflict detected" ),
1864 'hashcheckfailed' => array( 'code' => 'badmd5', 'info' => "The supplied MD5 hash was incorrect" ),
1865 'missingtext' => array(
1866 'code' => 'notext',
1867 'info' => "One of the text, appendtext, prependtext and undo parameters must be set"
1868 ),
1869 'emptynewsection' => array(
1870 'code' => 'emptynewsection',
1871 'info' => 'Creating empty new sections is not possible.'
1872 ),
1873 'revwrongpage' => array(
1874 'code' => 'revwrongpage',
1875 'info' => "r\$1 is not a revision of \"\$2\""
1876 ),
1877 'undo-failure' => array(
1878 'code' => 'undofailure',
1879 'info' => 'Undo failed due to conflicting intermediate edits'
1880 ),
1881 'content-not-allowed-here' => array(
1882 'code' => 'contentnotallowedhere',
1883 'info' => 'Content model "$1" is not allowed at title "$2"'
1884 ),
1885
1886 // Messages from WikiPage::doEit()
1887 'edit-hook-aborted' => array(
1888 'code' => 'edit-hook-aborted',
1889 'info' => "Your edit was aborted by an ArticleSave hook"
1890 ),
1891 'edit-gone-missing' => array(
1892 'code' => 'edit-gone-missing',
1893 'info' => "The page you tried to edit doesn't seem to exist anymore"
1894 ),
1895 'edit-conflict' => array( 'code' => 'editconflict', 'info' => "Edit conflict detected" ),
1896 'edit-already-exists' => array(
1897 'code' => 'edit-already-exists',
1898 'info' => 'It seems the page you tried to create already exist'
1899 ),
1900
1901 // uploadMsgs
1902 'invalid-file-key' => array( 'code' => 'invalid-file-key', 'info' => 'Not a valid file key' ),
1903 'nouploadmodule' => array( 'code' => 'nouploadmodule', 'info' => 'No upload module set' ),
1904 'uploaddisabled' => array(
1905 'code' => 'uploaddisabled',
1906 'info' => 'Uploads are not enabled. Make sure $wgEnableUploads is set to true in LocalSettings.php and the PHP ini setting file_uploads is true'
1907 ),
1908 'copyuploaddisabled' => array(
1909 'code' => 'copyuploaddisabled',
1910 'info' => 'Uploads by URL is not enabled. Make sure $wgAllowCopyUploads is set to true in LocalSettings.php.'
1911 ),
1912 'copyuploadbaddomain' => array(
1913 'code' => 'copyuploadbaddomain',
1914 'info' => 'Uploads by URL are not allowed from this domain.'
1915 ),
1916 'copyuploadbadurl' => array(
1917 'code' => 'copyuploadbadurl',
1918 'info' => 'Upload not allowed from this URL.'
1919 ),
1920
1921 'filename-tooshort' => array(
1922 'code' => 'filename-tooshort',
1923 'info' => 'The filename is too short'
1924 ),
1925 'filename-toolong' => array( 'code' => 'filename-toolong', 'info' => 'The filename is too long' ),
1926 'illegal-filename' => array(
1927 'code' => 'illegal-filename',
1928 'info' => 'The filename is not allowed'
1929 ),
1930 'filetype-missing' => array(
1931 'code' => 'filetype-missing',
1932 'info' => 'The file is missing an extension'
1933 ),
1934
1935 'mustbeloggedin' => array( 'code' => 'mustbeloggedin', 'info' => 'You must be logged in to $1.' )
1936 );
1937 // @codingStandardsIgnoreEnd
1938
1939 /**
1940 * Helper function for readonly errors
1941 *
1942 * @throws UsageException always
1943 */
1944 public function dieReadOnly() {
1945 $parsed = $this->parseMsg( array( 'readonlytext' ) );
1946 $this->dieUsage( $parsed['info'], $parsed['code'], /* http error */ 0,
1947 array( 'readonlyreason' => wfReadOnlyReason() ) );
1948 }
1949
1950 /**
1951 * Output the error message related to a certain array
1952 * @param array|string $error Element of a getUserPermissionsErrors()-style array
1953 * @throws UsageException always
1954 */
1955 public function dieUsageMsg( $error ) {
1956 # most of the time we send a 1 element, so we might as well send it as
1957 # a string and make this an array here.
1958 if ( is_string( $error ) ) {
1959 $error = array( $error );
1960 }
1961 $parsed = $this->parseMsg( $error );
1962 $extraData = isset( $parsed['data'] ) ? $parsed['data'] : null;
1963 $this->dieUsage( $parsed['info'], $parsed['code'], 0, $extraData );
1964 }
1965
1966 /**
1967 * Will only set a warning instead of failing if the global $wgDebugAPI
1968 * is set to true. Otherwise behaves exactly as dieUsageMsg().
1969 * @param array|string $error Element of a getUserPermissionsErrors()-style array
1970 * @throws UsageException
1971 * @since 1.21
1972 */
1973 public function dieUsageMsgOrDebug( $error ) {
1974 if ( $this->getConfig()->get( 'DebugAPI' ) !== true ) {
1975 $this->dieUsageMsg( $error );
1976 }
1977
1978 if ( is_string( $error ) ) {
1979 $error = array( $error );
1980 }
1981 $parsed = $this->parseMsg( $error );
1982 $this->setWarning( '$wgDebugAPI: ' . $parsed['code'] . ' - ' . $parsed['info'] );
1983 }
1984
1985 /**
1986 * Die with the $prefix.'badcontinue' error. This call is common enough to
1987 * make it into the base method.
1988 * @param bool $condition Will only die if this value is true
1989 * @throws UsageException
1990 * @since 1.21
1991 */
1992 protected function dieContinueUsageIf( $condition ) {
1993 if ( $condition ) {
1994 $this->dieUsage(
1995 'Invalid continue param. You should pass the original value returned by the previous query',
1996 'badcontinue' );
1997 }
1998 }
1999
2000 /**
2001 * Return the error message related to a certain array
2002 * @param array $error Element of a getUserPermissionsErrors()-style array
2003 * @return array('code' => code, 'info' => info)
2004 */
2005 public function parseMsg( $error ) {
2006 $error = (array)$error; // It seems strings sometimes make their way in here
2007 $key = array_shift( $error );
2008
2009 // Check whether the error array was nested
2010 // array( array( <code>, <params> ), array( <another_code>, <params> ) )
2011 if ( is_array( $key ) ) {
2012 $error = $key;
2013 $key = array_shift( $error );
2014 }
2015
2016 if ( $key instanceof IApiMessage ) {
2017 return array(
2018 'code' => $key->getApiCode(),
2019 'info' => $key->inLanguage( 'en' )->useDatabase( false )->text(),
2020 'data' => $key->getApiData()
2021 );
2022 }
2023
2024 if ( isset( self::$messageMap[$key] ) ) {
2025 return array(
2026 'code' => wfMsgReplaceArgs( self::$messageMap[$key]['code'], $error ),
2027 'info' => wfMsgReplaceArgs( self::$messageMap[$key]['info'], $error )
2028 );
2029 }
2030
2031 // If the key isn't present, throw an "unknown error"
2032 return $this->parseMsg( array( 'unknownerror', $key ) );
2033 }
2034
2035 /**
2036 * Internal code errors should be reported with this method
2037 * @param string $method Method or function name
2038 * @param string $message Error message
2039 * @throws MWException always
2040 */
2041 protected static function dieDebug( $method, $message ) {
2042 throw new MWException( "Internal error in $method: $message" );
2043 }
2044
2045 /**
2046 * Write logging information for API features to a debug log, for usage
2047 * analysis.
2048 * @param string $feature Feature being used.
2049 */
2050 protected function logFeatureUsage( $feature ) {
2051 $request = $this->getRequest();
2052 $s = '"' . addslashes( $feature ) . '"' .
2053 ' "' . wfUrlencode( str_replace( ' ', '_', $this->getUser()->getName() ) ) . '"' .
2054 ' "' . $request->getIP() . '"' .
2055 ' "' . addslashes( $request->getHeader( 'Referer' ) ) . '"' .
2056 ' "' . addslashes( $this->getMain()->getUserAgent() ) . '"';
2057 wfDebugLog( 'api-feature-usage', $s, 'private' );
2058 }
2059
2060 /**@}*/
2061
2062 /************************************************************************//**
2063 * @name Help message generation
2064 * @{
2065 */
2066
2067 /**
2068 * Return the description message.
2069 *
2070 * @return string|array|Message
2071 */
2072 protected function getDescriptionMessage() {
2073 return "apihelp-{$this->getModulePath()}-description";
2074 }
2075
2076 /**
2077 * Get final module description, after hooks have had a chance to tweak it as
2078 * needed.
2079 *
2080 * @since 1.25, returns Message[] rather than string[]
2081 * @return Message[]
2082 */
2083 public function getFinalDescription() {
2084 $desc = $this->getDescription();
2085 Hooks::run( 'APIGetDescription', array( &$this, &$desc ) );
2086 $desc = self::escapeWikiText( $desc );
2087 if ( is_array( $desc ) ) {
2088 $desc = join( "\n", $desc );
2089 } else {
2090 $desc = (string)$desc;
2091 }
2092
2093 $msg = ApiBase::makeMessage( $this->getDescriptionMessage(), $this->getContext(), array(
2094 $this->getModulePrefix(),
2095 $this->getModuleName(),
2096 $this->getModulePath(),
2097 ) );
2098 if ( !$msg->exists() ) {
2099 $msg = $this->msg( 'api-help-fallback-description', $desc );
2100 }
2101 $msgs = array( $msg );
2102
2103 Hooks::run( 'APIGetDescriptionMessages', array( $this, &$msgs ) );
2104
2105 return $msgs;
2106 }
2107
2108 /**
2109 * Get final list of parameters, after hooks have had a chance to
2110 * tweak it as needed.
2111 *
2112 * @param int $flags Zero or more flags like GET_VALUES_FOR_HELP
2113 * @return array|bool False on no parameters
2114 * @since 1.21 $flags param added
2115 */
2116 public function getFinalParams( $flags = 0 ) {
2117 $params = $this->getAllowedParams( $flags );
2118 if ( !$params ) {
2119 $params = array();
2120 }
2121
2122 if ( $this->needsToken() ) {
2123 $params['token'] = array(
2124 ApiBase::PARAM_TYPE => 'string',
2125 ApiBase::PARAM_REQUIRED => true,
2126 ApiBase::PARAM_HELP_MSG => array(
2127 'api-help-param-token',
2128 $this->needsToken(),
2129 ),
2130 ) + ( isset( $params['token'] ) ? $params['token'] : array() );
2131 }
2132
2133 Hooks::run( 'APIGetAllowedParams', array( &$this, &$params, $flags ) );
2134
2135 return $params;
2136 }
2137
2138 /**
2139 * Get final parameter descriptions, after hooks have had a chance to tweak it as
2140 * needed.
2141 *
2142 * @since 1.25, returns array of Message[] rather than array of string[]
2143 * @return array Keys are parameter names, values are arrays of Message objects
2144 */
2145 public function getFinalParamDescription() {
2146 $prefix = $this->getModulePrefix();
2147 $name = $this->getModuleName();
2148 $path = $this->getModulePath();
2149
2150 $desc = $this->getParamDescription();
2151 Hooks::run( 'APIGetParamDescription', array( &$this, &$desc ) );
2152
2153 if ( !$desc ) {
2154 $desc = array();
2155 }
2156 $desc = self::escapeWikiText( $desc );
2157
2158 $params = $this->getFinalParams( ApiBase::GET_VALUES_FOR_HELP );
2159 $msgs = array();
2160 foreach ( $params as $param => $settings ) {
2161 if ( !is_array( $settings ) ) {
2162 $settings = array();
2163 }
2164
2165 $d = isset( $desc[$param] ) ? $desc[$param] : '';
2166 if ( is_array( $d ) ) {
2167 // Special handling for prop parameters
2168 $d = array_map( function ( $line ) {
2169 if ( preg_match( '/^\s+(\S+)\s+-\s+(.+)$/', $line, $m ) ) {
2170 $line = "\n;{$m[1]}:{$m[2]}";
2171 }
2172 return $line;
2173 }, $d );
2174 $d = join( ' ', $d );
2175 }
2176
2177 if ( isset( $settings[ApiBase::PARAM_HELP_MSG] ) ) {
2178 $msg = $settings[ApiBase::PARAM_HELP_MSG];
2179 } else {
2180 $msg = $this->msg( "apihelp-{$path}-param-{$param}" );
2181 if ( !$msg->exists() ) {
2182 $msg = $this->msg( 'api-help-fallback-parameter', $d );
2183 }
2184 }
2185 $msg = ApiBase::makeMessage( $msg, $this->getContext(),
2186 array( $prefix, $param, $name, $path ) );
2187 if ( !$msg ) {
2188 $this->dieDebug( __METHOD__,
2189 'Value in ApiBase::PARAM_HELP_MSG is not valid' );
2190 }
2191 $msgs[$param] = array( $msg );
2192
2193 if ( isset( $settings[ApiBase::PARAM_HELP_MSG_PER_VALUE] ) ) {
2194 if ( !is_array( $settings[ApiBase::PARAM_HELP_MSG_PER_VALUE] ) ) {
2195 $this->dieDebug( __METHOD__,
2196 'ApiBase::PARAM_HELP_MSG_PER_VALUE is not valid' );
2197 }
2198 if ( !is_array( $settings[ApiBase::PARAM_TYPE] ) ) {
2199 $this->dieDebug( __METHOD__,
2200 'ApiBase::PARAM_HELP_MSG_PER_VALUE may only be used when ' .
2201 'ApiBase::PARAM_TYPE is an array' );
2202 }
2203
2204 $valueMsgs = $settings[ApiBase::PARAM_HELP_MSG_PER_VALUE];
2205 foreach ( $settings[ApiBase::PARAM_TYPE] as $value ) {
2206 if ( isset( $valueMsgs[$value] ) ) {
2207 $msg = $valueMsgs[$value];
2208 } else {
2209 $msg = "apihelp-{$path}-paramvalue-{$param}-{$value}";
2210 }
2211 $m = ApiBase::makeMessage( $msg, $this->getContext(),
2212 array( $prefix, $param, $name, $path, $value ) );
2213 if ( $m ) {
2214 $m = new ApiHelpParamValueMessage(
2215 $value,
2216 array( $m->getKey(), 'api-help-param-no-description' ),
2217 $m->getParams()
2218 );
2219 $msgs[$param][] = $m->setContext( $this->getContext() );
2220 } else {
2221 $this->dieDebug( __METHOD__,
2222 "Value in ApiBase::PARAM_HELP_MSG_PER_VALUE for $value is not valid" );
2223 }
2224 }
2225 }
2226
2227 if ( isset( $settings[ApiBase::PARAM_HELP_MSG_APPEND] ) ) {
2228 if ( !is_array( $settings[ApiBase::PARAM_HELP_MSG_APPEND] ) ) {
2229 $this->dieDebug( __METHOD__,
2230 'Value for ApiBase::PARAM_HELP_MSG_APPEND is not an array' );
2231 }
2232 foreach ( $settings[ApiBase::PARAM_HELP_MSG_APPEND] as $m ) {
2233 $m = ApiBase::makeMessage( $m, $this->getContext(),
2234 array( $prefix, $param, $name, $path ) );
2235 if ( $m ) {
2236 $msgs[$param][] = $m;
2237 } else {
2238 $this->dieDebug( __METHOD__,
2239 'Value in ApiBase::PARAM_HELP_MSG_APPEND is not valid' );
2240 }
2241 }
2242 }
2243 }
2244
2245 Hooks::run( 'APIGetParamDescriptionMessages', array( $this, &$msgs ) );
2246
2247 return $msgs;
2248 }
2249
2250 /**
2251 * Generates the list of flags for the help screen and for action=paraminfo
2252 *
2253 * Corresponding messages: api-help-flag-deprecated,
2254 * api-help-flag-internal, api-help-flag-readrights,
2255 * api-help-flag-writerights, api-help-flag-mustbeposted
2256 *
2257 * @return string[]
2258 */
2259 protected function getHelpFlags() {
2260 $flags = array();
2261
2262 if ( $this->isDeprecated() ) {
2263 $flags[] = 'deprecated';
2264 }
2265 if ( $this->isInternal() ) {
2266 $flags[] = 'internal';
2267 }
2268 if ( $this->isReadMode() ) {
2269 $flags[] = 'readrights';
2270 }
2271 if ( $this->isWriteMode() ) {
2272 $flags[] = 'writerights';
2273 }
2274 if ( $this->mustBePosted() ) {
2275 $flags[] = 'mustbeposted';
2276 }
2277
2278 return $flags;
2279 }
2280
2281 /**
2282 * Returns information about the source of this module, if known
2283 *
2284 * Returned array is an array with the following keys:
2285 * - path: Install path
2286 * - name: Extension name, or "MediaWiki" for core
2287 * - namemsg: (optional) i18n message key for a display name
2288 * - license-name: (optional) Name of license
2289 *
2290 * @return array|null
2291 */
2292 protected function getModuleSourceInfo() {
2293 global $IP;
2294
2295 if ( $this->mModuleSource !== false ) {
2296 return $this->mModuleSource;
2297 }
2298
2299 // First, try to find where the module comes from...
2300 $rClass = new ReflectionClass( $this );
2301 $path = $rClass->getFileName();
2302 if ( !$path ) {
2303 // No path known?
2304 $this->mModuleSource = null;
2305 return null;
2306 }
2307 $path = realpath( $path ) ?: $path;
2308
2309 // Build map of extension directories to extension info
2310 if ( self::$extensionInfo === null ) {
2311 self::$extensionInfo = array(
2312 realpath( __DIR__ ) ?: __DIR__ => array(
2313 'path' => $IP,
2314 'name' => 'MediaWiki',
2315 'license-name' => 'GPL-2.0+',
2316 ),
2317 realpath( "$IP/extensions" ) ?: "$IP/extensions" => null,
2318 );
2319 $keep = array(
2320 'path' => null,
2321 'name' => null,
2322 'namemsg' => null,
2323 'license-name' => null,
2324 );
2325 foreach ( $this->getConfig()->get( 'ExtensionCredits' ) as $group ) {
2326 foreach ( $group as $ext ) {
2327 if ( !isset( $ext['path'] ) || !isset( $ext['name'] ) ) {
2328 // This shouldn't happen, but does anyway.
2329 continue;
2330 }
2331
2332 $extpath = $ext['path'];
2333 if ( !is_dir( $extpath ) ) {
2334 $extpath = dirname( $extpath );
2335 }
2336 self::$extensionInfo[realpath( $extpath ) ?: $extpath] =
2337 array_intersect_key( $ext, $keep );
2338 }
2339 }
2340 foreach ( ExtensionRegistry::getInstance()->getAllThings() as $ext ) {
2341 $extpath = $ext['path'];
2342 if ( !is_dir( $extpath ) ) {
2343 $extpath = dirname( $extpath );
2344 }
2345 self::$extensionInfo[realpath( $extpath ) ?: $extpath] =
2346 array_intersect_key( $ext, $keep );
2347 }
2348 }
2349
2350 // Now traverse parent directories until we find a match or run out of
2351 // parents.
2352 do {
2353 if ( array_key_exists( $path, self::$extensionInfo ) ) {
2354 // Found it!
2355 $this->mModuleSource = self::$extensionInfo[$path];
2356 return $this->mModuleSource;
2357 }
2358
2359 $oldpath = $path;
2360 $path = dirname( $path );
2361 } while ( $path !== $oldpath );
2362
2363 // No idea what extension this might be.
2364 $this->mModuleSource = null;
2365 return null;
2366 }
2367
2368 /**
2369 * Called from ApiHelp before the pieces are joined together and returned.
2370 *
2371 * This exists mainly for ApiMain to add the Permissions and Credits
2372 * sections. Other modules probably don't need it.
2373 *
2374 * @param string[] &$help Array of help data
2375 * @param array $options Options passed to ApiHelp::getHelp
2376 * @param array &$tocData If a TOC is being generated, this array has keys
2377 * as anchors in the page and values as for Linker::generateTOC().
2378 */
2379 public function modifyHelp( array &$help, array $options, array &$tocData ) {
2380 }
2381
2382 /**@}*/
2383
2384 /************************************************************************//**
2385 * @name Deprecated
2386 * @{
2387 */
2388
2389 /// @deprecated since 1.24
2390 const PROP_ROOT = 'ROOT';
2391 /// @deprecated since 1.24
2392 const PROP_LIST = 'LIST';
2393 /// @deprecated since 1.24
2394 const PROP_TYPE = 0;
2395 /// @deprecated since 1.24
2396 const PROP_NULLABLE = 1;
2397
2398 /**
2399 * Formerly returned a string that identifies the version of the extending
2400 * class. Typically included the class name, the svn revision, timestamp,
2401 * and last author. Usually done with SVN's Id keyword
2402 *
2403 * @deprecated since 1.21, version string is no longer supported
2404 * @return string
2405 */
2406 public function getVersion() {
2407 wfDeprecated( __METHOD__, '1.21' );
2408 return '';
2409 }
2410
2411 /**
2412 * Formerly used to fetch a list of possible properites in the result,
2413 * somehow organized with respect to the prop parameter that causes them to
2414 * be returned. The specific semantics of the return value was never
2415 * specified. Since this was never possible to be accurately updated, it
2416 * has been removed.
2417 *
2418 * @deprecated since 1.24
2419 * @return array|bool
2420 */
2421 protected function getResultProperties() {
2422 wfDeprecated( __METHOD__, '1.24' );
2423 return false;
2424 }
2425
2426 /**
2427 * @see self::getResultProperties()
2428 * @deprecated since 1.24
2429 * @return array|bool
2430 */
2431 public function getFinalResultProperties() {
2432 wfDeprecated( __METHOD__, '1.24' );
2433 return array();
2434 }
2435
2436 /**
2437 * @see self::getResultProperties()
2438 * @deprecated since 1.24
2439 */
2440 protected static function addTokenProperties( &$props, $tokenFunctions ) {
2441 wfDeprecated( __METHOD__, '1.24' );
2442 }
2443
2444 /**
2445 * @see self::getPossibleErrors()
2446 * @deprecated since 1.24
2447 * @return array
2448 */
2449 public function getRequireOnlyOneParameterErrorMessages( $params ) {
2450 wfDeprecated( __METHOD__, '1.24' );
2451 return array();
2452 }
2453
2454 /**
2455 * @see self::getPossibleErrors()
2456 * @deprecated since 1.24
2457 * @return array
2458 */
2459 public function getRequireMaxOneParameterErrorMessages( $params ) {
2460 wfDeprecated( __METHOD__, '1.24' );
2461 return array();
2462 }
2463
2464 /**
2465 * @see self::getPossibleErrors()
2466 * @deprecated since 1.24
2467 * @return array
2468 */
2469 public function getRequireAtLeastOneParameterErrorMessages( $params ) {
2470 wfDeprecated( __METHOD__, '1.24' );
2471 return array();
2472 }
2473
2474 /**
2475 * @see self::getPossibleErrors()
2476 * @deprecated since 1.24
2477 * @return array
2478 */
2479 public function getTitleOrPageIdErrorMessage() {
2480 wfDeprecated( __METHOD__, '1.24' );
2481 return array();
2482 }
2483
2484 /**
2485 * This formerly attempted to return a list of all possible errors returned
2486 * by the module. However, this was impossible to maintain in many cases
2487 * since errors could come from other areas of MediaWiki and in some cases
2488 * from arbitrary extension hooks. Since a partial list claiming to be
2489 * comprehensive is unlikely to be useful, it was removed.
2490 *
2491 * @deprecated since 1.24
2492 * @return array
2493 */
2494 public function getPossibleErrors() {
2495 wfDeprecated( __METHOD__, '1.24' );
2496 return array();
2497 }
2498
2499 /**
2500 * @see self::getPossibleErrors()
2501 * @deprecated since 1.24
2502 * @return array
2503 */
2504 public function getFinalPossibleErrors() {
2505 wfDeprecated( __METHOD__, '1.24' );
2506 return array();
2507 }
2508
2509 /**
2510 * @see self::getPossibleErrors()
2511 * @deprecated since 1.24
2512 * @return array
2513 */
2514 public function parseErrors( $errors ) {
2515 wfDeprecated( __METHOD__, '1.24' );
2516 return array();
2517 }
2518
2519 /**
2520 * Returns the description string for this module
2521 *
2522 * Ignored if an i18n message exists for
2523 * "apihelp-{$this->getModulePath()}-description".
2524 *
2525 * @deprecated since 1.25
2526 * @return Message|string|array
2527 */
2528 protected function getDescription() {
2529 return false;
2530 }
2531
2532 /**
2533 * Returns an array of parameter descriptions.
2534 *
2535 * For each parameter, ignored if an i18n message exists for the parameter.
2536 * By default that message is
2537 * "apihelp-{$this->getModulePath()}-param-{$param}", but it may be
2538 * overridden using ApiBase::PARAM_HELP_MSG in the data returned by
2539 * self::getFinalParams().
2540 *
2541 * @deprecated since 1.25
2542 * @return array|bool False on no parameter descriptions
2543 */
2544 protected function getParamDescription() {
2545 return array();
2546 }
2547
2548 /**
2549 * Returns usage examples for this module.
2550 *
2551 * Return value as an array is either:
2552 * - numeric keys with partial URLs ("api.php?" plus a query string) as
2553 * values
2554 * - sequential numeric keys with even-numbered keys being display-text
2555 * and odd-numbered keys being partial urls
2556 * - partial URLs as keys with display-text (string or array-to-be-joined)
2557 * as values
2558 * Return value as a string is the same as an array with a numeric key and
2559 * that value, and boolean false means "no examples".
2560 *
2561 * @deprecated since 1.25, use getExamplesMessages() instead
2562 * @return bool|string|array
2563 */
2564 protected function getExamples() {
2565 return false;
2566 }
2567
2568 /**
2569 * Generates help message for this module, or false if there is no description
2570 * @deprecated since 1.25
2571 * @return string|bool
2572 */
2573 public function makeHelpMsg() {
2574 wfDeprecated( __METHOD__, '1.25' );
2575 static $lnPrfx = "\n ";
2576
2577 $msg = $this->getFinalDescription();
2578
2579 if ( $msg !== false ) {
2580
2581 if ( !is_array( $msg ) ) {
2582 $msg = array(
2583 $msg
2584 );
2585 }
2586 $msg = $lnPrfx . implode( $lnPrfx, $msg ) . "\n";
2587
2588 $msg .= $this->makeHelpArrayToString( $lnPrfx, false, $this->getHelpUrls() );
2589
2590 if ( $this->isReadMode() ) {
2591 $msg .= "\nThis module requires read rights";
2592 }
2593 if ( $this->isWriteMode() ) {
2594 $msg .= "\nThis module requires write rights";
2595 }
2596 if ( $this->mustBePosted() ) {
2597 $msg .= "\nThis module only accepts POST requests";
2598 }
2599 if ( $this->isReadMode() || $this->isWriteMode() ||
2600 $this->mustBePosted()
2601 ) {
2602 $msg .= "\n";
2603 }
2604
2605 // Parameters
2606 $paramsMsg = $this->makeHelpMsgParameters();
2607 if ( $paramsMsg !== false ) {
2608 $msg .= "Parameters:\n$paramsMsg";
2609 }
2610
2611 $examples = $this->getExamples();
2612 if ( $examples ) {
2613 if ( !is_array( $examples ) ) {
2614 $examples = array(
2615 $examples
2616 );
2617 }
2618 $msg .= "Example" . ( count( $examples ) > 1 ? 's' : '' ) . ":\n";
2619 foreach ( $examples as $k => $v ) {
2620 if ( is_numeric( $k ) ) {
2621 $msg .= " $v\n";
2622 } else {
2623 if ( is_array( $v ) ) {
2624 $msgExample = implode( "\n", array_map( array( $this, 'indentExampleText' ), $v ) );
2625 } else {
2626 $msgExample = " $v";
2627 }
2628 $msgExample .= ":";
2629 $msg .= wordwrap( $msgExample, 100, "\n" ) . "\n $k\n";
2630 }
2631 }
2632 }
2633 }
2634
2635 return $msg;
2636 }
2637
2638 /**
2639 * @deprecated since 1.25
2640 * @param string $item
2641 * @return string
2642 */
2643 private function indentExampleText( $item ) {
2644 return " " . $item;
2645 }
2646
2647 /**
2648 * @deprecated since 1.25
2649 * @param string $prefix Text to split output items
2650 * @param string $title What is being output
2651 * @param string|array $input
2652 * @return string
2653 */
2654 protected function makeHelpArrayToString( $prefix, $title, $input ) {
2655 wfDeprecated( __METHOD__, '1.25' );
2656 if ( $input === false ) {
2657 return '';
2658 }
2659 if ( !is_array( $input ) ) {
2660 $input = array( $input );
2661 }
2662
2663 if ( count( $input ) > 0 ) {
2664 if ( $title ) {
2665 $msg = $title . ( count( $input ) > 1 ? 's' : '' ) . ":\n ";
2666 } else {
2667 $msg = ' ';
2668 }
2669 $msg .= implode( $prefix, $input ) . "\n";
2670
2671 return $msg;
2672 }
2673
2674 return '';
2675 }
2676
2677 /**
2678 * Generates the parameter descriptions for this module, to be displayed in the
2679 * module's help.
2680 * @deprecated since 1.25
2681 * @return string|bool
2682 */
2683 public function makeHelpMsgParameters() {
2684 wfDeprecated( __METHOD__, '1.25' );
2685 $params = $this->getFinalParams( ApiBase::GET_VALUES_FOR_HELP );
2686 if ( $params ) {
2687 $paramsDescription = $this->getFinalParamDescription();
2688 $msg = '';
2689 $paramPrefix = "\n" . str_repeat( ' ', 24 );
2690 $descWordwrap = "\n" . str_repeat( ' ', 28 );
2691 foreach ( $params as $paramName => $paramSettings ) {
2692 $desc = isset( $paramsDescription[$paramName] ) ? $paramsDescription[$paramName] : '';
2693 if ( is_array( $desc ) ) {
2694 $desc = implode( $paramPrefix, $desc );
2695 }
2696
2697 // handle shorthand
2698 if ( !is_array( $paramSettings ) ) {
2699 $paramSettings = array(
2700 self::PARAM_DFLT => $paramSettings,
2701 );
2702 }
2703
2704 // handle missing type
2705 if ( !isset( $paramSettings[ApiBase::PARAM_TYPE] ) ) {
2706 $dflt = isset( $paramSettings[ApiBase::PARAM_DFLT] )
2707 ? $paramSettings[ApiBase::PARAM_DFLT]
2708 : null;
2709 if ( is_bool( $dflt ) ) {
2710 $paramSettings[ApiBase::PARAM_TYPE] = 'boolean';
2711 } elseif ( is_string( $dflt ) || is_null( $dflt ) ) {
2712 $paramSettings[ApiBase::PARAM_TYPE] = 'string';
2713 } elseif ( is_int( $dflt ) ) {
2714 $paramSettings[ApiBase::PARAM_TYPE] = 'integer';
2715 }
2716 }
2717
2718 if ( isset( $paramSettings[self::PARAM_DEPRECATED] )
2719 && $paramSettings[self::PARAM_DEPRECATED]
2720 ) {
2721 $desc = "DEPRECATED! $desc";
2722 }
2723
2724 if ( isset( $paramSettings[self::PARAM_REQUIRED] )
2725 && $paramSettings[self::PARAM_REQUIRED]
2726 ) {
2727 $desc .= $paramPrefix . "This parameter is required";
2728 }
2729
2730 $type = isset( $paramSettings[self::PARAM_TYPE] )
2731 ? $paramSettings[self::PARAM_TYPE]
2732 : null;
2733 if ( isset( $type ) ) {
2734 $hintPipeSeparated = true;
2735 $multi = isset( $paramSettings[self::PARAM_ISMULTI] )
2736 ? $paramSettings[self::PARAM_ISMULTI]
2737 : false;
2738 if ( $multi ) {
2739 $prompt = 'Values (separate with \'|\'): ';
2740 } else {
2741 $prompt = 'One value: ';
2742 }
2743
2744 if ( $type === 'submodule' ) {
2745 if ( isset( $paramSettings[self::PARAM_SUBMODULE_MAP] ) ) {
2746 $type = array_keys( $paramSettings[self::PARAM_SUBMODULE_MAP] );
2747 } else {
2748 $type = $this->getModuleManager()->getNames( $paramName );
2749 }
2750 sort( $type );
2751 }
2752 if ( is_array( $type ) ) {
2753 $choices = array();
2754 $nothingPrompt = '';
2755 foreach ( $type as $t ) {
2756 if ( $t === '' ) {
2757 $nothingPrompt = 'Can be empty, or ';
2758 } else {
2759 $choices[] = $t;
2760 }
2761 }
2762 $desc .= $paramPrefix . $nothingPrompt . $prompt;
2763 $choicesstring = implode( ', ', $choices );
2764 $desc .= wordwrap( $choicesstring, 100, $descWordwrap );
2765 $hintPipeSeparated = false;
2766 } else {
2767 switch ( $type ) {
2768 case 'namespace':
2769 // Special handling because namespaces are
2770 // type-limited, yet they are not given
2771 $desc .= $paramPrefix . $prompt;
2772 $desc .= wordwrap( implode( ', ', MWNamespace::getValidNamespaces() ),
2773 100, $descWordwrap );
2774 $hintPipeSeparated = false;
2775 break;
2776 case 'limit':
2777 $desc .= $paramPrefix . "No more than {$paramSettings[self::PARAM_MAX]}";
2778 if ( isset( $paramSettings[self::PARAM_MAX2] ) ) {
2779 $desc .= " ({$paramSettings[self::PARAM_MAX2]} for bots)";
2780 }
2781 $desc .= ' allowed';
2782 break;
2783 case 'integer':
2784 $s = $multi ? 's' : '';
2785 $hasMin = isset( $paramSettings[self::PARAM_MIN] );
2786 $hasMax = isset( $paramSettings[self::PARAM_MAX] );
2787 if ( $hasMin || $hasMax ) {
2788 if ( !$hasMax ) {
2789 $intRangeStr = "The value$s must be no less than " .
2790 "{$paramSettings[self::PARAM_MIN]}";
2791 } elseif ( !$hasMin ) {
2792 $intRangeStr = "The value$s must be no more than " .
2793 "{$paramSettings[self::PARAM_MAX]}";
2794 } else {
2795 $intRangeStr = "The value$s must be between " .
2796 "{$paramSettings[self::PARAM_MIN]} and {$paramSettings[self::PARAM_MAX]}";
2797 }
2798
2799 $desc .= $paramPrefix . $intRangeStr;
2800 }
2801 break;
2802 case 'upload':
2803 $desc .= $paramPrefix . "Must be posted as a file upload using multipart/form-data";
2804 break;
2805 }
2806 }
2807
2808 if ( $multi ) {
2809 if ( $hintPipeSeparated ) {
2810 $desc .= $paramPrefix . "Separate values with '|'";
2811 }
2812
2813 $isArray = is_array( $type );
2814 if ( !$isArray
2815 || $isArray && count( $type ) > self::LIMIT_SML1
2816 ) {
2817 $desc .= $paramPrefix . "Maximum number of values " .
2818 self::LIMIT_SML1 . " (" . self::LIMIT_SML2 . " for bots)";
2819 }
2820 }
2821 }
2822
2823 $default = isset( $paramSettings[self::PARAM_DFLT] ) ? $paramSettings[self::PARAM_DFLT] : null;
2824 if ( !is_null( $default ) && $default !== false ) {
2825 $desc .= $paramPrefix . "Default: $default";
2826 }
2827
2828 $msg .= sprintf( " %-19s - %s\n", $this->encodeParamName( $paramName ), $desc );
2829 }
2830
2831 return $msg;
2832 }
2833
2834 return false;
2835 }
2836
2837 /**
2838 * @deprecated since 1.25, always returns empty string
2839 * @param IDatabase|bool $db
2840 * @return string
2841 */
2842 public function getModuleProfileName( $db = false ) {
2843 wfDeprecated( __METHOD__, '1.25' );
2844 return '';
2845 }
2846
2847 /**
2848 * @deprecated since 1.25
2849 */
2850 public function profileIn() {
2851 // No wfDeprecated() yet because extensions call this and might need to
2852 // keep doing so for BC.
2853 }
2854
2855 /**
2856 * @deprecated since 1.25
2857 */
2858 public function profileOut() {
2859 // No wfDeprecated() yet because extensions call this and might need to
2860 // keep doing so for BC.
2861 }
2862
2863 /**
2864 * @deprecated since 1.25
2865 */
2866 public function safeProfileOut() {
2867 wfDeprecated( __METHOD__, '1.25' );
2868 }
2869
2870 /**
2871 * @deprecated since 1.25, always returns 0
2872 * @return float
2873 */
2874 public function getProfileTime() {
2875 wfDeprecated( __METHOD__, '1.25' );
2876 return 0;
2877 }
2878
2879 /**
2880 * @deprecated since 1.25
2881 */
2882 public function profileDBIn() {
2883 wfDeprecated( __METHOD__, '1.25' );
2884 }
2885
2886 /**
2887 * @deprecated since 1.25
2888 */
2889 public function profileDBOut() {
2890 wfDeprecated( __METHOD__, '1.25' );
2891 }
2892
2893 /**
2894 * @deprecated since 1.25, always returns 0
2895 * @return float
2896 */
2897 public function getProfileDBTime() {
2898 wfDeprecated( __METHOD__, '1.25' );
2899 return 0;
2900 }
2901
2902 /**
2903 * Get the result data array (read-only)
2904 * @deprecated since 1.25, use $this->getResult() methods instead
2905 * @return array
2906 */
2907 public function getResultData() {
2908 wfDeprecated( __METHOD__, '1.25' );
2909 return $this->getResult()->getData();
2910 }
2911
2912 /**
2913 * Call wfTransactionalTimeLimit() if this request was POSTed
2914 * @since 1.26
2915 */
2916 protected function useTransactionalTimeLimit() {
2917 if ( $this->getRequest()->wasPosted() ) {
2918 wfTransactionalTimeLimit();
2919 }
2920 }
2921
2922 /**@}*/
2923 }
2924
2925 /**
2926 * For really cool vim folding this needs to be at the end:
2927 * vim: foldmarker=@{,@} foldmethod=marker
2928 */