Fix broken comma logic in r62486
[lhc/web/wiklou.git] / includes / api / ApiMain.php
1 <?php
2
3 /*
4 * Created on Sep 4, 2006
5 *
6 * API for MediaWiki 1.8+
7 *
8 * Copyright (C) 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 * http://www.gnu.org/copyleft/gpl.html
24 */
25
26 if ( !defined( 'MEDIAWIKI' ) ) {
27 // Eclipse helper - will be ignored in production
28 require_once ( 'ApiBase.php' );
29 }
30
31 /**
32 * @defgroup API API
33 */
34
35 /**
36 * This is the main API class, used for both external and internal processing.
37 * When executed, it will create the requested formatter object,
38 * instantiate and execute an object associated with the needed action,
39 * and use formatter to print results.
40 * In case of an exception, an error message will be printed using the same formatter.
41 *
42 * To use API from another application, run it using FauxRequest object, in which
43 * case any internal exceptions will not be handled but passed up to the caller.
44 * After successful execution, use getResult() for the resulting data.
45 *
46 * @ingroup API
47 */
48 class ApiMain extends ApiBase {
49
50 /**
51 * When no format parameter is given, this format will be used
52 */
53 const API_DEFAULT_FORMAT = 'xmlfm';
54
55 /**
56 * List of available modules: action name => module class
57 */
58 private static $Modules = array (
59 'login' => 'ApiLogin',
60 'logout' => 'ApiLogout',
61 'query' => 'ApiQuery',
62 'expandtemplates' => 'ApiExpandTemplates',
63 'parse' => 'ApiParse',
64 'opensearch' => 'ApiOpenSearch',
65 'feedwatchlist' => 'ApiFeedWatchlist',
66 'help' => 'ApiHelp',
67 'paraminfo' => 'ApiParamInfo',
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 'emailuser' => 'ApiEmailUser',
81 'watch' => 'ApiWatch',
82 'patrol' => 'ApiPatrol',
83 'import' => 'ApiImport',
84 'userrights' => 'ApiUserrights',
85 );
86
87 /**
88 * List of available formats: format name => format class
89 */
90 private static $Formats = array (
91 'json' => 'ApiFormatJson',
92 'jsonfm' => 'ApiFormatJson',
93 'php' => 'ApiFormatPhp',
94 'phpfm' => 'ApiFormatPhp',
95 'wddx' => 'ApiFormatWddx',
96 'wddxfm' => 'ApiFormatWddx',
97 'xml' => 'ApiFormatXml',
98 'xmlfm' => 'ApiFormatXml',
99 'yaml' => 'ApiFormatYaml',
100 'yamlfm' => 'ApiFormatYaml',
101 'rawfm' => 'ApiFormatJson',
102 'txt' => 'ApiFormatTxt',
103 'txtfm' => 'ApiFormatTxt',
104 'dbg' => 'ApiFormatDbg',
105 'dbgfm' => 'ApiFormatDbg'
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( 'writeapi' => array(
115 'msg' => 'Use of the write API',
116 'params' => array()
117 ),
118 'apihighlimits' => array(
119 '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.',
120 'params' => array ( ApiMain::LIMIT_SML2, ApiMain::LIMIT_BIG2 )
121 )
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 $mCacheControl = array( 'must-revalidate' => true );
130
131 /**
132 * Constructs an instance of ApiMain that utilizes the module and format specified by $request.
133 *
134 * @param $request object - if this is an instance of FauxRequest, errors are thrown and no printing occurs
135 * @param $enableWrite bool should be set to true if the api may modify data
136 */
137 public function __construct( $request, $enableWrite = false ) {
138
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
146 // Impose module restrictions.
147 // If the current user cannot read,
148 // Remove all modules other than login
149 global $wgUser;
150
151 if ( $request->getVal( 'callback' ) !== null ) {
152 // JSON callback allows cross-site reads.
153 // For safety, strip user credentials.
154 wfDebug( "API: stripping user credentials for JSON callback\n" );
155 $wgUser = new User();
156 }
157 }
158
159 global $wgAPIModules; // extension modules
160 $this->mModules = $wgAPIModules + self :: $Modules;
161
162 $this->mModuleNames = array_keys( $this->mModules );
163 $this->mFormats = self :: $Formats;
164 $this->mFormatNames = array_keys( $this->mFormats );
165
166 $this->mResult = new ApiResult( $this );
167 $this->mShowVersions = false;
168 $this->mEnableWrite = $enableWrite;
169
170 $this->mRequest = & $request;
171
172 $this->mSquidMaxage = - 1; // flag for executeActionWithErrorHandling()
173 $this->mCommit = false;
174 }
175
176 /**
177 * Return true if the API was started by other PHP code using FauxRequest
178 */
179 public function isInternalMode() {
180 return $this->mInternalMode;
181 }
182
183 /**
184 * Return the request object that contains client's request
185 */
186 public function getRequest() {
187 return $this->mRequest;
188 }
189
190 /**
191 * Get the ApiResult object associated with current request
192 */
193 public function getResult() {
194 return $this->mResult;
195 }
196
197 /**
198 * Get the API module object. Only works after executeAction()
199 */
200 public function getModule() {
201 return $this->mModule;
202 }
203
204 /**
205 * Only kept for backwards compatibility
206 * @deprecated Use isWriteMode() instead
207 */
208 public function requestWriteMode() {
209 if ( !$this->mEnableWrite )
210 $this->dieUsageMsg( array( 'writedisabled' ) );
211 if ( wfReadOnly() )
212 $this->dieUsageMsg( array( 'readonlytext' ) );
213 }
214
215 /**
216 * Set how long the response should be cached.
217 */
218 public function setCacheMaxAge( $maxage ) {
219 $this->setCacheControl( array(
220 'max-age' => $maxage,
221 's-maxage' => $maxage
222 ) );
223 }
224
225 /**
226 * Set directives (key/value pairs) for the Cache-Control header.
227 * Boolean values will be formatted as such, by including or omitting
228 * without an equals sign.
229 */
230 public function setCacheControl( $directives ) {
231 $this->mCacheControl = $directives + $this->mCacheControl;
232 }
233
234 /**
235 * Create an instance of an output formatter by its name
236 */
237 public function createPrinterByName( $format ) {
238 if ( !isset( $this->mFormats[$format] ) )
239 $this->dieUsage( "Unrecognized format: {$format}", 'unknown_format' );
240 return new $this->mFormats[$format] ( $this, $format );
241 }
242
243 /**
244 * Execute api request. Any errors will be handled if the API was called by the remote client.
245 */
246 public function execute() {
247 $this->profileIn();
248 if ( $this->mInternalMode )
249 $this->executeAction();
250 else
251 $this->executeActionWithErrorHandling();
252
253 $this->profileOut();
254 }
255
256 /**
257 * Execute an action, and in case of an error, erase whatever partial results
258 * have been accumulated, and replace it with an error message and a help screen.
259 */
260 protected function executeActionWithErrorHandling() {
261
262 // In case an error occurs during data output,
263 // clear the output buffer and print just the error information
264 ob_start();
265
266 try {
267 $this->executeAction();
268 } catch ( Exception $e ) {
269 // Log it
270 if ( $e instanceof MWException ) {
271 wfDebugLog( 'exception', $e->getLogMessage() );
272 }
273
274 //
275 // Handle any kind of exception by outputing properly formatted error message.
276 // If this fails, an unhandled exception should be thrown so that global error
277 // handler will process and log it.
278 //
279
280 $errCode = $this->substituteResultWithError( $e );
281
282 // Error results should not be cached
283 $this->setCacheMaxAge( 0 );
284
285 $headerStr = 'MediaWiki-API-Error: ' . $errCode;
286 if ( $e->getCode() === 0 )
287 header( $headerStr );
288 else
289 header( $headerStr, true, $e->getCode() );
290
291 // Reset and print just the error message
292 ob_clean();
293
294 // If the error occured during printing, do a printer->profileOut()
295 $this->mPrinter->safeProfileOut();
296 $this->printResult( true );
297 }
298
299 // If nobody called setCacheMaxAge(), use the (s)maxage parameters
300 if ( !isset( $this->mCacheControl['s-maxage'] ) ) {
301 $this->mCacheControl['s-maxage'] = $this->getParameter( 'smaxage' );
302 }
303 if ( !isset( $this->mCacheControl['max-age'] ) ) {
304 $this->mCacheControl['max-age'] = $this->getParameter( 'maxage' );
305 }
306
307 // Set the cache expiration at the last moment, as any errors may change the expiration.
308 // if $this->mSquidMaxage == 0, the expiry time is set to the first second of unix epoch
309 $exp = min( $this->mCacheControl['s-maxage'], $this->mCacheControl['max-age'] );
310 $expires = ( $exp == 0 ? 1 : time() + $exp );
311 header( 'Expires: ' . wfTimestamp( TS_RFC2822, $expires ) );
312
313 // Construct the Cache-Control header
314 $ccHeader = '';
315 $separator = '';
316 foreach ( $this->mCacheControl as $name => $value ) {
317 if ( is_bool( $value ) ) {
318 if ( $value ) {
319 $ccHeader .= $separator . $name;
320 $separator = ', ';
321 }
322 } else {
323 $ccHeader .= $separator . "$name=$value";
324 $separator = ', ';
325 }
326 }
327
328 header( "Cache-Control: $ccHeader" );
329
330 if ( $this->mPrinter->getIsHtml() )
331 echo wfReportTime();
332
333 ob_end_flush();
334 }
335
336 /**
337 * Replace the result data with the information about an exception.
338 * Returns the error code
339 */
340 protected function substituteResultWithError( $e ) {
341
342 // Printer may not be initialized if the extractRequestParams() fails for the main module
343 if ( !isset ( $this->mPrinter ) ) {
344 // The printer has not been created yet. Try to manually get formatter value.
345 $value = $this->getRequest()->getVal( 'format', self::API_DEFAULT_FORMAT );
346 if ( !in_array( $value, $this->mFormatNames ) )
347 $value = self::API_DEFAULT_FORMAT;
348
349 $this->mPrinter = $this->createPrinterByName( $value );
350 if ( $this->mPrinter->getNeedsRawData() )
351 $this->getResult()->setRawMode();
352 }
353
354 if ( $e instanceof UsageException ) {
355 //
356 // User entered incorrect parameters - print usage screen
357 //
358 $errMessage = $e->getMessageArray();
359
360 // Only print the help message when this is for the developer, not runtime
361 if ( $this->mPrinter->getWantsHelp() || $this->mAction == 'help' )
362 ApiResult :: setContent( $errMessage, $this->makeHelpMsg() );
363
364 } else {
365 global $wgShowSQLErrors, $wgShowExceptionDetails;
366 //
367 // Something is seriously wrong
368 //
369 if ( ( $e instanceof DBQueryError ) && !$wgShowSQLErrors ) {
370 $info = "Database query error";
371 } else {
372 $info = "Exception Caught: {$e->getMessage()}";
373 }
374
375 $errMessage = array (
376 'code' => 'internal_api_error_' . get_class( $e ),
377 'info' => $info,
378 );
379 ApiResult :: setContent( $errMessage, $wgShowExceptionDetails ? "\n\n{$e->getTraceAsString()}\n\n" : "" );
380 }
381
382 $this->getResult()->reset();
383 $this->getResult()->disableSizeCheck();
384 // Re-add the id
385 $requestid = $this->getParameter( 'requestid' );
386 if ( !is_null( $requestid ) )
387 $this->getResult()->addValue( null, 'requestid', $requestid );
388 $this->getResult()->addValue( null, 'error', $errMessage );
389
390 return $errMessage['code'];
391 }
392
393 /**
394 * Execute the actual module, without any error handling
395 */
396 protected function executeAction() {
397 // First add the id to the top element
398 $requestid = $this->getParameter( 'requestid' );
399 if ( !is_null( $requestid ) )
400 $this->getResult()->addValue( null, 'requestid', $requestid );
401
402 $params = $this->extractRequestParams();
403
404 $this->mShowVersions = $params['version'];
405 $this->mAction = $params['action'];
406
407 if ( !is_string( $this->mAction ) ) {
408 $this->dieUsage( "The API requires a valid action parameter", 'unknown_action' );
409 }
410
411 // Instantiate the module requested by the user
412 $module = new $this->mModules[$this->mAction] ( $this, $this->mAction );
413 $this->mModule = $module;
414
415 //Die if token required, but not provided (unless there is a gettoken parameter)
416 if ( $module->requiresToken() && !isset( $params['token'] ) && isset( $params['gettoken'] ) )
417 $this->dieUsageMsg( array( 'missingparam', 'token' ) );
418
419 if ( $module->shouldCheckMaxlag() && isset( $params['maxlag'] ) ) {
420 // Check for maxlag
421 global $wgShowHostnames;
422 $maxLag = $params['maxlag'];
423 list( $host, $lag ) = wfGetLB()->getMaxLag();
424 if ( $lag > $maxLag ) {
425 header( 'Retry-After: ' . max( intval( $maxLag ), 5 ) );
426 header( 'X-Database-Lag: ' . intval( $lag ) );
427 if ( $wgShowHostnames ) {
428 $this->dieUsage( "Waiting for $host: $lag seconds lagged", 'maxlag' );
429 } else {
430 $this->dieUsage( "Waiting for a database server: $lag seconds lagged", 'maxlag' );
431 }
432 return;
433 }
434 }
435
436 global $wgUser, $wgGroupPermissions;
437 if ( $module->isReadMode() && !$wgGroupPermissions['*']['read'] && !$wgUser->isAllowed( 'read' ) )
438 $this->dieUsageMsg( array( 'readrequired' ) );
439 if ( $module->isWriteMode() ) {
440 if ( !$this->mEnableWrite )
441 $this->dieUsageMsg( array( 'writedisabled' ) );
442 if ( !$wgUser->isAllowed( 'writeapi' ) )
443 $this->dieUsageMsg( array( 'writerequired' ) );
444 if ( wfReadOnly() )
445 $this->dieReadOnly();
446 }
447
448 if ( !$this->mInternalMode ) {
449 // Ignore mustBePosted() for internal calls
450 if ( $module->mustBePosted() && !$this->mRequest->wasPosted() )
451 $this->dieUsageMsg( array ( 'mustbeposted', $this->mAction ) );
452
453 // See if custom printer is used
454 $this->mPrinter = $module->getCustomPrinter();
455 if ( is_null( $this->mPrinter ) ) {
456 // Create an appropriate printer
457 $this->mPrinter = $this->createPrinterByName( $params['format'] );
458 }
459
460 if ( $this->mPrinter->getNeedsRawData() )
461 $this->getResult()->setRawMode();
462 }
463
464 // Execute
465 $module->profileIn();
466 $module->execute();
467 wfRunHooks( 'APIAfterExecute', array( &$module ) );
468 $module->profileOut();
469
470 if ( !$this->mInternalMode ) {
471 // Print result data
472 $this->printResult( false );
473 }
474 }
475
476 /**
477 * Print results using the current printer
478 */
479 protected function printResult( $isError ) {
480 $this->getResult()->cleanUpUTF8();
481 $printer = $this->mPrinter;
482 $printer->profileIn();
483
484 /* If the help message is requested in the default (xmlfm) format,
485 * tell the printer not to escape ampersands so that our links do
486 * not break. */
487 $printer->setUnescapeAmps ( ( $this->mAction == 'help' || $isError )
488 && $printer->getFormat() == 'XML' && $printer->getIsHtml() );
489
490 $printer->initPrinter( $isError );
491
492 $printer->execute();
493 $printer->closePrinter();
494 $printer->profileOut();
495 }
496
497 public function isReadMode() {
498 return false;
499 }
500
501 /**
502 * See ApiBase for description.
503 */
504 public function getAllowedParams() {
505 return array (
506 'format' => array (
507 ApiBase :: PARAM_DFLT => ApiMain :: API_DEFAULT_FORMAT,
508 ApiBase :: PARAM_TYPE => $this->mFormatNames
509 ),
510 'action' => array (
511 ApiBase :: PARAM_DFLT => 'help',
512 ApiBase :: PARAM_TYPE => $this->mModuleNames
513 ),
514 'version' => false,
515 'maxlag' => array (
516 ApiBase :: PARAM_TYPE => 'integer'
517 ),
518 'smaxage' => array (
519 ApiBase :: PARAM_TYPE => 'integer',
520 ApiBase :: PARAM_DFLT => 0
521 ),
522 'maxage' => array (
523 ApiBase :: PARAM_TYPE => 'integer',
524 ApiBase :: PARAM_DFLT => 0
525 ),
526 'requestid' => null,
527 );
528 }
529
530 /**
531 * See ApiBase for description.
532 */
533 public function getParamDescription() {
534 return array (
535 'format' => 'The format of the output',
536 'action' => 'What action you would like to perform',
537 'version' => 'When showing help, include version for each module',
538 'maxlag' => 'Maximum lag',
539 'smaxage' => 'Set the s-maxage header to this many seconds. Errors are never cached',
540 'maxage' => 'Set the max-age header to this many seconds. Errors are never cached',
541 'requestid' => 'Request ID to distinguish requests. This will just be output back to you',
542 );
543 }
544
545 /**
546 * See ApiBase for description.
547 */
548 public function getDescription() {
549 return array (
550 '',
551 '',
552 '******************************************************************',
553 '** **',
554 '** This is an auto-generated MediaWiki API documentation page **',
555 '** **',
556 '** Documentation and Examples: **',
557 '** http://www.mediawiki.org/wiki/API **',
558 '** **',
559 '******************************************************************',
560 '',
561 'Status: All features shown on this page should be working, but the API',
562 ' is still in active development, and may change at any time.',
563 ' Make sure to monitor our mailing list for any updates.',
564 '',
565 'Documentation: http://www.mediawiki.org/wiki/API',
566 'Mailing list: http://lists.wikimedia.org/mailman/listinfo/mediawiki-api',
567 'Bugs & Requests: http://bugzilla.wikimedia.org/buglist.cgi?component=API&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&order=bugs.delta_ts',
568 '',
569 '',
570 '',
571 '',
572 '',
573 );
574 }
575
576 public function getPossibleErrors() {
577 return array_merge( parent::getPossibleErrors(), array(
578 array( 'readonlytext' ),
579 array( 'code' => 'unknown_format', 'info' => 'Unrecognized format: format' ),
580 array( 'code' => 'unknown_action', 'info' => 'The API requires a valid action parameter' ),
581 array( 'code' => 'maxlag', 'info' => 'Waiting for host: x seconds lagged' ),
582 array( 'code' => 'maxlag', 'info' => 'Waiting for a database server: x seconds lagged' ),
583 ) );
584 }
585
586 /**
587 * Returns an array of strings with credits for the API
588 */
589 protected function getCredits() {
590 return array(
591 'API developers:',
592 ' Roan Kattouw <Firstname>.<Lastname>@home.nl (lead developer Sep 2007-present)',
593 ' Victor Vasiliev - vasilvv at gee mail dot com',
594 ' Bryan Tong Minh - bryan . tongminh @ gmail . com',
595 ' Sam Reed - sam @ reedyboy . net',
596 ' Yuri Astrakhan <Firstname><Lastname>@gmail.com (creator, lead developer Sep 2006-Sep 2007)',
597 '',
598 'Please send your comments, suggestions and questions to mediawiki-api@lists.wikimedia.org',
599 'or file a bug report at http://bugzilla.wikimedia.org/'
600 );
601 }
602
603 /**
604 * Override the parent to generate help messages for all available modules.
605 */
606 public function makeHelpMsg() {
607 global $wgMemc, $wgAPICacheHelp, $wgAPICacheHelpTimeout;
608 $this->mPrinter->setHelp();
609 // Get help text from cache if present
610 $key = wfMemcKey( 'apihelp', $this->getModuleName(),
611 SpecialVersion::getVersion( 'nodb' ) .
612 $this->getMain()->getShowVersions() );
613 if ( $wgAPICacheHelp ) {
614 $cached = $wgMemc->get( $key );
615 if ( $cached )
616 return $cached;
617 }
618 $retval = $this->reallyMakeHelpMsg();
619 if ( $wgAPICacheHelp )
620 $wgMemc->set( $key, $retval, $wgAPICacheHelpTimeout );
621 return $retval;
622 }
623
624 public function reallyMakeHelpMsg() {
625
626 $this->mPrinter->setHelp();
627
628 // Use parent to make default message for the main module
629 $msg = parent :: makeHelpMsg();
630
631 $astriks = str_repeat( '*** ', 10 );
632 $msg .= "\n\n$astriks Modules $astriks\n\n";
633 foreach ( $this->mModules as $moduleName => $unused ) {
634 $module = new $this->mModules[$moduleName] ( $this, $moduleName );
635 $msg .= self::makeHelpMsgHeader( $module, 'action' );
636 $msg2 = $module->makeHelpMsg();
637 if ( $msg2 !== false )
638 $msg .= $msg2;
639 $msg .= "\n";
640 }
641
642 $msg .= "\n$astriks Permissions $astriks\n\n";
643 foreach ( self :: $mRights as $right => $rightMsg ) {
644 $groups = User::getGroupsWithPermission( $right );
645 $msg .= "* " . $right . " *\n " . wfMsgReplaceArgs( $rightMsg[ 'msg' ], $rightMsg[ 'params' ] ) .
646 "\nGranted to:\n " . str_replace( "*", "all", implode( ", ", $groups ) ) . "\n";
647
648 }
649
650 $msg .= "\n$astriks Formats $astriks\n\n";
651 foreach ( $this->mFormats as $formatName => $unused ) {
652 $module = $this->createPrinterByName( $formatName );
653 $msg .= self::makeHelpMsgHeader( $module, 'format' );
654 $msg2 = $module->makeHelpMsg();
655 if ( $msg2 !== false )
656 $msg .= $msg2;
657 $msg .= "\n";
658 }
659
660 $msg .= "\n*** Credits: ***\n " . implode( "\n ", $this->getCredits() ) . "\n";
661
662
663 return $msg;
664 }
665
666 public static function makeHelpMsgHeader( $module, $paramName ) {
667 $modulePrefix = $module->getModulePrefix();
668 if ( strval( $modulePrefix ) !== '' )
669 $modulePrefix = "($modulePrefix) ";
670
671 return "* $paramName={$module->getModuleName()} $modulePrefix*";
672 }
673
674 private $mIsBot = null;
675 private $mIsSysop = null;
676 private $mCanApiHighLimits = null;
677
678 /**
679 * Returns true if the currently logged in user is a bot, false otherwise
680 * OBSOLETE, use canApiHighLimits() instead
681 */
682 public function isBot() {
683 if ( !isset ( $this->mIsBot ) ) {
684 global $wgUser;
685 $this->mIsBot = $wgUser->isAllowed( 'bot' );
686 }
687 return $this->mIsBot;
688 }
689
690 /**
691 * Similar to isBot(), this method returns true if the logged in user is
692 * a sysop, and false if not.
693 * OBSOLETE, use canApiHighLimits() instead
694 */
695 public function isSysop() {
696 if ( !isset ( $this->mIsSysop ) ) {
697 global $wgUser;
698 $this->mIsSysop = in_array( 'sysop', $wgUser->getGroups() );
699 }
700
701 return $this->mIsSysop;
702 }
703
704 /**
705 * Check whether the current user is allowed to use high limits
706 * @return bool
707 */
708 public function canApiHighLimits() {
709 if ( !isset( $this->mCanApiHighLimits ) ) {
710 global $wgUser;
711 $this->mCanApiHighLimits = $wgUser->isAllowed( 'apihighlimits' );
712 }
713
714 return $this->mCanApiHighLimits;
715 }
716
717 /**
718 * Check whether the user wants us to show version information in the API help
719 * @return bool
720 */
721 public function getShowVersions() {
722 return $this->mShowVersions;
723 }
724
725 /**
726 * Returns the version information of this file, plus it includes
727 * the versions for all files that are not callable proper API modules
728 */
729 public function getVersion() {
730 $vers = array ();
731 $vers[] = 'MediaWiki: ' . SpecialVersion::getVersion() . "\n http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/";
732 $vers[] = __CLASS__ . ': $Id$';
733 $vers[] = ApiBase :: getBaseVersion();
734 $vers[] = ApiFormatBase :: getBaseVersion();
735 $vers[] = ApiQueryBase :: getBaseVersion();
736 return $vers;
737 }
738
739 /**
740 * Add or overwrite a module in this ApiMain instance. Intended for use by extending
741 * classes who wish to add their own modules to their lexicon or override the
742 * behavior of inherent ones.
743 *
744 * @access protected
745 * @param $mdlName String The identifier for this module.
746 * @param $mdlClass String The class where this module is implemented.
747 */
748 protected function addModule( $mdlName, $mdlClass ) {
749 $this->mModules[$mdlName] = $mdlClass;
750 }
751
752 /**
753 * Add or overwrite an output format for this ApiMain. Intended for use by extending
754 * classes who wish to add to or modify current formatters.
755 *
756 * @access protected
757 * @param $fmtName The identifier for this format.
758 * @param $fmtClass The class implementing this format.
759 */
760 protected function addFormat( $fmtName, $fmtClass ) {
761 $this->mFormats[$fmtName] = $fmtClass;
762 }
763
764 /**
765 * Get the array mapping module names to class names
766 */
767 function getModules() {
768 return $this->mModules;
769 }
770 }
771
772 /**
773 * This exception will be thrown when dieUsage is called to stop module execution.
774 * The exception handling code will print a help screen explaining how this API may be used.
775 *
776 * @ingroup API
777 */
778 class UsageException extends Exception {
779
780 private $mCodestr;
781 private $mExtraData;
782
783 public function __construct( $message, $codestr, $code = 0, $extradata = null ) {
784 parent :: __construct( $message, $code );
785 $this->mCodestr = $codestr;
786 $this->mExtraData = $extradata;
787 }
788 public function getCodeString() {
789 return $this->mCodestr;
790 }
791 public function getMessageArray() {
792 $result = array (
793 'code' => $this->mCodestr,
794 'info' => $this->getMessage()
795 );
796 if ( is_array( $this->mExtraData ) )
797 $result = array_merge( $result, $this->mExtraData );
798 return $result;
799 }
800 public function __toString() {
801 return "{$this->getCodeString()}: {$this->getMessage()}";
802 }
803 }