Fix issues identified by SpaceBeforeSingleLineComment sniff
[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, $enforceLimits = false ) {
1075 if ( !is_null( $min ) && $value < $min ) {
1076 $msg = $this->encodeParamName( $paramName ) . " may not be less than $min (set to $value)";
1077 $this->warnOrDie( $msg, $enforceLimits );
1078 $value = $min;
1079 }
1080
1081 // Minimum is always validated, whereas maximum is checked only if not
1082 // running in internal call mode
1083 if ( $this->getMain()->isInternalMode() ) {
1084 return;
1085 }
1086
1087 // Optimization: do not check user's bot status unless really needed -- skips db query
1088 // assumes $botMax >= $max
1089 if ( !is_null( $max ) && $value > $max ) {
1090 if ( !is_null( $botMax ) && $this->getMain()->canApiHighLimits() ) {
1091 if ( $value > $botMax ) {
1092 $msg = $this->encodeParamName( $paramName ) .
1093 " may not be over $botMax (set to $value) for bots or sysops";
1094 $this->warnOrDie( $msg, $enforceLimits );
1095 $value = $botMax;
1096 }
1097 } else {
1098 $msg = $this->encodeParamName( $paramName ) . " may not be over $max (set to $value) for users";
1099 $this->warnOrDie( $msg, $enforceLimits );
1100 $value = $max;
1101 }
1102 }
1103 }
1104
1105 /**
1106 * Validate and normalize of parameters of type 'timestamp'
1107 * @param string $value Parameter value
1108 * @param string $encParamName Parameter name
1109 * @return string Validated and normalized parameter
1110 */
1111 protected function validateTimestamp( $value, $encParamName ) {
1112 // Confusing synonyms for the current time accepted by wfTimestamp()
1113 // (wfTimestamp() also accepts various non-strings and the string of 14
1114 // ASCII NUL bytes, but those can't get here)
1115 if ( !$value ) {
1116 $this->logFeatureUsage( 'unclear-"now"-timestamp' );
1117 $this->setWarning(
1118 "Passing '$value' for timestamp parameter $encParamName has been deprecated." .
1119 ' If for some reason you need to explicitly specify the current time without' .
1120 ' calculating it client-side, use "now".'
1121 );
1122 return wfTimestamp( TS_MW );
1123 }
1124
1125 // Explicit synonym for the current time
1126 if ( $value === 'now' ) {
1127 return wfTimestamp( TS_MW );
1128 }
1129
1130 $unixTimestamp = wfTimestamp( TS_UNIX, $value );
1131 if ( $unixTimestamp === false ) {
1132 $this->dieUsage(
1133 "Invalid value '$value' for timestamp parameter $encParamName",
1134 "badtimestamp_{$encParamName}"
1135 );
1136 }
1137
1138 return wfTimestamp( TS_MW, $unixTimestamp );
1139 }
1140
1141 /**
1142 * Validate the supplied token.
1143 *
1144 * @since 1.24
1145 * @param string $token Supplied token
1146 * @param array $params All supplied parameters for the module
1147 * @return bool
1148 * @throws MWException
1149 */
1150 final public function validateToken( $token, array $params ) {
1151 $tokenType = $this->needsToken();
1152 $salts = ApiQueryTokens::getTokenTypeSalts();
1153 if ( !isset( $salts[$tokenType] ) ) {
1154 throw new MWException(
1155 "Module '{$this->getModuleName()}' tried to use token type '$tokenType' " .
1156 'without registering it'
1157 );
1158 }
1159
1160 if ( $this->getUser()->matchEditToken(
1161 $token,
1162 $salts[$tokenType],
1163 $this->getRequest()
1164 ) ) {
1165 return true;
1166 }
1167
1168 $webUiSalt = $this->getWebUITokenSalt( $params );
1169 if ( $webUiSalt !== null && $this->getUser()->matchEditToken(
1170 $token,
1171 $webUiSalt,
1172 $this->getRequest()
1173 ) ) {
1174 return true;
1175 }
1176
1177 return false;
1178 }
1179
1180 /**
1181 * Validate and normalize of parameters of type 'user'
1182 * @param string $value Parameter value
1183 * @param string $encParamName Parameter name
1184 * @return string Validated and normalized parameter
1185 */
1186 private function validateUser( $value, $encParamName ) {
1187 $title = Title::makeTitleSafe( NS_USER, $value );
1188 if ( $title === null ) {
1189 $this->dieUsage(
1190 "Invalid value '$value' for user parameter $encParamName",
1191 "baduser_{$encParamName}"
1192 );
1193 }
1194
1195 return $title->getText();
1196 }
1197
1198 /**@}*/
1199
1200 /************************************************************************//**
1201 * @name Utility methods
1202 * @{
1203 */
1204
1205 /**
1206 * Set a watch (or unwatch) based the based on a watchlist parameter.
1207 * @param string $watch Valid values: 'watch', 'unwatch', 'preferences', 'nochange'
1208 * @param Title $titleObj The article's title to change
1209 * @param string $userOption The user option to consider when $watch=preferences
1210 */
1211 protected function setWatch( $watch, $titleObj, $userOption = null ) {
1212 $value = $this->getWatchlistValue( $watch, $titleObj, $userOption );
1213 if ( $value === null ) {
1214 return;
1215 }
1216
1217 WatchAction::doWatchOrUnwatch( $value, $titleObj, $this->getUser() );
1218 }
1219
1220 /**
1221 * Truncate an array to a certain length.
1222 * @param array $arr Array to truncate
1223 * @param int $limit Maximum length
1224 * @return bool True if the array was truncated, false otherwise
1225 */
1226 public static function truncateArray( &$arr, $limit ) {
1227 $modified = false;
1228 while ( count( $arr ) > $limit ) {
1229 array_pop( $arr );
1230 $modified = true;
1231 }
1232
1233 return $modified;
1234 }
1235
1236 /**
1237 * Gets the user for whom to get the watchlist
1238 *
1239 * @param array $params
1240 * @return User
1241 */
1242 public function getWatchlistUser( $params ) {
1243 if ( !is_null( $params['owner'] ) && !is_null( $params['token'] ) ) {
1244 $user = User::newFromName( $params['owner'], false );
1245 if ( !( $user && $user->getId() ) ) {
1246 $this->dieUsage( 'Specified user does not exist', 'bad_wlowner' );
1247 }
1248 $token = $user->getOption( 'watchlisttoken' );
1249 if ( $token == '' || !hash_equals( $token, $params['token'] ) ) {
1250 $this->dieUsage(
1251 'Incorrect watchlist token provided -- please set a correct token in Special:Preferences',
1252 'bad_wltoken'
1253 );
1254 }
1255 } else {
1256 if ( !$this->getUser()->isLoggedIn() ) {
1257 $this->dieUsage( 'You must be logged-in to have a watchlist', 'notloggedin' );
1258 }
1259 if ( !$this->getUser()->isAllowed( 'viewmywatchlist' ) ) {
1260 $this->dieUsage( 'You don\'t have permission to view your watchlist', 'permissiondenied' );
1261 }
1262 $user = $this->getUser();
1263 }
1264
1265 return $user;
1266 }
1267
1268 /**
1269 * A subset of wfEscapeWikiText for BC texts
1270 *
1271 * @since 1.25
1272 * @param string|array $v
1273 * @return string|array
1274 */
1275 private static function escapeWikiText( $v ) {
1276 if ( is_array( $v ) ) {
1277 return array_map( 'self::escapeWikiText', $v );
1278 } else {
1279 return strtr( $v, array(
1280 '__' => '_&#95;', '{' => '&#123;', '}' => '&#125;',
1281 '[[Category:' => '[[:Category:',
1282 '[[File:' => '[[:File:', '[[Image:' => '[[:Image:',
1283 ) );
1284 }
1285 }
1286
1287 /**
1288 * Create a Message from a string or array
1289 *
1290 * A string is used as a message key. An array has the message key as the
1291 * first value and message parameters as subsequent values.
1292 *
1293 * @since 1.25
1294 * @param string|array|Message $msg
1295 * @param IContextSource $context
1296 * @param array $params
1297 * @return Message|null
1298 */
1299 public static function makeMessage( $msg, IContextSource $context, array $params = null ) {
1300 if ( is_string( $msg ) ) {
1301 $msg = wfMessage( $msg );
1302 } elseif ( is_array( $msg ) ) {
1303 $msg = call_user_func_array( 'wfMessage', $msg );
1304 }
1305 if ( !$msg instanceof Message ) {
1306 return null;
1307 }
1308
1309 $msg->setContext( $context );
1310 if ( $params ) {
1311 $msg->params( $params );
1312 }
1313
1314 return $msg;
1315 }
1316
1317 /**@}*/
1318
1319 /************************************************************************//**
1320 * @name Warning and error reporting
1321 * @{
1322 */
1323
1324 /**
1325 * Set warning section for this module. Users should monitor this
1326 * section to notice any changes in API. Multiple calls to this
1327 * function will result in the warning messages being separated by
1328 * newlines
1329 * @param string $warning Warning message
1330 */
1331 public function setWarning( $warning ) {
1332 $msg = new ApiRawMessage( $warning, 'warning' );
1333 $this->getErrorFormatter()->addWarning( $this->getModuleName(), $msg );
1334 }
1335
1336 /**
1337 * Adds a warning to the output, else dies
1338 *
1339 * @param string $msg Message to show as a warning, or error message if dying
1340 * @param bool $enforceLimits Whether this is an enforce (die)
1341 */
1342 private function warnOrDie( $msg, $enforceLimits = false ) {
1343 if ( $enforceLimits ) {
1344 $this->dieUsage( $msg, 'integeroutofrange' );
1345 }
1346
1347 $this->setWarning( $msg );
1348 }
1349
1350 /**
1351 * Throw a UsageException, which will (if uncaught) call the main module's
1352 * error handler and die with an error message.
1353 *
1354 * @param string $description One-line human-readable description of the
1355 * error condition, e.g., "The API requires a valid action parameter"
1356 * @param string $errorCode Brief, arbitrary, stable string to allow easy
1357 * automated identification of the error, e.g., 'unknown_action'
1358 * @param int $httpRespCode HTTP response code
1359 * @param array $extradata Data to add to the "<error>" element; array in ApiResult format
1360 * @throws UsageException
1361 */
1362 public function dieUsage( $description, $errorCode, $httpRespCode = 0, $extradata = null ) {
1363 throw new UsageException(
1364 $description,
1365 $this->encodeParamName( $errorCode ),
1366 $httpRespCode,
1367 $extradata
1368 );
1369 }
1370
1371 /**
1372 * Get error (as code, string) from a Status object.
1373 *
1374 * @since 1.23
1375 * @param Status $status
1376 * @return array Array of code and error string
1377 * @throws MWException
1378 */
1379 public function getErrorFromStatus( $status ) {
1380 if ( $status->isGood() ) {
1381 throw new MWException( 'Successful status passed to ApiBase::dieStatus' );
1382 }
1383
1384 $errors = $status->getErrorsArray();
1385 if ( !$errors ) {
1386 // No errors? Assume the warnings should be treated as errors
1387 $errors = $status->getWarningsArray();
1388 }
1389 if ( !$errors ) {
1390 // Still no errors? Punt
1391 $errors = array( array( 'unknownerror-nocode' ) );
1392 }
1393
1394 // Cannot use dieUsageMsg() because extensions might return custom
1395 // error messages.
1396 if ( $errors[0] instanceof Message ) {
1397 $msg = $errors[0];
1398 $code = $msg->getKey();
1399 } else {
1400 $code = array_shift( $errors[0] );
1401 $msg = wfMessage( $code, $errors[0] );
1402 }
1403 if ( isset( ApiBase::$messageMap[$code] ) ) {
1404 // Translate message to code, for backwards compatibility
1405 $code = ApiBase::$messageMap[$code]['code'];
1406 }
1407
1408 return array( $code, $msg->inLanguage( 'en' )->useDatabase( false )->plain() );
1409 }
1410
1411 /**
1412 * Throw a UsageException based on the errors in the Status object.
1413 *
1414 * @since 1.22
1415 * @param Status $status
1416 * @throws MWException
1417 */
1418 public function dieStatus( $status ) {
1419
1420 list( $code, $msg ) = $this->getErrorFromStatus( $status );
1421 $this->dieUsage( $msg, $code );
1422 }
1423
1424 // @codingStandardsIgnoreStart Allow long lines. Cannot split these.
1425 /**
1426 * Array that maps message keys to error messages. $1 and friends are replaced.
1427 */
1428 public static $messageMap = array(
1429 // This one MUST be present, or dieUsageMsg() will recurse infinitely
1430 'unknownerror' => array( 'code' => 'unknownerror', 'info' => "Unknown error: \"\$1\"" ),
1431 'unknownerror-nocode' => array( 'code' => 'unknownerror', 'info' => 'Unknown error' ),
1432
1433 // Messages from Title::getUserPermissionsErrors()
1434 'ns-specialprotected' => array(
1435 'code' => 'unsupportednamespace',
1436 'info' => "Pages in the Special namespace can't be edited"
1437 ),
1438 'protectedinterface' => array(
1439 'code' => 'protectednamespace-interface',
1440 'info' => "You're not allowed to edit interface messages"
1441 ),
1442 'namespaceprotected' => array(
1443 'code' => 'protectednamespace',
1444 'info' => "You're not allowed to edit pages in the \"\$1\" namespace"
1445 ),
1446 'customcssprotected' => array(
1447 'code' => 'customcssprotected',
1448 'info' => "You're not allowed to edit custom CSS pages"
1449 ),
1450 'customjsprotected' => array(
1451 'code' => 'customjsprotected',
1452 'info' => "You're not allowed to edit custom JavaScript pages"
1453 ),
1454 'cascadeprotected' => array(
1455 'code' => 'cascadeprotected',
1456 'info' => "The page you're trying to edit is protected because it's included in a cascade-protected page"
1457 ),
1458 'protectedpagetext' => array(
1459 'code' => 'protectedpage',
1460 'info' => "The \"\$1\" right is required to edit this page"
1461 ),
1462 'protect-cantedit' => array(
1463 'code' => 'cantedit',
1464 'info' => "You can't protect this page because you can't edit it"
1465 ),
1466 'deleteprotected' => array(
1467 'code' => 'cantedit',
1468 'info' => "You can't delete this page because it has been protected"
1469 ),
1470 'badaccess-group0' => array(
1471 'code' => 'permissiondenied',
1472 'info' => "Permission denied"
1473 ), // Generic permission denied message
1474 'badaccess-groups' => array(
1475 'code' => 'permissiondenied',
1476 'info' => "Permission denied"
1477 ),
1478 'titleprotected' => array(
1479 'code' => 'protectedtitle',
1480 'info' => "This title has been protected from creation"
1481 ),
1482 'nocreate-loggedin' => array(
1483 'code' => 'cantcreate',
1484 'info' => "You don't have permission to create new pages"
1485 ),
1486 'nocreatetext' => array(
1487 'code' => 'cantcreate-anon',
1488 'info' => "Anonymous users can't create new pages"
1489 ),
1490 'movenologintext' => array(
1491 'code' => 'cantmove-anon',
1492 'info' => "Anonymous users can't move pages"
1493 ),
1494 'movenotallowed' => array(
1495 'code' => 'cantmove',
1496 'info' => "You don't have permission to move pages"
1497 ),
1498 'confirmedittext' => array(
1499 'code' => 'confirmemail',
1500 'info' => "You must confirm your email address before you can edit"
1501 ),
1502 'blockedtext' => array(
1503 'code' => 'blocked',
1504 'info' => "You have been blocked from editing"
1505 ),
1506 'autoblockedtext' => array(
1507 'code' => 'autoblocked',
1508 'info' => "Your IP address has been blocked automatically, because it was used by a blocked user"
1509 ),
1510
1511 // Miscellaneous interface messages
1512 'actionthrottledtext' => array(
1513 'code' => 'ratelimited',
1514 'info' => "You've exceeded your rate limit. Please wait some time and try again"
1515 ),
1516 'alreadyrolled' => array(
1517 'code' => 'alreadyrolled',
1518 'info' => "The page you tried to rollback was already rolled back"
1519 ),
1520 'cantrollback' => array(
1521 'code' => 'onlyauthor',
1522 'info' => "The page you tried to rollback only has one author"
1523 ),
1524 'readonlytext' => array(
1525 'code' => 'readonly',
1526 'info' => "The wiki is currently in read-only mode"
1527 ),
1528 'sessionfailure' => array(
1529 'code' => 'badtoken',
1530 'info' => "Invalid token" ),
1531 'cannotdelete' => array(
1532 'code' => 'cantdelete',
1533 'info' => "Couldn't delete \"\$1\". Maybe it was deleted already by someone else"
1534 ),
1535 'notanarticle' => array(
1536 'code' => 'missingtitle',
1537 'info' => "The page you requested doesn't exist"
1538 ),
1539 'selfmove' => array( 'code' => 'selfmove', 'info' => "Can't move a page to itself"
1540 ),
1541 'immobile_namespace' => array(
1542 'code' => 'immobilenamespace',
1543 'info' => "You tried to move pages from or to a namespace that is protected from moving"
1544 ),
1545 'articleexists' => array(
1546 'code' => 'articleexists',
1547 'info' => "The destination article already exists and is not a redirect to the source article"
1548 ),
1549 'protectedpage' => array(
1550 'code' => 'protectedpage',
1551 'info' => "You don't have permission to perform this move"
1552 ),
1553 'hookaborted' => array(
1554 'code' => 'hookaborted',
1555 'info' => "The modification you tried to make was aborted by an extension hook"
1556 ),
1557 'cantmove-titleprotected' => array(
1558 'code' => 'protectedtitle',
1559 'info' => "The destination article has been protected from creation"
1560 ),
1561 'imagenocrossnamespace' => array(
1562 'code' => 'nonfilenamespace',
1563 'info' => "Can't move a file to a non-file namespace"
1564 ),
1565 'imagetypemismatch' => array(
1566 'code' => 'filetypemismatch',
1567 'info' => "The new file extension doesn't match its type"
1568 ),
1569 // 'badarticleerror' => shouldn't happen
1570 // 'badtitletext' => shouldn't happen
1571 'ip_range_invalid' => array( 'code' => 'invalidrange', 'info' => "Invalid IP range" ),
1572 'range_block_disabled' => array(
1573 'code' => 'rangedisabled',
1574 'info' => "Blocking IP ranges has been disabled"
1575 ),
1576 'nosuchusershort' => array(
1577 'code' => 'nosuchuser',
1578 'info' => "The user you specified doesn't exist"
1579 ),
1580 'badipaddress' => array( 'code' => 'invalidip', 'info' => "Invalid IP address specified" ),
1581 'ipb_expiry_invalid' => array( 'code' => 'invalidexpiry', 'info' => "Invalid expiry time" ),
1582 'ipb_already_blocked' => array(
1583 'code' => 'alreadyblocked',
1584 'info' => "The user you tried to block was already blocked"
1585 ),
1586 'ipb_blocked_as_range' => array(
1587 'code' => 'blockedasrange',
1588 '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."
1589 ),
1590 'ipb_cant_unblock' => array(
1591 'code' => 'cantunblock',
1592 'info' => "The block you specified was not found. It may have been unblocked already"
1593 ),
1594 'mailnologin' => array(
1595 'code' => 'cantsend',
1596 '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"
1597 ),
1598 'ipbblocked' => array(
1599 'code' => 'ipbblocked',
1600 'info' => 'You cannot block or unblock users while you are yourself blocked'
1601 ),
1602 'ipbnounblockself' => array(
1603 'code' => 'ipbnounblockself',
1604 'info' => 'You are not allowed to unblock yourself'
1605 ),
1606 'usermaildisabled' => array(
1607 'code' => 'usermaildisabled',
1608 'info' => "User email has been disabled"
1609 ),
1610 'blockedemailuser' => array(
1611 'code' => 'blockedfrommail',
1612 'info' => "You have been blocked from sending email"
1613 ),
1614 'notarget' => array(
1615 'code' => 'notarget',
1616 'info' => "You have not specified a valid target for this action"
1617 ),
1618 'noemail' => array(
1619 'code' => 'noemail',
1620 'info' => "The user has not specified a valid email address, or has chosen not to receive email from other users"
1621 ),
1622 'rcpatroldisabled' => array(
1623 'code' => 'patroldisabled',
1624 'info' => "Patrolling is disabled on this wiki"
1625 ),
1626 'markedaspatrollederror-noautopatrol' => array(
1627 'code' => 'noautopatrol',
1628 'info' => "You don't have permission to patrol your own changes"
1629 ),
1630 'delete-toobig' => array(
1631 'code' => 'bigdelete',
1632 'info' => "You can't delete this page because it has more than \$1 revisions"
1633 ),
1634 'movenotallowedfile' => array(
1635 'code' => 'cantmovefile',
1636 'info' => "You don't have permission to move files"
1637 ),
1638 'userrights-no-interwiki' => array(
1639 'code' => 'nointerwikiuserrights',
1640 'info' => "You don't have permission to change user rights on other wikis"
1641 ),
1642 'userrights-nodatabase' => array(
1643 'code' => 'nosuchdatabase',
1644 'info' => "Database \"\$1\" does not exist or is not local"
1645 ),
1646 'nouserspecified' => array( 'code' => 'invaliduser', 'info' => "Invalid username \"\$1\"" ),
1647 'noname' => array( 'code' => 'invaliduser', 'info' => "Invalid username \"\$1\"" ),
1648 'summaryrequired' => array( 'code' => 'summaryrequired', 'info' => 'Summary required' ),
1649 'import-rootpage-invalid' => array(
1650 'code' => 'import-rootpage-invalid',
1651 'info' => 'Root page is an invalid title'
1652 ),
1653 'import-rootpage-nosubpage' => array(
1654 'code' => 'import-rootpage-nosubpage',
1655 'info' => 'Namespace "$1" of the root page does not allow subpages'
1656 ),
1657
1658 // API-specific messages
1659 'readrequired' => array(
1660 'code' => 'readapidenied',
1661 'info' => "You need read permission to use this module"
1662 ),
1663 'writedisabled' => array(
1664 'code' => 'noapiwrite',
1665 '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"
1666 ),
1667 'writerequired' => array(
1668 'code' => 'writeapidenied',
1669 'info' => "You're not allowed to edit this wiki through the API"
1670 ),
1671 'missingparam' => array( 'code' => 'no$1', 'info' => "The \$1 parameter must be set" ),
1672 'invalidtitle' => array( 'code' => 'invalidtitle', 'info' => "Bad title \"\$1\"" ),
1673 'nosuchpageid' => array( 'code' => 'nosuchpageid', 'info' => "There is no page with ID \$1" ),
1674 'nosuchrevid' => array( 'code' => 'nosuchrevid', 'info' => "There is no revision with ID \$1" ),
1675 'nosuchuser' => array( 'code' => 'nosuchuser', 'info' => "User \"\$1\" doesn't exist" ),
1676 'invaliduser' => array( 'code' => 'invaliduser', 'info' => "Invalid username \"\$1\"" ),
1677 'invalidexpiry' => array( 'code' => 'invalidexpiry', 'info' => "Invalid expiry time \"\$1\"" ),
1678 'pastexpiry' => array( 'code' => 'pastexpiry', 'info' => "Expiry time \"\$1\" is in the past" ),
1679 'create-titleexists' => array(
1680 'code' => 'create-titleexists',
1681 'info' => "Existing titles can't be protected with 'create'"
1682 ),
1683 'missingtitle-createonly' => array(
1684 'code' => 'missingtitle-createonly',
1685 'info' => "Missing titles can only be protected with 'create'"
1686 ),
1687 'cantblock' => array( 'code' => 'cantblock',
1688 'info' => "You don't have permission to block users"
1689 ),
1690 'canthide' => array(
1691 'code' => 'canthide',
1692 'info' => "You don't have permission to hide user names from the block log"
1693 ),
1694 'cantblock-email' => array(
1695 'code' => 'cantblock-email',
1696 'info' => "You don't have permission to block users from sending email through the wiki"
1697 ),
1698 'unblock-notarget' => array(
1699 'code' => 'notarget',
1700 'info' => "Either the id or the user parameter must be set"
1701 ),
1702 'unblock-idanduser' => array(
1703 'code' => 'idanduser',
1704 'info' => "The id and user parameters can't be used together"
1705 ),
1706 'cantunblock' => array(
1707 'code' => 'permissiondenied',
1708 'info' => "You don't have permission to unblock users"
1709 ),
1710 'cannotundelete' => array(
1711 'code' => 'cantundelete',
1712 'info' => "Couldn't undelete: the requested revisions may not exist, or may have been undeleted already"
1713 ),
1714 'permdenied-undelete' => array(
1715 'code' => 'permissiondenied',
1716 'info' => "You don't have permission to restore deleted revisions"
1717 ),
1718 'createonly-exists' => array(
1719 'code' => 'articleexists',
1720 'info' => "The article you tried to create has been created already"
1721 ),
1722 'nocreate-missing' => array(
1723 'code' => 'missingtitle',
1724 'info' => "The article you tried to edit doesn't exist"
1725 ),
1726 'cantchangecontentmodel' => array(
1727 'code' => 'cantchangecontentmodel',
1728 'info' => "You don't have permission to change the content model of a page"
1729 ),
1730 'nosuchrcid' => array(
1731 'code' => 'nosuchrcid',
1732 'info' => "There is no change with rcid \"\$1\""
1733 ),
1734 'nosuchlogid' => array(
1735 'code' => 'nosuchlogid',
1736 'info' => "There is no log entry with ID \"\$1\""
1737 ),
1738 'protect-invalidaction' => array(
1739 'code' => 'protect-invalidaction',
1740 'info' => "Invalid protection type \"\$1\""
1741 ),
1742 'protect-invalidlevel' => array(
1743 'code' => 'protect-invalidlevel',
1744 'info' => "Invalid protection level \"\$1\""
1745 ),
1746 'toofewexpiries' => array(
1747 'code' => 'toofewexpiries',
1748 'info' => "\$1 expiry timestamps were provided where \$2 were needed"
1749 ),
1750 'cantimport' => array(
1751 'code' => 'cantimport',
1752 'info' => "You don't have permission to import pages"
1753 ),
1754 'cantimport-upload' => array(
1755 'code' => 'cantimport-upload',
1756 'info' => "You don't have permission to import uploaded pages"
1757 ),
1758 'importnofile' => array( 'code' => 'nofile', 'info' => "You didn't upload a file" ),
1759 'importuploaderrorsize' => array(
1760 'code' => 'filetoobig',
1761 'info' => 'The file you uploaded is bigger than the maximum upload size'
1762 ),
1763 'importuploaderrorpartial' => array(
1764 'code' => 'partialupload',
1765 'info' => 'The file was only partially uploaded'
1766 ),
1767 'importuploaderrortemp' => array(
1768 'code' => 'notempdir',
1769 'info' => 'The temporary upload directory is missing'
1770 ),
1771 'importcantopen' => array(
1772 'code' => 'cantopenfile',
1773 'info' => "Couldn't open the uploaded file"
1774 ),
1775 'import-noarticle' => array(
1776 'code' => 'badinterwiki',
1777 'info' => 'Invalid interwiki title specified'
1778 ),
1779 'importbadinterwiki' => array(
1780 'code' => 'badinterwiki',
1781 'info' => 'Invalid interwiki title specified'
1782 ),
1783 'import-unknownerror' => array(
1784 'code' => 'import-unknownerror',
1785 'info' => "Unknown error on import: \"\$1\""
1786 ),
1787 'cantoverwrite-sharedfile' => array(
1788 'code' => 'cantoverwrite-sharedfile',
1789 'info' => 'The target file exists on a shared repository and you do not have permission to override it'
1790 ),
1791 'sharedfile-exists' => array(
1792 'code' => 'fileexists-sharedrepo-perm',
1793 'info' => 'The target file exists on a shared repository. Use the ignorewarnings parameter to override it.'
1794 ),
1795 'mustbeposted' => array(
1796 'code' => 'mustbeposted',
1797 'info' => "The \$1 module requires a POST request"
1798 ),
1799 'show' => array(
1800 'code' => 'show',
1801 'info' => 'Incorrect parameter - mutually exclusive values may not be supplied'
1802 ),
1803 'specialpage-cantexecute' => array(
1804 'code' => 'specialpage-cantexecute',
1805 'info' => "You don't have permission to view the results of this special page"
1806 ),
1807 'invalidoldimage' => array(
1808 'code' => 'invalidoldimage',
1809 'info' => 'The oldimage parameter has invalid format'
1810 ),
1811 'nodeleteablefile' => array(
1812 'code' => 'nodeleteablefile',
1813 'info' => 'No such old version of the file'
1814 ),
1815 'fileexists-forbidden' => array(
1816 'code' => 'fileexists-forbidden',
1817 'info' => 'A file with name "$1" already exists, and cannot be overwritten.'
1818 ),
1819 'fileexists-shared-forbidden' => array(
1820 'code' => 'fileexists-shared-forbidden',
1821 'info' => 'A file with name "$1" already exists in the shared file repository, and cannot be overwritten.'
1822 ),
1823 'filerevert-badversion' => array(
1824 'code' => 'filerevert-badversion',
1825 'info' => 'There is no previous local version of this file with the provided timestamp.'
1826 ),
1827
1828 // ApiEditPage messages
1829 'noimageredirect-anon' => array(
1830 'code' => 'noimageredirect-anon',
1831 'info' => "Anonymous users can't create image redirects"
1832 ),
1833 'noimageredirect-logged' => array(
1834 'code' => 'noimageredirect',
1835 'info' => "You don't have permission to create image redirects"
1836 ),
1837 'spamdetected' => array(
1838 'code' => 'spamdetected',
1839 'info' => "Your edit was refused because it contained a spam fragment: \"\$1\""
1840 ),
1841 'contenttoobig' => array(
1842 'code' => 'contenttoobig',
1843 'info' => "The content you supplied exceeds the article size limit of \$1 kilobytes"
1844 ),
1845 'noedit-anon' => array( 'code' => 'noedit-anon', 'info' => "Anonymous users can't edit pages" ),
1846 'noedit' => array( 'code' => 'noedit', 'info' => "You don't have permission to edit pages" ),
1847 'wasdeleted' => array(
1848 'code' => 'pagedeleted',
1849 'info' => "The page has been deleted since you fetched its timestamp"
1850 ),
1851 'blankpage' => array(
1852 'code' => 'emptypage',
1853 'info' => "Creating new, empty pages is not allowed"
1854 ),
1855 'editconflict' => array( 'code' => 'editconflict', 'info' => "Edit conflict detected" ),
1856 'hashcheckfailed' => array( 'code' => 'badmd5', 'info' => "The supplied MD5 hash was incorrect" ),
1857 'missingtext' => array(
1858 'code' => 'notext',
1859 'info' => "One of the text, appendtext, prependtext and undo parameters must be set"
1860 ),
1861 'emptynewsection' => array(
1862 'code' => 'emptynewsection',
1863 'info' => 'Creating empty new sections is not possible.'
1864 ),
1865 'revwrongpage' => array(
1866 'code' => 'revwrongpage',
1867 'info' => "r\$1 is not a revision of \"\$2\""
1868 ),
1869 'undo-failure' => array(
1870 'code' => 'undofailure',
1871 'info' => 'Undo failed due to conflicting intermediate edits'
1872 ),
1873 'content-not-allowed-here' => array(
1874 'code' => 'contentnotallowedhere',
1875 'info' => 'Content model "$1" is not allowed at title "$2"'
1876 ),
1877
1878 // Messages from WikiPage::doEit()
1879 'edit-hook-aborted' => array(
1880 'code' => 'edit-hook-aborted',
1881 'info' => "Your edit was aborted by an ArticleSave hook"
1882 ),
1883 'edit-gone-missing' => array(
1884 'code' => 'edit-gone-missing',
1885 'info' => "The page you tried to edit doesn't seem to exist anymore"
1886 ),
1887 'edit-conflict' => array( 'code' => 'editconflict', 'info' => "Edit conflict detected" ),
1888 'edit-already-exists' => array(
1889 'code' => 'edit-already-exists',
1890 'info' => 'It seems the page you tried to create already exist'
1891 ),
1892
1893 // uploadMsgs
1894 'invalid-file-key' => array( 'code' => 'invalid-file-key', 'info' => 'Not a valid file key' ),
1895 'nouploadmodule' => array( 'code' => 'nouploadmodule', 'info' => 'No upload module set' ),
1896 'uploaddisabled' => array(
1897 'code' => 'uploaddisabled',
1898 'info' => 'Uploads are not enabled. Make sure $wgEnableUploads is set to true in LocalSettings.php and the PHP ini setting file_uploads is true'
1899 ),
1900 'copyuploaddisabled' => array(
1901 'code' => 'copyuploaddisabled',
1902 'info' => 'Uploads by URL is not enabled. Make sure $wgAllowCopyUploads is set to true in LocalSettings.php.'
1903 ),
1904 'copyuploadbaddomain' => array(
1905 'code' => 'copyuploadbaddomain',
1906 'info' => 'Uploads by URL are not allowed from this domain.'
1907 ),
1908 'copyuploadbadurl' => array(
1909 'code' => 'copyuploadbadurl',
1910 'info' => 'Upload not allowed from this URL.'
1911 ),
1912
1913 'filename-tooshort' => array(
1914 'code' => 'filename-tooshort',
1915 'info' => 'The filename is too short'
1916 ),
1917 'filename-toolong' => array( 'code' => 'filename-toolong', 'info' => 'The filename is too long' ),
1918 'illegal-filename' => array(
1919 'code' => 'illegal-filename',
1920 'info' => 'The filename is not allowed'
1921 ),
1922 'filetype-missing' => array(
1923 'code' => 'filetype-missing',
1924 'info' => 'The file is missing an extension'
1925 ),
1926
1927 'mustbeloggedin' => array( 'code' => 'mustbeloggedin', 'info' => 'You must be logged in to $1.' )
1928 );
1929 // @codingStandardsIgnoreEnd
1930
1931 /**
1932 * Helper function for readonly errors
1933 */
1934 public function dieReadOnly() {
1935 $parsed = $this->parseMsg( array( 'readonlytext' ) );
1936 $this->dieUsage( $parsed['info'], $parsed['code'], /* http error */ 0,
1937 array( 'readonlyreason' => wfReadOnlyReason() ) );
1938 }
1939
1940 /**
1941 * Output the error message related to a certain array
1942 * @param array|string $error Element of a getUserPermissionsErrors()-style array
1943 */
1944 public function dieUsageMsg( $error ) {
1945 # most of the time we send a 1 element, so we might as well send it as
1946 # a string and make this an array here.
1947 if ( is_string( $error ) ) {
1948 $error = array( $error );
1949 }
1950 $parsed = $this->parseMsg( $error );
1951 $this->dieUsage( $parsed['info'], $parsed['code'] );
1952 }
1953
1954 /**
1955 * Will only set a warning instead of failing if the global $wgDebugAPI
1956 * is set to true. Otherwise behaves exactly as dieUsageMsg().
1957 * @param array|string $error Element of a getUserPermissionsErrors()-style array
1958 * @since 1.21
1959 */
1960 public function dieUsageMsgOrDebug( $error ) {
1961 if ( $this->getConfig()->get( 'DebugAPI' ) !== true ) {
1962 $this->dieUsageMsg( $error );
1963 }
1964
1965 if ( is_string( $error ) ) {
1966 $error = array( $error );
1967 }
1968 $parsed = $this->parseMsg( $error );
1969 $this->setWarning( '$wgDebugAPI: ' . $parsed['code'] . ' - ' . $parsed['info'] );
1970 }
1971
1972 /**
1973 * Die with the $prefix.'badcontinue' error. This call is common enough to
1974 * make it into the base method.
1975 * @param bool $condition Will only die if this value is true
1976 * @since 1.21
1977 */
1978 protected function dieContinueUsageIf( $condition ) {
1979 if ( $condition ) {
1980 $this->dieUsage(
1981 'Invalid continue param. You should pass the original value returned by the previous query',
1982 'badcontinue' );
1983 }
1984 }
1985
1986 /**
1987 * Return the error message related to a certain array
1988 * @param array $error Element of a getUserPermissionsErrors()-style array
1989 * @return array('code' => code, 'info' => info)
1990 */
1991 public function parseMsg( $error ) {
1992 $error = (array)$error; // It seems strings sometimes make their way in here
1993 $key = array_shift( $error );
1994
1995 // Check whether the error array was nested
1996 // array( array( <code>, <params> ), array( <another_code>, <params> ) )
1997 if ( is_array( $key ) ) {
1998 $error = $key;
1999 $key = array_shift( $error );
2000 }
2001
2002 if ( isset( self::$messageMap[$key] ) ) {
2003 return array(
2004 'code' => wfMsgReplaceArgs( self::$messageMap[$key]['code'], $error ),
2005 'info' => wfMsgReplaceArgs( self::$messageMap[$key]['info'], $error )
2006 );
2007 }
2008
2009 // If the key isn't present, throw an "unknown error"
2010 return $this->parseMsg( array( 'unknownerror', $key ) );
2011 }
2012
2013 /**
2014 * Internal code errors should be reported with this method
2015 * @param string $method Method or function name
2016 * @param string $message Error message
2017 * @throws MWException
2018 */
2019 protected static function dieDebug( $method, $message ) {
2020 throw new MWException( "Internal error in $method: $message" );
2021 }
2022
2023 /**
2024 * Write logging information for API features to a debug log, for usage
2025 * analysis.
2026 * @param string $feature Feature being used.
2027 */
2028 protected function logFeatureUsage( $feature ) {
2029 $request = $this->getRequest();
2030 $s = '"' . addslashes( $feature ) . '"' .
2031 ' "' . wfUrlencode( str_replace( ' ', '_', $this->getUser()->getName() ) ) . '"' .
2032 ' "' . $request->getIP() . '"' .
2033 ' "' . addslashes( $request->getHeader( 'Referer' ) ) . '"' .
2034 ' "' . addslashes( $this->getMain()->getUserAgent() ) . '"';
2035 wfDebugLog( 'api-feature-usage', $s, 'private' );
2036 }
2037
2038 /**@}*/
2039
2040 /************************************************************************//**
2041 * @name Help message generation
2042 * @{
2043 */
2044
2045 /**
2046 * Return the description message.
2047 *
2048 * @return string|array|Message
2049 */
2050 protected function getDescriptionMessage() {
2051 return "apihelp-{$this->getModulePath()}-description";
2052 }
2053
2054 /**
2055 * Get final module description, after hooks have had a chance to tweak it as
2056 * needed.
2057 *
2058 * @since 1.25, returns Message[] rather than string[]
2059 * @return Message[]
2060 */
2061 public function getFinalDescription() {
2062 $desc = $this->getDescription();
2063 Hooks::run( 'APIGetDescription', array( &$this, &$desc ) );
2064 $desc = self::escapeWikiText( $desc );
2065 if ( is_array( $desc ) ) {
2066 $desc = join( "\n", $desc );
2067 } else {
2068 $desc = (string)$desc;
2069 }
2070
2071 $msg = ApiBase::makeMessage( $this->getDescriptionMessage(), $this->getContext(), array(
2072 $this->getModulePrefix(),
2073 $this->getModuleName(),
2074 $this->getModulePath(),
2075 ) );
2076 if ( !$msg->exists() ) {
2077 $msg = $this->msg( 'api-help-fallback-description', $desc );
2078 }
2079 $msgs = array( $msg );
2080
2081 Hooks::run( 'APIGetDescriptionMessages', array( $this, &$msgs ) );
2082
2083 return $msgs;
2084 }
2085
2086 /**
2087 * Get final list of parameters, after hooks have had a chance to
2088 * tweak it as needed.
2089 *
2090 * @param int $flags Zero or more flags like GET_VALUES_FOR_HELP
2091 * @return array|bool False on no parameters
2092 * @since 1.21 $flags param added
2093 */
2094 public function getFinalParams( $flags = 0 ) {
2095 $params = $this->getAllowedParams( $flags );
2096 if ( !$params ) {
2097 $params = array();
2098 }
2099
2100 if ( $this->needsToken() ) {
2101 $params['token'] = array(
2102 ApiBase::PARAM_TYPE => 'string',
2103 ApiBase::PARAM_REQUIRED => true,
2104 ApiBase::PARAM_HELP_MSG => array(
2105 'api-help-param-token',
2106 $this->needsToken(),
2107 ),
2108 ) + ( isset( $params['token'] ) ? $params['token'] : array() );
2109 }
2110
2111 Hooks::run( 'APIGetAllowedParams', array( &$this, &$params, $flags ) );
2112
2113 return $params;
2114 }
2115
2116 /**
2117 * Get final parameter descriptions, after hooks have had a chance to tweak it as
2118 * needed.
2119 *
2120 * @since 1.25, returns array of Message[] rather than array of string[]
2121 * @return array Keys are parameter names, values are arrays of Message objects
2122 */
2123 public function getFinalParamDescription() {
2124 $prefix = $this->getModulePrefix();
2125 $name = $this->getModuleName();
2126 $path = $this->getModulePath();
2127
2128 $desc = $this->getParamDescription();
2129 Hooks::run( 'APIGetParamDescription', array( &$this, &$desc ) );
2130
2131 if ( !$desc ) {
2132 $desc = array();
2133 }
2134 $desc = self::escapeWikiText( $desc );
2135
2136 $params = $this->getFinalParams( ApiBase::GET_VALUES_FOR_HELP );
2137 $msgs = array();
2138 foreach ( $params as $param => $settings ) {
2139 if ( !is_array( $settings ) ) {
2140 $settings = array();
2141 }
2142
2143 $d = isset( $desc[$param] ) ? $desc[$param] : '';
2144 if ( is_array( $d ) ) {
2145 // Special handling for prop parameters
2146 $d = array_map( function ( $line ) {
2147 if ( preg_match( '/^\s+(\S+)\s+-\s+(.+)$/', $line, $m ) ) {
2148 $line = "\n;{$m[1]}:{$m[2]}";
2149 }
2150 return $line;
2151 }, $d );
2152 $d = join( ' ', $d );
2153 }
2154
2155 if ( isset( $settings[ApiBase::PARAM_HELP_MSG] ) ) {
2156 $msg = $settings[ApiBase::PARAM_HELP_MSG];
2157 } else {
2158 $msg = $this->msg( "apihelp-{$path}-param-{$param}" );
2159 if ( !$msg->exists() ) {
2160 $msg = $this->msg( 'api-help-fallback-parameter', $d );
2161 }
2162 }
2163 $msg = ApiBase::makeMessage( $msg, $this->getContext(),
2164 array( $prefix, $param, $name, $path ) );
2165 if ( !$msg ) {
2166 $this->dieDebug( __METHOD__,
2167 'Value in ApiBase::PARAM_HELP_MSG is not valid' );
2168 }
2169 $msgs[$param] = array( $msg );
2170
2171 if ( isset( $settings[ApiBase::PARAM_HELP_MSG_PER_VALUE] ) ) {
2172 if ( !is_array( $settings[ApiBase::PARAM_HELP_MSG_PER_VALUE] ) ) {
2173 $this->dieDebug( __METHOD__,
2174 'ApiBase::PARAM_HELP_MSG_PER_VALUE is not valid' );
2175 }
2176 if ( !is_array( $settings[ApiBase::PARAM_TYPE] ) ) {
2177 $this->dieDebug( __METHOD__,
2178 'ApiBase::PARAM_HELP_MSG_PER_VALUE may only be used when ' .
2179 'ApiBase::PARAM_TYPE is an array' );
2180 }
2181
2182 $valueMsgs = $settings[ApiBase::PARAM_HELP_MSG_PER_VALUE];
2183 foreach ( $settings[ApiBase::PARAM_TYPE] as $value ) {
2184 if ( isset( $valueMsgs[$value] ) ) {
2185 $msg = $valueMsgs[$value];
2186 } else {
2187 $msg = "apihelp-{$path}-paramvalue-{$param}-{$value}";
2188 }
2189 $m = ApiBase::makeMessage( $msg, $this->getContext(),
2190 array( $prefix, $param, $name, $path, $value ) );
2191 if ( $m ) {
2192 $m = new ApiHelpParamValueMessage(
2193 $value,
2194 array( $m->getKey(), 'api-help-param-no-description' ),
2195 $m->getParams()
2196 );
2197 $msgs[$param][] = $m->setContext( $this->getContext() );
2198 } else {
2199 $this->dieDebug( __METHOD__,
2200 "Value in ApiBase::PARAM_HELP_MSG_PER_VALUE for $value is not valid" );
2201 }
2202 }
2203 }
2204
2205 if ( isset( $settings[ApiBase::PARAM_HELP_MSG_APPEND] ) ) {
2206 if ( !is_array( $settings[ApiBase::PARAM_HELP_MSG_APPEND] ) ) {
2207 $this->dieDebug( __METHOD__,
2208 'Value for ApiBase::PARAM_HELP_MSG_APPEND is not an array' );
2209 }
2210 foreach ( $settings[ApiBase::PARAM_HELP_MSG_APPEND] as $m ) {
2211 $m = ApiBase::makeMessage( $m, $this->getContext(),
2212 array( $prefix, $param, $name, $path ) );
2213 if ( $m ) {
2214 $msgs[$param][] = $m;
2215 } else {
2216 $this->dieDebug( __METHOD__,
2217 'Value in ApiBase::PARAM_HELP_MSG_APPEND is not valid' );
2218 }
2219 }
2220 }
2221 }
2222
2223 Hooks::run( 'APIGetParamDescriptionMessages', array( $this, &$msgs ) );
2224
2225 return $msgs;
2226 }
2227
2228 /**
2229 * Generates the list of flags for the help screen and for action=paraminfo
2230 *
2231 * Corresponding messages: api-help-flag-deprecated,
2232 * api-help-flag-internal, api-help-flag-readrights,
2233 * api-help-flag-writerights, api-help-flag-mustbeposted
2234 *
2235 * @return string[]
2236 */
2237 protected function getHelpFlags() {
2238 $flags = array();
2239
2240 if ( $this->isDeprecated() ) {
2241 $flags[] = 'deprecated';
2242 }
2243 if ( $this->isInternal() ) {
2244 $flags[] = 'internal';
2245 }
2246 if ( $this->isReadMode() ) {
2247 $flags[] = 'readrights';
2248 }
2249 if ( $this->isWriteMode() ) {
2250 $flags[] = 'writerights';
2251 }
2252 if ( $this->mustBePosted() ) {
2253 $flags[] = 'mustbeposted';
2254 }
2255
2256 return $flags;
2257 }
2258
2259 /**
2260 * Returns information about the source of this module, if known
2261 *
2262 * Returned array is an array with the following keys:
2263 * - path: Install path
2264 * - name: Extension name, or "MediaWiki" for core
2265 * - namemsg: (optional) i18n message key for a display name
2266 * - license-name: (optional) Name of license
2267 *
2268 * @return array|null
2269 */
2270 protected function getModuleSourceInfo() {
2271 global $IP;
2272
2273 if ( $this->mModuleSource !== false ) {
2274 return $this->mModuleSource;
2275 }
2276
2277 // First, try to find where the module comes from...
2278 $rClass = new ReflectionClass( $this );
2279 $path = $rClass->getFileName();
2280 if ( !$path ) {
2281 // No path known?
2282 $this->mModuleSource = null;
2283 return null;
2284 }
2285 $path = realpath( $path ) ?: $path;
2286
2287 // Build map of extension directories to extension info
2288 if ( self::$extensionInfo === null ) {
2289 self::$extensionInfo = array(
2290 realpath( __DIR__ ) ?: __DIR__ => array(
2291 'path' => $IP,
2292 'name' => 'MediaWiki',
2293 'license-name' => 'GPL-2.0+',
2294 ),
2295 realpath( "$IP/extensions" ) ?: "$IP/extensions" => null,
2296 );
2297 $keep = array(
2298 'path' => null,
2299 'name' => null,
2300 'namemsg' => null,
2301 'license-name' => null,
2302 );
2303 foreach ( $this->getConfig()->get( 'ExtensionCredits' ) as $group ) {
2304 foreach ( $group as $ext ) {
2305 if ( !isset( $ext['path'] ) || !isset( $ext['name'] ) ) {
2306 // This shouldn't happen, but does anyway.
2307 continue;
2308 }
2309
2310 $extpath = $ext['path'];
2311 if ( !is_dir( $extpath ) ) {
2312 $extpath = dirname( $extpath );
2313 }
2314 self::$extensionInfo[realpath( $extpath ) ?: $extpath] =
2315 array_intersect_key( $ext, $keep );
2316 }
2317 }
2318 foreach ( ExtensionRegistry::getInstance()->getAllThings() as $ext ) {
2319 $extpath = $ext['path'];
2320 if ( !is_dir( $extpath ) ) {
2321 $extpath = dirname( $extpath );
2322 }
2323 self::$extensionInfo[realpath( $extpath ) ?: $extpath] =
2324 array_intersect_key( $ext, $keep );
2325 }
2326 }
2327
2328 // Now traverse parent directories until we find a match or run out of
2329 // parents.
2330 do {
2331 if ( array_key_exists( $path, self::$extensionInfo ) ) {
2332 // Found it!
2333 $this->mModuleSource = self::$extensionInfo[$path];
2334 return $this->mModuleSource;
2335 }
2336
2337 $oldpath = $path;
2338 $path = dirname( $path );
2339 } while ( $path !== $oldpath );
2340
2341 // No idea what extension this might be.
2342 $this->mModuleSource = null;
2343 return null;
2344 }
2345
2346 /**
2347 * Called from ApiHelp before the pieces are joined together and returned.
2348 *
2349 * This exists mainly for ApiMain to add the Permissions and Credits
2350 * sections. Other modules probably don't need it.
2351 *
2352 * @param string[] &$help Array of help data
2353 * @param array $options Options passed to ApiHelp::getHelp
2354 * @param array &$tocData If a TOC is being generated, this array has keys
2355 * as anchors in the page and values as for Linker::generateTOC().
2356 */
2357 public function modifyHelp( array &$help, array $options, array &$tocData ) {
2358 }
2359
2360 /**@}*/
2361
2362 /************************************************************************//**
2363 * @name Deprecated
2364 * @{
2365 */
2366
2367 /// @deprecated since 1.24
2368 const PROP_ROOT = 'ROOT';
2369 /// @deprecated since 1.24
2370 const PROP_LIST = 'LIST';
2371 /// @deprecated since 1.24
2372 const PROP_TYPE = 0;
2373 /// @deprecated since 1.24
2374 const PROP_NULLABLE = 1;
2375
2376 /**
2377 * Formerly returned a string that identifies the version of the extending
2378 * class. Typically included the class name, the svn revision, timestamp,
2379 * and last author. Usually done with SVN's Id keyword
2380 *
2381 * @deprecated since 1.21, version string is no longer supported
2382 * @return string
2383 */
2384 public function getVersion() {
2385 wfDeprecated( __METHOD__, '1.21' );
2386 return '';
2387 }
2388
2389 /**
2390 * Formerly used to fetch a list of possible properites in the result,
2391 * somehow organized with respect to the prop parameter that causes them to
2392 * be returned. The specific semantics of the return value was never
2393 * specified. Since this was never possible to be accurately updated, it
2394 * has been removed.
2395 *
2396 * @deprecated since 1.24
2397 * @return array|bool
2398 */
2399 protected function getResultProperties() {
2400 wfDeprecated( __METHOD__, '1.24' );
2401 return false;
2402 }
2403
2404 /**
2405 * @see self::getResultProperties()
2406 * @deprecated since 1.24
2407 * @return array|bool
2408 */
2409 public function getFinalResultProperties() {
2410 wfDeprecated( __METHOD__, '1.24' );
2411 return array();
2412 }
2413
2414 /**
2415 * @see self::getResultProperties()
2416 * @deprecated since 1.24
2417 */
2418 protected static function addTokenProperties( &$props, $tokenFunctions ) {
2419 wfDeprecated( __METHOD__, '1.24' );
2420 }
2421
2422 /**
2423 * @see self::getPossibleErrors()
2424 * @deprecated since 1.24
2425 * @return array
2426 */
2427 public function getRequireOnlyOneParameterErrorMessages( $params ) {
2428 wfDeprecated( __METHOD__, '1.24' );
2429 return array();
2430 }
2431
2432 /**
2433 * @see self::getPossibleErrors()
2434 * @deprecated since 1.24
2435 * @return array
2436 */
2437 public function getRequireMaxOneParameterErrorMessages( $params ) {
2438 wfDeprecated( __METHOD__, '1.24' );
2439 return array();
2440 }
2441
2442 /**
2443 * @see self::getPossibleErrors()
2444 * @deprecated since 1.24
2445 * @return array
2446 */
2447 public function getRequireAtLeastOneParameterErrorMessages( $params ) {
2448 wfDeprecated( __METHOD__, '1.24' );
2449 return array();
2450 }
2451
2452 /**
2453 * @see self::getPossibleErrors()
2454 * @deprecated since 1.24
2455 * @return array
2456 */
2457 public function getTitleOrPageIdErrorMessage() {
2458 wfDeprecated( __METHOD__, '1.24' );
2459 return array();
2460 }
2461
2462 /**
2463 * This formerly attempted to return a list of all possible errors returned
2464 * by the module. However, this was impossible to maintain in many cases
2465 * since errors could come from other areas of MediaWiki and in some cases
2466 * from arbitrary extension hooks. Since a partial list claiming to be
2467 * comprehensive is unlikely to be useful, it was removed.
2468 *
2469 * @deprecated since 1.24
2470 * @return array
2471 */
2472 public function getPossibleErrors() {
2473 wfDeprecated( __METHOD__, '1.24' );
2474 return array();
2475 }
2476
2477 /**
2478 * @see self::getPossibleErrors()
2479 * @deprecated since 1.24
2480 * @return array
2481 */
2482 public function getFinalPossibleErrors() {
2483 wfDeprecated( __METHOD__, '1.24' );
2484 return array();
2485 }
2486
2487 /**
2488 * @see self::getPossibleErrors()
2489 * @deprecated since 1.24
2490 * @return array
2491 */
2492 public function parseErrors( $errors ) {
2493 wfDeprecated( __METHOD__, '1.24' );
2494 return array();
2495 }
2496
2497 /**
2498 * Returns the description string for this module
2499 *
2500 * Ignored if an i18n message exists for
2501 * "apihelp-{$this->getModulePath()}-description".
2502 *
2503 * @deprecated since 1.25
2504 * @return Message|string|array
2505 */
2506 protected function getDescription() {
2507 return false;
2508 }
2509
2510 /**
2511 * Returns an array of parameter descriptions.
2512 *
2513 * For each parameter, ignored if an i18n message exists for the parameter.
2514 * By default that message is
2515 * "apihelp-{$this->getModulePath()}-param-{$param}", but it may be
2516 * overridden using ApiBase::PARAM_HELP_MSG in the data returned by
2517 * self::getFinalParams().
2518 *
2519 * @deprecated since 1.25
2520 * @return array|bool False on no parameter descriptions
2521 */
2522 protected function getParamDescription() {
2523 return array();
2524 }
2525
2526 /**
2527 * Returns usage examples for this module.
2528 *
2529 * Return value as an array is either:
2530 * - numeric keys with partial URLs ("api.php?" plus a query string) as
2531 * values
2532 * - sequential numeric keys with even-numbered keys being display-text
2533 * and odd-numbered keys being partial urls
2534 * - partial URLs as keys with display-text (string or array-to-be-joined)
2535 * as values
2536 * Return value as a string is the same as an array with a numeric key and
2537 * that value, and boolean false means "no examples".
2538 *
2539 * @deprecated since 1.25, use getExamplesMessages() instead
2540 * @return bool|string|array
2541 */
2542 protected function getExamples() {
2543 return false;
2544 }
2545
2546 /**
2547 * Generates help message for this module, or false if there is no description
2548 * @deprecated since 1.25
2549 * @return string|bool
2550 */
2551 public function makeHelpMsg() {
2552 wfDeprecated( __METHOD__, '1.25' );
2553 static $lnPrfx = "\n ";
2554
2555 $msg = $this->getFinalDescription();
2556
2557 if ( $msg !== false ) {
2558
2559 if ( !is_array( $msg ) ) {
2560 $msg = array(
2561 $msg
2562 );
2563 }
2564 $msg = $lnPrfx . implode( $lnPrfx, $msg ) . "\n";
2565
2566 $msg .= $this->makeHelpArrayToString( $lnPrfx, false, $this->getHelpUrls() );
2567
2568 if ( $this->isReadMode() ) {
2569 $msg .= "\nThis module requires read rights";
2570 }
2571 if ( $this->isWriteMode() ) {
2572 $msg .= "\nThis module requires write rights";
2573 }
2574 if ( $this->mustBePosted() ) {
2575 $msg .= "\nThis module only accepts POST requests";
2576 }
2577 if ( $this->isReadMode() || $this->isWriteMode() ||
2578 $this->mustBePosted()
2579 ) {
2580 $msg .= "\n";
2581 }
2582
2583 // Parameters
2584 $paramsMsg = $this->makeHelpMsgParameters();
2585 if ( $paramsMsg !== false ) {
2586 $msg .= "Parameters:\n$paramsMsg";
2587 }
2588
2589 $examples = $this->getExamples();
2590 if ( $examples ) {
2591 if ( !is_array( $examples ) ) {
2592 $examples = array(
2593 $examples
2594 );
2595 }
2596 $msg .= "Example" . ( count( $examples ) > 1 ? 's' : '' ) . ":\n";
2597 foreach ( $examples as $k => $v ) {
2598 if ( is_numeric( $k ) ) {
2599 $msg .= " $v\n";
2600 } else {
2601 if ( is_array( $v ) ) {
2602 $msgExample = implode( "\n", array_map( array( $this, 'indentExampleText' ), $v ) );
2603 } else {
2604 $msgExample = " $v";
2605 }
2606 $msgExample .= ":";
2607 $msg .= wordwrap( $msgExample, 100, "\n" ) . "\n $k\n";
2608 }
2609 }
2610 }
2611 }
2612
2613 return $msg;
2614 }
2615
2616 /**
2617 * @deprecated since 1.25
2618 * @param string $item
2619 * @return string
2620 */
2621 private function indentExampleText( $item ) {
2622 return " " . $item;
2623 }
2624
2625 /**
2626 * @deprecated since 1.25
2627 * @param string $prefix Text to split output items
2628 * @param string $title What is being output
2629 * @param string|array $input
2630 * @return string
2631 */
2632 protected function makeHelpArrayToString( $prefix, $title, $input ) {
2633 wfDeprecated( __METHOD__, '1.25' );
2634 if ( $input === false ) {
2635 return '';
2636 }
2637 if ( !is_array( $input ) ) {
2638 $input = array( $input );
2639 }
2640
2641 if ( count( $input ) > 0 ) {
2642 if ( $title ) {
2643 $msg = $title . ( count( $input ) > 1 ? 's' : '' ) . ":\n ";
2644 } else {
2645 $msg = ' ';
2646 }
2647 $msg .= implode( $prefix, $input ) . "\n";
2648
2649 return $msg;
2650 }
2651
2652 return '';
2653 }
2654
2655 /**
2656 * Generates the parameter descriptions for this module, to be displayed in the
2657 * module's help.
2658 * @deprecated since 1.25
2659 * @return string|bool
2660 */
2661 public function makeHelpMsgParameters() {
2662 wfDeprecated( __METHOD__, '1.25' );
2663 $params = $this->getFinalParams( ApiBase::GET_VALUES_FOR_HELP );
2664 if ( $params ) {
2665 $paramsDescription = $this->getFinalParamDescription();
2666 $msg = '';
2667 $paramPrefix = "\n" . str_repeat( ' ', 24 );
2668 $descWordwrap = "\n" . str_repeat( ' ', 28 );
2669 foreach ( $params as $paramName => $paramSettings ) {
2670 $desc = isset( $paramsDescription[$paramName] ) ? $paramsDescription[$paramName] : '';
2671 if ( is_array( $desc ) ) {
2672 $desc = implode( $paramPrefix, $desc );
2673 }
2674
2675 // handle shorthand
2676 if ( !is_array( $paramSettings ) ) {
2677 $paramSettings = array(
2678 self::PARAM_DFLT => $paramSettings,
2679 );
2680 }
2681
2682 // handle missing type
2683 if ( !isset( $paramSettings[ApiBase::PARAM_TYPE] ) ) {
2684 $dflt = isset( $paramSettings[ApiBase::PARAM_DFLT] )
2685 ? $paramSettings[ApiBase::PARAM_DFLT]
2686 : null;
2687 if ( is_bool( $dflt ) ) {
2688 $paramSettings[ApiBase::PARAM_TYPE] = 'boolean';
2689 } elseif ( is_string( $dflt ) || is_null( $dflt ) ) {
2690 $paramSettings[ApiBase::PARAM_TYPE] = 'string';
2691 } elseif ( is_int( $dflt ) ) {
2692 $paramSettings[ApiBase::PARAM_TYPE] = 'integer';
2693 }
2694 }
2695
2696 if ( isset( $paramSettings[self::PARAM_DEPRECATED] )
2697 && $paramSettings[self::PARAM_DEPRECATED]
2698 ) {
2699 $desc = "DEPRECATED! $desc";
2700 }
2701
2702 if ( isset( $paramSettings[self::PARAM_REQUIRED] )
2703 && $paramSettings[self::PARAM_REQUIRED]
2704 ) {
2705 $desc .= $paramPrefix . "This parameter is required";
2706 }
2707
2708 $type = isset( $paramSettings[self::PARAM_TYPE] )
2709 ? $paramSettings[self::PARAM_TYPE]
2710 : null;
2711 if ( isset( $type ) ) {
2712 $hintPipeSeparated = true;
2713 $multi = isset( $paramSettings[self::PARAM_ISMULTI] )
2714 ? $paramSettings[self::PARAM_ISMULTI]
2715 : false;
2716 if ( $multi ) {
2717 $prompt = 'Values (separate with \'|\'): ';
2718 } else {
2719 $prompt = 'One value: ';
2720 }
2721
2722 if ( $type === 'submodule' ) {
2723 if ( isset( $paramSettings[self::PARAM_SUBMODULE_MAP] ) ) {
2724 $type = array_keys( $paramSettings[self::PARAM_SUBMODULE_MAP] );
2725 } else {
2726 $type = $this->getModuleManager()->getNames( $paramName );
2727 }
2728 sort( $type );
2729 }
2730 if ( is_array( $type ) ) {
2731 $choices = array();
2732 $nothingPrompt = '';
2733 foreach ( $type as $t ) {
2734 if ( $t === '' ) {
2735 $nothingPrompt = 'Can be empty, or ';
2736 } else {
2737 $choices[] = $t;
2738 }
2739 }
2740 $desc .= $paramPrefix . $nothingPrompt . $prompt;
2741 $choicesstring = implode( ', ', $choices );
2742 $desc .= wordwrap( $choicesstring, 100, $descWordwrap );
2743 $hintPipeSeparated = false;
2744 } else {
2745 switch ( $type ) {
2746 case 'namespace':
2747 // Special handling because namespaces are
2748 // type-limited, yet they are not given
2749 $desc .= $paramPrefix . $prompt;
2750 $desc .= wordwrap( implode( ', ', MWNamespace::getValidNamespaces() ),
2751 100, $descWordwrap );
2752 $hintPipeSeparated = false;
2753 break;
2754 case 'limit':
2755 $desc .= $paramPrefix . "No more than {$paramSettings[self::PARAM_MAX]}";
2756 if ( isset( $paramSettings[self::PARAM_MAX2] ) ) {
2757 $desc .= " ({$paramSettings[self::PARAM_MAX2]} for bots)";
2758 }
2759 $desc .= ' allowed';
2760 break;
2761 case 'integer':
2762 $s = $multi ? 's' : '';
2763 $hasMin = isset( $paramSettings[self::PARAM_MIN] );
2764 $hasMax = isset( $paramSettings[self::PARAM_MAX] );
2765 if ( $hasMin || $hasMax ) {
2766 if ( !$hasMax ) {
2767 $intRangeStr = "The value$s must be no less than " .
2768 "{$paramSettings[self::PARAM_MIN]}";
2769 } elseif ( !$hasMin ) {
2770 $intRangeStr = "The value$s must be no more than " .
2771 "{$paramSettings[self::PARAM_MAX]}";
2772 } else {
2773 $intRangeStr = "The value$s must be between " .
2774 "{$paramSettings[self::PARAM_MIN]} and {$paramSettings[self::PARAM_MAX]}";
2775 }
2776
2777 $desc .= $paramPrefix . $intRangeStr;
2778 }
2779 break;
2780 case 'upload':
2781 $desc .= $paramPrefix . "Must be posted as a file upload using multipart/form-data";
2782 break;
2783 }
2784 }
2785
2786 if ( $multi ) {
2787 if ( $hintPipeSeparated ) {
2788 $desc .= $paramPrefix . "Separate values with '|'";
2789 }
2790
2791 $isArray = is_array( $type );
2792 if ( !$isArray
2793 || $isArray && count( $type ) > self::LIMIT_SML1
2794 ) {
2795 $desc .= $paramPrefix . "Maximum number of values " .
2796 self::LIMIT_SML1 . " (" . self::LIMIT_SML2 . " for bots)";
2797 }
2798 }
2799 }
2800
2801 $default = isset( $paramSettings[self::PARAM_DFLT] ) ? $paramSettings[self::PARAM_DFLT] : null;
2802 if ( !is_null( $default ) && $default !== false ) {
2803 $desc .= $paramPrefix . "Default: $default";
2804 }
2805
2806 $msg .= sprintf( " %-19s - %s\n", $this->encodeParamName( $paramName ), $desc );
2807 }
2808
2809 return $msg;
2810 }
2811
2812 return false;
2813 }
2814
2815 /**
2816 * @deprecated since 1.25, always returns empty string
2817 * @param DatabaseBase|bool $db
2818 * @return string
2819 */
2820 public function getModuleProfileName( $db = false ) {
2821 wfDeprecated( __METHOD__, '1.25' );
2822 return '';
2823 }
2824
2825 /**
2826 * @deprecated since 1.25
2827 */
2828 public function profileIn() {
2829 // No wfDeprecated() yet because extensions call this and might need to
2830 // keep doing so for BC.
2831 }
2832
2833 /**
2834 * @deprecated since 1.25
2835 */
2836 public function profileOut() {
2837 // No wfDeprecated() yet because extensions call this and might need to
2838 // keep doing so for BC.
2839 }
2840
2841 /**
2842 * @deprecated since 1.25
2843 */
2844 public function safeProfileOut() {
2845 wfDeprecated( __METHOD__, '1.25' );
2846 }
2847
2848 /**
2849 * @deprecated since 1.25, always returns 0
2850 * @return float
2851 */
2852 public function getProfileTime() {
2853 wfDeprecated( __METHOD__, '1.25' );
2854 return 0;
2855 }
2856
2857 /**
2858 * @deprecated since 1.25
2859 */
2860 public function profileDBIn() {
2861 wfDeprecated( __METHOD__, '1.25' );
2862 }
2863
2864 /**
2865 * @deprecated since 1.25
2866 */
2867 public function profileDBOut() {
2868 wfDeprecated( __METHOD__, '1.25' );
2869 }
2870
2871 /**
2872 * @deprecated since 1.25, always returns 0
2873 * @return float
2874 */
2875 public function getProfileDBTime() {
2876 wfDeprecated( __METHOD__, '1.25' );
2877 return 0;
2878 }
2879
2880 /**
2881 * Get the result data array (read-only)
2882 * @deprecated since 1.25, use $this->getResult() methods instead
2883 * @return array
2884 */
2885 public function getResultData() {
2886 wfDeprecated( __METHOD__, '1.25' );
2887 return $this->getResult()->getData();
2888 }
2889
2890 /**
2891 * Call wfTransactionalTimeLimit() if this request was POSTed
2892 * @since 1.26
2893 */
2894 protected function useTransactionalTimeLimit() {
2895 if ( $this->getRequest()->wasPosted() ) {
2896 wfTransactionalTimeLimit();
2897 }
2898 }
2899
2900 /**@}*/
2901 }
2902
2903 /**
2904 * For really cool vim folding this needs to be at the end:
2905 * vim: foldmarker=@{,@} foldmethod=marker
2906 */