Merge "Hide TOC with CSS instead of JavaScript"
[lhc/web/wiklou.git] / includes / api / ApiHelp.php
1 <?php
2 /**
3 * Copyright © 2014 Wikimedia Foundation and contributors
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 use HtmlFormatter\HtmlFormatter;
24 use MediaWiki\MediaWikiServices;
25
26 /**
27 * Class to output help for an API module
28 *
29 * @since 1.25 completely rewritten
30 * @ingroup API
31 */
32 class ApiHelp extends ApiBase {
33 public function execute() {
34 $params = $this->extractRequestParams();
35 $modules = [];
36
37 foreach ( $params['modules'] as $path ) {
38 $modules[] = $this->getModuleFromPath( $path );
39 }
40
41 // Get the help
42 $context = new DerivativeContext( $this->getMain()->getContext() );
43 $context->setSkin( SkinFactory::getDefaultInstance()->makeSkin( 'apioutput' ) );
44 $context->setLanguage( $this->getMain()->getLanguage() );
45 $context->setTitle( SpecialPage::getTitleFor( 'ApiHelp' ) );
46 $out = new OutputPage( $context );
47 $out->setCopyrightUrl( 'https://www.mediawiki.org/wiki/Special:MyLanguage/Copyright' );
48 $context->setOutput( $out );
49
50 self::getHelp( $context, $modules, $params );
51
52 // Grab the output from the skin
53 ob_start();
54 $context->getOutput()->output();
55 $html = ob_get_clean();
56
57 $result = $this->getResult();
58 if ( $params['wrap'] ) {
59 $data = [
60 'mime' => 'text/html',
61 'filename' => 'api-help.html',
62 'help' => $html,
63 ];
64 ApiResult::setSubelementsList( $data, 'help' );
65 $result->addValue( null, $this->getModuleName(), $data );
66 } else {
67 $result->reset();
68 $result->addValue( null, 'text', $html, ApiResult::NO_SIZE_CHECK );
69 $result->addValue( null, 'mime', 'text/html', ApiResult::NO_SIZE_CHECK );
70 $result->addValue( null, 'filename', 'api-help.html', ApiResult::NO_SIZE_CHECK );
71 }
72 }
73
74 /**
75 * Generate help for the specified modules
76 *
77 * Help is placed into the OutputPage object returned by
78 * $context->getOutput().
79 *
80 * Recognized options include:
81 * - headerlevel: (int) Header tag level
82 * - nolead: (bool) Skip the inclusion of api-help-lead
83 * - noheader: (bool) Skip the inclusion of the top-level section headers
84 * - submodules: (bool) Include help for submodules of the current module
85 * - recursivesubmodules: (bool) Include help for submodules recursively
86 * - helptitle: (string) Title to link for additional modules' help. Should contain $1.
87 * - toc: (bool) Include a table of contents
88 *
89 * @param IContextSource $context
90 * @param ApiBase[]|ApiBase $modules
91 * @param array $options Formatting options (described above)
92 */
93 public static function getHelp( IContextSource $context, $modules, array $options ) {
94 global $wgContLang;
95
96 if ( !is_array( $modules ) ) {
97 $modules = [ $modules ];
98 }
99
100 $out = $context->getOutput();
101 $out->addModuleStyles( [
102 'mediawiki.hlist',
103 'mediawiki.apihelp',
104 ] );
105 if ( !empty( $options['toc'] ) ) {
106 $out->addModules( 'mediawiki.toc' );
107 $out->addModuleStyles( 'mediawiki.toc.styles' );
108 }
109 $out->setPageTitle( $context->msg( 'api-help-title' ) );
110
111 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
112 $cacheKey = null;
113 if ( count( $modules ) == 1 && $modules[0] instanceof ApiMain &&
114 $options['recursivesubmodules'] && $context->getLanguage() === $wgContLang
115 ) {
116 $cacheHelpTimeout = $context->getConfig()->get( 'APICacheHelpTimeout' );
117 if ( $cacheHelpTimeout > 0 ) {
118 // Get help text from cache if present
119 $cacheKey = $cache->makeKey( 'apihelp', $modules[0]->getModulePath(),
120 (int)!empty( $options['toc'] ),
121 str_replace( ' ', '_', SpecialVersion::getVersion( 'nodb' ) ) );
122 $cached = $cache->get( $cacheKey );
123 if ( $cached ) {
124 $out->addHTML( $cached );
125 return;
126 }
127 }
128 }
129 if ( $out->getHTML() !== '' ) {
130 // Don't save to cache, there's someone else's content in the page
131 // already
132 $cacheKey = null;
133 }
134
135 $options['recursivesubmodules'] = !empty( $options['recursivesubmodules'] );
136 $options['submodules'] = $options['recursivesubmodules'] || !empty( $options['submodules'] );
137
138 // Prepend lead
139 if ( empty( $options['nolead'] ) ) {
140 $msg = $context->msg( 'api-help-lead' );
141 if ( !$msg->isDisabled() ) {
142 $out->addHTML( $msg->parseAsBlock() );
143 }
144 }
145
146 $haveModules = [];
147 $html = self::getHelpInternal( $context, $modules, $options, $haveModules );
148 if ( !empty( $options['toc'] ) && $haveModules ) {
149 $out->addHTML( Linker::generateTOC( $haveModules, $context->getLanguage() ) );
150 }
151 $out->addHTML( $html );
152
153 $helptitle = $options['helptitle'] ?? null;
154 $html = self::fixHelpLinks( $out->getHTML(), $helptitle, $haveModules );
155 $out->clearHTML();
156 $out->addHTML( $html );
157
158 if ( $cacheKey !== null ) {
159 $cache->set( $cacheKey, $out->getHTML(), $cacheHelpTimeout );
160 }
161 }
162
163 /**
164 * Replace Special:ApiHelp links with links to api.php
165 *
166 * @param string $html
167 * @param string|null $helptitle Title to link to rather than api.php, must contain '$1'
168 * @param array $localModules Keys are modules to link within the current page, values are ignored
169 * @return string
170 */
171 public static function fixHelpLinks( $html, $helptitle = null, $localModules = [] ) {
172 $formatter = new HtmlFormatter( $html );
173 $doc = $formatter->getDoc();
174 $xpath = new DOMXPath( $doc );
175 $nodes = $xpath->query( '//a[@href][not(contains(@class,\'apihelp-linktrail\'))]' );
176 foreach ( $nodes as $node ) {
177 $href = $node->getAttribute( 'href' );
178 do {
179 $old = $href;
180 $href = rawurldecode( $href );
181 } while ( $old !== $href );
182 if ( preg_match( '!Special:ApiHelp/([^&/|#]+)((?:#.*)?)!', $href, $m ) ) {
183 if ( isset( $localModules[$m[1]] ) ) {
184 $href = $m[2] === '' ? '#' . $m[1] : $m[2];
185 } elseif ( $helptitle !== null ) {
186 $href = Title::newFromText( str_replace( '$1', $m[1], $helptitle ) . $m[2] )
187 ->getFullURL();
188 } else {
189 $href = wfAppendQuery( wfScript( 'api' ), [
190 'action' => 'help',
191 'modules' => $m[1],
192 ] ) . $m[2];
193 }
194 $node->setAttribute( 'href', $href );
195 $node->removeAttribute( 'title' );
196 }
197 }
198
199 return $formatter->getText();
200 }
201
202 /**
203 * Wrap a message in HTML with a class.
204 *
205 * @param Message $msg
206 * @param string $class
207 * @param string $tag
208 * @return string
209 */
210 private static function wrap( Message $msg, $class, $tag = 'span' ) {
211 return Html::rawElement( $tag, [ 'class' => $class ],
212 $msg->parse()
213 );
214 }
215
216 /**
217 * Recursively-called function to actually construct the help
218 *
219 * @param IContextSource $context
220 * @param ApiBase[] $modules
221 * @param array $options
222 * @param array &$haveModules
223 * @return string
224 */
225 private static function getHelpInternal( IContextSource $context, array $modules,
226 array $options, &$haveModules
227 ) {
228 $out = '';
229
230 $level = empty( $options['headerlevel'] ) ? 2 : $options['headerlevel'];
231 if ( empty( $options['tocnumber'] ) ) {
232 $tocnumber = [ 2 => 0 ];
233 } else {
234 $tocnumber = &$options['tocnumber'];
235 }
236
237 foreach ( $modules as $module ) {
238 $tocnumber[$level]++;
239 $path = $module->getModulePath();
240 $module->setContext( $context );
241 $help = [
242 'header' => '',
243 'flags' => '',
244 'description' => '',
245 'help-urls' => '',
246 'parameters' => '',
247 'examples' => '',
248 'submodules' => '',
249 ];
250
251 if ( empty( $options['noheader'] ) || !empty( $options['toc'] ) ) {
252 $anchor = $path;
253 $i = 1;
254 while ( isset( $haveModules[$anchor] ) ) {
255 $anchor = $path . '|' . ++$i;
256 }
257
258 if ( $module->isMain() ) {
259 $headerContent = $context->msg( 'api-help-main-header' )->parse();
260 $headerAttr = [
261 'class' => 'apihelp-header',
262 ];
263 } else {
264 $name = $module->getModuleName();
265 $headerContent = $module->getParent()->getModuleManager()->getModuleGroup( $name ) .
266 "=$name";
267 if ( $module->getModulePrefix() !== '' ) {
268 $headerContent .= ' ' .
269 $context->msg( 'parentheses', $module->getModulePrefix() )->parse();
270 }
271 // Module names are always in English and not localized,
272 // so English language and direction must be set explicitly,
273 // otherwise parentheses will get broken in RTL wikis
274 $headerAttr = [
275 'class' => 'apihelp-header apihelp-module-name',
276 'dir' => 'ltr',
277 'lang' => 'en',
278 ];
279 }
280
281 $headerAttr['id'] = $anchor;
282
283 $haveModules[$anchor] = [
284 'toclevel' => count( $tocnumber ),
285 'level' => $level,
286 'anchor' => $anchor,
287 'line' => $headerContent,
288 'number' => implode( '.', $tocnumber ),
289 'index' => false,
290 ];
291 if ( empty( $options['noheader'] ) ) {
292 $help['header'] .= Html::element(
293 'h' . min( 6, $level ),
294 $headerAttr,
295 $headerContent
296 );
297 }
298 } else {
299 $haveModules[$path] = true;
300 }
301
302 $links = [];
303 $any = false;
304 for ( $m = $module; $m !== null; $m = $m->getParent() ) {
305 $name = $m->getModuleName();
306 if ( $name === 'main_int' ) {
307 $name = 'main';
308 }
309
310 if ( count( $modules ) === 1 && $m === $modules[0] &&
311 !( !empty( $options['submodules'] ) && $m->getModuleManager() )
312 ) {
313 $link = Html::element( 'b', [ 'dir' => 'ltr', 'lang' => 'en' ], $name );
314 } else {
315 $link = SpecialPage::getTitleFor( 'ApiHelp', $m->getModulePath() )->getLocalURL();
316 $link = Html::element( 'a',
317 [ 'href' => $link, 'class' => 'apihelp-linktrail', 'dir' => 'ltr', 'lang' => 'en' ],
318 $name
319 );
320 $any = true;
321 }
322 array_unshift( $links, $link );
323 }
324 if ( $any ) {
325 $help['header'] .= self::wrap(
326 $context->msg( 'parentheses' )
327 ->rawParams( $context->getLanguage()->pipeList( $links ) ),
328 'apihelp-linktrail', 'div'
329 );
330 }
331
332 $flags = $module->getHelpFlags();
333 $help['flags'] .= Html::openElement( 'div',
334 [ 'class' => 'apihelp-block apihelp-flags' ] );
335 $msg = $context->msg( 'api-help-flags' );
336 if ( !$msg->isDisabled() ) {
337 $help['flags'] .= self::wrap(
338 $msg->numParams( count( $flags ) ), 'apihelp-block-head', 'div'
339 );
340 }
341 $help['flags'] .= Html::openElement( 'ul' );
342 foreach ( $flags as $flag ) {
343 $help['flags'] .= Html::rawElement( 'li', null,
344 self::wrap( $context->msg( "api-help-flag-$flag" ), "apihelp-flag-$flag" )
345 );
346 }
347 $sourceInfo = $module->getModuleSourceInfo();
348 if ( $sourceInfo ) {
349 if ( isset( $sourceInfo['namemsg'] ) ) {
350 $extname = $context->msg( $sourceInfo['namemsg'] )->text();
351 } else {
352 // Probably English, so wrap it.
353 $extname = Html::element( 'span', [ 'dir' => 'ltr', 'lang' => 'en' ], $sourceInfo['name'] );
354 }
355 $help['flags'] .= Html::rawElement( 'li', null,
356 self::wrap(
357 $context->msg( 'api-help-source', $extname, $sourceInfo['name'] ),
358 'apihelp-source'
359 )
360 );
361
362 $link = SpecialPage::getTitleFor( 'Version', 'License/' . $sourceInfo['name'] );
363 if ( isset( $sourceInfo['license-name'] ) ) {
364 $msg = $context->msg( 'api-help-license', $link,
365 Html::element( 'span', [ 'dir' => 'ltr', 'lang' => 'en' ], $sourceInfo['license-name'] )
366 );
367 } elseif ( SpecialVersion::getExtLicenseFileName( dirname( $sourceInfo['path'] ) ) ) {
368 $msg = $context->msg( 'api-help-license-noname', $link );
369 } else {
370 $msg = $context->msg( 'api-help-license-unknown' );
371 }
372 $help['flags'] .= Html::rawElement( 'li', null,
373 self::wrap( $msg, 'apihelp-license' )
374 );
375 } else {
376 $help['flags'] .= Html::rawElement( 'li', null,
377 self::wrap( $context->msg( 'api-help-source-unknown' ), 'apihelp-source' )
378 );
379 $help['flags'] .= Html::rawElement( 'li', null,
380 self::wrap( $context->msg( 'api-help-license-unknown' ), 'apihelp-license' )
381 );
382 }
383 $help['flags'] .= Html::closeElement( 'ul' );
384 $help['flags'] .= Html::closeElement( 'div' );
385
386 foreach ( $module->getFinalDescription() as $msg ) {
387 $msg->setContext( $context );
388 $help['description'] .= $msg->parseAsBlock();
389 }
390
391 $urls = $module->getHelpUrls();
392 if ( $urls ) {
393 $help['help-urls'] .= Html::openElement( 'div',
394 [ 'class' => 'apihelp-block apihelp-help-urls' ]
395 );
396 $msg = $context->msg( 'api-help-help-urls' );
397 if ( !$msg->isDisabled() ) {
398 $help['help-urls'] .= self::wrap(
399 $msg->numParams( count( $urls ) ), 'apihelp-block-head', 'div'
400 );
401 }
402 if ( !is_array( $urls ) ) {
403 $urls = [ $urls ];
404 }
405 $help['help-urls'] .= Html::openElement( 'ul' );
406 foreach ( $urls as $url ) {
407 $help['help-urls'] .= Html::rawElement( 'li', null,
408 Html::element( 'a', [ 'href' => $url, 'dir' => 'ltr' ], $url )
409 );
410 }
411 $help['help-urls'] .= Html::closeElement( 'ul' );
412 $help['help-urls'] .= Html::closeElement( 'div' );
413 }
414
415 $params = $module->getFinalParams( ApiBase::GET_VALUES_FOR_HELP );
416 $dynamicParams = $module->dynamicParameterDocumentation();
417 $groups = [];
418 if ( $params || $dynamicParams !== null ) {
419 $help['parameters'] .= Html::openElement( 'div',
420 [ 'class' => 'apihelp-block apihelp-parameters' ]
421 );
422 $msg = $context->msg( 'api-help-parameters' );
423 if ( !$msg->isDisabled() ) {
424 $help['parameters'] .= self::wrap(
425 $msg->numParams( count( $params ) ), 'apihelp-block-head', 'div'
426 );
427 }
428 $help['parameters'] .= Html::openElement( 'dl' );
429
430 $descriptions = $module->getFinalParamDescription();
431
432 foreach ( $params as $name => $settings ) {
433 if ( !is_array( $settings ) ) {
434 $settings = [ ApiBase::PARAM_DFLT => $settings ];
435 }
436
437 $help['parameters'] .= Html::rawElement( 'dt', null,
438 Html::element( 'span', [ 'dir' => 'ltr', 'lang' => 'en' ], $module->encodeParamName( $name ) )
439 );
440
441 // Add description
442 $description = [];
443 if ( isset( $descriptions[$name] ) ) {
444 foreach ( $descriptions[$name] as $msg ) {
445 $msg->setContext( $context );
446 $description[] = $msg->parseAsBlock();
447 }
448 }
449
450 // Add usage info
451 $info = [];
452
453 // Required?
454 if ( !empty( $settings[ApiBase::PARAM_REQUIRED] ) ) {
455 $info[] = $context->msg( 'api-help-param-required' )->parse();
456 }
457
458 // Custom info?
459 if ( !empty( $settings[ApiBase::PARAM_HELP_MSG_INFO] ) ) {
460 foreach ( $settings[ApiBase::PARAM_HELP_MSG_INFO] as $i ) {
461 $tag = array_shift( $i );
462 $info[] = $context->msg( "apihelp-{$path}-paraminfo-{$tag}" )
463 ->numParams( count( $i ) )
464 ->params( $context->getLanguage()->commaList( $i ) )
465 ->params( $module->getModulePrefix() )
466 ->parse();
467 }
468 }
469
470 // Templated?
471 if ( !empty( $settings[ApiBase::PARAM_TEMPLATE_VARS] ) ) {
472 $vars = [];
473 $msg = 'api-help-param-templated-var-first';
474 foreach ( $settings[ApiBase::PARAM_TEMPLATE_VARS] as $k => $v ) {
475 $vars[] = $context->msg( $msg, $k, $module->encodeParamName( $v ) );
476 $msg = 'api-help-param-templated-var';
477 }
478 $info[] = $context->msg( 'api-help-param-templated' )
479 ->numParams( count( $vars ) )
480 ->params( Message::listParam( $vars ) )
481 ->parse();
482 }
483
484 // Type documentation
485 if ( !isset( $settings[ApiBase::PARAM_TYPE] ) ) {
486 $dflt = $settings[ApiBase::PARAM_DFLT] ?? null;
487 if ( is_bool( $dflt ) ) {
488 $settings[ApiBase::PARAM_TYPE] = 'boolean';
489 } elseif ( is_string( $dflt ) || is_null( $dflt ) ) {
490 $settings[ApiBase::PARAM_TYPE] = 'string';
491 } elseif ( is_int( $dflt ) ) {
492 $settings[ApiBase::PARAM_TYPE] = 'integer';
493 }
494 }
495 if ( isset( $settings[ApiBase::PARAM_TYPE] ) ) {
496 $type = $settings[ApiBase::PARAM_TYPE];
497 $multi = !empty( $settings[ApiBase::PARAM_ISMULTI] );
498 $hintPipeSeparated = true;
499 $count = !empty( $settings[ApiBase::PARAM_ISMULTI_LIMIT2] )
500 ? $settings[ApiBase::PARAM_ISMULTI_LIMIT2] + 1
501 : ApiBase::LIMIT_SML2 + 1;
502
503 if ( is_array( $type ) ) {
504 $count = count( $type );
505 $deprecatedValues = $settings[ApiBase::PARAM_DEPRECATED_VALUES] ?? [];
506 $links = $settings[ApiBase::PARAM_VALUE_LINKS] ?? [];
507 $values = array_map( function ( $v ) use ( $links, $deprecatedValues ) {
508 $attr = [];
509 if ( $v !== '' ) {
510 // We can't know whether this contains LTR or RTL text.
511 $attr['dir'] = 'auto';
512 }
513 if ( isset( $deprecatedValues[$v] ) ) {
514 $attr['class'] = 'apihelp-deprecated-value';
515 }
516 $ret = $attr ? Html::element( 'span', $attr, $v ) : $v;
517 if ( isset( $links[$v] ) ) {
518 $ret = "[[{$links[$v]}|$ret]]";
519 }
520 return $ret;
521 }, $type );
522 $i = array_search( '', $type, true );
523 if ( $i === false ) {
524 $values = $context->getLanguage()->commaList( $values );
525 } else {
526 unset( $values[$i] );
527 $values = $context->msg( 'api-help-param-list-can-be-empty' )
528 ->numParams( count( $values ) )
529 ->params( $context->getLanguage()->commaList( $values ) )
530 ->parse();
531 }
532 $info[] = $context->msg( 'api-help-param-list' )
533 ->params( $multi ? 2 : 1 )
534 ->params( $values )
535 ->parse();
536 $hintPipeSeparated = false;
537 } else {
538 switch ( $type ) {
539 case 'submodule':
540 $groups[] = $name;
541
542 if ( isset( $settings[ApiBase::PARAM_SUBMODULE_MAP] ) ) {
543 $map = $settings[ApiBase::PARAM_SUBMODULE_MAP];
544 $defaultAttrs = [];
545 } else {
546 $prefix = $module->isMain() ? '' : ( $module->getModulePath() . '+' );
547 $map = [];
548 foreach ( $module->getModuleManager()->getNames( $name ) as $submoduleName ) {
549 $map[$submoduleName] = $prefix . $submoduleName;
550 }
551 $defaultAttrs = [ 'dir' => 'ltr', 'lang' => 'en' ];
552 }
553 ksort( $map );
554
555 $submodules = [];
556 $deprecatedSubmodules = [];
557 foreach ( $map as $v => $m ) {
558 $attrs = $defaultAttrs;
559 $arr = &$submodules;
560 try {
561 $submod = $module->getModuleFromPath( $m );
562 if ( $submod ) {
563 if ( $submod->isDeprecated() ) {
564 $arr = &$deprecatedSubmodules;
565 $attrs['class'] = 'apihelp-deprecated-value';
566 }
567 }
568 } catch ( ApiUsageException $ex ) {
569 // Ignore
570 }
571 if ( $attrs ) {
572 $v = Html::element( 'span', $attrs, $v );
573 }
574 $arr[] = "[[Special:ApiHelp/{$m}|{$v}]]";
575 }
576 $submodules = array_merge( $submodules, $deprecatedSubmodules );
577 $count = count( $submodules );
578 $info[] = $context->msg( 'api-help-param-list' )
579 ->params( $multi ? 2 : 1 )
580 ->params( $context->getLanguage()->commaList( $submodules ) )
581 ->parse();
582 $hintPipeSeparated = false;
583 // No type message necessary, we have a list of values.
584 $type = null;
585 break;
586
587 case 'namespace':
588 $namespaces = MWNamespace::getValidNamespaces();
589 if ( isset( $settings[ApiBase::PARAM_EXTRA_NAMESPACES] ) &&
590 is_array( $settings[ApiBase::PARAM_EXTRA_NAMESPACES] )
591 ) {
592 $namespaces = array_merge( $namespaces, $settings[ApiBase::PARAM_EXTRA_NAMESPACES] );
593 }
594 sort( $namespaces );
595 $count = count( $namespaces );
596 $info[] = $context->msg( 'api-help-param-list' )
597 ->params( $multi ? 2 : 1 )
598 ->params( $context->getLanguage()->commaList( $namespaces ) )
599 ->parse();
600 $hintPipeSeparated = false;
601 // No type message necessary, we have a list of values.
602 $type = null;
603 break;
604
605 case 'tags':
606 $tags = ChangeTags::listExplicitlyDefinedTags();
607 $count = count( $tags );
608 $info[] = $context->msg( 'api-help-param-list' )
609 ->params( $multi ? 2 : 1 )
610 ->params( $context->getLanguage()->commaList( $tags ) )
611 ->parse();
612 $hintPipeSeparated = false;
613 $type = null;
614 break;
615
616 case 'limit':
617 if ( isset( $settings[ApiBase::PARAM_MAX2] ) ) {
618 $info[] = $context->msg( 'api-help-param-limit2' )
619 ->numParams( $settings[ApiBase::PARAM_MAX] )
620 ->numParams( $settings[ApiBase::PARAM_MAX2] )
621 ->parse();
622 } else {
623 $info[] = $context->msg( 'api-help-param-limit' )
624 ->numParams( $settings[ApiBase::PARAM_MAX] )
625 ->parse();
626 }
627 break;
628
629 case 'integer':
630 // Possible messages:
631 // api-help-param-integer-min,
632 // api-help-param-integer-max,
633 // api-help-param-integer-minmax
634 $suffix = '';
635 $min = $max = 0;
636 if ( isset( $settings[ApiBase::PARAM_MIN] ) ) {
637 $suffix .= 'min';
638 $min = $settings[ApiBase::PARAM_MIN];
639 }
640 if ( isset( $settings[ApiBase::PARAM_MAX] ) ) {
641 $suffix .= 'max';
642 $max = $settings[ApiBase::PARAM_MAX];
643 }
644 if ( $suffix !== '' ) {
645 $info[] =
646 $context->msg( "api-help-param-integer-$suffix" )
647 ->params( $multi ? 2 : 1 )
648 ->numParams( $min, $max )
649 ->parse();
650 }
651 break;
652
653 case 'upload':
654 $info[] = $context->msg( 'api-help-param-upload' )
655 ->parse();
656 // No type message necessary, api-help-param-upload should handle it.
657 $type = null;
658 break;
659
660 case 'string':
661 case 'text':
662 // Displaying a type message here would be useless.
663 $type = null;
664 break;
665 }
666 }
667
668 // Add type. Messages for grep: api-help-param-type-limit
669 // api-help-param-type-integer api-help-param-type-boolean
670 // api-help-param-type-timestamp api-help-param-type-user
671 // api-help-param-type-password
672 if ( is_string( $type ) ) {
673 $msg = $context->msg( "api-help-param-type-$type" );
674 if ( !$msg->isDisabled() ) {
675 $info[] = $msg->params( $multi ? 2 : 1 )->parse();
676 }
677 }
678
679 if ( $multi ) {
680 $extra = [];
681 $lowcount = !empty( $settings[ApiBase::PARAM_ISMULTI_LIMIT1] )
682 ? $settings[ApiBase::PARAM_ISMULTI_LIMIT1]
683 : ApiBase::LIMIT_SML1;
684 $highcount = !empty( $settings[ApiBase::PARAM_ISMULTI_LIMIT2] )
685 ? $settings[ApiBase::PARAM_ISMULTI_LIMIT2]
686 : ApiBase::LIMIT_SML2;
687
688 if ( $hintPipeSeparated ) {
689 $extra[] = $context->msg( 'api-help-param-multi-separate' )->parse();
690 }
691 if ( $count > $lowcount ) {
692 if ( $lowcount === $highcount ) {
693 $msg = $context->msg( 'api-help-param-multi-max-simple' )
694 ->numParams( $lowcount );
695 } else {
696 $msg = $context->msg( 'api-help-param-multi-max' )
697 ->numParams( $lowcount, $highcount );
698 }
699 $extra[] = $msg->parse();
700 }
701 if ( $extra ) {
702 $info[] = implode( ' ', $extra );
703 }
704
705 $allowAll = $settings[ApiBase::PARAM_ALL] ?? false;
706 if ( $allowAll || $settings[ApiBase::PARAM_TYPE] === 'namespace' ) {
707 if ( $settings[ApiBase::PARAM_TYPE] === 'namespace' ) {
708 $allSpecifier = ApiBase::ALL_DEFAULT_STRING;
709 } else {
710 $allSpecifier = ( is_string( $allowAll ) ? $allowAll : ApiBase::ALL_DEFAULT_STRING );
711 }
712 $info[] = $context->msg( 'api-help-param-multi-all' )
713 ->params( $allSpecifier )
714 ->parse();
715 }
716 }
717 }
718
719 if ( isset( $settings[self::PARAM_MAX_BYTES] ) ) {
720 $info[] = $context->msg( 'api-help-param-maxbytes' )
721 ->numParams( $settings[self::PARAM_MAX_BYTES] );
722 }
723 if ( isset( $settings[self::PARAM_MAX_CHARS] ) ) {
724 $info[] = $context->msg( 'api-help-param-maxchars' )
725 ->numParams( $settings[self::PARAM_MAX_CHARS] );
726 }
727
728 // Add default
729 $default = $settings[ApiBase::PARAM_DFLT] ?? null;
730 if ( $default === '' ) {
731 $info[] = $context->msg( 'api-help-param-default-empty' )
732 ->parse();
733 } elseif ( $default !== null && $default !== false ) {
734 // We can't know whether this contains LTR or RTL text.
735 $info[] = $context->msg( 'api-help-param-default' )
736 ->params( Html::element( 'span', [ 'dir' => 'auto' ], $default ) )
737 ->parse();
738 }
739
740 if ( !array_filter( $description ) ) {
741 $description = [ self::wrap(
742 $context->msg( 'api-help-param-no-description' ),
743 'apihelp-empty'
744 ) ];
745 }
746
747 // Add "deprecated" flag
748 if ( !empty( $settings[ApiBase::PARAM_DEPRECATED] ) ) {
749 $help['parameters'] .= Html::openElement( 'dd',
750 [ 'class' => 'info' ] );
751 $help['parameters'] .= self::wrap(
752 $context->msg( 'api-help-param-deprecated' ),
753 'apihelp-deprecated', 'strong'
754 );
755 $help['parameters'] .= Html::closeElement( 'dd' );
756 }
757
758 if ( $description ) {
759 $description = implode( '', $description );
760 $description = preg_replace( '!\s*</([oud]l)>\s*<\1>\s*!', "\n", $description );
761 $help['parameters'] .= Html::rawElement( 'dd',
762 [ 'class' => 'description' ], $description );
763 }
764
765 foreach ( $info as $i ) {
766 $help['parameters'] .= Html::rawElement( 'dd', [ 'class' => 'info' ], $i );
767 }
768 }
769
770 if ( $dynamicParams !== null ) {
771 $dynamicParams = ApiBase::makeMessage( $dynamicParams, $context, [
772 $module->getModulePrefix(),
773 $module->getModuleName(),
774 $module->getModulePath()
775 ] );
776 $help['parameters'] .= Html::element( 'dt', null, '*' );
777 $help['parameters'] .= Html::rawElement( 'dd',
778 [ 'class' => 'description' ], $dynamicParams->parse() );
779 }
780
781 $help['parameters'] .= Html::closeElement( 'dl' );
782 $help['parameters'] .= Html::closeElement( 'div' );
783 }
784
785 $examples = $module->getExamplesMessages();
786 if ( $examples ) {
787 $help['examples'] .= Html::openElement( 'div',
788 [ 'class' => 'apihelp-block apihelp-examples' ] );
789 $msg = $context->msg( 'api-help-examples' );
790 if ( !$msg->isDisabled() ) {
791 $help['examples'] .= self::wrap(
792 $msg->numParams( count( $examples ) ), 'apihelp-block-head', 'div'
793 );
794 }
795
796 $help['examples'] .= Html::openElement( 'dl' );
797 foreach ( $examples as $qs => $msg ) {
798 $msg = ApiBase::makeMessage( $msg, $context, [
799 $module->getModulePrefix(),
800 $module->getModuleName(),
801 $module->getModulePath()
802 ] );
803
804 $link = wfAppendQuery( wfScript( 'api' ), $qs );
805 $sandbox = SpecialPage::getTitleFor( 'ApiSandbox' )->getLocalURL() . '#' . $qs;
806 $help['examples'] .= Html::rawElement( 'dt', null, $msg->parse() );
807 $help['examples'] .= Html::rawElement( 'dd', null,
808 Html::element( 'a', [ 'href' => $link, 'dir' => 'ltr' ], "api.php?$qs" ) . ' ' .
809 Html::rawElement( 'a', [ 'href' => $sandbox ],
810 $context->msg( 'api-help-open-in-apisandbox' )->parse() )
811 );
812 }
813 $help['examples'] .= Html::closeElement( 'dl' );
814 $help['examples'] .= Html::closeElement( 'div' );
815 }
816
817 $subtocnumber = $tocnumber;
818 $subtocnumber[$level + 1] = 0;
819 $suboptions = [
820 'submodules' => $options['recursivesubmodules'],
821 'headerlevel' => $level + 1,
822 'tocnumber' => &$subtocnumber,
823 'noheader' => false,
824 ] + $options;
825
826 if ( $options['submodules'] && $module->getModuleManager() ) {
827 $manager = $module->getModuleManager();
828 $submodules = [];
829 foreach ( $groups as $group ) {
830 $names = $manager->getNames( $group );
831 sort( $names );
832 foreach ( $names as $name ) {
833 $submodules[] = $manager->getModule( $name );
834 }
835 }
836 $help['submodules'] .= self::getHelpInternal(
837 $context,
838 $submodules,
839 $suboptions,
840 $haveModules
841 );
842 }
843
844 $module->modifyHelp( $help, $suboptions, $haveModules );
845
846 Hooks::run( 'APIHelpModifyOutput', [ $module, &$help, $suboptions, &$haveModules ] );
847
848 $out .= implode( "\n", $help );
849 }
850
851 return $out;
852 }
853
854 public function shouldCheckMaxlag() {
855 return false;
856 }
857
858 public function isReadMode() {
859 return false;
860 }
861
862 public function getCustomPrinter() {
863 $params = $this->extractRequestParams();
864 if ( $params['wrap'] ) {
865 return null;
866 }
867
868 $main = $this->getMain();
869 $errorPrinter = $main->createPrinterByName( $main->getParameter( 'format' ) );
870 return new ApiFormatRaw( $main, $errorPrinter );
871 }
872
873 public function getAllowedParams() {
874 return [
875 'modules' => [
876 ApiBase::PARAM_DFLT => 'main',
877 ApiBase::PARAM_ISMULTI => true,
878 ],
879 'submodules' => false,
880 'recursivesubmodules' => false,
881 'wrap' => false,
882 'toc' => false,
883 ];
884 }
885
886 protected function getExamplesMessages() {
887 return [
888 'action=help'
889 => 'apihelp-help-example-main',
890 'action=help&modules=query&submodules=1'
891 => 'apihelp-help-example-submodules',
892 'action=help&recursivesubmodules=1'
893 => 'apihelp-help-example-recursive',
894 'action=help&modules=help'
895 => 'apihelp-help-example-help',
896 'action=help&modules=query+info|query+categorymembers'
897 => 'apihelp-help-example-query',
898 ];
899 }
900
901 public function getHelpUrls() {
902 return [
903 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page',
904 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:FAQ',
905 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Quick_start_guide',
906 ];
907 }
908 }