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
23 * @ingroup SpecialPage
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;
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' );
47 * @param string|null $par
49 public function execute( $par ) {
50 global $IP, $wgExtensionCredits;
53 $this->outputHeader();
54 $out = $this->getOutput();
55 $out->allowClickjacking();
57 // Explode the sub page information into useful bits
58 $parts = explode( '/', (string)$par );
60 if ( isset( $parts[1] ) ) {
61 $extName = str_replace( '_', ' ', $parts[1] );
63 foreach ( $wgExtensionCredits as $group => $extensions ) {
64 foreach ( $extensions as $ext ) {
65 if ( isset( $ext['name'] ) && ( $ext['name'] === $extName ) ) {
72 $out->setStatusCode( 404 );
75 $extName = 'MediaWiki';
78 // Now figure out what to do
79 switch ( strtolower( $parts[0] ) ) {
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>' ],
91 } elseif ( ( $extNode !== null ) && isset( $extNode['path'] ) ) {
92 $file = $this->getExtAuthorsFileName( dirname( $extNode['path'] ) );
94 $wikiText = file_get_contents( $file );
95 if ( substr( $file, -4 ) === '.txt' ) {
96 $wikiText = Html
::element(
108 $out->setPageTitle( $this->msg( 'version-credits-title', $extName ) );
109 $out->addWikiText( $wikiText );
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'] ) );
119 $wikiText = file_get_contents( $file );
120 $wikiText = Html
::element(
131 $out->setPageTitle( $this->msg( 'version-license-title', $extName ) );
132 $out->addWikiText( $wikiText );
136 $out->addModuleStyles( 'mediawiki.special.version' );
138 $this->getMediaWikiCredits() .
139 $this->softwareInformation() .
140 $this->getEntryPointInfo()
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() );
157 * Returns wiki text showing the license information.
161 private static function getMediaWikiCredits() {
164 [ 'id' => 'mw-version-license' ],
165 wfMessage( 'version-license' )->text()
168 // This text is always left-to-right.
169 $ret .= '<div class="plainlinks">';
171 " . self
::getCopyrightAndAuthorList() . "\n
172 " . wfMessage( 'version-license-info' )->text();
175 return str_replace( "\t\t", '', $ret ) . "\n";
179 * Get the "MediaWiki is copyright 2001-20xx by lots of cool guys" text
183 public static function getCopyrightAndAuthorList() {
186 if ( defined( 'MEDIAWIKI_INSTALL' ) ) {
187 $othersLink = '[https://www.mediawiki.org/wiki/Special:Version/Credits ' .
188 wfMessage( 'version-poweredby-others' )->text() . ']';
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() . ']';
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).
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.
225 $software['[https://www.mediawiki.org/ MediaWiki]'] = self
::getVersionLinked();
227 $software['[http://hhvm.com/ HHVM]'] = HHVM_VERSION
. " (" . PHP_SAPI
. ")";
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 ] );
242 [ 'id' => 'mw-version-software' ],
243 wfMessage( 'version-software' )->text()
245 Xml
::openElement( 'table', [ 'class' => 'wikitable plainlinks', 'id' => 'sv-software' ] ) .
247 <th>" . wfMessage( 'version-software-product' )->text() . "</th>
248 <th>" . wfMessage( 'version-software-version' )->text() . "</th>
251 foreach ( $software as $name => $version ) {
253 <td>" . $name . "</td>
254 <td dir=\"ltr\">" . $version . "</td>
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
268 public static function getVersion( $flags = '', $lang = null ) {
269 global $wgVersion, $IP;
271 $gitInfo = self
::getGitHeadSha1( $IP );
273 $version = $wgVersion;
274 } elseif ( $flags === 'nodb' ) {
275 $shortSha1 = substr( $gitInfo, 0, 7 );
276 $version = "$wgVersion ($shortSha1)";
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";
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
297 public static function getVersionLinked() {
300 $gitVersion = self
::getVersionLinkedGit();
304 $v = $wgVersion; // fallback
313 private static function getwgVersionLinked() {
316 if ( Hooks
::run( 'SpecialVersionVersionUrl', [ $wgVersion, &$versionUrl ] ) ) {
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() {
333 $gitInfo = new GitInfo( $IP );
334 $headSHA1 = $gitInfo->getHeadSHA1();
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.
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.
388 * @param string $type
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;
407 count( $wgExtensionCredits ) === 0 ||
408 // Skins are displayed separately, see getSkinCredits()
409 ( count( $wgExtensionCredits ) === 1 && isset( $wgExtensionCredits['skin'] ) )
414 $extensionTypes = self
::getExtensionTypes();
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' );
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 ) {
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' );
479 * Generate an HTML table for external libraries that are installed
483 protected function getExternalLibraries() {
485 $path = "$IP/vendor/composer/installed.json";
486 if ( !file_exists( $path ) ) {
490 $installed = new ComposerInstalled( $path );
491 $out = Html
::element(
493 [ 'id' => 'mw-version-libraries' ],
494 $this->msg( 'version-libraries' )->text()
496 $out .= Html
::openElement(
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
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']}]";
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' )
530 Linker
::makeExternalLink(
531 "https://packagist.org/packages/$name", $name,
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' );
548 * Obtains a list of installed parser tags and the associated H2 header
550 * @return string HTML output
552 protected function getParserTags() {
555 $tags = $wgParser->getTags();
557 if ( count( $tags ) ) {
558 $out = Html
::rawElement(
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(
575 // Prevent < and > from slipping to another line
577 'style' => 'white-space: nowrap;',
583 $out .= $this->listToText( $tags );
592 * Obtains a list of installed parser function hooks and the associated H2 header
594 * @return string HTML output
596 protected function getParserFunctionHooks() {
599 $fhooks = $wgParser->getFunctionHooks();
600 if ( count( $fhooks ) ) {
601 $out = Html
::rawElement(
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 );
623 * Creates and returns the HTML for a single extension category.
627 * @param string $type
628 * @param string $message
632 protected function getExtensionCategory( $type, $message ) {
633 global $wgExtensionCredits;
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 );
651 * Callback to sort extensions by type.
656 public function compare( $a, $b ) {
657 if ( $a['name'] === $b['name'] ) {
660 return $this->getLanguage()->lc( $a['name'] ) > $this->getLanguage()->lc( $b['name'] )
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'];
696 $extensionName = $this->msg( 'version-no-ext-name' )->text();
699 if ( isset( $extension['url'] ) ) {
700 $extensionNameLink = Linker
::makeExternalLink(
705 [ 'class' => 'mw-version-ext-name' ]
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 = '–';
715 $extensionPath = null;
720 if ( isset( $extension['version'] ) ) {
721 $canonicalVersion = $out->parseInline( $extension['version'] );
724 if ( isset( $extension['path'] ) ) {
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 );
749 wfDebug( "Pulled VCS info for extension {$extension['name']} from cache" );
753 $versionString = Html
::rawElement(
755 [ 'class' => 'mw-version-ext-version' ],
761 $vcsVerString = Linker
::makeExternalLink(
763 $this->msg( 'version-version', $vcsVersion ),
766 [ 'class' => 'mw-version-ext-vcs-version' ]
769 $vcsVerString = Html
::element( 'span',
770 [ 'class' => 'mw-version-ext-vcs-version' ],
774 $versionString .= " {$vcsVerString}";
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' ],
789 // ... and license information; if a license file exists we
792 if ( isset( $extension['name'] ) ) {
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'] ),
804 'class' => 'mw-version-ext-license',
811 // ... and generate the description; which can be a parameterized l10n message
812 // in the form array( <msgname>, <parameter>, <parameter>... ) or just a straight
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();
824 $description = $this->msg( $descriptionMsg )->text();
826 } elseif ( isset( $extension['description'] ) ) {
827 // Non localized version
828 $description = $extension['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' );
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;
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 );
891 private function openExtType( $text = null, $name = null ) {
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;
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' );
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
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
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 ) {
966 $linkRenderer = $this->getLinkRenderer();
969 foreach ( (array)$authors as $item ) {
970 if ( $item == '...' ) {
973 if ( $extName && $this->getExtAuthorsFileName( $extDir ) ) {
974 $text = $linkRenderer->makeLink(
975 $this->getPageTitle( "Credits/$extName" ),
976 $this->msg( 'version-poweredby-others' )->text()
979 $text = $this->msg( 'version-poweredby-others' )->escaped();
982 } elseif ( substr( $item, -5 ) == ' ...]' ) {
984 $list[] = $this->getOutput()->parseInline(
985 substr( $item, 0, -4 ) . $this->msg( 'version-poweredby-others' )->text() . "]"
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
1006 * @param string $extDir Path to the extensions root directory
1010 * @return bool|string False if no such file exists, otherwise returns
1013 public static function getExtAuthorsFileName( $extDir ) {
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 )
1032 * Obtains the full path of an extensions copying or license file if
1035 * @param string $extDir Path to the extensions root directory
1039 * @return bool|string False if no such file exists, otherwise returns
1042 public static function getExtLicenseFileName( $extDir ) {
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 )
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
1068 public function listToText( $list, $sort = true ) {
1069 if ( !count( $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
1088 public static function arrayToString( $list ) {
1089 if ( is_array( $list ) && count( $list ) == 1 ) {
1092 if ( $list instanceof Closure
) {
1093 // Don't output stuff like "Closure$;1028376090#8$48499d94fe0147f7c633b365be39952b$"
1095 } elseif ( is_object( $list ) ) {
1096 $class = wfMessage( 'parentheses' )->params( get_class( $list ) )->escaped();
1099 } elseif ( !is_array( $list ) ) {
1102 if ( is_object( $list[0] ) ) {
1103 $class = get_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 : "/";
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();
1148 'dir' => $language->getDir(),
1149 'lang' => $language->getHtmlCode()
1151 $out = Html
::element(
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',
1164 Html
::openElement( 'tr' ) .
1168 $this->msg( 'version-entrypoints-header-entrypoint' )->text()
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' );
1192 protected function getGroupName() {