Merge "Special:Upload should not crash on failing previews"
[mediawiki.git] / includes / specials / SpecialVersion.php
blob708eced8490c71f45a130b2edce522086cdf7581
1 <?php
2 /**
3 * Implements Special:Version
5 * Copyright © 2005 Ævar Arnfjörð Bjarmason
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
22 * @file
23 * @ingroup SpecialPage
26 /**
27 * Give information about the version of MediaWiki, PHP, the DB and extensions
29 * @ingroup SpecialPage
31 class SpecialVersion extends SpecialPage {
32 protected $firstExtOpened = false;
34 /**
35 * Stores the current rev id/SHA hash of MediaWiki core
37 protected $coreId = '';
39 protected static $extensionTypes = false;
41 public function __construct() {
42 parent::__construct( 'Version' );
45 /**
46 * main()
47 * @param string|null $par
49 public function execute( $par ) {
50 global $IP, $wgExtensionCredits;
52 $this->setHeaders();
53 $this->outputHeader();
54 $out = $this->getOutput();
55 $out->allowClickjacking();
57 // Explode the sub page information into useful bits
58 $parts = explode( '/', (string)$par );
59 $extNode = null;
60 if ( isset( $parts[1] ) ) {
61 $extName = str_replace( '_', ' ', $parts[1] );
62 // Find it!
63 foreach ( $wgExtensionCredits as $group => $extensions ) {
64 foreach ( $extensions as $ext ) {
65 if ( isset( $ext['name'] ) && ( $ext['name'] === $extName ) ) {
66 $extNode = &$ext;
67 break 2;
71 if ( !$extNode ) {
72 $out->setStatusCode( 404 );
74 } else {
75 $extName = 'MediaWiki';
78 // Now figure out what to do
79 switch ( strtolower( $parts[0] ) ) {
80 case 'credits':
81 $out->addModuleStyles( 'mediawiki.special.version' );
83 $wikiText = '{{int:version-credits-not-found}}';
84 if ( $extName === 'MediaWiki' ) {
85 $wikiText = file_get_contents( $IP . '/CREDITS' );
86 // Put the contributor list into columns
87 $wikiText = str_replace(
88 [ '<!-- BEGIN CONTRIBUTOR LIST -->', '<!-- END CONTRIBUTOR LIST -->' ],
89 [ '<div class="mw-version-credits">', '</div>' ],
90 $wikiText );
91 } elseif ( ( $extNode !== null ) && isset( $extNode['path'] ) ) {
92 $file = $this->getExtAuthorsFileName( dirname( $extNode['path'] ) );
93 if ( $file ) {
94 $wikiText = file_get_contents( $file );
95 if ( substr( $file, -4 ) === '.txt' ) {
96 $wikiText = Html::element(
97 'pre',
99 'lang' => 'en',
100 'dir' => 'ltr',
102 $wikiText
108 $out->setPageTitle( $this->msg( 'version-credits-title', $extName ) );
109 $out->addWikiText( $wikiText );
110 break;
112 case 'license':
113 $wikiText = '{{int:version-license-not-found}}';
114 if ( $extName === 'MediaWiki' ) {
115 $wikiText = file_get_contents( $IP . '/COPYING' );
116 } elseif ( ( $extNode !== null ) && isset( $extNode['path'] ) ) {
117 $file = $this->getExtLicenseFileName( dirname( $extNode['path'] ) );
118 if ( $file ) {
119 $wikiText = file_get_contents( $file );
120 $wikiText = Html::element(
121 'pre',
123 'lang' => 'en',
124 'dir' => 'ltr',
126 $wikiText
131 $out->setPageTitle( $this->msg( 'version-license-title', $extName ) );
132 $out->addWikiText( $wikiText );
133 break;
135 default:
136 $out->addModuleStyles( 'mediawiki.special.version' );
137 $out->addWikiText(
138 $this->getMediaWikiCredits() .
139 $this->softwareInformation() .
140 $this->getEntryPointInfo()
142 $out->addHTML(
143 $this->getSkinCredits() .
144 $this->getExtensionCredits() .
145 $this->getExternalLibraries() .
146 $this->getParserTags() .
147 $this->getParserFunctionHooks()
149 $out->addWikiText( $this->getWgHooks() );
150 $out->addHTML( $this->IPInfo() );
152 break;
157 * Returns wiki text showing the license information.
159 * @return string
161 private static function getMediaWikiCredits() {
162 $ret = Xml::element(
163 'h2',
164 [ 'id' => 'mw-version-license' ],
165 wfMessage( 'version-license' )->text()
168 // This text is always left-to-right.
169 $ret .= '<div class="plainlinks">';
170 $ret .= "__NOTOC__
171 " . self::getCopyrightAndAuthorList() . "\n
172 " . wfMessage( 'version-license-info' )->text();
173 $ret .= '</div>';
175 return str_replace( "\t\t", '', $ret ) . "\n";
179 * Get the "MediaWiki is copyright 2001-20xx by lots of cool guys" text
181 * @return string
183 public static function getCopyrightAndAuthorList() {
184 global $wgLang;
186 if ( defined( 'MEDIAWIKI_INSTALL' ) ) {
187 $othersLink = '[https://www.mediawiki.org/wiki/Special:Version/Credits ' .
188 wfMessage( 'version-poweredby-others' )->text() . ']';
189 } else {
190 $othersLink = '[[Special:Version/Credits|' .
191 wfMessage( 'version-poweredby-others' )->text() . ']]';
194 $translatorsLink = '[https://translatewiki.net/wiki/Translating:MediaWiki/Credits ' .
195 wfMessage( 'version-poweredby-translators' )->text() . ']';
197 $authorList = [
198 'Magnus Manske', 'Brion Vibber', 'Lee Daniel Crocker',
199 'Tim Starling', 'Erik Möller', 'Gabriel Wicke', 'Ævar Arnfjörð Bjarmason',
200 'Niklas Laxström', 'Domas Mituzas', 'Rob Church', 'Yuri Astrakhan',
201 'Aryeh Gregor', 'Aaron Schulz', 'Andrew Garrett', 'Raimond Spekking',
202 'Alexandre Emsenhuber', 'Siebrand Mazeland', 'Chad Horohoe',
203 'Roan Kattouw', 'Trevor Parscal', 'Bryan Tong Minh', 'Sam Reed',
204 'Victor Vasiliev', 'Rotem Liss', 'Platonides', 'Antoine Musso',
205 'Timo Tijhof', 'Daniel Kinzler', 'Jeroen De Dauw', 'Brad Jorsch',
206 $othersLink, $translatorsLink
209 return wfMessage( 'version-poweredby-credits', MWTimestamp::getLocalInstance()->format( 'Y' ),
210 $wgLang->listToText( $authorList ) )->text();
214 * Returns wiki text showing the third party software versions (apache, php, mysql).
216 * @return string
218 public static function softwareInformation() {
219 $dbr = wfGetDB( DB_REPLICA );
221 // Put the software in an array of form 'name' => 'version'. All messages should
222 // be loaded here, so feel free to use wfMessage in the 'name'. Raw HTML or
223 // wikimarkup can be used.
224 $software = [];
225 $software['[https://www.mediawiki.org/ MediaWiki]'] = self::getVersionLinked();
226 if ( wfIsHHVM() ) {
227 $software['[http://hhvm.com/ HHVM]'] = HHVM_VERSION . " (" . PHP_SAPI . ")";
228 } else {
229 $software['[https://php.net/ PHP]'] = PHP_VERSION . " (" . PHP_SAPI . ")";
231 $software[$dbr->getSoftwareLink()] = $dbr->getServerInfo();
233 if ( IcuCollation::getICUVersion() ) {
234 $software['[http://site.icu-project.org/ ICU]'] = IcuCollation::getICUVersion();
237 // Allow a hook to add/remove items.
238 Hooks::run( 'SoftwareInfo', [ &$software ] );
240 $out = Xml::element(
241 'h2',
242 [ 'id' => 'mw-version-software' ],
243 wfMessage( 'version-software' )->text()
245 Xml::openElement( 'table', [ 'class' => 'wikitable plainlinks', 'id' => 'sv-software' ] ) .
246 "<tr>
247 <th>" . wfMessage( 'version-software-product' )->text() . "</th>
248 <th>" . wfMessage( 'version-software-version' )->text() . "</th>
249 </tr>\n";
251 foreach ( $software as $name => $version ) {
252 $out .= "<tr>
253 <td>" . $name . "</td>
254 <td dir=\"ltr\">" . $version . "</td>
255 </tr>\n";
258 return $out . Xml::closeElement( 'table' );
262 * Return a string of the MediaWiki version with Git revision if available.
264 * @param string $flags
265 * @param Language|string|null $lang
266 * @return mixed
268 public static function getVersion( $flags = '', $lang = null ) {
269 global $wgVersion, $IP;
271 $gitInfo = self::getGitHeadSha1( $IP );
272 if ( !$gitInfo ) {
273 $version = $wgVersion;
274 } elseif ( $flags === 'nodb' ) {
275 $shortSha1 = substr( $gitInfo, 0, 7 );
276 $version = "$wgVersion ($shortSha1)";
277 } else {
278 $shortSha1 = substr( $gitInfo, 0, 7 );
279 $msg = wfMessage( 'parentheses' );
280 if ( $lang !== null ) {
281 $msg->inLanguage( $lang );
283 $shortSha1 = $msg->params( $shortSha1 )->escaped();
284 $version = "$wgVersion $shortSha1";
287 return $version;
291 * Return a wikitext-formatted string of the MediaWiki version with a link to
292 * the Git SHA1 of head if available.
293 * The fallback is just $wgVersion
295 * @return mixed
297 public static function getVersionLinked() {
298 global $wgVersion;
300 $gitVersion = self::getVersionLinkedGit();
301 if ( $gitVersion ) {
302 $v = $gitVersion;
303 } else {
304 $v = $wgVersion; // fallback
307 return $v;
311 * @return string
313 private static function getwgVersionLinked() {
314 global $wgVersion;
315 $versionUrl = "";
316 if ( Hooks::run( 'SpecialVersionVersionUrl', [ $wgVersion, &$versionUrl ] ) ) {
317 $versionParts = [];
318 preg_match( "/^(\d+\.\d+)/", $wgVersion, $versionParts );
319 $versionUrl = "https://www.mediawiki.org/wiki/MediaWiki_{$versionParts[1]}";
322 return "[$versionUrl $wgVersion]";
326 * @since 1.22 Returns the HEAD date in addition to the sha1 and link
327 * @return bool|string Global wgVersion + HEAD sha1 stripped to the first 7 chars
328 * with link and date, or false on failure
330 private static function getVersionLinkedGit() {
331 global $IP, $wgLang;
333 $gitInfo = new GitInfo( $IP );
334 $headSHA1 = $gitInfo->getHeadSHA1();
335 if ( !$headSHA1 ) {
336 return false;
339 $shortSHA1 = '(' . substr( $headSHA1, 0, 7 ) . ')';
341 $gitHeadUrl = $gitInfo->getHeadViewUrl();
342 if ( $gitHeadUrl !== false ) {
343 $shortSHA1 = "[$gitHeadUrl $shortSHA1]";
346 $gitHeadCommitDate = $gitInfo->getHeadCommitDate();
347 if ( $gitHeadCommitDate ) {
348 $shortSHA1 .= Html::element( 'br' ) . $wgLang->timeanddate( $gitHeadCommitDate, true );
351 return self::getwgVersionLinked() . " $shortSHA1";
355 * Returns an array with the base extension types.
356 * Type is stored as array key, the message as array value.
358 * TODO: ideally this would return all extension types.
360 * @since 1.17
362 * @return array
364 public static function getExtensionTypes() {
365 if ( self::$extensionTypes === false ) {
366 self::$extensionTypes = [
367 'specialpage' => wfMessage( 'version-specialpages' )->text(),
368 'parserhook' => wfMessage( 'version-parserhooks' )->text(),
369 'variable' => wfMessage( 'version-variables' )->text(),
370 'media' => wfMessage( 'version-mediahandlers' )->text(),
371 'antispam' => wfMessage( 'version-antispam' )->text(),
372 'skin' => wfMessage( 'version-skins' )->text(),
373 'api' => wfMessage( 'version-api' )->text(),
374 'other' => wfMessage( 'version-other' )->text(),
377 Hooks::run( 'ExtensionTypes', [ &self::$extensionTypes ] );
380 return self::$extensionTypes;
384 * Returns the internationalized name for an extension type.
386 * @since 1.17
388 * @param string $type
390 * @return string
392 public static function getExtensionTypeName( $type ) {
393 $types = self::getExtensionTypes();
395 return isset( $types[$type] ) ? $types[$type] : $types['other'];
399 * Generate wikitext showing the name, URL, author and description of each extension.
401 * @return string Wikitext
403 public function getExtensionCredits() {
404 global $wgExtensionCredits;
406 if (
407 count( $wgExtensionCredits ) === 0 ||
408 // Skins are displayed separately, see getSkinCredits()
409 ( count( $wgExtensionCredits ) === 1 && isset( $wgExtensionCredits['skin'] ) )
411 return '';
414 $extensionTypes = self::getExtensionTypes();
416 $out = Xml::element(
417 'h2',
418 [ 'id' => 'mw-version-ext' ],
419 $this->msg( 'version-extensions' )->text()
421 Xml::openElement( 'table', [ 'class' => 'wikitable plainlinks', 'id' => 'sv-ext' ] );
423 // Make sure the 'other' type is set to an array.
424 if ( !array_key_exists( 'other', $wgExtensionCredits ) ) {
425 $wgExtensionCredits['other'] = [];
428 // Find all extensions that do not have a valid type and give them the type 'other'.
429 foreach ( $wgExtensionCredits as $type => $extensions ) {
430 if ( !array_key_exists( $type, $extensionTypes ) ) {
431 $wgExtensionCredits['other'] = array_merge( $wgExtensionCredits['other'], $extensions );
435 $this->firstExtOpened = false;
436 // Loop through the extension categories to display their extensions in the list.
437 foreach ( $extensionTypes as $type => $message ) {
438 // Skins have a separate section
439 if ( $type !== 'other' && $type !== 'skin' ) {
440 $out .= $this->getExtensionCategory( $type, $message );
444 // We want the 'other' type to be last in the list.
445 $out .= $this->getExtensionCategory( 'other', $extensionTypes['other'] );
447 $out .= Xml::closeElement( 'table' );
449 return $out;
453 * Generate wikitext showing the name, URL, author and description of each skin.
455 * @return string Wikitext
457 public function getSkinCredits() {
458 global $wgExtensionCredits;
459 if ( !isset( $wgExtensionCredits['skin'] ) || count( $wgExtensionCredits['skin'] ) === 0 ) {
460 return '';
463 $out = Xml::element(
464 'h2',
465 [ 'id' => 'mw-version-skin' ],
466 $this->msg( 'version-skins' )->text()
468 Xml::openElement( 'table', [ 'class' => 'wikitable plainlinks', 'id' => 'sv-skin' ] );
470 $this->firstExtOpened = false;
471 $out .= $this->getExtensionCategory( 'skin', null );
473 $out .= Xml::closeElement( 'table' );
475 return $out;
479 * Generate an HTML table for external libraries that are installed
481 * @return string
483 protected function getExternalLibraries() {
484 global $IP;
485 $path = "$IP/vendor/composer/installed.json";
486 if ( !file_exists( $path ) ) {
487 return '';
490 $installed = new ComposerInstalled( $path );
491 $out = Html::element(
492 'h2',
493 [ 'id' => 'mw-version-libraries' ],
494 $this->msg( 'version-libraries' )->text()
496 $out .= Html::openElement(
497 'table',
498 [ 'class' => 'wikitable plainlinks', 'id' => 'sv-libraries' ]
500 $out .= Html::openElement( 'tr' )
501 . Html::element( 'th', [], $this->msg( 'version-libraries-library' )->text() )
502 . Html::element( 'th', [], $this->msg( 'version-libraries-version' )->text() )
503 . Html::element( 'th', [], $this->msg( 'version-libraries-license' )->text() )
504 . Html::element( 'th', [], $this->msg( 'version-libraries-description' )->text() )
505 . Html::element( 'th', [], $this->msg( 'version-libraries-authors' )->text() )
506 . Html::closeElement( 'tr' );
508 foreach ( $installed->getInstalledDependencies() as $name => $info ) {
509 if ( strpos( $info['type'], 'mediawiki-' ) === 0 ) {
510 // Skip any extensions or skins since they'll be listed
511 // in their proper section
512 continue;
514 $authors = array_map( function( $arr ) {
515 // If a homepage is set, link to it
516 if ( isset( $arr['homepage'] ) ) {
517 return "[{$arr['homepage']} {$arr['name']}]";
519 return $arr['name'];
520 }, $info['authors'] );
521 $authors = $this->listAuthors( $authors, false, "$IP/vendor/$name" );
523 // We can safely assume that the libraries' names and descriptions
524 // are written in English and aren't going to be translated,
525 // so set appropriate lang and dir attributes
526 $out .= Html::openElement( 'tr' )
527 . Html::rawElement(
528 'td',
530 Linker::makeExternalLink(
531 "https://packagist.org/packages/$name", $name,
532 true, '',
533 [ 'class' => 'mw-version-library-name' ]
536 . Html::element( 'td', [ 'dir' => 'auto' ], $info['version'] )
537 . Html::element( 'td', [ 'dir' => 'auto' ], $this->listToText( $info['licenses'] ) )
538 . Html::element( 'td', [ 'lang' => 'en', 'dir' => 'ltr' ], $info['description'] )
539 . Html::rawElement( 'td', [], $authors )
540 . Html::closeElement( 'tr' );
542 $out .= Html::closeElement( 'table' );
544 return $out;
548 * Obtains a list of installed parser tags and the associated H2 header
550 * @return string HTML output
552 protected function getParserTags() {
553 global $wgParser;
555 $tags = $wgParser->getTags();
557 if ( count( $tags ) ) {
558 $out = Html::rawElement(
559 'h2',
561 'class' => 'mw-headline plainlinks',
562 'id' => 'mw-version-parser-extensiontags',
564 Linker::makeExternalLink(
565 'https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Tag_extensions',
566 $this->msg( 'version-parser-extensiontags' )->parse(),
567 false /* msg()->parse() already escapes */
571 array_walk( $tags, function ( &$value ) {
572 // Bidirectional isolation improves readability in RTL wikis
573 $value = Html::element(
574 'bdi',
575 // Prevent < and > from slipping to another line
577 'style' => 'white-space: nowrap;',
579 "<$value>"
581 } );
583 $out .= $this->listToText( $tags );
584 } else {
585 $out = '';
588 return $out;
592 * Obtains a list of installed parser function hooks and the associated H2 header
594 * @return string HTML output
596 protected function getParserFunctionHooks() {
597 global $wgParser;
599 $fhooks = $wgParser->getFunctionHooks();
600 if ( count( $fhooks ) ) {
601 $out = Html::rawElement(
602 'h2',
604 'class' => 'mw-headline plainlinks',
605 'id' => 'mw-version-parser-function-hooks',
607 Linker::makeExternalLink(
608 'https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Parser_functions',
609 $this->msg( 'version-parser-function-hooks' )->parse(),
610 false /* msg()->parse() already escapes */
614 $out .= $this->listToText( $fhooks );
615 } else {
616 $out = '';
619 return $out;
623 * Creates and returns the HTML for a single extension category.
625 * @since 1.17
627 * @param string $type
628 * @param string $message
630 * @return string
632 protected function getExtensionCategory( $type, $message ) {
633 global $wgExtensionCredits;
635 $out = '';
637 if ( array_key_exists( $type, $wgExtensionCredits ) && count( $wgExtensionCredits[$type] ) > 0 ) {
638 $out .= $this->openExtType( $message, 'credits-' . $type );
640 usort( $wgExtensionCredits[$type], [ $this, 'compare' ] );
642 foreach ( $wgExtensionCredits[$type] as $extension ) {
643 $out .= $this->getCreditsForExtension( $type, $extension );
647 return $out;
651 * Callback to sort extensions by type.
652 * @param array $a
653 * @param array $b
654 * @return int
656 public function compare( $a, $b ) {
657 if ( $a['name'] === $b['name'] ) {
658 return 0;
659 } else {
660 return $this->getLanguage()->lc( $a['name'] ) > $this->getLanguage()->lc( $b['name'] )
662 : -1;
667 * Creates and formats a version line for a single extension.
669 * Information for five columns will be created. Parameters required in the
670 * $extension array for part rendering are indicated in ()
671 * - The name of (name), and URL link to (url), the extension
672 * - Official version number (version) and if available version control system
673 * revision (path), link, and date
674 * - If available the short name of the license (license-name) and a link
675 * to ((LICENSE)|(COPYING))(\.txt)? if it exists.
676 * - Description of extension (descriptionmsg or description)
677 * - List of authors (author) and link to a ((AUTHORS)|(CREDITS))(\.txt)? file if it exists
679 * @param string $type Category name of the extension
680 * @param array $extension
682 * @return string Raw HTML
684 public function getCreditsForExtension( $type, array $extension ) {
685 $out = $this->getOutput();
687 // We must obtain the information for all the bits and pieces!
688 // ... such as extension names and links
689 if ( isset( $extension['namemsg'] ) ) {
690 // Localized name of extension
691 $extensionName = $this->msg( $extension['namemsg'] )->text();
692 } elseif ( isset( $extension['name'] ) ) {
693 // Non localized version
694 $extensionName = $extension['name'];
695 } else {
696 $extensionName = $this->msg( 'version-no-ext-name' )->text();
699 if ( isset( $extension['url'] ) ) {
700 $extensionNameLink = Linker::makeExternalLink(
701 $extension['url'],
702 $extensionName,
703 true,
705 [ 'class' => 'mw-version-ext-name' ]
707 } else {
708 $extensionNameLink = $extensionName;
711 // ... and the version information
712 // If the extension path is set we will check that directory for GIT
713 // metadata in an attempt to extract date and vcs commit metadata.
714 $canonicalVersion = '&ndash;';
715 $extensionPath = null;
716 $vcsVersion = null;
717 $vcsLink = null;
718 $vcsDate = null;
720 if ( isset( $extension['version'] ) ) {
721 $canonicalVersion = $out->parseInline( $extension['version'] );
724 if ( isset( $extension['path'] ) ) {
725 global $IP;
726 $extensionPath = dirname( $extension['path'] );
727 if ( $this->coreId == '' ) {
728 wfDebug( 'Looking up core head id' );
729 $coreHeadSHA1 = self::getGitHeadSha1( $IP );
730 if ( $coreHeadSHA1 ) {
731 $this->coreId = $coreHeadSHA1;
734 $cache = wfGetCache( CACHE_ANYTHING );
735 $memcKey = wfMemcKey( 'specialversion-ext-version-text', $extension['path'], $this->coreId );
736 list( $vcsVersion, $vcsLink, $vcsDate ) = $cache->get( $memcKey );
738 if ( !$vcsVersion ) {
739 wfDebug( "Getting VCS info for extension {$extension['name']}" );
740 $gitInfo = new GitInfo( $extensionPath );
741 $vcsVersion = $gitInfo->getHeadSHA1();
742 if ( $vcsVersion !== false ) {
743 $vcsVersion = substr( $vcsVersion, 0, 7 );
744 $vcsLink = $gitInfo->getHeadViewUrl();
745 $vcsDate = $gitInfo->getHeadCommitDate();
747 $cache->set( $memcKey, [ $vcsVersion, $vcsLink, $vcsDate ], 60 * 60 * 24 );
748 } else {
749 wfDebug( "Pulled VCS info for extension {$extension['name']} from cache" );
753 $versionString = Html::rawElement(
754 'span',
755 [ 'class' => 'mw-version-ext-version' ],
756 $canonicalVersion
759 if ( $vcsVersion ) {
760 if ( $vcsLink ) {
761 $vcsVerString = Linker::makeExternalLink(
762 $vcsLink,
763 $this->msg( 'version-version', $vcsVersion ),
764 true,
766 [ 'class' => 'mw-version-ext-vcs-version' ]
768 } else {
769 $vcsVerString = Html::element( 'span',
770 [ 'class' => 'mw-version-ext-vcs-version' ],
771 "({$vcsVersion})"
774 $versionString .= " {$vcsVerString}";
776 if ( $vcsDate ) {
777 $vcsTimeString = Html::element( 'span',
778 [ 'class' => 'mw-version-ext-vcs-timestamp' ],
779 $this->getLanguage()->timeanddate( $vcsDate, true )
781 $versionString .= " {$vcsTimeString}";
783 $versionString = Html::rawElement( 'span',
784 [ 'class' => 'mw-version-ext-meta-version' ],
785 $versionString
789 // ... and license information; if a license file exists we
790 // will link to it
791 $licenseLink = '';
792 if ( isset( $extension['name'] ) ) {
793 $licenseName = null;
794 if ( isset( $extension['license-name'] ) ) {
795 $licenseName = new HtmlArmor( $out->parseInline( $extension['license-name'] ) );
796 } elseif ( $this->getExtLicenseFileName( $extensionPath ) ) {
797 $licenseName = $this->msg( 'version-ext-license' )->text();
799 if ( $licenseName !== null ) {
800 $licenseLink = $this->getLinkRenderer()->makeLink(
801 $this->getPageTitle( 'License/' . $extension['name'] ),
802 $licenseName,
804 'class' => 'mw-version-ext-license',
805 'dir' => 'auto',
811 // ... and generate the description; which can be a parameterized l10n message
812 // in the form array( <msgname>, <parameter>, <parameter>... ) or just a straight
813 // up string
814 if ( isset( $extension['descriptionmsg'] ) ) {
815 // Localized description of extension
816 $descriptionMsg = $extension['descriptionmsg'];
818 if ( is_array( $descriptionMsg ) ) {
819 $descriptionMsgKey = $descriptionMsg[0]; // Get the message key
820 array_shift( $descriptionMsg ); // Shift out the message key to get the parameters only
821 array_map( "htmlspecialchars", $descriptionMsg ); // For sanity
822 $description = $this->msg( $descriptionMsgKey, $descriptionMsg )->text();
823 } else {
824 $description = $this->msg( $descriptionMsg )->text();
826 } elseif ( isset( $extension['description'] ) ) {
827 // Non localized version
828 $description = $extension['description'];
829 } else {
830 $description = '';
832 $description = $out->parseInline( $description );
834 // ... now get the authors for this extension
835 $authors = isset( $extension['author'] ) ? $extension['author'] : [];
836 $authors = $this->listAuthors( $authors, $extension['name'], $extensionPath );
838 // Finally! Create the table
839 $html = Html::openElement( 'tr', [
840 'class' => 'mw-version-ext',
841 'id' => Sanitizer::escapeId( 'mw-version-ext-' . $type . '-' . $extension['name'] )
845 $html .= Html::rawElement( 'td', [], $extensionNameLink );
846 $html .= Html::rawElement( 'td', [], $versionString );
847 $html .= Html::rawElement( 'td', [], $licenseLink );
848 $html .= Html::rawElement( 'td', [ 'class' => 'mw-version-ext-description' ], $description );
849 $html .= Html::rawElement( 'td', [ 'class' => 'mw-version-ext-authors' ], $authors );
851 $html .= Html::closeElement( 'tr' );
853 return $html;
857 * Generate wikitext showing hooks in $wgHooks.
859 * @return string Wikitext
861 private function getWgHooks() {
862 global $wgSpecialVersionShowHooks, $wgHooks;
864 if ( $wgSpecialVersionShowHooks && count( $wgHooks ) ) {
865 $myWgHooks = $wgHooks;
866 ksort( $myWgHooks );
868 $ret = [];
869 $ret[] = '== {{int:version-hooks}} ==';
870 $ret[] = Html::openElement( 'table', [ 'class' => 'wikitable', 'id' => 'sv-hooks' ] );
871 $ret[] = Html::openElement( 'tr' );
872 $ret[] = Html::element( 'th', [], $this->msg( 'version-hook-name' )->text() );
873 $ret[] = Html::element( 'th', [], $this->msg( 'version-hook-subscribedby' )->text() );
874 $ret[] = Html::closeElement( 'tr' );
876 foreach ( $myWgHooks as $hook => $hooks ) {
877 $ret[] = Html::openElement( 'tr' );
878 $ret[] = Html::element( 'td', [], $hook );
879 $ret[] = Html::element( 'td', [], $this->listToText( $hooks ) );
880 $ret[] = Html::closeElement( 'tr' );
883 $ret[] = Html::closeElement( 'table' );
885 return implode( "\n", $ret );
886 } else {
887 return '';
891 private function openExtType( $text = null, $name = null ) {
892 $out = '';
894 $opt = [ 'colspan' => 5 ];
895 if ( $this->firstExtOpened ) {
896 // Insert a spacing line
897 $out .= Html::rawElement( 'tr', [ 'class' => 'sv-space' ],
898 Html::element( 'td', $opt )
901 $this->firstExtOpened = true;
903 if ( $name ) {
904 $opt['id'] = "sv-$name";
907 if ( $text !== null ) {
908 $out .= Html::rawElement( 'tr', [],
909 Html::element( 'th', $opt, $text )
913 $firstHeadingMsg = ( $name === 'credits-skin' )
914 ? 'version-skin-colheader-name'
915 : 'version-ext-colheader-name';
916 $out .= Html::openElement( 'tr' );
917 $out .= Html::element( 'th', [ 'class' => 'mw-version-ext-col-label' ],
918 $this->msg( $firstHeadingMsg )->text() );
919 $out .= Html::element( 'th', [ 'class' => 'mw-version-ext-col-label' ],
920 $this->msg( 'version-ext-colheader-version' )->text() );
921 $out .= Html::element( 'th', [ 'class' => 'mw-version-ext-col-label' ],
922 $this->msg( 'version-ext-colheader-license' )->text() );
923 $out .= Html::element( 'th', [ 'class' => 'mw-version-ext-col-label' ],
924 $this->msg( 'version-ext-colheader-description' )->text() );
925 $out .= Html::element( 'th', [ 'class' => 'mw-version-ext-col-label' ],
926 $this->msg( 'version-ext-colheader-credits' )->text() );
927 $out .= Html::closeElement( 'tr' );
929 return $out;
933 * Get information about client's IP address.
935 * @return string HTML fragment
937 private function IPInfo() {
938 $ip = str_replace( '--', ' - ', htmlspecialchars( $this->getRequest()->getIP() ) );
940 return "<!-- visited from $ip -->\n<span style='display:none'>visited from $ip</span>";
944 * Return a formatted unsorted list of authors
946 * 'And Others'
947 * If an item in the $authors array is '...' it is assumed to indicate an
948 * 'and others' string which will then be linked to an ((AUTHORS)|(CREDITS))(\.txt)?
949 * file if it exists in $dir.
951 * Similarly an entry ending with ' ...]' is assumed to be a link to an
952 * 'and others' page.
954 * If no '...' string variant is found, but an authors file is found an
955 * 'and others' will be added to the end of the credits.
957 * @param string|array $authors
958 * @param string|bool $extName Name of the extension for link creation,
959 * false if no links should be created
960 * @param string $extDir Path to the extension root directory
962 * @return string HTML fragment
964 public function listAuthors( $authors, $extName, $extDir ) {
965 $hasOthers = false;
966 $linkRenderer = $this->getLinkRenderer();
968 $list = [];
969 foreach ( (array)$authors as $item ) {
970 if ( $item == '...' ) {
971 $hasOthers = true;
973 if ( $extName && $this->getExtAuthorsFileName( $extDir ) ) {
974 $text = $linkRenderer->makeLink(
975 $this->getPageTitle( "Credits/$extName" ),
976 $this->msg( 'version-poweredby-others' )->text()
978 } else {
979 $text = $this->msg( 'version-poweredby-others' )->escaped();
981 $list[] = $text;
982 } elseif ( substr( $item, -5 ) == ' ...]' ) {
983 $hasOthers = true;
984 $list[] = $this->getOutput()->parseInline(
985 substr( $item, 0, -4 ) . $this->msg( 'version-poweredby-others' )->text() . "]"
987 } else {
988 $list[] = $this->getOutput()->parseInline( $item );
992 if ( $extName && !$hasOthers && $this->getExtAuthorsFileName( $extDir ) ) {
993 $list[] = $text = $linkRenderer->makeLink(
994 $this->getPageTitle( "Credits/$extName" ),
995 $this->msg( 'version-poweredby-others' )->text()
999 return $this->listToText( $list, false );
1003 * Obtains the full path of an extensions authors or credits file if
1004 * one exists.
1006 * @param string $extDir Path to the extensions root directory
1008 * @since 1.23
1010 * @return bool|string False if no such file exists, otherwise returns
1011 * a path to it.
1013 public static function getExtAuthorsFileName( $extDir ) {
1014 if ( !$extDir ) {
1015 return false;
1018 foreach ( scandir( $extDir ) as $file ) {
1019 $fullPath = $extDir . DIRECTORY_SEPARATOR . $file;
1020 if ( preg_match( '/^((AUTHORS)|(CREDITS))(\.txt|\.wiki|\.mediawiki)?$/', $file ) &&
1021 is_readable( $fullPath ) &&
1022 is_file( $fullPath )
1024 return $fullPath;
1028 return false;
1032 * Obtains the full path of an extensions copying or license file if
1033 * one exists.
1035 * @param string $extDir Path to the extensions root directory
1037 * @since 1.23
1039 * @return bool|string False if no such file exists, otherwise returns
1040 * a path to it.
1042 public static function getExtLicenseFileName( $extDir ) {
1043 if ( !$extDir ) {
1044 return false;
1047 foreach ( scandir( $extDir ) as $file ) {
1048 $fullPath = $extDir . DIRECTORY_SEPARATOR . $file;
1049 if ( preg_match( '/^((COPYING)|(LICENSE))(\.txt)?$/', $file ) &&
1050 is_readable( $fullPath ) &&
1051 is_file( $fullPath )
1053 return $fullPath;
1057 return false;
1061 * Convert an array of items into a list for display.
1063 * @param array $list List of elements to display
1064 * @param bool $sort Whether to sort the items in $list
1066 * @return string
1068 public function listToText( $list, $sort = true ) {
1069 if ( !count( $list ) ) {
1070 return '';
1072 if ( $sort ) {
1073 sort( $list );
1076 return $this->getLanguage()
1077 ->listToText( array_map( [ __CLASS__, 'arrayToString' ], $list ) );
1081 * Convert an array or object to a string for display.
1083 * @param mixed $list Will convert an array to string if given and return
1084 * the parameter unaltered otherwise
1086 * @return mixed
1088 public static function arrayToString( $list ) {
1089 if ( is_array( $list ) && count( $list ) == 1 ) {
1090 $list = $list[0];
1092 if ( $list instanceof Closure ) {
1093 // Don't output stuff like "Closure$;1028376090#8$48499d94fe0147f7c633b365be39952b$"
1094 return 'Closure';
1095 } elseif ( is_object( $list ) ) {
1096 $class = wfMessage( 'parentheses' )->params( get_class( $list ) )->escaped();
1098 return $class;
1099 } elseif ( !is_array( $list ) ) {
1100 return $list;
1101 } else {
1102 if ( is_object( $list[0] ) ) {
1103 $class = get_class( $list[0] );
1104 } else {
1105 $class = $list[0];
1108 return wfMessage( 'parentheses' )->params( "$class, {$list[1]}" )->escaped();
1113 * @param string $dir Directory of the git checkout
1114 * @return bool|string Sha1 of commit HEAD points to
1116 public static function getGitHeadSha1( $dir ) {
1117 $repo = new GitInfo( $dir );
1119 return $repo->getHeadSHA1();
1123 * @param string $dir Directory of the git checkout
1124 * @return bool|string Branch currently checked out
1126 public static function getGitCurrentBranch( $dir ) {
1127 $repo = new GitInfo( $dir );
1128 return $repo->getCurrentBranch();
1132 * Get the list of entry points and their URLs
1133 * @return string Wikitext
1135 public function getEntryPointInfo() {
1136 global $wgArticlePath, $wgScriptPath;
1137 $scriptPath = $wgScriptPath ? $wgScriptPath : "/";
1138 $entryPoints = [
1139 'version-entrypoints-articlepath' => $wgArticlePath,
1140 'version-entrypoints-scriptpath' => $scriptPath,
1141 'version-entrypoints-index-php' => wfScript( 'index' ),
1142 'version-entrypoints-api-php' => wfScript( 'api' ),
1143 'version-entrypoints-load-php' => wfScript( 'load' ),
1146 $language = $this->getLanguage();
1147 $thAttribures = [
1148 'dir' => $language->getDir(),
1149 'lang' => $language->getHtmlCode()
1151 $out = Html::element(
1152 'h2',
1153 [ 'id' => 'mw-version-entrypoints' ],
1154 $this->msg( 'version-entrypoints' )->text()
1156 Html::openElement( 'table',
1158 'class' => 'wikitable plainlinks',
1159 'id' => 'mw-version-entrypoints-table',
1160 'dir' => 'ltr',
1161 'lang' => 'en'
1164 Html::openElement( 'tr' ) .
1165 Html::element(
1166 'th',
1167 $thAttribures,
1168 $this->msg( 'version-entrypoints-header-entrypoint' )->text()
1170 Html::element(
1171 'th',
1172 $thAttribures,
1173 $this->msg( 'version-entrypoints-header-url' )->text()
1175 Html::closeElement( 'tr' );
1177 foreach ( $entryPoints as $message => $value ) {
1178 $url = wfExpandUrl( $value, PROTO_RELATIVE );
1179 $out .= Html::openElement( 'tr' ) .
1180 // ->text() looks like it should be ->parse(), but this function
1181 // returns wikitext, not HTML, boo
1182 Html::rawElement( 'td', [], $this->msg( $message )->text() ) .
1183 Html::rawElement( 'td', [], Html::rawElement( 'code', [], "[$url $value]" ) ) .
1184 Html::closeElement( 'tr' );
1187 $out .= Html::closeElement( 'table' );
1189 return $out;
1192 protected function getGroupName() {
1193 return 'wiki';