Move ApiFormatYaml_spyc.php to spyc.php as per r71763
[lhc/web/wiklou.git] / includes / api / ApiMain.php
1 <?php
2 /**
3 * API for MediaWiki 1.8+
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 if ( !defined( 'MEDIAWIKI' ) ) {
29 // Eclipse helper - will be ignored in production
30 require_once( 'ApiBase.php' );
31 }
32
33 /**
34 * This is the main API class, used for both external and internal processing.
35 * When executed, it will create the requested formatter object,
36 * instantiate and execute an object associated with the needed action,
37 * and use formatter to print results.
38 * In case of an exception, an error message will be printed using the same formatter.
39 *
40 * To use API from another application, run it using FauxRequest object, in which
41 * case any internal exceptions will not be handled but passed up to the caller.
42 * After successful execution, use getResult() for the resulting data.
43 *
44 * @ingroup API
45 */
46 class ApiMain extends ApiBase {
47
48 /**
49 * When no format parameter is given, this format will be used
50 */
51 const API_DEFAULT_FORMAT = 'xmlfm';
52
53 /**
54 * List of available modules: action name => module class
55 */
56 private static $Modules = array(
57 'login' => 'ApiLogin',
58 'logout' => 'ApiLogout',
59 'query' => 'ApiQuery',
60 'expandtemplates' => 'ApiExpandTemplates',
61 'parse' => 'ApiParse',
62 'opensearch' => 'ApiOpenSearch',
63 'feedwatchlist' => 'ApiFeedWatchlist',
64 'help' => 'ApiHelp',
65 'paraminfo' => 'ApiParamInfo',
66
67 // Write modules
68 'purge' => 'ApiPurge',
69 'rollback' => 'ApiRollback',
70 'delete' => 'ApiDelete',
71 'undelete' => 'ApiUndelete',
72 'protect' => 'ApiProtect',
73 'block' => 'ApiBlock',
74 'unblock' => 'ApiUnblock',
75 'move' => 'ApiMove',
76 'edit' => 'ApiEditPage',
77 'upload' => 'ApiUpload',
78 'emailuser' => 'ApiEmailUser',
79 'watch' => 'ApiWatch',
80 'patrol' => 'ApiPatrol',
81 'import' => 'ApiImport',
82 'userrights' => 'ApiUserrights',
83 );
84
85 /**
86 * List of available formats: format name => format class
87 */
88 private static $Formats = array(
89 'json' => 'ApiFormatJson',
90 'jsonfm' => 'ApiFormatJson',
91 'php' => 'ApiFormatPhp',
92 'phpfm' => 'ApiFormatPhp',
93 'wddx' => 'ApiFormatWddx',
94 'wddxfm' => 'ApiFormatWddx',
95 'xml' => 'ApiFormatXml',
96 'xmlfm' => 'ApiFormatXml',
97 'yaml' => 'ApiFormatYaml',
98 'yamlfm' => 'ApiFormatYaml',
99 'rawfm' => 'ApiFormatJson',
100 'txt' => 'ApiFormatTxt',
101 'txtfm' => 'ApiFormatTxt',
102 'dbg' => 'ApiFormatDbg',
103 'dbgfm' => 'ApiFormatDbg',
104 'dump' => 'ApiFormatDump',
105 'dumpfm' => 'ApiFormatDump',
106 );
107
108 /**
109 * List of user roles that are specifically relevant to the API.
110 * array( 'right' => array ( 'msg' => 'Some message with a $1',
111 * 'params' => array ( $someVarToSubst ) ),
112 * );
113 */
114 private static $mRights = array(
115 'writeapi' => array(
116 'msg' => 'Use of the write API',
117 'params' => array()
118 ),
119 'apihighlimits' => array(
120 'msg' => 'Use higher limits in API queries (Slow queries: $1 results; Fast queries: $2 results). The limits for slow queries also apply to multivalue parameters.',
121 'params' => array( ApiBase::LIMIT_SML2, ApiBase::LIMIT_BIG2 )
122 )
123 );
124
125 private $mPrinter, $mModules, $mModuleNames, $mFormats, $mFormatNames;
126 private $mResult, $mAction, $mShowVersions, $mEnableWrite, $mRequest;
127 private $mInternalMode, $mSquidMaxage, $mModule;
128
129 private $mCacheMode = 'private';
130 private $mCacheControl = array();
131
132 /**
133 * Constructs an instance of ApiMain that utilizes the module and format specified by $request.
134 *
135 * @param $request object - if this is an instance of FauxRequest, errors are thrown and no printing occurs
136 * @param $enableWrite bool should be set to true if the api may modify data
137 */
138 public function __construct( $request, $enableWrite = false ) {
139 $this->mInternalMode = ( $request instanceof FauxRequest );
140
141 // Special handling for the main module: $parent === $this
142 parent::__construct( $this, $this->mInternalMode ? 'main_int' : 'main' );
143
144 if ( !$this->mInternalMode ) {
145 // Impose module restrictions.
146 // If the current user cannot read,
147 // Remove all modules other than login
148 global $wgUser;
149
150 if ( $request->getVal( 'callback' ) !== null ) {
151 // JSON callback allows cross-site reads.
152 // For safety, strip user credentials.
153 wfDebug( "API: stripping user credentials for JSON callback\n" );
154 $wgUser = new User();
155 }
156 }
157
158 global $wgAPIModules; // extension modules
159 $this->mModules = $wgAPIModules + self::$Modules;
160
161 $this->mModuleNames = array_keys( $this->mModules );
162 $this->mFormats = self::$Formats;
163 $this->mFormatNames = array_keys( $this->mFormats );
164
165 $this->mResult = new ApiResult( $this );
166 $this->mShowVersions = false;
167 $this->mEnableWrite = $enableWrite;
168
169 $this->mRequest = &$request;
170
171 $this->mSquidMaxage = - 1; // flag for executeActionWithErrorHandling()
172 $this->mCommit = false;
173 }
174
175 /**
176 * Return true if the API was started by other PHP code using FauxRequest
177 */
178 public function isInternalMode() {
179 return $this->mInternalMode;
180 }
181
182 /**
183 * Return the request object that contains client's request
184 */
185 public function getRequest() {
186 return $this->mRequest;
187 }
188
189 /**
190 * Get the ApiResult object associated with current request
191 */
192 public function getResult() {
193 return $this->mResult;
194 }
195
196 /**
197 * Get the API module object. Only works after executeAction()
198 */
199 public function getModule() {
200 return $this->mModule;
201 }
202
203 /**
204 * Get the result formatter object. Only works after setupExecuteAction()
205 */
206 public function getPrinter() {
207 return $this->mPrinter;
208 }
209
210 /**
211 * Set how long the response should be cached.
212 */
213 public function setCacheMaxAge( $maxage ) {
214 $this->setCacheControl( array(
215 'max-age' => $maxage,
216 's-maxage' => $maxage
217 ) );
218 }
219
220 /**
221 * Set the type of caching headers which will be sent.
222 *
223 * @param $mode One of:
224 * - 'public': Cache this object in public caches, if the maxage or smaxage
225 * parameter is set, or if setCacheMaxAge() was called. If a maximum age is
226 * not provided by any of these means, the object will be private.
227 * - 'private': Cache this object only in private client-side caches.
228 * - 'anon-public-user-private': Make this object cacheable for logged-out
229 * users, but private for logged-in users. IMPORTANT: If this is set, it must be
230 * set consistently for a given URL, it cannot be set differently depending on
231 * things like the contents of the database, or whether the user is logged in.
232 *
233 * If the wiki does not allow anonymous users to read it, the mode set here
234 * will be ignored, and private caching headers will always be sent. In other words,
235 * the "public" mode is equivalent to saying that the data sent is as public as a page
236 * view.
237 *
238 * For user-dependent data, the private mode should generally be used. The
239 * anon-public-user-private mode should only be used where there is a particularly
240 * good performance reason for caching the anonymous response, but where the
241 * response to logged-in users may differ, or may contain private data.
242 *
243 * If this function is never called, then the default will be the private mode.
244 */
245 public function setCacheMode( $mode ) {
246 if ( !in_array( $mode, array( 'private', 'public', 'anon-public-user-private' ) ) ) {
247 wfDebug( __METHOD__ . ": unrecognised cache mode \"$mode\"\n" );
248 // Ignore for forwards-compatibility
249 return;
250 }
251
252 if ( !in_array( 'read', User::getGroupPermissions( array( '*' ) ), true ) ) {
253 // Private wiki, only private headers
254 if ( $mode !== 'private' ) {
255 wfDebug( __METHOD__ . ": ignoring request for $mode cache mode, private wiki\n" );
256 return;
257 }
258 }
259
260 wfDebug( __METHOD__ . ": setting cache mode $mode\n" );
261 $this->mCacheMode = $mode;
262 }
263
264 /**
265 * @deprecated Private caching is now the default, so there is usually no
266 * need to call this function. If there is a need, you can use
267 * $this->setCacheMode('private')
268 */
269 public function setCachePrivate() {
270 $this->setCacheMode( 'private' );
271 }
272
273 /**
274 * Set directives (key/value pairs) for the Cache-Control header.
275 * Boolean values will be formatted as such, by including or omitting
276 * without an equals sign.
277 *
278 * Cache control values set here will only be used if the cache mode is not
279 * private, see setCacheMode().
280 */
281 public function setCacheControl( $directives ) {
282 $this->mCacheControl = $directives + $this->mCacheControl;
283 }
284
285 /**
286 * Make sure Vary: Cookie and friends are set. Use this when the output of a request
287 * may be cached for anons but may not be cached for logged-in users.
288 *
289 * WARNING: This function must be called CONSISTENTLY for a given URL. This means that a
290 * given URL must either always or never call this function; if it sometimes does and
291 * sometimes doesn't, stuff will break.
292 *
293 * @deprecated Use setCacheMode( 'anon-public-user-private' )
294 */
295 public function setVaryCookie() {
296 $this->setCacheMode( 'anon-public-user-private' );
297 }
298
299 /**
300 * Create an instance of an output formatter by its name
301 */
302 public function createPrinterByName( $format ) {
303 if ( !isset( $this->mFormats[$format] ) ) {
304 $this->dieUsage( "Unrecognized format: {$format}", 'unknown_format' );
305 }
306 return new $this->mFormats[$format] ( $this, $format );
307 }
308
309 /**
310 * Execute api request. Any errors will be handled if the API was called by the remote client.
311 */
312 public function execute() {
313 $this->profileIn();
314 if ( $this->mInternalMode ) {
315 $this->executeAction();
316 } else {
317 $this->executeActionWithErrorHandling();
318 }
319
320 $this->profileOut();
321 }
322
323 /**
324 * Execute an action, and in case of an error, erase whatever partial results
325 * have been accumulated, and replace it with an error message and a help screen.
326 */
327 protected function executeActionWithErrorHandling() {
328 // In case an error occurs during data output,
329 // clear the output buffer and print just the error information
330 ob_start();
331
332 try {
333 $this->executeAction();
334 } catch ( Exception $e ) {
335 // Log it
336 if ( $e instanceof MWException ) {
337 wfDebugLog( 'exception', $e->getLogMessage() );
338 }
339
340 //
341 // Handle any kind of exception by outputing properly formatted error message.
342 // If this fails, an unhandled exception should be thrown so that global error
343 // handler will process and log it.
344 //
345
346 $errCode = $this->substituteResultWithError( $e );
347
348 // Error results should not be cached
349 $this->setCacheMode( 'private' );
350
351 $headerStr = 'MediaWiki-API-Error: ' . $errCode;
352 if ( $e->getCode() === 0 ) {
353 header( $headerStr );
354 } else {
355 header( $headerStr, true, $e->getCode() );
356 }
357
358 // Reset and print just the error message
359 ob_clean();
360
361 // If the error occured during printing, do a printer->profileOut()
362 $this->mPrinter->safeProfileOut();
363 $this->printResult( true );
364 }
365
366 // Send cache headers after any code which might generate an error, to
367 // avoid sending public cache headers for errors.
368 $this->sendCacheHeaders();
369
370 if ( $this->mPrinter->getIsHtml() && !$this->mPrinter->isDisabled() ) {
371 echo wfReportTime();
372 }
373
374 ob_end_flush();
375 }
376
377 protected function sendCacheHeaders() {
378 if ( $this->mCacheMode == 'private' ) {
379 header( 'Cache-Control: private' );
380 return;
381 }
382
383 if ( $this->mCacheMode == 'anon-public-user-private' ) {
384 global $wgUseXVO, $wgOut;
385 header( 'Vary: Accept-Encoding, Cookie' );
386 if ( $wgUseXVO ) {
387 header( $wgOut->getXVO() );
388 if ( $wgOut->haveCacheVaryCookies() ) {
389 // Logged in, mark this request private
390 header( 'Cache-Control: private' );
391 return;
392 }
393 // Logged out, send normal public headers below
394 } elseif ( session_id() != '' ) {
395 // Logged in or otherwise has session (e.g. anonymous users who have edited)
396 // Mark request private
397 header( 'Cache-Control: private' );
398 return;
399 } // else no XVO and anonymous, send public headers below
400 } else /* if public */ {
401 // Give a debugging message if the user object is unstubbed on a public request
402 global $wgUser;
403 if ( !( $wgUser instanceof StubUser ) ) {
404 wfDebug( __METHOD__ . " \$wgUser is unstubbed on a public request!\n" );
405 }
406 }
407
408 // If nobody called setCacheMaxAge(), use the (s)maxage parameters
409 if ( !isset( $this->mCacheControl['s-maxage'] ) ) {
410 $this->mCacheControl['s-maxage'] = $this->getParameter( 'smaxage' );
411 }
412 if ( !isset( $this->mCacheControl['max-age'] ) ) {
413 $this->mCacheControl['max-age'] = $this->getParameter( 'maxage' );
414 }
415
416 if ( !$this->mCacheControl['s-maxage'] && !$this->mCacheControl['max-age'] ) {
417 // Public cache not requested
418 // Sending a Vary header in this case is harmless, and protects us
419 // against conditional calls of setCacheMaxAge().
420 header( 'Cache-Control: private' );
421 return;
422 }
423
424 $this->mCacheControl['public'] = true;
425
426 // Send an Expires header
427 $maxAge = min( $this->mCacheControl['s-maxage'], $this->mCacheControl['max-age'] );
428 $expiryUnixTime = ( $maxAge == 0 ? 1 : time() + $maxAge );
429 header( 'Expires: ' . wfTimestamp( TS_RFC2822, $expiryUnixTime ) );
430
431 // Construct the Cache-Control header
432 $ccHeader = '';
433 $separator = '';
434 foreach ( $this->mCacheControl as $name => $value ) {
435 if ( is_bool( $value ) ) {
436 if ( $value ) {
437 $ccHeader .= $separator . $name;
438 $separator = ', ';
439 }
440 } else {
441 $ccHeader .= $separator . "$name=$value";
442 $separator = ', ';
443 }
444 }
445
446 header( "Cache-Control: $ccHeader" );
447 }
448
449 /**
450 * Replace the result data with the information about an exception.
451 * Returns the error code
452 */
453 protected function substituteResultWithError( $e ) {
454 // Printer may not be initialized if the extractRequestParams() fails for the main module
455 if ( !isset ( $this->mPrinter ) ) {
456 // The printer has not been created yet. Try to manually get formatter value.
457 $value = $this->getRequest()->getVal( 'format', self::API_DEFAULT_FORMAT );
458 if ( !in_array( $value, $this->mFormatNames ) ) {
459 $value = self::API_DEFAULT_FORMAT;
460 }
461
462 $this->mPrinter = $this->createPrinterByName( $value );
463 if ( $this->mPrinter->getNeedsRawData() ) {
464 $this->getResult()->setRawMode();
465 }
466 }
467
468 if ( $e instanceof UsageException ) {
469 //
470 // User entered incorrect parameters - print usage screen
471 //
472 $errMessage = $e->getMessageArray();
473
474 // Only print the help message when this is for the developer, not runtime
475 if ( $this->mPrinter->getWantsHelp() || $this->mAction == 'help' ) {
476 ApiResult::setContent( $errMessage, $this->makeHelpMsg() );
477 }
478
479 } else {
480 global $wgShowSQLErrors, $wgShowExceptionDetails;
481 //
482 // Something is seriously wrong
483 //
484 if ( ( $e instanceof DBQueryError ) && !$wgShowSQLErrors ) {
485 $info = 'Database query error';
486 } else {
487 $info = "Exception Caught: {$e->getMessage()}";
488 }
489
490 $errMessage = array(
491 'code' => 'internal_api_error_' . get_class( $e ),
492 'info' => $info,
493 );
494 ApiResult::setContent( $errMessage, $wgShowExceptionDetails ? "\n\n{$e->getTraceAsString()}\n\n" : '' );
495 }
496
497 $this->getResult()->reset();
498 $this->getResult()->disableSizeCheck();
499 // Re-add the id
500 $requestid = $this->getParameter( 'requestid' );
501 if ( !is_null( $requestid ) ) {
502 $this->getResult()->addValue( null, 'requestid', $requestid );
503 }
504 // servedby is especially useful when debugging errors
505 $this->getResult()->addValue( null, 'servedby', wfHostName() );
506 $this->getResult()->addValue( null, 'error', $errMessage );
507
508 return $errMessage['code'];
509 }
510
511 /**
512 * Set up for the execution.
513 */
514 protected function setupExecuteAction() {
515 // First add the id to the top element
516 $requestid = $this->getParameter( 'requestid' );
517 if ( !is_null( $requestid ) ) {
518 $this->getResult()->addValue( null, 'requestid', $requestid );
519 }
520 $servedby = $this->getParameter( 'servedby' );
521 if ( $servedby ) {
522 $this->getResult()->addValue( null, 'servedby', wfHostName() );
523 }
524
525 $params = $this->extractRequestParams();
526
527 $this->mShowVersions = $params['version'];
528 $this->mAction = $params['action'];
529
530 if ( !is_string( $this->mAction ) ) {
531 $this->dieUsage( 'The API requires a valid action parameter', 'unknown_action' );
532 }
533
534 return $params;
535 }
536
537 /**
538 * Set up the module for response
539 * @return Object the module that will handle this action
540 */
541 protected function setupModule() {
542 // Instantiate the module requested by the user
543 $module = new $this->mModules[$this->mAction] ( $this, $this->mAction );
544 $this->mModule = $module;
545
546 $moduleParams = $module->extractRequestParams();
547
548 // Die if token required, but not provided (unless there is a gettoken parameter)
549 $salt = $module->getTokenSalt();
550 if ( $salt !== false && !isset( $moduleParams['gettoken'] ) ) {
551 if ( !isset( $moduleParams['token'] ) ) {
552 $this->dieUsageMsg( array( 'missingparam', 'token' ) );
553 } else {
554 global $wgUser;
555 if ( !$wgUser->matchEditToken( $moduleParams['token'], $salt ) ) {
556 $this->dieUsageMsg( array( 'sessionfailure' ) );
557 }
558 }
559 }
560 return $module;
561 }
562
563 /**
564 * Check the max lag if necessary
565 * @param $module ApiBase object: Api module being used
566 * @param $params Array an array containing the request parameters.
567 * @return boolean True on success, false should exit immediately
568 */
569 protected function checkMaxLag( $module, $params ) {
570 if ( $module->shouldCheckMaxlag() && isset( $params['maxlag'] ) ) {
571 // Check for maxlag
572 global $wgShowHostnames;
573 $maxLag = $params['maxlag'];
574 list( $host, $lag ) = wfGetLB()->getMaxLag();
575 if ( $lag > $maxLag ) {
576 header( 'Retry-After: ' . max( intval( $maxLag ), 5 ) );
577 header( 'X-Database-Lag: ' . intval( $lag ) );
578 if ( $wgShowHostnames ) {
579 $this->dieUsage( "Waiting for $host: $lag seconds lagged", 'maxlag' );
580 } else {
581 $this->dieUsage( "Waiting for a database server: $lag seconds lagged", 'maxlag' );
582 }
583 return false;
584 }
585 }
586 return true;
587 }
588
589
590 /**
591 * Check for sufficient permissions to execute
592 * @param $module object An Api module
593 */
594 protected function checkExecutePermissions( $module ) {
595 global $wgUser;
596 if ( $module->isReadMode() && !in_array( 'read', User::getGroupPermissions( array( '*' ) ), true ) &&
597 !$wgUser->isAllowed( 'read' ) )
598 {
599 $this->dieUsageMsg( array( 'readrequired' ) );
600 }
601 if ( $module->isWriteMode() ) {
602 if ( !$this->mEnableWrite ) {
603 $this->dieUsageMsg( array( 'writedisabled' ) );
604 }
605 if ( !$wgUser->isAllowed( 'writeapi' ) ) {
606 $this->dieUsageMsg( array( 'writerequired' ) );
607 }
608 if ( wfReadOnly() ) {
609 $this->dieReadOnly();
610 }
611 }
612 }
613
614 /**
615 * Check POST for external response and setup result printer
616 * @param $module object An Api module
617 * @param $params Array an array with the request parameters
618 */
619 protected function setupExternalResponse( $module, $params ) {
620 // Ignore mustBePosted() for internal calls
621 if ( $module->mustBePosted() && !$this->mRequest->wasPosted() ) {
622 $this->dieUsageMsg( array( 'mustbeposted', $this->mAction ) );
623 }
624
625 // See if custom printer is used
626 $this->mPrinter = $module->getCustomPrinter();
627 if ( is_null( $this->mPrinter ) ) {
628 // Create an appropriate printer
629 $this->mPrinter = $this->createPrinterByName( $params['format'] );
630 }
631
632 if ( $this->mPrinter->getNeedsRawData() ) {
633 $this->getResult()->setRawMode();
634 }
635 }
636
637 /**
638 * Execute the actual module, without any error handling
639 */
640 protected function executeAction() {
641 $params = $this->setupExecuteAction();
642 $module = $this->setupModule();
643
644 $this->checkExecutePermissions( $module );
645
646 if ( !$this->checkMaxLag( $module, $params ) ) return;
647
648 if ( !$this->mInternalMode ) {
649 $this->setupExternalResponse( $module, $params );
650 }
651
652 // Execute
653 $module->profileIn();
654 $module->execute();
655 wfRunHooks( 'APIAfterExecute', array( &$module ) );
656 $module->profileOut();
657
658 if ( !$this->mInternalMode ) {
659 // Print result data
660 $this->printResult( false );
661 }
662 }
663
664 /**
665 * Print results using the current printer
666 */
667 protected function printResult( $isError ) {
668 $this->getResult()->cleanUpUTF8();
669 $printer = $this->mPrinter;
670 $printer->profileIn();
671
672 /**
673 * If the help message is requested in the default (xmlfm) format,
674 * tell the printer not to escape ampersands so that our links do
675 * not break.
676 */
677 $printer->setUnescapeAmps( ( $this->mAction == 'help' || $isError )
678 && $printer->getFormat() == 'XML' && $printer->getIsHtml() );
679
680 $printer->initPrinter( $isError );
681
682 $printer->execute();
683 $printer->closePrinter();
684 $printer->profileOut();
685 }
686
687 public function isReadMode() {
688 return false;
689 }
690
691 /**
692 * See ApiBase for description.
693 */
694 public function getAllowedParams() {
695 return array(
696 'format' => array(
697 ApiBase::PARAM_DFLT => ApiMain::API_DEFAULT_FORMAT,
698 ApiBase::PARAM_TYPE => $this->mFormatNames
699 ),
700 'action' => array(
701 ApiBase::PARAM_DFLT => 'help',
702 ApiBase::PARAM_TYPE => $this->mModuleNames
703 ),
704 'version' => false,
705 'maxlag' => array(
706 ApiBase::PARAM_TYPE => 'integer'
707 ),
708 'smaxage' => array(
709 ApiBase::PARAM_TYPE => 'integer',
710 ApiBase::PARAM_DFLT => 0
711 ),
712 'maxage' => array(
713 ApiBase::PARAM_TYPE => 'integer',
714 ApiBase::PARAM_DFLT => 0
715 ),
716 'requestid' => null,
717 'servedby' => false,
718 );
719 }
720
721 /**
722 * See ApiBase for description.
723 */
724 public function getParamDescription() {
725 return array(
726 'format' => 'The format of the output',
727 'action' => 'What action you would like to perform. See below for module help',
728 'version' => 'When showing help, include version for each module',
729 'maxlag' => 'Maximum lag',
730 'smaxage' => 'Set the s-maxage header to this many seconds. Errors are never cached',
731 'maxage' => 'Set the max-age header to this many seconds. Errors are never cached',
732 'requestid' => 'Request ID to distinguish requests. This will just be output back to you',
733 'servedby' => 'Include the hostname that served the request in the results. Unconditionally shown on error',
734 );
735 }
736
737 /**
738 * See ApiBase for description.
739 */
740 public function getDescription() {
741 return array(
742 '',
743 '',
744 '******************************************************************',
745 '** **',
746 '** This is an auto-generated MediaWiki API documentation page **',
747 '** **',
748 '** Documentation and Examples: **',
749 '** http://www.mediawiki.org/wiki/API **',
750 '** **',
751 '******************************************************************',
752 '',
753 'Status: All features shown on this page should be working, but the API',
754 ' is still in active development, and may change at any time.',
755 ' Make sure to monitor our mailing list for any updates',
756 '',
757 'Documentation: http://www.mediawiki.org/wiki/API',
758 'Mailing list: http://lists.wikimedia.org/mailman/listinfo/mediawiki-api',
759 'Api Announcements: http://lists.wikimedia.org/mailman/listinfo/mediawiki-api-announce',
760 'Bugs & Requests: http://bugzilla.wikimedia.org/buglist.cgi?component=API&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&order=bugs.delta_ts',
761 '',
762 '',
763 '',
764 '',
765 '',
766 );
767 }
768
769 public function getPossibleErrors() {
770 return array_merge( parent::getPossibleErrors(), array(
771 array( 'readonlytext' ),
772 array( 'code' => 'unknown_format', 'info' => 'Unrecognized format: format' ),
773 array( 'code' => 'unknown_action', 'info' => 'The API requires a valid action parameter' ),
774 array( 'code' => 'maxlag', 'info' => 'Waiting for host: x seconds lagged' ),
775 array( 'code' => 'maxlag', 'info' => 'Waiting for a database server: x seconds lagged' ),
776 ) );
777 }
778
779 /**
780 * Returns an array of strings with credits for the API
781 */
782 protected function getCredits() {
783 return array(
784 'API developers:',
785 ' Roan Kattouw <Firstname>.<Lastname>@home.nl (lead developer Sep 2007-present)',
786 ' Victor Vasiliev - vasilvv at gee mail dot com',
787 ' Bryan Tong Minh - bryan . tongminh @ gmail . com',
788 ' Sam Reed - sam @ reedyboy . net',
789 ' Yuri Astrakhan <Firstname><Lastname>@gmail.com (creator, lead developer Sep 2006-Sep 2007)',
790 '',
791 'Please send your comments, suggestions and questions to mediawiki-api@lists.wikimedia.org',
792 'or file a bug report at http://bugzilla.wikimedia.org/'
793 );
794 }
795 /**
796 * Sets whether the pretty-printer should format *bold* and $italics$
797 */
798 public function setHelp( $help = true ) {
799 $this->mPrinter->setHelp( $help );
800 }
801
802 /**
803 * Override the parent to generate help messages for all available modules.
804 */
805 public function makeHelpMsg() {
806 global $wgMemc, $wgAPICacheHelp, $wgAPICacheHelpTimeout;
807 $this->setHelp();
808 // Get help text from cache if present
809 $key = wfMemcKey( 'apihelp', $this->getModuleName(),
810 SpecialVersion::getVersion( 'nodb' ) .
811 $this->getMain()->getShowVersions() );
812 if ( $wgAPICacheHelp ) {
813 $cached = $wgMemc->get( $key );
814 if ( $cached ) {
815 return $cached;
816 }
817 }
818 $retval = $this->reallyMakeHelpMsg();
819 if ( $wgAPICacheHelp ) {
820 $wgMemc->set( $key, $retval, $wgAPICacheHelpTimeout );
821 }
822 return $retval;
823 }
824
825 public function reallyMakeHelpMsg() {
826 $this->setHelp();
827
828 // Use parent to make default message for the main module
829 $msg = parent::makeHelpMsg();
830
831 $astriks = str_repeat( '*** ', 10 );
832 $msg .= "\n\n$astriks Modules $astriks\n\n";
833 foreach ( $this->mModules as $moduleName => $unused ) {
834 $module = new $this->mModules[$moduleName] ( $this, $moduleName );
835 $msg .= self::makeHelpMsgHeader( $module, 'action' );
836 $msg2 = $module->makeHelpMsg();
837 if ( $msg2 !== false ) {
838 $msg .= $msg2;
839 }
840 $msg .= "\n";
841 }
842
843 $msg .= "\n$astriks Permissions $astriks\n\n";
844 foreach ( self::$mRights as $right => $rightMsg ) {
845 $groups = User::getGroupsWithPermission( $right );
846 $msg .= "* " . $right . " *\n " . wfMsgReplaceArgs( $rightMsg[ 'msg' ], $rightMsg[ 'params' ] ) .
847 "\nGranted to:\n " . str_replace( '*', 'all', implode( ', ', $groups ) ) . "\n\n";
848
849 }
850
851 $msg .= "\n$astriks Formats $astriks\n\n";
852 foreach ( $this->mFormats as $formatName => $unused ) {
853 $module = $this->createPrinterByName( $formatName );
854 $msg .= self::makeHelpMsgHeader( $module, 'format' );
855 $msg2 = $module->makeHelpMsg();
856 if ( $msg2 !== false ) {
857 $msg .= $msg2;
858 }
859 $msg .= "\n";
860 }
861
862 $msg .= "\n*** Credits: ***\n " . implode( "\n ", $this->getCredits() ) . "\n";
863
864 return $msg;
865 }
866
867 public static function makeHelpMsgHeader( $module, $paramName ) {
868 $modulePrefix = $module->getModulePrefix();
869 if ( strval( $modulePrefix ) !== '' ) {
870 $modulePrefix = "($modulePrefix) ";
871 }
872
873 return "* $paramName={$module->getModuleName()} $modulePrefix*";
874 }
875
876 private $mIsBot = null;
877 private $mIsSysop = null;
878 private $mCanApiHighLimits = null;
879
880 /**
881 * Returns true if the currently logged in user is a bot, false otherwise
882 * OBSOLETE, use canApiHighLimits() instead
883 */
884 public function isBot() {
885 if ( !isset( $this->mIsBot ) ) {
886 global $wgUser;
887 $this->mIsBot = $wgUser->isAllowed( 'bot' );
888 }
889 return $this->mIsBot;
890 }
891
892 /**
893 * Similar to isBot(), this method returns true if the logged in user is
894 * a sysop, and false if not.
895 * OBSOLETE, use canApiHighLimits() instead
896 */
897 public function isSysop() {
898 if ( !isset( $this->mIsSysop ) ) {
899 global $wgUser;
900 $this->mIsSysop = in_array( 'sysop', $wgUser->getGroups() );
901 }
902
903 return $this->mIsSysop;
904 }
905
906 /**
907 * Check whether the current user is allowed to use high limits
908 * @return bool
909 */
910 public function canApiHighLimits() {
911 if ( !isset( $this->mCanApiHighLimits ) ) {
912 global $wgUser;
913 $this->mCanApiHighLimits = $wgUser->isAllowed( 'apihighlimits' );
914 }
915
916 return $this->mCanApiHighLimits;
917 }
918
919 /**
920 * Check whether the user wants us to show version information in the API help
921 * @return bool
922 */
923 public function getShowVersions() {
924 return $this->mShowVersions;
925 }
926
927 /**
928 * Returns the version information of this file, plus it includes
929 * the versions for all files that are not callable proper API modules
930 */
931 public function getVersion() {
932 $vers = array ();
933 $vers[] = 'MediaWiki: ' . SpecialVersion::getVersion() . "\n http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/";
934 $vers[] = __CLASS__ . ': $Id$';
935 $vers[] = ApiBase::getBaseVersion();
936 $vers[] = ApiFormatBase::getBaseVersion();
937 $vers[] = ApiQueryBase::getBaseVersion();
938 return $vers;
939 }
940
941 /**
942 * Add or overwrite a module in this ApiMain instance. Intended for use by extending
943 * classes who wish to add their own modules to their lexicon or override the
944 * behavior of inherent ones.
945 *
946 * @param $mdlName String The identifier for this module.
947 * @param $mdlClass String The class where this module is implemented.
948 */
949 protected function addModule( $mdlName, $mdlClass ) {
950 $this->mModules[$mdlName] = $mdlClass;
951 }
952
953 /**
954 * Add or overwrite an output format for this ApiMain. Intended for use by extending
955 * classes who wish to add to or modify current formatters.
956 *
957 * @param $fmtName The identifier for this format.
958 * @param $fmtClass The class implementing this format.
959 */
960 protected function addFormat( $fmtName, $fmtClass ) {
961 $this->mFormats[$fmtName] = $fmtClass;
962 }
963
964 /**
965 * Get the array mapping module names to class names
966 */
967 function getModules() {
968 return $this->mModules;
969 }
970 }
971
972 /**
973 * This exception will be thrown when dieUsage is called to stop module execution.
974 * The exception handling code will print a help screen explaining how this API may be used.
975 *
976 * @ingroup API
977 */
978 class UsageException extends Exception {
979
980 private $mCodestr;
981 private $mExtraData;
982
983 public function __construct( $message, $codestr, $code = 0, $extradata = null ) {
984 parent::__construct( $message, $code );
985 $this->mCodestr = $codestr;
986 $this->mExtraData = $extradata;
987 }
988
989 public function getCodeString() {
990 return $this->mCodestr;
991 }
992
993 public function getMessageArray() {
994 $result = array(
995 'code' => $this->mCodestr,
996 'info' => $this->getMessage()
997 );
998 if ( is_array( $this->mExtraData ) ) {
999 $result = array_merge( $result, $this->mExtraData );
1000 }
1001 return $result;
1002 }
1003
1004 public function __toString() {
1005 return "{$this->getCodeString()}: {$this->getMessage()}";
1006 }
1007 }