Merge "Implemented hasRules()"
[lhc/web/wiklou.git] / includes / api / ApiMain.php
1 <?php
2 /**
3 *
4 *
5 * Created on Sep 4, 2006
6 *
7 * Copyright © 2006 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 * @defgroup API API
26 */
27
28 /**
29 * This is the main API class, used for both external and internal processing.
30 * When executed, it will create the requested formatter object,
31 * instantiate and execute an object associated with the needed action,
32 * and use formatter to print results.
33 * In case of an exception, an error message will be printed using the same formatter.
34 *
35 * To use API from another application, run it using FauxRequest object, in which
36 * case any internal exceptions will not be handled but passed up to the caller.
37 * After successful execution, use getResult() for the resulting data.
38 *
39 * @ingroup API
40 */
41 class ApiMain extends ApiBase {
42 /**
43 * When no format parameter is given, this format will be used
44 */
45 const API_DEFAULT_FORMAT = 'jsonfm';
46
47 /**
48 * List of available modules: action name => module class
49 */
50 private static $Modules = array(
51 'login' => 'ApiLogin',
52 'logout' => 'ApiLogout',
53 'createaccount' => 'ApiCreateAccount',
54 'query' => 'ApiQuery',
55 'expandtemplates' => 'ApiExpandTemplates',
56 'parse' => 'ApiParse',
57 'stashedit' => 'ApiStashEdit',
58 'opensearch' => 'ApiOpenSearch',
59 'feedcontributions' => 'ApiFeedContributions',
60 'feedrecentchanges' => 'ApiFeedRecentChanges',
61 'feedwatchlist' => 'ApiFeedWatchlist',
62 'help' => 'ApiHelp',
63 'paraminfo' => 'ApiParamInfo',
64 'rsd' => 'ApiRsd',
65 'compare' => 'ApiComparePages',
66 'tokens' => 'ApiTokens',
67
68 // Write modules
69 'purge' => 'ApiPurge',
70 'setnotificationtimestamp' => 'ApiSetNotificationTimestamp',
71 'rollback' => 'ApiRollback',
72 'delete' => 'ApiDelete',
73 'undelete' => 'ApiUndelete',
74 'protect' => 'ApiProtect',
75 'block' => 'ApiBlock',
76 'unblock' => 'ApiUnblock',
77 'move' => 'ApiMove',
78 'edit' => 'ApiEditPage',
79 'upload' => 'ApiUpload',
80 'filerevert' => 'ApiFileRevert',
81 'emailuser' => 'ApiEmailUser',
82 'watch' => 'ApiWatch',
83 'patrol' => 'ApiPatrol',
84 'import' => 'ApiImport',
85 'clearhasmsg' => 'ApiClearHasMsg',
86 'userrights' => 'ApiUserrights',
87 'options' => 'ApiOptions',
88 'imagerotate' => 'ApiImageRotate',
89 'revisiondelete' => 'ApiRevisionDelete',
90 );
91
92 /**
93 * List of available formats: format name => format class
94 */
95 private static $Formats = array(
96 'json' => 'ApiFormatJson',
97 'jsonfm' => 'ApiFormatJson',
98 'php' => 'ApiFormatPhp',
99 'phpfm' => 'ApiFormatPhp',
100 'wddx' => 'ApiFormatWddx',
101 'wddxfm' => 'ApiFormatWddx',
102 'xml' => 'ApiFormatXml',
103 'xmlfm' => 'ApiFormatXml',
104 'yaml' => 'ApiFormatYaml',
105 'yamlfm' => 'ApiFormatYaml',
106 'rawfm' => 'ApiFormatJson',
107 'txt' => 'ApiFormatTxt',
108 'txtfm' => 'ApiFormatTxt',
109 'dbg' => 'ApiFormatDbg',
110 'dbgfm' => 'ApiFormatDbg',
111 'dump' => 'ApiFormatDump',
112 'dumpfm' => 'ApiFormatDump',
113 'none' => 'ApiFormatNone',
114 );
115
116 // @codingStandardsIgnoreStart String contenation on "msg" not allowed to break long line
117 /**
118 * List of user roles that are specifically relevant to the API.
119 * array( 'right' => array ( 'msg' => 'Some message with a $1',
120 * 'params' => array ( $someVarToSubst ) ),
121 * );
122 */
123 private static $mRights = array(
124 'writeapi' => array(
125 'msg' => 'right-writeapi',
126 'params' => array()
127 ),
128 'apihighlimits' => array(
129 'msg' => 'api-help-right-apihighlimits',
130 'params' => array( ApiBase::LIMIT_SML2, ApiBase::LIMIT_BIG2 )
131 )
132 );
133 // @codingStandardsIgnoreEnd
134
135 /**
136 * @var ApiFormatBase
137 */
138 private $mPrinter;
139
140 private $mModuleMgr, $mResult;
141 private $mAction;
142 private $mEnableWrite;
143 private $mInternalMode, $mSquidMaxage, $mModule;
144
145 private $mCacheMode = 'private';
146 private $mCacheControl = array();
147 private $mParamsUsed = array();
148
149 /**
150 * Constructs an instance of ApiMain that utilizes the module and format specified by $request.
151 *
152 * @param IContextSource|WebRequest $context If this is an instance of
153 * FauxRequest, errors are thrown and no printing occurs
154 * @param bool $enableWrite Should be set to true if the api may modify data
155 */
156 public function __construct( $context = null, $enableWrite = false ) {
157 if ( $context === null ) {
158 $context = RequestContext::getMain();
159 } elseif ( $context instanceof WebRequest ) {
160 // BC for pre-1.19
161 $request = $context;
162 $context = RequestContext::getMain();
163 }
164 // We set a derivative context so we can change stuff later
165 $this->setContext( new DerivativeContext( $context ) );
166
167 if ( isset( $request ) ) {
168 $this->getContext()->setRequest( $request );
169 }
170
171 $this->mInternalMode = ( $this->getRequest() instanceof FauxRequest );
172
173 // Special handling for the main module: $parent === $this
174 parent::__construct( $this, $this->mInternalMode ? 'main_int' : 'main' );
175
176 if ( !$this->mInternalMode ) {
177 // Impose module restrictions.
178 // If the current user cannot read,
179 // Remove all modules other than login
180 global $wgUser;
181
182 if ( $this->getVal( 'callback' ) !== null ) {
183 // JSON callback allows cross-site reads.
184 // For safety, strip user credentials.
185 wfDebug( "API: stripping user credentials for JSON callback\n" );
186 $wgUser = new User();
187 $this->getContext()->setUser( $wgUser );
188 }
189 }
190
191 $uselang = $this->getParameter( 'uselang' );
192 if ( $uselang === 'user' ) {
193 $uselang = $this->getUser()->getOption( 'language' );
194 $uselang = RequestContext::sanitizeLangCode( $uselang );
195 Hooks::run( 'UserGetLanguageObject', array( $this->getUser(), &$uselang, $this ) );
196 } elseif ( $uselang === 'content' ) {
197 global $wgContLang;
198 $uselang = $wgContLang->getCode();
199 }
200 $code = RequestContext::sanitizeLangCode( $uselang );
201 $this->getContext()->setLanguage( $code );
202 if ( !$this->mInternalMode ) {
203 global $wgLang;
204 $wgLang = $this->getContext()->getLanguage();
205 RequestContext::getMain()->setLanguage( $wgLang );
206 }
207
208 $config = $this->getConfig();
209 $this->mModuleMgr = new ApiModuleManager( $this );
210 $this->mModuleMgr->addModules( self::$Modules, 'action' );
211 $this->mModuleMgr->addModules( $config->get( 'APIModules' ), 'action' );
212 $this->mModuleMgr->addModules( self::$Formats, 'format' );
213 $this->mModuleMgr->addModules( $config->get( 'APIFormatModules' ), 'format' );
214
215 $this->mResult = new ApiResult( $this );
216 $this->mEnableWrite = $enableWrite;
217
218 $this->mSquidMaxage = -1; // flag for executeActionWithErrorHandling()
219 $this->mCommit = false;
220 }
221
222 /**
223 * Return true if the API was started by other PHP code using FauxRequest
224 * @return bool
225 */
226 public function isInternalMode() {
227 return $this->mInternalMode;
228 }
229
230 /**
231 * Get the ApiResult object associated with current request
232 *
233 * @return ApiResult
234 */
235 public function getResult() {
236 return $this->mResult;
237 }
238
239 /**
240 * Get the API module object. Only works after executeAction()
241 *
242 * @return ApiBase
243 */
244 public function getModule() {
245 return $this->mModule;
246 }
247
248 /**
249 * Get the result formatter object. Only works after setupExecuteAction()
250 *
251 * @return ApiFormatBase
252 */
253 public function getPrinter() {
254 return $this->mPrinter;
255 }
256
257 /**
258 * Set how long the response should be cached.
259 *
260 * @param int $maxage
261 */
262 public function setCacheMaxAge( $maxage ) {
263 $this->setCacheControl( array(
264 'max-age' => $maxage,
265 's-maxage' => $maxage
266 ) );
267 }
268
269 /**
270 * Set the type of caching headers which will be sent.
271 *
272 * @param string $mode One of:
273 * - 'public': Cache this object in public caches, if the maxage or smaxage
274 * parameter is set, or if setCacheMaxAge() was called. If a maximum age is
275 * not provided by any of these means, the object will be private.
276 * - 'private': Cache this object only in private client-side caches.
277 * - 'anon-public-user-private': Make this object cacheable for logged-out
278 * users, but private for logged-in users. IMPORTANT: If this is set, it must be
279 * set consistently for a given URL, it cannot be set differently depending on
280 * things like the contents of the database, or whether the user is logged in.
281 *
282 * If the wiki does not allow anonymous users to read it, the mode set here
283 * will be ignored, and private caching headers will always be sent. In other words,
284 * the "public" mode is equivalent to saying that the data sent is as public as a page
285 * view.
286 *
287 * For user-dependent data, the private mode should generally be used. The
288 * anon-public-user-private mode should only be used where there is a particularly
289 * good performance reason for caching the anonymous response, but where the
290 * response to logged-in users may differ, or may contain private data.
291 *
292 * If this function is never called, then the default will be the private mode.
293 */
294 public function setCacheMode( $mode ) {
295 if ( !in_array( $mode, array( 'private', 'public', 'anon-public-user-private' ) ) ) {
296 wfDebug( __METHOD__ . ": unrecognised cache mode \"$mode\"\n" );
297
298 // Ignore for forwards-compatibility
299 return;
300 }
301
302 if ( !User::isEveryoneAllowed( 'read' ) ) {
303 // Private wiki, only private headers
304 if ( $mode !== 'private' ) {
305 wfDebug( __METHOD__ . ": ignoring request for $mode cache mode, private wiki\n" );
306
307 return;
308 }
309 }
310
311 if ( $mode === 'public' && $this->getParameter( 'uselang' ) === 'user' ) {
312 // User language is used for i18n, so we don't want to publicly
313 // cache. Anons are ok, because if they have non-default language
314 // then there's an appropriate Vary header set by whatever set
315 // their non-default language.
316 wfDebug( __METHOD__ . ": downgrading cache mode 'public' to " .
317 "'anon-public-user-private' due to uselang=user\n" );
318 $mode = 'anon-public-user-private';
319 }
320
321 wfDebug( __METHOD__ . ": setting cache mode $mode\n" );
322 $this->mCacheMode = $mode;
323 }
324
325 /**
326 * Set directives (key/value pairs) for the Cache-Control header.
327 * Boolean values will be formatted as such, by including or omitting
328 * without an equals sign.
329 *
330 * Cache control values set here will only be used if the cache mode is not
331 * private, see setCacheMode().
332 *
333 * @param array $directives
334 */
335 public function setCacheControl( $directives ) {
336 $this->mCacheControl = $directives + $this->mCacheControl;
337 }
338
339 /**
340 * Create an instance of an output formatter by its name
341 *
342 * @param string $format
343 *
344 * @return ApiFormatBase
345 */
346 public function createPrinterByName( $format ) {
347 $printer = $this->mModuleMgr->getModule( $format, 'format' );
348 if ( $printer === null ) {
349 $this->dieUsage( "Unrecognized format: {$format}", 'unknown_format' );
350 }
351
352 return $printer;
353 }
354
355 /**
356 * Execute api request. Any errors will be handled if the API was called by the remote client.
357 */
358 public function execute() {
359 $this->profileIn();
360 if ( $this->mInternalMode ) {
361 $this->executeAction();
362 } else {
363 $this->executeActionWithErrorHandling();
364 }
365
366 $this->profileOut();
367 }
368
369 /**
370 * Execute an action, and in case of an error, erase whatever partial results
371 * have been accumulated, and replace it with an error message and a help screen.
372 */
373 protected function executeActionWithErrorHandling() {
374 // Verify the CORS header before executing the action
375 if ( !$this->handleCORS() ) {
376 // handleCORS() has sent a 403, abort
377 return;
378 }
379
380 // Exit here if the request method was OPTIONS
381 // (assume there will be a followup GET or POST)
382 if ( $this->getRequest()->getMethod() === 'OPTIONS' ) {
383 return;
384 }
385
386 // In case an error occurs during data output,
387 // clear the output buffer and print just the error information
388 ob_start();
389
390 $t = microtime( true );
391 try {
392 $this->executeAction();
393 } catch ( Exception $e ) {
394 $this->handleException( $e );
395 }
396
397 // Log the request whether or not there was an error
398 $this->logRequest( microtime( true ) - $t );
399
400 // Send cache headers after any code which might generate an error, to
401 // avoid sending public cache headers for errors.
402 $this->sendCacheHeaders();
403
404 ob_end_flush();
405 }
406
407 /**
408 * Handle an exception as an API response
409 *
410 * @since 1.23
411 * @param Exception $e
412 */
413 protected function handleException( Exception $e ) {
414 // Bug 63145: Rollback any open database transactions
415 if ( !( $e instanceof UsageException ) ) {
416 // UsageExceptions are intentional, so don't rollback if that's the case
417 MWExceptionHandler::rollbackMasterChangesAndLog( $e );
418 }
419
420 // Allow extra cleanup and logging
421 Hooks::run( 'ApiMain::onException', array( $this, $e ) );
422
423 // Log it
424 if ( !( $e instanceof UsageException ) ) {
425 MWExceptionHandler::logException( $e );
426 }
427
428 // Handle any kind of exception by outputting properly formatted error message.
429 // If this fails, an unhandled exception should be thrown so that global error
430 // handler will process and log it.
431
432 $errCode = $this->substituteResultWithError( $e );
433
434 // Error results should not be cached
435 $this->setCacheMode( 'private' );
436
437 $response = $this->getRequest()->response();
438 $headerStr = 'MediaWiki-API-Error: ' . $errCode;
439 if ( $e->getCode() === 0 ) {
440 $response->header( $headerStr );
441 } else {
442 $response->header( $headerStr, true, $e->getCode() );
443 }
444
445 // Reset and print just the error message
446 ob_clean();
447
448 // If the error occurred during printing, do a printer->profileOut()
449 $this->mPrinter->safeProfileOut();
450 $this->printResult( true );
451 }
452
453 /**
454 * Handle an exception from the ApiBeforeMain hook.
455 *
456 * This tries to print the exception as an API response, to be more
457 * friendly to clients. If it fails, it will rethrow the exception.
458 *
459 * @since 1.23
460 * @param Exception $e
461 * @throws Exception
462 */
463 public static function handleApiBeforeMainException( Exception $e ) {
464 ob_start();
465
466 try {
467 $main = new self( RequestContext::getMain(), false );
468 $main->handleException( $e );
469 } catch ( Exception $e2 ) {
470 // Nope, even that didn't work. Punt.
471 throw $e;
472 }
473
474 // Log the request and reset cache headers
475 $main->logRequest( 0 );
476 $main->sendCacheHeaders();
477
478 ob_end_flush();
479 }
480
481 /**
482 * Check the &origin= query parameter against the Origin: HTTP header and respond appropriately.
483 *
484 * If no origin parameter is present, nothing happens.
485 * If an origin parameter is present but doesn't match the Origin header, a 403 status code
486 * is set and false is returned.
487 * If the parameter and the header do match, the header is checked against $wgCrossSiteAJAXdomains
488 * and $wgCrossSiteAJAXdomainExceptions, and if the origin qualifies, the appropriate CORS
489 * headers are set.
490 *
491 * @return bool False if the caller should abort (403 case), true otherwise (all other cases)
492 */
493 protected function handleCORS() {
494 $originParam = $this->getParameter( 'origin' ); // defaults to null
495 if ( $originParam === null ) {
496 // No origin parameter, nothing to do
497 return true;
498 }
499
500 $request = $this->getRequest();
501 $response = $request->response();
502 // Origin: header is a space-separated list of origins, check all of them
503 $originHeader = $request->getHeader( 'Origin' );
504 if ( $originHeader === false ) {
505 $origins = array();
506 } else {
507 $origins = explode( ' ', $originHeader );
508 }
509
510 if ( !in_array( $originParam, $origins ) ) {
511 // origin parameter set but incorrect
512 // Send a 403 response
513 $message = HttpStatus::getMessage( 403 );
514 $response->header( "HTTP/1.1 403 $message", true, 403 );
515 $response->header( 'Cache-Control: no-cache' );
516 echo "'origin' parameter does not match Origin header\n";
517
518 return false;
519 }
520
521 $config = $this->getConfig();
522 $matchOrigin = self::matchOrigin(
523 $originParam,
524 $config->get( 'CrossSiteAJAXdomains' ),
525 $config->get( 'CrossSiteAJAXdomainExceptions' )
526 );
527
528 if ( $matchOrigin ) {
529 $response->header( "Access-Control-Allow-Origin: $originParam" );
530 $response->header( 'Access-Control-Allow-Credentials: true' );
531 $response->header( 'Access-Control-Allow-Headers: Api-User-Agent' );
532 $this->getOutput()->addVaryHeader( 'Origin' );
533 }
534
535 return true;
536 }
537
538 /**
539 * Attempt to match an Origin header against a set of rules and a set of exceptions
540 * @param string $value Origin header
541 * @param array $rules Set of wildcard rules
542 * @param array $exceptions Set of wildcard rules
543 * @return bool True if $value matches a rule in $rules and doesn't match
544 * any rules in $exceptions, false otherwise
545 */
546 protected static function matchOrigin( $value, $rules, $exceptions ) {
547 foreach ( $rules as $rule ) {
548 if ( preg_match( self::wildcardToRegex( $rule ), $value ) ) {
549 // Rule matches, check exceptions
550 foreach ( $exceptions as $exc ) {
551 if ( preg_match( self::wildcardToRegex( $exc ), $value ) ) {
552 return false;
553 }
554 }
555
556 return true;
557 }
558 }
559
560 return false;
561 }
562
563 /**
564 * Helper function to convert wildcard string into a regex
565 * '*' => '.*?'
566 * '?' => '.'
567 *
568 * @param string $wildcard String with wildcards
569 * @return string Regular expression
570 */
571 protected static function wildcardToRegex( $wildcard ) {
572 $wildcard = preg_quote( $wildcard, '/' );
573 $wildcard = str_replace(
574 array( '\*', '\?' ),
575 array( '.*?', '.' ),
576 $wildcard
577 );
578
579 return "/^https?:\/\/$wildcard$/";
580 }
581
582 protected function sendCacheHeaders() {
583 $response = $this->getRequest()->response();
584 $out = $this->getOutput();
585
586 $config = $this->getConfig();
587
588 if ( $config->get( 'VaryOnXFP' ) ) {
589 $out->addVaryHeader( 'X-Forwarded-Proto' );
590 }
591
592 if ( $this->mCacheMode == 'private' ) {
593 $response->header( 'Cache-Control: private' );
594 return;
595 }
596
597 $useXVO = $config->get( 'UseXVO' );
598 if ( $this->mCacheMode == 'anon-public-user-private' ) {
599 $out->addVaryHeader( 'Cookie' );
600 $response->header( $out->getVaryHeader() );
601 if ( $useXVO ) {
602 $response->header( $out->getXVO() );
603 if ( $out->haveCacheVaryCookies() ) {
604 // Logged in, mark this request private
605 $response->header( 'Cache-Control: private' );
606 return;
607 }
608 // Logged out, send normal public headers below
609 } elseif ( session_id() != '' ) {
610 // Logged in or otherwise has session (e.g. anonymous users who have edited)
611 // Mark request private
612 $response->header( 'Cache-Control: private' );
613
614 return;
615 } // else no XVO and anonymous, send public headers below
616 }
617
618 // Send public headers
619 $response->header( $out->getVaryHeader() );
620 if ( $useXVO ) {
621 $response->header( $out->getXVO() );
622 }
623
624 // If nobody called setCacheMaxAge(), use the (s)maxage parameters
625 if ( !isset( $this->mCacheControl['s-maxage'] ) ) {
626 $this->mCacheControl['s-maxage'] = $this->getParameter( 'smaxage' );
627 }
628 if ( !isset( $this->mCacheControl['max-age'] ) ) {
629 $this->mCacheControl['max-age'] = $this->getParameter( 'maxage' );
630 }
631
632 if ( !$this->mCacheControl['s-maxage'] && !$this->mCacheControl['max-age'] ) {
633 // Public cache not requested
634 // Sending a Vary header in this case is harmless, and protects us
635 // against conditional calls of setCacheMaxAge().
636 $response->header( 'Cache-Control: private' );
637
638 return;
639 }
640
641 $this->mCacheControl['public'] = true;
642
643 // Send an Expires header
644 $maxAge = min( $this->mCacheControl['s-maxage'], $this->mCacheControl['max-age'] );
645 $expiryUnixTime = ( $maxAge == 0 ? 1 : time() + $maxAge );
646 $response->header( 'Expires: ' . wfTimestamp( TS_RFC2822, $expiryUnixTime ) );
647
648 // Construct the Cache-Control header
649 $ccHeader = '';
650 $separator = '';
651 foreach ( $this->mCacheControl as $name => $value ) {
652 if ( is_bool( $value ) ) {
653 if ( $value ) {
654 $ccHeader .= $separator . $name;
655 $separator = ', ';
656 }
657 } else {
658 $ccHeader .= $separator . "$name=$value";
659 $separator = ', ';
660 }
661 }
662
663 $response->header( "Cache-Control: $ccHeader" );
664 }
665
666 /**
667 * Replace the result data with the information about an exception.
668 * Returns the error code
669 * @param Exception $e
670 * @return string
671 */
672 protected function substituteResultWithError( $e ) {
673 $result = $this->getResult();
674
675 // Printer may not be initialized if the extractRequestParams() fails for the main module
676 if ( !isset( $this->mPrinter ) ) {
677 // The printer has not been created yet. Try to manually get formatter value.
678 $value = $this->getRequest()->getVal( 'format', self::API_DEFAULT_FORMAT );
679 if ( !$this->mModuleMgr->isDefined( $value, 'format' ) ) {
680 $value = self::API_DEFAULT_FORMAT;
681 }
682
683 $this->mPrinter = $this->createPrinterByName( $value );
684 }
685
686 // Printer may not be able to handle errors. This is particularly
687 // likely if the module returns something for getCustomPrinter().
688 if ( !$this->mPrinter->canPrintErrors() ) {
689 $this->mPrinter->safeProfileOut();
690 $this->mPrinter = $this->createPrinterByName( self::API_DEFAULT_FORMAT );
691 }
692
693 // Update raw mode flag for the selected printer.
694 $result->setRawMode( $this->mPrinter->getNeedsRawData() );
695
696 $config = $this->getConfig();
697
698 if ( $e instanceof UsageException ) {
699 // User entered incorrect parameters - generate error response
700 $errMessage = $e->getMessageArray();
701 $link = wfExpandUrl( wfScript( 'api' ) );
702 ApiResult::setContent( $errMessage, "See $link for API usage" );
703 } else {
704 // Something is seriously wrong
705 if ( ( $e instanceof DBQueryError ) && !$config->get( 'ShowSQLErrors' ) ) {
706 $info = 'Database query error';
707 } else {
708 $info = "Exception Caught: {$e->getMessage()}";
709 }
710
711 $errMessage = array(
712 'code' => 'internal_api_error_' . get_class( $e ),
713 'info' => '[' . MWExceptionHandler::getLogId( $e ) . '] ' . $info,
714 );
715 if ( $config->get( 'ShowExceptionDetails' ) ) {
716 ApiResult::setContent(
717 $errMessage,
718 MWExceptionHandler::getRedactedTraceAsString( $e )
719 );
720 }
721 }
722
723 // Remember all the warnings to re-add them later
724 $oldResult = $result->getData();
725 $warnings = isset( $oldResult['warnings'] ) ? $oldResult['warnings'] : null;
726
727 $result->reset();
728 // Re-add the id
729 $requestid = $this->getParameter( 'requestid' );
730 if ( !is_null( $requestid ) ) {
731 $result->addValue( null, 'requestid', $requestid, ApiResult::NO_SIZE_CHECK );
732 }
733 if ( $config->get( 'ShowHostnames' ) ) {
734 // servedby is especially useful when debugging errors
735 $result->addValue( null, 'servedby', wfHostName(), ApiResult::NO_SIZE_CHECK );
736 }
737 if ( $warnings !== null ) {
738 $result->addValue( null, 'warnings', $warnings, ApiResult::NO_SIZE_CHECK );
739 }
740
741 $result->addValue( null, 'error', $errMessage, ApiResult::NO_SIZE_CHECK );
742
743 return $errMessage['code'];
744 }
745
746 /**
747 * Set up for the execution.
748 * @return array
749 */
750 protected function setupExecuteAction() {
751 // First add the id to the top element
752 $result = $this->getResult();
753 $requestid = $this->getParameter( 'requestid' );
754 if ( !is_null( $requestid ) ) {
755 $result->addValue( null, 'requestid', $requestid );
756 }
757
758 if ( $this->getConfig()->get( 'ShowHostnames' ) ) {
759 $servedby = $this->getParameter( 'servedby' );
760 if ( $servedby ) {
761 $result->addValue( null, 'servedby', wfHostName() );
762 }
763 }
764
765 if ( $this->getParameter( 'curtimestamp' ) ) {
766 $result->addValue( null, 'curtimestamp', wfTimestamp( TS_ISO_8601, time() ),
767 ApiResult::NO_SIZE_CHECK );
768 }
769
770 $params = $this->extractRequestParams();
771
772 $this->mAction = $params['action'];
773
774 if ( !is_string( $this->mAction ) ) {
775 $this->dieUsage( 'The API requires a valid action parameter', 'unknown_action' );
776 }
777
778 return $params;
779 }
780
781 /**
782 * Set up the module for response
783 * @return ApiBase The module that will handle this action
784 * @throws MWException
785 * @throws UsageException
786 */
787 protected function setupModule() {
788 // Instantiate the module requested by the user
789 $module = $this->mModuleMgr->getModule( $this->mAction, 'action' );
790 if ( $module === null ) {
791 $this->dieUsage( 'The API requires a valid action parameter', 'unknown_action' );
792 }
793 $moduleParams = $module->extractRequestParams();
794
795 // Check token, if necessary
796 if ( $module->needsToken() === true ) {
797 throw new MWException(
798 "Module '{$module->getModuleName()}' must be updated for the new token handling. " .
799 "See documentation for ApiBase::needsToken for details."
800 );
801 }
802 if ( $module->needsToken() ) {
803 if ( !$module->mustBePosted() ) {
804 throw new MWException(
805 "Module '{$module->getModuleName()}' must require POST to use tokens."
806 );
807 }
808
809 if ( !isset( $moduleParams['token'] ) ) {
810 $this->dieUsageMsg( array( 'missingparam', 'token' ) );
811 }
812
813 if ( !$this->getConfig()->get( 'DebugAPI' ) &&
814 array_key_exists(
815 $module->encodeParamName( 'token' ),
816 $this->getRequest()->getQueryValues()
817 )
818 ) {
819 $this->dieUsage(
820 "The '{$module->encodeParamName( 'token' )}' parameter was found in the query string, but must be in the POST body",
821 'mustposttoken'
822 );
823 }
824
825 if ( !$module->validateToken( $moduleParams['token'], $moduleParams ) ) {
826 $this->dieUsageMsg( 'sessionfailure' );
827 }
828 }
829
830 return $module;
831 }
832
833 /**
834 * Check the max lag if necessary
835 * @param ApiBase $module Api module being used
836 * @param array $params Array an array containing the request parameters.
837 * @return bool True on success, false should exit immediately
838 */
839 protected function checkMaxLag( $module, $params ) {
840 if ( $module->shouldCheckMaxlag() && isset( $params['maxlag'] ) ) {
841 // Check for maxlag
842 $maxLag = $params['maxlag'];
843 list( $host, $lag ) = wfGetLB()->getMaxLag();
844 if ( $lag > $maxLag ) {
845 $response = $this->getRequest()->response();
846
847 $response->header( 'Retry-After: ' . max( intval( $maxLag ), 5 ) );
848 $response->header( 'X-Database-Lag: ' . intval( $lag ) );
849
850 if ( $this->getConfig()->get( 'ShowHostnames' ) ) {
851 $this->dieUsage( "Waiting for $host: $lag seconds lagged", 'maxlag' );
852 }
853
854 $this->dieUsage( "Waiting for a database server: $lag seconds lagged", 'maxlag' );
855 }
856 }
857
858 return true;
859 }
860
861 /**
862 * Check for sufficient permissions to execute
863 * @param ApiBase $module An Api module
864 */
865 protected function checkExecutePermissions( $module ) {
866 $user = $this->getUser();
867 if ( $module->isReadMode() && !User::isEveryoneAllowed( 'read' ) &&
868 !$user->isAllowed( 'read' )
869 ) {
870 $this->dieUsageMsg( 'readrequired' );
871 }
872 if ( $module->isWriteMode() ) {
873 if ( !$this->mEnableWrite ) {
874 $this->dieUsageMsg( 'writedisabled' );
875 }
876 if ( !$user->isAllowed( 'writeapi' ) ) {
877 $this->dieUsageMsg( 'writerequired' );
878 }
879 if ( wfReadOnly() ) {
880 $this->dieReadOnly();
881 }
882 }
883
884 // Allow extensions to stop execution for arbitrary reasons.
885 $message = false;
886 if ( !Hooks::run( 'ApiCheckCanExecute', array( $module, $user, &$message ) ) ) {
887 $this->dieUsageMsg( $message );
888 }
889 }
890
891 /**
892 * Check asserts of the user's rights
893 * @param array $params
894 */
895 protected function checkAsserts( $params ) {
896 if ( isset( $params['assert'] ) ) {
897 $user = $this->getUser();
898 switch ( $params['assert'] ) {
899 case 'user':
900 if ( $user->isAnon() ) {
901 $this->dieUsage( 'Assertion that the user is logged in failed', 'assertuserfailed' );
902 }
903 break;
904 case 'bot':
905 if ( !$user->isAllowed( 'bot' ) ) {
906 $this->dieUsage( 'Assertion that the user has the bot right failed', 'assertbotfailed' );
907 }
908 break;
909 }
910 }
911 }
912
913 /**
914 * Check POST for external response and setup result printer
915 * @param ApiBase $module An Api module
916 * @param array $params An array with the request parameters
917 */
918 protected function setupExternalResponse( $module, $params ) {
919 if ( !$this->getRequest()->wasPosted() && $module->mustBePosted() ) {
920 // Module requires POST. GET request might still be allowed
921 // if $wgDebugApi is true, otherwise fail.
922 $this->dieUsageMsgOrDebug( array( 'mustbeposted', $this->mAction ) );
923 }
924
925 // See if custom printer is used
926 $this->mPrinter = $module->getCustomPrinter();
927 if ( is_null( $this->mPrinter ) ) {
928 // Create an appropriate printer
929 $this->mPrinter = $this->createPrinterByName( $params['format'] );
930 }
931
932 if ( $this->mPrinter->getNeedsRawData() ) {
933 $this->getResult()->setRawMode();
934 }
935 }
936
937 /**
938 * Execute the actual module, without any error handling
939 */
940 protected function executeAction() {
941 $params = $this->setupExecuteAction();
942 $module = $this->setupModule();
943 $this->mModule = $module;
944
945 $this->checkExecutePermissions( $module );
946
947 if ( !$this->checkMaxLag( $module, $params ) ) {
948 return;
949 }
950
951 if ( !$this->mInternalMode ) {
952 $this->setupExternalResponse( $module, $params );
953 }
954
955 $this->checkAsserts( $params );
956
957 // Execute
958 $module->profileIn();
959 $module->execute();
960 Hooks::run( 'APIAfterExecute', array( &$module ) );
961 $module->profileOut();
962
963 $this->reportUnusedParams();
964
965 if ( !$this->mInternalMode ) {
966 //append Debug information
967 MWDebug::appendDebugInfoToApiResult( $this->getContext(), $this->getResult() );
968
969 // Print result data
970 $this->printResult( false );
971 }
972 }
973
974 /**
975 * Log the preceding request
976 * @param int $time Time in seconds
977 */
978 protected function logRequest( $time ) {
979 $request = $this->getRequest();
980 $milliseconds = $time === null ? '?' : round( $time * 1000 );
981 $s = 'API' .
982 ' ' . $request->getMethod() .
983 ' ' . wfUrlencode( str_replace( ' ', '_', $this->getUser()->getName() ) ) .
984 ' ' . $request->getIP() .
985 ' T=' . $milliseconds . 'ms';
986 foreach ( $this->getParamsUsed() as $name ) {
987 $value = $request->getVal( $name );
988 if ( $value === null ) {
989 continue;
990 }
991 $s .= ' ' . $name . '=';
992 if ( strlen( $value ) > 256 ) {
993 $encValue = $this->encodeRequestLogValue( substr( $value, 0, 256 ) );
994 $s .= $encValue . '[...]';
995 } else {
996 $s .= $this->encodeRequestLogValue( $value );
997 }
998 }
999 $s .= "\n";
1000 wfDebugLog( 'api', $s, 'private' );
1001 }
1002
1003 /**
1004 * Encode a value in a format suitable for a space-separated log line.
1005 * @param string $s
1006 * @return string
1007 */
1008 protected function encodeRequestLogValue( $s ) {
1009 static $table;
1010 if ( !$table ) {
1011 $chars = ';@$!*(),/:';
1012 $numChars = strlen( $chars );
1013 for ( $i = 0; $i < $numChars; $i++ ) {
1014 $table[rawurlencode( $chars[$i] )] = $chars[$i];
1015 }
1016 }
1017
1018 return strtr( rawurlencode( $s ), $table );
1019 }
1020
1021 /**
1022 * Get the request parameters used in the course of the preceding execute() request
1023 * @return array
1024 */
1025 protected function getParamsUsed() {
1026 return array_keys( $this->mParamsUsed );
1027 }
1028
1029 /**
1030 * Get a request value, and register the fact that it was used, for logging.
1031 * @param string $name
1032 * @param mixed $default
1033 * @return mixed
1034 */
1035 public function getVal( $name, $default = null ) {
1036 $this->mParamsUsed[$name] = true;
1037
1038 $ret = $this->getRequest()->getVal( $name );
1039 if ( $ret === null ) {
1040 if ( $this->getRequest()->getArray( $name ) !== null ) {
1041 // See bug 10262 for why we don't just join( '|', ... ) the
1042 // array.
1043 $this->setWarning(
1044 "Parameter '$name' uses unsupported PHP array syntax"
1045 );
1046 }
1047 $ret = $default;
1048 }
1049 return $ret;
1050 }
1051
1052 /**
1053 * Get a boolean request value, and register the fact that the parameter
1054 * was used, for logging.
1055 * @param string $name
1056 * @return bool
1057 */
1058 public function getCheck( $name ) {
1059 return $this->getVal( $name, null ) !== null;
1060 }
1061
1062 /**
1063 * Get a request upload, and register the fact that it was used, for logging.
1064 *
1065 * @since 1.21
1066 * @param string $name Parameter name
1067 * @return WebRequestUpload
1068 */
1069 public function getUpload( $name ) {
1070 $this->mParamsUsed[$name] = true;
1071
1072 return $this->getRequest()->getUpload( $name );
1073 }
1074
1075 /**
1076 * Report unused parameters, so the client gets a hint in case it gave us parameters we don't know,
1077 * for example in case of spelling mistakes or a missing 'g' prefix for generators.
1078 */
1079 protected function reportUnusedParams() {
1080 $paramsUsed = $this->getParamsUsed();
1081 $allParams = $this->getRequest()->getValueNames();
1082
1083 if ( !$this->mInternalMode ) {
1084 // Printer has not yet executed; don't warn that its parameters are unused
1085 $printerParams = array_map(
1086 array( $this->mPrinter, 'encodeParamName' ),
1087 array_keys( $this->mPrinter->getFinalParams() ?: array() )
1088 );
1089 $unusedParams = array_diff( $allParams, $paramsUsed, $printerParams );
1090 } else {
1091 $unusedParams = array_diff( $allParams, $paramsUsed );
1092 }
1093
1094 if ( count( $unusedParams ) ) {
1095 $s = count( $unusedParams ) > 1 ? 's' : '';
1096 $this->setWarning( "Unrecognized parameter$s: '" . implode( $unusedParams, "', '" ) . "'" );
1097 }
1098 }
1099
1100 /**
1101 * Print results using the current printer
1102 *
1103 * @param bool $isError
1104 */
1105 protected function printResult( $isError ) {
1106 if ( $this->getConfig()->get( 'DebugAPI' ) !== false ) {
1107 $this->setWarning( 'SECURITY WARNING: $wgDebugAPI is enabled' );
1108 }
1109
1110 $this->getResult()->cleanUpUTF8();
1111 $printer = $this->mPrinter;
1112 $printer->profileIn();
1113
1114 $printer->initPrinter( false );
1115
1116 $printer->execute();
1117 $printer->closePrinter();
1118 $printer->profileOut();
1119 }
1120
1121 /**
1122 * @return bool
1123 */
1124 public function isReadMode() {
1125 return false;
1126 }
1127
1128 /**
1129 * See ApiBase for description.
1130 *
1131 * @return array
1132 */
1133 public function getAllowedParams() {
1134 return array(
1135 'action' => array(
1136 ApiBase::PARAM_DFLT => 'help',
1137 ApiBase::PARAM_TYPE => 'submodule',
1138 ),
1139 'format' => array(
1140 ApiBase::PARAM_DFLT => ApiMain::API_DEFAULT_FORMAT,
1141 ApiBase::PARAM_TYPE => 'submodule',
1142 ),
1143 'maxlag' => array(
1144 ApiBase::PARAM_TYPE => 'integer'
1145 ),
1146 'smaxage' => array(
1147 ApiBase::PARAM_TYPE => 'integer',
1148 ApiBase::PARAM_DFLT => 0
1149 ),
1150 'maxage' => array(
1151 ApiBase::PARAM_TYPE => 'integer',
1152 ApiBase::PARAM_DFLT => 0
1153 ),
1154 'assert' => array(
1155 ApiBase::PARAM_TYPE => array( 'user', 'bot' )
1156 ),
1157 'requestid' => null,
1158 'servedby' => false,
1159 'curtimestamp' => false,
1160 'origin' => null,
1161 'uselang' => array(
1162 ApiBase::PARAM_DFLT => 'user',
1163 ),
1164 );
1165 }
1166
1167 /** @see ApiBase::getExamplesMessages() */
1168 protected function getExamplesMessages() {
1169 return array(
1170 'action=help'
1171 => 'apihelp-help-example-main',
1172 'action=help&recursivesubmodules=1'
1173 => 'apihelp-help-example-recursive',
1174 );
1175 }
1176
1177 public function modifyHelp( array &$help, array $options ) {
1178 // Wish PHP had an "array_insert_before". Instead, we have to manually
1179 // reindex the array to get 'permissions' in the right place.
1180 $oldHelp = $help;
1181 $help = array();
1182 foreach ( $oldHelp as $k => $v ) {
1183 if ( $k === 'submodules' ) {
1184 $help['permissions'] = '';
1185 }
1186 $help[$k] = $v;
1187 }
1188 $help['credits'] = '';
1189
1190 // Fill 'permissions'
1191 $help['permissions'] .= Html::openElement( 'div',
1192 array( 'class' => 'apihelp-block apihelp-permissions' ) );
1193 $m = $this->msg( 'api-help-permissions' );
1194 if ( !$m->isDisabled() ) {
1195 $help['permissions'] .= Html::rawElement( 'div', array( 'class' => 'apihelp-block-head' ),
1196 $m->numParams( count( self::$mRights ) )->parse()
1197 );
1198 }
1199 $help['permissions'] .= Html::openElement( 'dl' );
1200 foreach ( self::$mRights as $right => $rightMsg ) {
1201 $help['permissions'] .= Html::element( 'dt', null, $right );
1202
1203 $rightMsg = $this->msg( $rightMsg['msg'], $rightMsg['params'] )->parse();
1204 $help['permissions'] .= Html::rawElement( 'dd', null, $rightMsg );
1205
1206 $groups = array_map( function ( $group ) {
1207 return $group == '*' ? 'all' : $group;
1208 }, User::getGroupsWithPermission( $right ) );
1209
1210 $help['permissions'] .= Html::rawElement( 'dd', null,
1211 $this->msg( 'api-help-permissions-granted-to' )
1212 ->numParams( count( $groups ) )
1213 ->params( $this->getLanguage()->commaList( $groups ) )
1214 ->parse()
1215 );
1216 }
1217 $help['permissions'] .= Html::closeElement( 'dl' );
1218 $help['permissions'] .= Html::closeElement( 'div' );
1219
1220 // Fill 'credits', if applicable
1221 if ( empty( $options['nolead'] ) ) {
1222 $help['credits'] .= Html::element( 'h' . min( 6, $options['headerlevel'] + 1 ),
1223 array( 'id' => '+credits', 'class' => 'apihelp-header' ),
1224 $this->msg( 'api-credits-header' )->parse()
1225 );
1226 $help['credits'] .= $this->msg( 'api-credits' )->useDatabase( false )->parseAsBlock();
1227 }
1228 }
1229
1230 private $mCanApiHighLimits = null;
1231
1232 /**
1233 * Check whether the current user is allowed to use high limits
1234 * @return bool
1235 */
1236 public function canApiHighLimits() {
1237 if ( !isset( $this->mCanApiHighLimits ) ) {
1238 $this->mCanApiHighLimits = $this->getUser()->isAllowed( 'apihighlimits' );
1239 }
1240
1241 return $this->mCanApiHighLimits;
1242 }
1243
1244 /**
1245 * Overrides to return this instance's module manager.
1246 * @return ApiModuleManager
1247 */
1248 public function getModuleManager() {
1249 return $this->mModuleMgr;
1250 }
1251
1252 /**
1253 * Fetches the user agent used for this request
1254 *
1255 * The value will be the combination of the 'Api-User-Agent' header (if
1256 * any) and the standard User-Agent header (if any).
1257 *
1258 * @return string
1259 */
1260 public function getUserAgent() {
1261 return trim(
1262 $this->getRequest()->getHeader( 'Api-user-agent' ) . ' ' .
1263 $this->getRequest()->getHeader( 'User-agent' )
1264 );
1265 }
1266
1267 /************************************************************************//**
1268 * @name Deprecated
1269 * @{
1270 */
1271
1272 /**
1273 * Sets whether the pretty-printer should format *bold* and $italics$
1274 *
1275 * @deprecated since 1.25
1276 * @param bool $help
1277 */
1278 public function setHelp( $help = true ) {
1279 wfDeprecated( __METHOD__, '1.25' );
1280 $this->mPrinter->setHelp( $help );
1281 }
1282
1283 /**
1284 * Override the parent to generate help messages for all available modules.
1285 *
1286 * @deprecated since 1.25
1287 * @return string
1288 */
1289 public function makeHelpMsg() {
1290 wfDeprecated( __METHOD__, '1.25' );
1291 global $wgMemc;
1292 $this->setHelp();
1293 // Get help text from cache if present
1294 $key = wfMemcKey( 'apihelp', $this->getModuleName(),
1295 str_replace( ' ', '_', SpecialVersion::getVersion( 'nodb' ) ) );
1296
1297 $cacheHelpTimeout = $this->getConfig()->get( 'APICacheHelpTimeout' );
1298 if ( $cacheHelpTimeout > 0 ) {
1299 $cached = $wgMemc->get( $key );
1300 if ( $cached ) {
1301 return $cached;
1302 }
1303 }
1304 $retval = $this->reallyMakeHelpMsg();
1305 if ( $cacheHelpTimeout > 0 ) {
1306 $wgMemc->set( $key, $retval, $cacheHelpTimeout );
1307 }
1308
1309 return $retval;
1310 }
1311
1312 /**
1313 * @deprecated since 1.25
1314 * @return mixed|string
1315 */
1316 public function reallyMakeHelpMsg() {
1317 wfDeprecated( __METHOD__, '1.25' );
1318 $this->setHelp();
1319
1320 // Use parent to make default message for the main module
1321 $msg = parent::makeHelpMsg();
1322
1323 $astriks = str_repeat( '*** ', 14 );
1324 $msg .= "\n\n$astriks Modules $astriks\n\n";
1325
1326 foreach ( $this->mModuleMgr->getNames( 'action' ) as $name ) {
1327 $module = $this->mModuleMgr->getModule( $name );
1328 $msg .= self::makeHelpMsgHeader( $module, 'action' );
1329
1330 $msg2 = $module->makeHelpMsg();
1331 if ( $msg2 !== false ) {
1332 $msg .= $msg2;
1333 }
1334 $msg .= "\n";
1335 }
1336
1337 $msg .= "\n$astriks Permissions $astriks\n\n";
1338 foreach ( self::$mRights as $right => $rightMsg ) {
1339 $rightsMsg = $this->msg( $rightMsg['msg'], $rightMsg['params'] )
1340 ->useDatabase( false )
1341 ->inLanguage( 'en' )
1342 ->text();
1343 $groups = User::getGroupsWithPermission( $right );
1344 $msg .= "* " . $right . " *\n $rightsMsg" .
1345 "\nGranted to:\n " . str_replace( '*', 'all', implode( ', ', $groups ) ) . "\n\n";
1346 }
1347
1348 $msg .= "\n$astriks Formats $astriks\n\n";
1349 foreach ( $this->mModuleMgr->getNames( 'format' ) as $name ) {
1350 $module = $this->mModuleMgr->getModule( $name );
1351 $msg .= self::makeHelpMsgHeader( $module, 'format' );
1352 $msg2 = $module->makeHelpMsg();
1353 if ( $msg2 !== false ) {
1354 $msg .= $msg2;
1355 }
1356 $msg .= "\n";
1357 }
1358
1359 $credits = $this->msg( 'api-credits' )->useDatabase( 'false' )->inLanguage( 'en' )->text();
1360 $credits = str_replace( "\n", "\n ", $credits );
1361 $msg .= "\n*** Credits: ***\n $credits\n";
1362
1363 return $msg;
1364 }
1365
1366 /**
1367 * @deprecated since 1.25
1368 * @param ApiBase $module
1369 * @param string $paramName What type of request is this? e.g. action,
1370 * query, list, prop, meta, format
1371 * @return string
1372 */
1373 public static function makeHelpMsgHeader( $module, $paramName ) {
1374 wfDeprecated( __METHOD__, '1.25' );
1375 $modulePrefix = $module->getModulePrefix();
1376 if ( strval( $modulePrefix ) !== '' ) {
1377 $modulePrefix = "($modulePrefix) ";
1378 }
1379
1380 return "* $paramName={$module->getModuleName()} $modulePrefix*";
1381 }
1382
1383 /**
1384 * Check whether the user wants us to show version information in the API help
1385 * @return bool
1386 * @deprecated since 1.21, always returns false
1387 */
1388 public function getShowVersions() {
1389 wfDeprecated( __METHOD__, '1.21' );
1390
1391 return false;
1392 }
1393
1394 /**
1395 * Add or overwrite a module in this ApiMain instance. Intended for use by extending
1396 * classes who wish to add their own modules to their lexicon or override the
1397 * behavior of inherent ones.
1398 *
1399 * @deprecated since 1.21, Use getModuleManager()->addModule() instead.
1400 * @param string $name The identifier for this module.
1401 * @param ApiBase $class The class where this module is implemented.
1402 */
1403 protected function addModule( $name, $class ) {
1404 $this->getModuleManager()->addModule( $name, 'action', $class );
1405 }
1406
1407 /**
1408 * Add or overwrite an output format for this ApiMain. Intended for use by extending
1409 * classes who wish to add to or modify current formatters.
1410 *
1411 * @deprecated since 1.21, Use getModuleManager()->addModule() instead.
1412 * @param string $name The identifier for this format.
1413 * @param ApiFormatBase $class The class implementing this format.
1414 */
1415 protected function addFormat( $name, $class ) {
1416 $this->getModuleManager()->addModule( $name, 'format', $class );
1417 }
1418
1419 /**
1420 * Get the array mapping module names to class names
1421 * @deprecated since 1.21, Use getModuleManager()'s methods instead.
1422 * @return array
1423 */
1424 function getModules() {
1425 return $this->getModuleManager()->getNamesWithClasses( 'action' );
1426 }
1427
1428 /**
1429 * Returns the list of supported formats in form ( 'format' => 'ClassName' )
1430 *
1431 * @since 1.18
1432 * @deprecated since 1.21, Use getModuleManager()'s methods instead.
1433 * @return array
1434 */
1435 public function getFormats() {
1436 return $this->getModuleManager()->getNamesWithClasses( 'format' );
1437 }
1438
1439 /**@}*/
1440
1441 }
1442
1443 /**
1444 * This exception will be thrown when dieUsage is called to stop module execution.
1445 *
1446 * @ingroup API
1447 */
1448 class UsageException extends MWException {
1449
1450 private $mCodestr;
1451
1452 /**
1453 * @var null|array
1454 */
1455 private $mExtraData;
1456
1457 /**
1458 * @param string $message
1459 * @param string $codestr
1460 * @param int $code
1461 * @param array|null $extradata
1462 */
1463 public function __construct( $message, $codestr, $code = 0, $extradata = null ) {
1464 parent::__construct( $message, $code );
1465 $this->mCodestr = $codestr;
1466 $this->mExtraData = $extradata;
1467 }
1468
1469 /**
1470 * @return string
1471 */
1472 public function getCodeString() {
1473 return $this->mCodestr;
1474 }
1475
1476 /**
1477 * @return array
1478 */
1479 public function getMessageArray() {
1480 $result = array(
1481 'code' => $this->mCodestr,
1482 'info' => $this->getMessage()
1483 );
1484 if ( is_array( $this->mExtraData ) ) {
1485 $result = array_merge( $result, $this->mExtraData );
1486 }
1487
1488 return $result;
1489 }
1490
1491 /**
1492 * @return string
1493 */
1494 public function __toString() {
1495 return "{$this->getCodeString()}: {$this->getMessage()}";
1496 }
1497 }
1498
1499 /**
1500 * For really cool vim folding this needs to be at the end:
1501 * vim: foldmarker=@{,@} foldmethod=marker
1502 */