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