MediaWiki  1.31.0
Installer.php
Go to the documentation of this file.
1 <?php
30 
46 abstract class Installer {
47 
54  const MINIMUM_PCRE_VERSION = '7.2';
55 
59  protected $settings;
60 
66  protected $compiledDBs;
67 
73  protected $dbInstallers = [];
74 
80  protected $minMemorySize = 50;
81 
87  protected $parserTitle;
88 
94  protected $parserOptions;
95 
105  protected static $dbTypes = [
106  'mysql',
107  'postgres',
108  'oracle',
109  'mssql',
110  'sqlite',
111  ];
112 
124  protected $envChecks = [
125  'envCheckDB',
126  'envCheckBrokenXML',
127  'envCheckPCRE',
128  'envCheckMemory',
129  'envCheckCache',
130  'envCheckModSecurity',
131  'envCheckDiff3',
132  'envCheckGraphics',
133  'envCheckGit',
134  'envCheckServer',
135  'envCheckPath',
136  'envCheckShellLocale',
137  'envCheckUploadsDirectory',
138  'envCheckLibicu',
139  'envCheckSuhosinMaxValueLength',
140  'envCheck64Bit',
141  ];
142 
148  protected $envPreps = [
149  'envPrepServer',
150  'envPrepPath',
151  ];
152 
160  protected $defaultVarNames = [
161  'wgSitename',
162  'wgPasswordSender',
163  'wgLanguageCode',
164  'wgRightsIcon',
165  'wgRightsText',
166  'wgRightsUrl',
167  'wgEnableEmail',
168  'wgEnableUserEmail',
169  'wgEnotifUserTalk',
170  'wgEnotifWatchlist',
171  'wgEmailAuthentication',
172  'wgDBname',
173  'wgDBtype',
174  'wgDiff3',
175  'wgImageMagickConvertCommand',
176  'wgGitBin',
177  'IP',
178  'wgScriptPath',
179  'wgMetaNamespace',
180  'wgDeletedDirectory',
181  'wgEnableUploads',
182  'wgShellLocale',
183  'wgSecretKey',
184  'wgUseInstantCommons',
185  'wgUpgradeKey',
186  'wgDefaultSkin',
187  'wgPingback',
188  ];
189 
197  protected $internalDefaults = [
198  '_UserLang' => 'en',
199  '_Environment' => false,
200  '_RaiseMemory' => false,
201  '_UpgradeDone' => false,
202  '_InstallDone' => false,
203  '_Caches' => [],
204  '_InstallPassword' => '',
205  '_SameAccount' => true,
206  '_CreateDBAccount' => false,
207  '_NamespaceType' => 'site-name',
208  '_AdminName' => '', // will be set later, when the user selects language
209  '_AdminPassword' => '',
210  '_AdminPasswordConfirm' => '',
211  '_AdminEmail' => '',
212  '_Subscribe' => false,
213  '_SkipOptional' => 'continue',
214  '_RightsProfile' => 'wiki',
215  '_LicenseCode' => 'none',
216  '_CCDone' => false,
217  '_Extensions' => [],
218  '_Skins' => [],
219  '_MemCachedServers' => '',
220  '_UpgradeKeySupplied' => false,
221  '_ExistingDBSettings' => false,
222 
223  // $wgLogo is probably wrong (T50084); set something that will work.
224  // Single quotes work fine here, as LocalSettingsGenerator outputs this unescaped.
225  'wgLogo' => '$wgResourceBasePath/resources/assets/wiki.png',
226  'wgAuthenticationTokenVersion' => 1,
227  ];
228 
234  private $installSteps = [];
235 
241  protected $extraInstallSteps = [];
242 
248  protected $objectCaches = [
249  'apc' => 'apc_fetch',
250  'apcu' => 'apcu_fetch',
251  'wincache' => 'wincache_ucache_get'
252  ];
253 
259  public $rightsProfiles = [
260  'wiki' => [],
261  'no-anon' => [
262  '*' => [ 'edit' => false ]
263  ],
264  'fishbowl' => [
265  '*' => [
266  'createaccount' => false,
267  'edit' => false,
268  ],
269  ],
270  'private' => [
271  '*' => [
272  'createaccount' => false,
273  'edit' => false,
274  'read' => false,
275  ],
276  ],
277  ];
278 
284  public $licenses = [
285  'cc-by' => [
286  'url' => 'https://creativecommons.org/licenses/by/4.0/',
287  'icon' => '$wgResourceBasePath/resources/assets/licenses/cc-by.png',
288  ],
289  'cc-by-sa' => [
290  'url' => 'https://creativecommons.org/licenses/by-sa/4.0/',
291  'icon' => '$wgResourceBasePath/resources/assets/licenses/cc-by-sa.png',
292  ],
293  'cc-by-nc-sa' => [
294  'url' => 'https://creativecommons.org/licenses/by-nc-sa/4.0/',
295  'icon' => '$wgResourceBasePath/resources/assets/licenses/cc-by-nc-sa.png',
296  ],
297  'cc-0' => [
298  'url' => 'https://creativecommons.org/publicdomain/zero/1.0/',
299  'icon' => '$wgResourceBasePath/resources/assets/licenses/cc-0.png',
300  ],
301  'gfdl' => [
302  'url' => 'https://www.gnu.org/copyleft/fdl.html',
303  'icon' => '$wgResourceBasePath/resources/assets/licenses/gnu-fdl.png',
304  ],
305  'none' => [
306  'url' => '',
307  'icon' => '',
308  'text' => ''
309  ],
310  'cc-choose' => [
311  // Details will be filled in by the selector.
312  'url' => '',
313  'icon' => '',
314  'text' => '',
315  ],
316  ];
317 
322  'https://lists.wikimedia.org/mailman/subscribe/mediawiki-announce';
323 
328  'ca', 'cs', 'da', 'de', 'en', 'es', 'et', 'eu', 'fi', 'fr', 'hr', 'hu',
329  'it', 'ja', 'ko', 'lt', 'nl', 'no', 'pl', 'pt', 'pt-br', 'ro', 'ru',
330  'sl', 'sr', 'sv', 'tr', 'uk'
331  ];
332 
340  abstract public function showMessage( $msg /*, ... */ );
341 
346  abstract public function showError( $msg /*, ... */ );
347 
352  abstract public function showStatusMessage( Status $status );
353 
364  public static function getInstallerConfig( Config $baseConfig ) {
365  $configOverrides = new HashConfig();
366 
367  // disable (problematic) object cache types explicitly, preserving all other (working) ones
368  // bug T113843
369  $emptyCache = [ 'class' => EmptyBagOStuff::class ];
370 
371  $objectCaches = [
372  CACHE_NONE => $emptyCache,
373  CACHE_DB => $emptyCache,
374  CACHE_ANYTHING => $emptyCache,
375  CACHE_MEMCACHED => $emptyCache,
376  ] + $baseConfig->get( 'ObjectCaches' );
377 
378  $configOverrides->set( 'ObjectCaches', $objectCaches );
379 
380  // Load the installer's i18n.
381  $messageDirs = $baseConfig->get( 'MessagesDirs' );
382  $messageDirs['MediawikiInstaller'] = __DIR__ . '/i18n';
383 
384  $configOverrides->set( 'MessagesDirs', $messageDirs );
385 
386  $installerConfig = new MultiConfig( [ $configOverrides, $baseConfig ] );
387 
388  // make sure we use the installer config as the main config
389  $configRegistry = $baseConfig->get( 'ConfigRegistry' );
390  $configRegistry['main'] = function () use ( $installerConfig ) {
391  return $installerConfig;
392  };
393 
394  $configOverrides->set( 'ConfigRegistry', $configRegistry );
395 
396  return $installerConfig;
397  }
398 
402  public function __construct() {
404 
405  $defaultConfig = new GlobalVarConfig(); // all the stuff from DefaultSettings.php
406  $installerConfig = self::getInstallerConfig( $defaultConfig );
407 
408  // Reset all services and inject config overrides
409  MediaWikiServices::resetGlobalInstance( $installerConfig );
410 
411  // Don't attempt to load user language options (T126177)
412  // This will be overridden in the web installer with the user-specified language
413  RequestContext::getMain()->setLanguage( 'en' );
414 
415  // Disable the i18n cache
416  // TODO: manage LocalisationCache singleton in MediaWikiServices
417  Language::getLocalisationCache()->disableBackend();
418 
419  // Disable all global services, since we don't have any configuration yet!
420  MediaWikiServices::disableStorageBackend();
421 
422  $mwServices = MediaWikiServices::getInstance();
423  // Disable object cache (otherwise CACHE_ANYTHING will try CACHE_DB and
424  // SqlBagOStuff will then throw since we just disabled wfGetDB)
425  $wgObjectCaches = $mwServices->getMainConfig()->get( 'ObjectCaches' );
427 
428  // Disable interwiki lookup, to avoid database access during parses
429  $mwServices->redefineService( 'InterwikiLookup', function () {
430  return new NullInterwikiLookup();
431  } );
432 
433  // Having a user with id = 0 safeguards us from DB access via User::loadOptions().
434  $wgUser = User::newFromId( 0 );
435  RequestContext::getMain()->setUser( $wgUser );
436 
438 
439  foreach ( $this->defaultVarNames as $var ) {
440  $this->settings[$var] = $GLOBALS[$var];
441  }
442 
443  $this->doEnvironmentPreps();
444 
445  $this->compiledDBs = [];
446  foreach ( self::getDBTypes() as $type ) {
447  $installer = $this->getDBInstaller( $type );
448 
449  if ( !$installer->isCompiled() ) {
450  continue;
451  }
452  $this->compiledDBs[] = $type;
453  }
454 
455  $this->parserTitle = Title::newFromText( 'Installer' );
456  $this->parserOptions = new ParserOptions( $wgUser ); // language will be wrong :(
457  // Don't try to access DB before user language is initialised
458  $this->setParserLanguage( Language::factory( 'en' ) );
459  }
460 
466  public static function getDBTypes() {
467  return self::$dbTypes;
468  }
469 
483  public function doEnvironmentChecks() {
484  // Php version has already been checked by entry scripts
485  // Show message here for information purposes
486  if ( wfIsHHVM() ) {
487  $this->showMessage( 'config-env-hhvm', HHVM_VERSION );
488  } else {
489  $this->showMessage( 'config-env-php', PHP_VERSION );
490  }
491 
492  $good = true;
493  // Must go here because an old version of PCRE can prevent other checks from completing
494  list( $pcreVersion ) = explode( ' ', PCRE_VERSION, 2 );
495  if ( version_compare( $pcreVersion, self::MINIMUM_PCRE_VERSION, '<' ) ) {
496  $this->showError( 'config-pcre-old', self::MINIMUM_PCRE_VERSION, $pcreVersion );
497  $good = false;
498  } else {
499  foreach ( $this->envChecks as $check ) {
500  $status = $this->$check();
501  if ( $status === false ) {
502  $good = false;
503  }
504  }
505  }
506 
507  $this->setVar( '_Environment', $good );
508 
509  return $good ? Status::newGood() : Status::newFatal( 'config-env-bad' );
510  }
511 
512  public function doEnvironmentPreps() {
513  foreach ( $this->envPreps as $prep ) {
514  $this->$prep();
515  }
516  }
517 
524  public function setVar( $name, $value ) {
525  $this->settings[$name] = $value;
526  }
527 
538  public function getVar( $name, $default = null ) {
539  if ( !isset( $this->settings[$name] ) ) {
540  return $default;
541  } else {
542  return $this->settings[$name];
543  }
544  }
545 
551  public function getCompiledDBs() {
552  return $this->compiledDBs;
553  }
554 
562  public static function getDBInstallerClass( $type ) {
563  return ucfirst( $type ) . 'Installer';
564  }
565 
573  public function getDBInstaller( $type = false ) {
574  if ( !$type ) {
575  $type = $this->getVar( 'wgDBtype' );
576  }
577 
578  $type = strtolower( $type );
579 
580  if ( !isset( $this->dbInstallers[$type] ) ) {
581  $class = self::getDBInstallerClass( $type );
582  $this->dbInstallers[$type] = new $class( $this );
583  }
584 
585  return $this->dbInstallers[$type];
586  }
587 
593  public static function getExistingLocalSettings() {
594  global $IP;
595 
596  // You might be wondering why this is here. Well if you don't do this
597  // then some poorly-formed extensions try to call their own classes
598  // after immediately registering them. We really need to get extension
599  // registration out of the global scope and into a real format.
600  // @see https://phabricator.wikimedia.org/T69440
602  $wgAutoloadClasses = [];
603 
604  // LocalSettings.php should not call functions, except wfLoadSkin/wfLoadExtensions
605  // Define the required globals here, to ensure, the functions can do it work correctly.
606  // phpcs:ignore MediaWiki.VariableAnalysis.UnusedGlobalVariables
608 
609  Wikimedia\suppressWarnings();
610  $_lsExists = file_exists( "$IP/LocalSettings.php" );
611  Wikimedia\restoreWarnings();
612 
613  if ( !$_lsExists ) {
614  return false;
615  }
616  unset( $_lsExists );
617 
618  require "$IP/includes/DefaultSettings.php";
619  require "$IP/LocalSettings.php";
620 
621  return get_defined_vars();
622  }
623 
633  public function getFakePassword( $realPassword ) {
634  return str_repeat( '*', strlen( $realPassword ) );
635  }
636 
644  public function setPassword( $name, $value ) {
645  if ( !preg_match( '/^\*+$/', $value ) ) {
646  $this->setVar( $name, $value );
647  }
648  }
649 
661  public static function maybeGetWebserverPrimaryGroup() {
662  if ( !function_exists( 'posix_getegid' ) || !function_exists( 'posix_getpwuid' ) ) {
663  # I don't know this, this isn't UNIX.
664  return null;
665  }
666 
667  # posix_getegid() *not* getmygid() because we want the group of the webserver,
668  # not whoever owns the current script.
669  $gid = posix_getegid();
670  $group = posix_getpwuid( $gid )['name'];
671 
672  return $group;
673  }
674 
691  public function parse( $text, $lineStart = false ) {
693 
694  try {
695  $out = $wgParser->parse( $text, $this->parserTitle, $this->parserOptions, $lineStart );
696  $html = $out->getText( [
697  'enableSectionEditLinks' => false,
698  'unwrap' => true,
699  ] );
700  } catch ( MediaWiki\Services\ServiceDisabledException $e ) {
701  $html = '<!--DB access attempted during parse--> ' . htmlspecialchars( $text );
702  }
703 
704  return $html;
705  }
706 
710  public function getParserOptions() {
711  return $this->parserOptions;
712  }
713 
714  public function disableLinkPopups() {
715  $this->parserOptions->setExternalLinkTarget( false );
716  }
717 
718  public function restoreLinkPopups() {
720  $this->parserOptions->setExternalLinkTarget( $wgExternalLinkTarget );
721  }
722 
731  public function populateSiteStats( DatabaseInstaller $installer ) {
732  $status = $installer->getConnection();
733  if ( !$status->isOK() ) {
734  return $status;
735  }
736  $status->value->insert(
737  'site_stats',
738  [
739  'ss_row_id' => 1,
740  'ss_total_edits' => 0,
741  'ss_good_articles' => 0,
742  'ss_total_pages' => 0,
743  'ss_users' => 0,
744  'ss_active_users' => 0,
745  'ss_images' => 0
746  ],
747  __METHOD__, 'IGNORE'
748  );
749 
750  return Status::newGood();
751  }
752 
757  protected function envCheckDB() {
758  global $wgLang;
759 
760  $allNames = [];
761 
762  // Messages: config-type-mysql, config-type-postgres, config-type-oracle,
763  // config-type-sqlite
764  foreach ( self::getDBTypes() as $name ) {
765  $allNames[] = wfMessage( "config-type-$name" )->text();
766  }
767 
768  $databases = $this->getCompiledDBs();
769 
770  $databases = array_flip( $databases );
771  foreach ( array_keys( $databases ) as $db ) {
772  $installer = $this->getDBInstaller( $db );
773  $status = $installer->checkPrerequisites();
774  if ( !$status->isGood() ) {
775  $this->showStatusMessage( $status );
776  }
777  if ( !$status->isOK() ) {
778  unset( $databases[$db] );
779  }
780  }
781  $databases = array_flip( $databases );
782  if ( !$databases ) {
783  $this->showError( 'config-no-db', $wgLang->commaList( $allNames ), count( $allNames ) );
784 
785  // @todo FIXME: This only works for the web installer!
786  return false;
787  }
788 
789  return true;
790  }
791 
796  protected function envCheckBrokenXML() {
797  $test = new PhpXmlBugTester();
798  if ( !$test->ok ) {
799  $this->showError( 'config-brokenlibxml' );
800 
801  return false;
802  }
803 
804  return true;
805  }
806 
815  protected function envCheckPCRE() {
816  Wikimedia\suppressWarnings();
817  $regexd = preg_replace( '/[\x{0430}-\x{04FF}]/iu', '', '-АБВГД-' );
818  // Need to check for \p support too, as PCRE can be compiled
819  // with utf8 support, but not unicode property support.
820  // check that \p{Zs} (space separators) matches
821  // U+3000 (Ideographic space)
822  $regexprop = preg_replace( '/\p{Zs}/u', '', "-\xE3\x80\x80-" );
823  Wikimedia\restoreWarnings();
824  if ( $regexd != '--' || $regexprop != '--' ) {
825  $this->showError( 'config-pcre-no-utf8' );
826 
827  return false;
828  }
829 
830  return true;
831  }
832 
837  protected function envCheckMemory() {
838  $limit = ini_get( 'memory_limit' );
839 
840  if ( !$limit || $limit == -1 ) {
841  return true;
842  }
843 
844  $n = wfShorthandToInteger( $limit );
845 
846  if ( $n < $this->minMemorySize * 1024 * 1024 ) {
847  $newLimit = "{$this->minMemorySize}M";
848 
849  if ( ini_set( "memory_limit", $newLimit ) === false ) {
850  $this->showMessage( 'config-memory-bad', $limit );
851  } else {
852  $this->showMessage( 'config-memory-raised', $limit, $newLimit );
853  $this->setVar( '_RaiseMemory', true );
854  }
855  }
856 
857  return true;
858  }
859 
863  protected function envCheckCache() {
864  $caches = [];
865  foreach ( $this->objectCaches as $name => $function ) {
866  if ( function_exists( $function ) ) {
867  $caches[$name] = true;
868  }
869  }
870 
871  if ( !$caches ) {
872  $key = 'config-no-cache-apcu';
873  $this->showMessage( $key );
874  }
875 
876  $this->setVar( '_Caches', $caches );
877  }
878 
883  protected function envCheckModSecurity() {
884  if ( self::apacheModulePresent( 'mod_security' )
885  || self::apacheModulePresent( 'mod_security2' ) ) {
886  $this->showMessage( 'config-mod-security' );
887  }
888 
889  return true;
890  }
891 
896  protected function envCheckDiff3() {
897  $names = [ "gdiff3", "diff3" ];
898  if ( wfIsWindows() ) {
899  $names[] = 'diff3.exe';
900  }
901  $versionInfo = [ '--version', 'GNU diffutils' ];
902 
903  $diff3 = ExecutableFinder::findInDefaultPaths( $names, $versionInfo );
904 
905  if ( $diff3 ) {
906  $this->setVar( 'wgDiff3', $diff3 );
907  } else {
908  $this->setVar( 'wgDiff3', false );
909  $this->showMessage( 'config-diff3-bad' );
910  }
911 
912  return true;
913  }
914 
919  protected function envCheckGraphics() {
920  $names = wfIsWindows() ? 'convert.exe' : 'convert';
921  $versionInfo = [ '-version', 'ImageMagick' ];
922  $convert = ExecutableFinder::findInDefaultPaths( $names, $versionInfo );
923 
924  $this->setVar( 'wgImageMagickConvertCommand', '' );
925  if ( $convert ) {
926  $this->setVar( 'wgImageMagickConvertCommand', $convert );
927  $this->showMessage( 'config-imagemagick', $convert );
928 
929  return true;
930  } elseif ( function_exists( 'imagejpeg' ) ) {
931  $this->showMessage( 'config-gd' );
932  } else {
933  $this->showMessage( 'config-no-scaling' );
934  }
935 
936  return true;
937  }
938 
945  protected function envCheckGit() {
946  $names = wfIsWindows() ? 'git.exe' : 'git';
947  $versionInfo = [ '--version', 'git version' ];
948 
949  $git = ExecutableFinder::findInDefaultPaths( $names, $versionInfo );
950 
951  if ( $git ) {
952  $this->setVar( 'wgGitBin', $git );
953  $this->showMessage( 'config-git', $git );
954  } else {
955  $this->setVar( 'wgGitBin', false );
956  $this->showMessage( 'config-git-bad' );
957  }
958 
959  return true;
960  }
961 
967  protected function envCheckServer() {
968  $server = $this->envGetDefaultServer();
969  if ( $server !== null ) {
970  $this->showMessage( 'config-using-server', $server );
971  }
972  return true;
973  }
974 
980  protected function envCheckPath() {
981  $this->showMessage(
982  'config-using-uri',
983  $this->getVar( 'wgServer' ),
984  $this->getVar( 'wgScriptPath' )
985  );
986  return true;
987  }
988 
993  protected function envCheckShellLocale() {
994  $os = php_uname( 's' );
995  $supported = [ 'Linux', 'SunOS', 'HP-UX', 'Darwin' ]; # Tested these
996 
997  if ( !in_array( $os, $supported ) ) {
998  return true;
999  }
1000 
1001  if ( Shell::isDisabled() ) {
1002  return true;
1003  }
1004 
1005  # Get a list of available locales.
1006  $result = Shell::command( '/usr/bin/locale', '-a' )
1007  ->execute();
1008 
1009  if ( $result->getExitCode() != 0 ) {
1010  return true;
1011  }
1012 
1013  $lines = $result->getStdout();
1014  $lines = array_map( 'trim', explode( "\n", $lines ) );
1015  $candidatesByLocale = [];
1016  $candidatesByLang = [];
1017  foreach ( $lines as $line ) {
1018  if ( $line === '' ) {
1019  continue;
1020  }
1021 
1022  if ( !preg_match( '/^([a-zA-Z]+)(_[a-zA-Z]+|)\.(utf8|UTF-8)(@[a-zA-Z_]*|)$/i', $line, $m ) ) {
1023  continue;
1024  }
1025 
1026  list( , $lang, , , ) = $m;
1027 
1028  $candidatesByLocale[$m[0]] = $m;
1029  $candidatesByLang[$lang][] = $m;
1030  }
1031 
1032  # Try the current value of LANG.
1033  if ( isset( $candidatesByLocale[getenv( 'LANG' )] ) ) {
1034  $this->setVar( 'wgShellLocale', getenv( 'LANG' ) );
1035 
1036  return true;
1037  }
1038 
1039  # Try the most common ones.
1040  $commonLocales = [ 'C.UTF-8', 'en_US.UTF-8', 'en_US.utf8', 'de_DE.UTF-8', 'de_DE.utf8' ];
1041  foreach ( $commonLocales as $commonLocale ) {
1042  if ( isset( $candidatesByLocale[$commonLocale] ) ) {
1043  $this->setVar( 'wgShellLocale', $commonLocale );
1044 
1045  return true;
1046  }
1047  }
1048 
1049  # Is there an available locale in the Wiki's language?
1050  $wikiLang = $this->getVar( 'wgLanguageCode' );
1051 
1052  if ( isset( $candidatesByLang[$wikiLang] ) ) {
1053  $m = reset( $candidatesByLang[$wikiLang] );
1054  $this->setVar( 'wgShellLocale', $m[0] );
1055 
1056  return true;
1057  }
1058 
1059  # Are there any at all?
1060  if ( count( $candidatesByLocale ) ) {
1061  $m = reset( $candidatesByLocale );
1062  $this->setVar( 'wgShellLocale', $m[0] );
1063 
1064  return true;
1065  }
1066 
1067  # Give up.
1068  return true;
1069  }
1070 
1075  protected function envCheckUploadsDirectory() {
1076  global $IP;
1077 
1078  $dir = $IP . '/images/';
1079  $url = $this->getVar( 'wgServer' ) . $this->getVar( 'wgScriptPath' ) . '/images/';
1080  $safe = !$this->dirIsExecutable( $dir, $url );
1081 
1082  if ( !$safe ) {
1083  $this->showMessage( 'config-uploads-not-safe', $dir );
1084  }
1085 
1086  return true;
1087  }
1088 
1094  protected function envCheckSuhosinMaxValueLength() {
1095  $maxValueLength = ini_get( 'suhosin.get.max_value_length' );
1096  if ( $maxValueLength > 0 && $maxValueLength < 1024 ) {
1097  // Only warn if the value is below the sane 1024
1098  $this->showMessage( 'config-suhosin-max-value-length', $maxValueLength );
1099  }
1100 
1101  return true;
1102  }
1103 
1110  protected function envCheck64Bit() {
1111  if ( PHP_INT_SIZE == 4 ) {
1112  $this->showMessage( 'config-using-32bit' );
1113  }
1114 
1115  return true;
1116  }
1117 
1123  protected function unicodeChar( $c ) {
1124  $c = hexdec( $c );
1125  if ( $c <= 0x7F ) {
1126  return chr( $c );
1127  } elseif ( $c <= 0x7FF ) {
1128  return chr( 0xC0 | $c >> 6 ) . chr( 0x80 | $c & 0x3F );
1129  } elseif ( $c <= 0xFFFF ) {
1130  return chr( 0xE0 | $c >> 12 ) . chr( 0x80 | $c >> 6 & 0x3F ) .
1131  chr( 0x80 | $c & 0x3F );
1132  } elseif ( $c <= 0x10FFFF ) {
1133  return chr( 0xF0 | $c >> 18 ) . chr( 0x80 | $c >> 12 & 0x3F ) .
1134  chr( 0x80 | $c >> 6 & 0x3F ) .
1135  chr( 0x80 | $c & 0x3F );
1136  } else {
1137  return false;
1138  }
1139  }
1140 
1144  protected function envCheckLibicu() {
1152  $not_normal_c = $this->unicodeChar( "FA6C" );
1153  $normal_c = $this->unicodeChar( "242EE" );
1154 
1155  $useNormalizer = 'php';
1156  $needsUpdate = false;
1157 
1158  if ( function_exists( 'normalizer_normalize' ) ) {
1159  $useNormalizer = 'intl';
1160  $intl = normalizer_normalize( $not_normal_c, Normalizer::FORM_C );
1161  if ( $intl !== $normal_c ) {
1162  $needsUpdate = true;
1163  }
1164  }
1165 
1166  // Uses messages 'config-unicode-using-php' and 'config-unicode-using-intl'
1167  if ( $useNormalizer === 'php' ) {
1168  $this->showMessage( 'config-unicode-pure-php-warning' );
1169  } else {
1170  $this->showMessage( 'config-unicode-using-' . $useNormalizer );
1171  if ( $needsUpdate ) {
1172  $this->showMessage( 'config-unicode-update-warning' );
1173  }
1174  }
1175  }
1176 
1180  protected function envPrepServer() {
1181  $server = $this->envGetDefaultServer();
1182  if ( $server !== null ) {
1183  $this->setVar( 'wgServer', $server );
1184  }
1185  }
1186 
1191  abstract protected function envGetDefaultServer();
1192 
1196  protected function envPrepPath() {
1197  global $IP;
1198  $IP = dirname( dirname( __DIR__ ) );
1199  $this->setVar( 'IP', $IP );
1200  }
1201 
1210  public function dirIsExecutable( $dir, $url ) {
1211  $scriptTypes = [
1212  'php' => [
1213  "<?php echo 'ex' . 'ec';",
1214  "#!/var/env php\n<?php echo 'ex' . 'ec';",
1215  ],
1216  ];
1217 
1218  // it would be good to check other popular languages here, but it'll be slow.
1219 
1220  Wikimedia\suppressWarnings();
1221 
1222  foreach ( $scriptTypes as $ext => $contents ) {
1223  foreach ( $contents as $source ) {
1224  $file = 'exectest.' . $ext;
1225 
1226  if ( !file_put_contents( $dir . $file, $source ) ) {
1227  break;
1228  }
1229 
1230  try {
1231  $text = Http::get( $url . $file, [ 'timeout' => 3 ], __METHOD__ );
1232  } catch ( Exception $e ) {
1233  // Http::get throws with allow_url_fopen = false and no curl extension.
1234  $text = null;
1235  }
1236  unlink( $dir . $file );
1237 
1238  if ( $text == 'exec' ) {
1239  Wikimedia\restoreWarnings();
1240 
1241  return $ext;
1242  }
1243  }
1244  }
1245 
1246  Wikimedia\restoreWarnings();
1247 
1248  return false;
1249  }
1250 
1257  public static function apacheModulePresent( $moduleName ) {
1258  if ( function_exists( 'apache_get_modules' ) && in_array( $moduleName, apache_get_modules() ) ) {
1259  return true;
1260  }
1261  // try it the hard way
1262  ob_start();
1263  phpinfo( INFO_MODULES );
1264  $info = ob_get_clean();
1265 
1266  return strpos( $info, $moduleName ) !== false;
1267  }
1268 
1274  public function setParserLanguage( $lang ) {
1275  $this->parserOptions->setTargetLanguage( $lang );
1276  $this->parserOptions->setUserLang( $lang );
1277  }
1278 
1284  protected function getDocUrl( $page ) {
1285  return "{$_SERVER['PHP_SELF']}?page=" . urlencode( $page );
1286  }
1287 
1297  public function findExtensions( $directory = 'extensions' ) {
1298  if ( $this->getVar( 'IP' ) === null ) {
1299  return [];
1300  }
1301 
1302  $extDir = $this->getVar( 'IP' ) . '/' . $directory;
1303  if ( !is_readable( $extDir ) || !is_dir( $extDir ) ) {
1304  return [];
1305  }
1306 
1307  // extensions -> extension.json, skins -> skin.json
1308  $jsonFile = substr( $directory, 0, strlen( $directory ) - 1 ) . '.json';
1309 
1310  $dh = opendir( $extDir );
1311  $exts = [];
1312  while ( ( $file = readdir( $dh ) ) !== false ) {
1313  if ( !is_dir( "$extDir/$file" ) ) {
1314  continue;
1315  }
1316  $fullJsonFile = "$extDir/$file/$jsonFile";
1317  $isJson = file_exists( $fullJsonFile );
1318  $isPhp = false;
1319  if ( !$isJson ) {
1320  // Only fallback to PHP file if JSON doesn't exist
1321  $fullPhpFile = "$extDir/$file/$file.php";
1322  $isPhp = file_exists( $fullPhpFile );
1323  }
1324  if ( $isJson || $isPhp ) {
1325  // Extension exists. Now see if there are screenshots
1326  $exts[$file] = [];
1327  if ( is_dir( "$extDir/$file/screenshots" ) ) {
1328  $paths = glob( "$extDir/$file/screenshots/*.png" );
1329  foreach ( $paths as $path ) {
1330  $exts[$file]['screenshots'][] = str_replace( $extDir, "../$directory", $path );
1331  }
1332 
1333  }
1334  }
1335  if ( $isJson ) {
1336  $info = $this->readExtension( $fullJsonFile );
1337  if ( $info === false ) {
1338  continue;
1339  }
1340  $exts[$file] += $info;
1341  }
1342  }
1343  closedir( $dh );
1344  uksort( $exts, 'strnatcasecmp' );
1345 
1346  return $exts;
1347  }
1348 
1356  private function readExtension( $fullJsonFile, $extDeps = [], $skinDeps = [] ) {
1357  $load = [
1358  $fullJsonFile => 1
1359  ];
1360  if ( $extDeps ) {
1361  $extDir = $this->getVar( 'IP' ) . '/extensions';
1362  foreach ( $extDeps as $dep ) {
1363  $fname = "$extDir/$dep/extension.json";
1364  if ( !file_exists( $fname ) ) {
1365  return false;
1366  }
1367  $load[$fname] = 1;
1368  }
1369  }
1370  if ( $skinDeps ) {
1371  $skinDir = $this->getVar( 'IP' ) . '/skins';
1372  foreach ( $skinDeps as $dep ) {
1373  $fname = "$skinDir/$dep/skin.json";
1374  if ( !file_exists( $fname ) ) {
1375  return false;
1376  }
1377  $load[$fname] = 1;
1378  }
1379  }
1380  $registry = new ExtensionRegistry();
1381  try {
1382  $info = $registry->readFromQueue( $load );
1383  } catch ( ExtensionDependencyError $e ) {
1384  if ( $e->incompatibleCore || $e->incompatibleSkins
1385  || $e->incompatibleExtensions
1386  ) {
1387  // If something is incompatible with a dependency, we have no real
1388  // option besides skipping it
1389  return false;
1390  } elseif ( $e->missingExtensions || $e->missingSkins ) {
1391  // There's an extension missing in the dependency tree,
1392  // so add those to the dependency list and try again
1393  return $this->readExtension(
1394  $fullJsonFile,
1395  array_merge( $extDeps, $e->missingExtensions ),
1396  array_merge( $skinDeps, $e->missingSkins )
1397  );
1398  }
1399  // Some other kind of dependency error?
1400  return false;
1401  }
1402  $ret = [];
1403  // The order of credits will be the order of $load,
1404  // so the first extension is the one we want to load,
1405  // everything else is a dependency
1406  $i = 0;
1407  foreach ( $info['credits'] as $name => $credit ) {
1408  $i++;
1409  if ( $i == 1 ) {
1410  // Extension we want to load
1411  continue;
1412  }
1413  $type = basename( $credit['path'] ) === 'skin.json' ? 'skins' : 'extensions';
1414  $ret['requires'][$type][] = $credit['name'];
1415  }
1416  $credits = array_values( $info['credits'] )[0];
1417  if ( isset( $credits['url'] ) ) {
1418  $ret['url'] = $credits['url'];
1419  }
1420  $ret['type'] = $credits['type'];
1421 
1422  return $ret;
1423  }
1424 
1433  public function getDefaultSkin( array $skinNames ) {
1434  $defaultSkin = $GLOBALS['wgDefaultSkin'];
1435  if ( !$skinNames || in_array( $defaultSkin, $skinNames ) ) {
1436  return $defaultSkin;
1437  } else {
1438  return $skinNames[0];
1439  }
1440  }
1441 
1447  protected function includeExtensions() {
1448  global $IP;
1449  $exts = $this->getVar( '_Extensions' );
1450  $IP = $this->getVar( 'IP' );
1451 
1452  // Marker for DatabaseUpdater::loadExtensions so we don't
1453  // double load extensions
1454  define( 'MW_EXTENSIONS_LOADED', true );
1455 
1465  $wgAutoloadClasses = [];
1466  $queue = [];
1467 
1468  require "$IP/includes/DefaultSettings.php";
1469 
1470  foreach ( $exts as $e ) {
1471  if ( file_exists( "$IP/extensions/$e/extension.json" ) ) {
1472  $queue["$IP/extensions/$e/extension.json"] = 1;
1473  } else {
1474  require_once "$IP/extensions/$e/$e.php";
1475  }
1476  }
1477 
1478  $registry = new ExtensionRegistry();
1479  $data = $registry->readFromQueue( $queue );
1480  $wgAutoloadClasses += $data['autoload'];
1481 
1482  $hooksWeWant = isset( $wgHooks['LoadExtensionSchemaUpdates'] ) ?
1484  $wgHooks['LoadExtensionSchemaUpdates'] : [];
1485 
1486  if ( isset( $data['globals']['wgHooks']['LoadExtensionSchemaUpdates'] ) ) {
1487  $hooksWeWant = array_merge_recursive(
1488  $hooksWeWant,
1489  $data['globals']['wgHooks']['LoadExtensionSchemaUpdates']
1490  );
1491  }
1492  // Unset everyone else's hooks. Lord knows what someone might be doing
1493  // in ParserFirstCallInit (see T29171)
1494  $GLOBALS['wgHooks'] = [ 'LoadExtensionSchemaUpdates' => $hooksWeWant ];
1495 
1496  return Status::newGood();
1497  }
1498 
1511  protected function getInstallSteps( DatabaseInstaller $installer ) {
1512  $coreInstallSteps = [
1513  [ 'name' => 'database', 'callback' => [ $installer, 'setupDatabase' ] ],
1514  [ 'name' => 'tables', 'callback' => [ $installer, 'createTables' ] ],
1515  [ 'name' => 'interwiki', 'callback' => [ $installer, 'populateInterwikiTable' ] ],
1516  [ 'name' => 'stats', 'callback' => [ $this, 'populateSiteStats' ] ],
1517  [ 'name' => 'keys', 'callback' => [ $this, 'generateKeys' ] ],
1518  [ 'name' => 'updates', 'callback' => [ $installer, 'insertUpdateKeys' ] ],
1519  [ 'name' => 'sysop', 'callback' => [ $this, 'createSysop' ] ],
1520  [ 'name' => 'mainpage', 'callback' => [ $this, 'createMainpage' ] ],
1521  ];
1522 
1523  // Build the array of install steps starting from the core install list,
1524  // then adding any callbacks that wanted to attach after a given step
1525  foreach ( $coreInstallSteps as $step ) {
1526  $this->installSteps[] = $step;
1527  if ( isset( $this->extraInstallSteps[$step['name']] ) ) {
1528  $this->installSteps = array_merge(
1529  $this->installSteps,
1530  $this->extraInstallSteps[$step['name']]
1531  );
1532  }
1533  }
1534 
1535  // Prepend any steps that want to be at the beginning
1536  if ( isset( $this->extraInstallSteps['BEGINNING'] ) ) {
1537  $this->installSteps = array_merge(
1538  $this->extraInstallSteps['BEGINNING'],
1539  $this->installSteps
1540  );
1541  }
1542 
1543  // Extensions should always go first, chance to tie into hooks and such
1544  if ( count( $this->getVar( '_Extensions' ) ) ) {
1545  array_unshift( $this->installSteps,
1546  [ 'name' => 'extensions', 'callback' => [ $this, 'includeExtensions' ] ]
1547  );
1548  $this->installSteps[] = [
1549  'name' => 'extension-tables',
1550  'callback' => [ $installer, 'createExtensionTables' ]
1551  ];
1552  }
1553 
1554  return $this->installSteps;
1555  }
1556 
1565  public function performInstallation( $startCB, $endCB ) {
1566  $installResults = [];
1567  $installer = $this->getDBInstaller();
1568  $installer->preInstall();
1569  $steps = $this->getInstallSteps( $installer );
1570  foreach ( $steps as $stepObj ) {
1571  $name = $stepObj['name'];
1572  call_user_func_array( $startCB, [ $name ] );
1573 
1574  // Perform the callback step
1575  $status = call_user_func( $stepObj['callback'], $installer );
1576 
1577  // Output and save the results
1578  call_user_func( $endCB, $name, $status );
1579  $installResults[$name] = $status;
1580 
1581  // If we've hit some sort of fatal, we need to bail.
1582  // Callback already had a chance to do output above.
1583  if ( !$status->isOk() ) {
1584  break;
1585  }
1586  }
1587  if ( $status->isOk() ) {
1588  $this->showMessage(
1589  'config-install-success',
1590  $this->getVar( 'wgServer' ),
1591  $this->getVar( 'wgScriptPath' )
1592  );
1593  $this->setVar( '_InstallDone', true );
1594  }
1595 
1596  return $installResults;
1597  }
1598 
1604  public function generateKeys() {
1605  $keys = [ 'wgSecretKey' => 64 ];
1606  if ( strval( $this->getVar( 'wgUpgradeKey' ) ) === '' ) {
1607  $keys['wgUpgradeKey'] = 16;
1608  }
1609 
1610  return $this->doGenerateKeys( $keys );
1611  }
1612 
1620  protected function doGenerateKeys( $keys ) {
1622 
1623  $strong = true;
1624  foreach ( $keys as $name => $length ) {
1625  $secretKey = MWCryptRand::generateHex( $length, true );
1626  if ( !MWCryptRand::wasStrong() ) {
1627  $strong = false;
1628  }
1629 
1630  $this->setVar( $name, $secretKey );
1631  }
1632 
1633  if ( !$strong ) {
1634  $names = array_keys( $keys );
1635  $names = preg_replace( '/^(.*)$/', '\$$1', $names );
1636  global $wgLang;
1637  $status->warning( 'config-insecure-keys', $wgLang->listToText( $names ), count( $names ) );
1638  }
1639 
1640  return $status;
1641  }
1642 
1648  protected function createSysop() {
1649  $name = $this->getVar( '_AdminName' );
1651 
1652  if ( !$user ) {
1653  // We should've validated this earlier anyway!
1654  return Status::newFatal( 'config-admin-error-user', $name );
1655  }
1656 
1657  if ( $user->idForName() == 0 ) {
1658  $user->addToDatabase();
1659 
1660  try {
1661  $user->setPassword( $this->getVar( '_AdminPassword' ) );
1662  } catch ( PasswordError $pwe ) {
1663  return Status::newFatal( 'config-admin-error-password', $name, $pwe->getMessage() );
1664  }
1665 
1666  $user->addGroup( 'sysop' );
1667  $user->addGroup( 'bureaucrat' );
1668  if ( $this->getVar( '_AdminEmail' ) ) {
1669  $user->setEmail( $this->getVar( '_AdminEmail' ) );
1670  }
1671  $user->saveSettings();
1672 
1673  // Update user count
1674  $ssUpdate = SiteStatsUpdate::factory( [ 'users' => 1 ] );
1675  $ssUpdate->doUpdate();
1676  }
1678 
1679  if ( $this->getVar( '_Subscribe' ) && $this->getVar( '_AdminEmail' ) ) {
1681  }
1682 
1683  return $status;
1684  }
1685 
1690  $params = [
1691  'email' => $this->getVar( '_AdminEmail' ),
1692  'language' => 'en',
1693  'digest' => 0
1694  ];
1695 
1696  // Mailman doesn't support as many languages as we do, so check to make
1697  // sure their selected language is available
1698  $myLang = $this->getVar( '_UserLang' );
1699  if ( in_array( $myLang, $this->mediaWikiAnnounceLanguages ) ) {
1700  $myLang = $myLang == 'pt-br' ? 'pt_BR' : $myLang; // rewrite to Mailman's pt_BR
1701  $params['language'] = $myLang;
1702  }
1703 
1705  $res = MWHttpRequest::factory( $this->mediaWikiAnnounceUrl,
1706  [ 'method' => 'POST', 'postData' => $params ], __METHOD__ )->execute();
1707  if ( !$res->isOK() ) {
1708  $s->warning( 'config-install-subscribe-fail', $res->getMessage() );
1709  }
1710  } else {
1711  $s->warning( 'config-install-subscribe-notpossible' );
1712  }
1713  }
1714 
1721  protected function createMainpage( DatabaseInstaller $installer ) {
1724  if ( $title->exists() ) {
1725  $status->warning( 'config-install-mainpage-exists' );
1726  return $status;
1727  }
1728  try {
1729  $page = WikiPage::factory( $title );
1730  $content = new WikitextContent(
1731  wfMessage( 'mainpagetext' )->inContentLanguage()->text() . "\n\n" .
1732  wfMessage( 'mainpagedocfooter' )->inContentLanguage()->text()
1733  );
1734 
1735  $status = $page->doEditContent( $content,
1736  '',
1737  EDIT_NEW,
1738  false,
1739  User::newFromName( 'MediaWiki default' )
1740  );
1741  } catch ( Exception $e ) {
1742  // using raw, because $wgShowExceptionDetails can not be set yet
1743  $status->fatal( 'config-install-mainpage-failed', $e->getMessage() );
1744  }
1745 
1746  return $status;
1747  }
1748 
1752  public static function overrideConfig() {
1753  // Use PHP's built-in session handling, since MediaWiki's
1754  // SessionHandler can't work before we have an object cache set up.
1755  define( 'MW_NO_SESSION_HANDLER', 1 );
1756 
1757  // Don't access the database
1758  $GLOBALS['wgUseDatabaseMessages'] = false;
1759  // Don't cache langconv tables
1760  $GLOBALS['wgLanguageConverterCacheType'] = CACHE_NONE;
1761  // Debug-friendly
1762  $GLOBALS['wgShowExceptionDetails'] = true;
1763  // Don't break forms
1764  $GLOBALS['wgExternalLinkTarget'] = '_blank';
1765 
1766  // Extended debugging
1767  $GLOBALS['wgShowSQLErrors'] = true;
1768  $GLOBALS['wgShowDBErrorBacktrace'] = true;
1769 
1770  // Allow multiple ob_flush() calls
1771  $GLOBALS['wgDisableOutputCompression'] = true;
1772 
1773  // Use a sensible cookie prefix (not my_wiki)
1774  $GLOBALS['wgCookiePrefix'] = 'mw_installer';
1775 
1776  // Some of the environment checks make shell requests, remove limits
1777  $GLOBALS['wgMaxShellMemory'] = 0;
1778 
1779  // Override the default CookieSessionProvider with a dummy
1780  // implementation that won't stomp on PHP's cookies.
1781  $GLOBALS['wgSessionProviders'] = [
1782  [
1784  'args' => [ [
1785  'priority' => 1,
1786  ] ]
1787  ]
1788  ];
1789 
1790  // Don't try to use any object cache for SessionManager either.
1791  $GLOBALS['wgSessionCacheType'] = CACHE_NONE;
1792  }
1793 
1801  public function addInstallStep( $callback, $findStep = 'BEGINNING' ) {
1802  $this->extraInstallSteps[$findStep][] = $callback;
1803  }
1804 
1809  protected function disableTimeLimit() {
1810  Wikimedia\suppressWarnings();
1811  set_time_limit( 0 );
1812  Wikimedia\restoreWarnings();
1813  }
1814 }
Installer\envCheckBrokenXML
envCheckBrokenXML()
Some versions of libxml+PHP break < and > encoding horribly.
Definition: Installer.php:796
ParserOptions
Set options of the Parser.
Definition: ParserOptions.php:40
MediaWiki\Shell\Shell
Executes shell commands.
Definition: Shell.php:44
$user
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
Definition: hooks.txt:244
Installer\__construct
__construct()
Constructor, always call this from child classes.
Definition: Installer.php:402
$wgUser
$wgUser
Definition: Setup.php:894
User\newFromId
static newFromId( $id)
Static factory method for creation from a given user ID.
Definition: User.php:614
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:273
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:187
MWCryptRand\wasStrong
static wasStrong()
Return a boolean indicating whether or not the source used for cryptographic random bytes generation ...
Definition: MWCryptRand.php:44
Installer\createMainpage
createMainpage(DatabaseInstaller $installer)
Insert Main Page with default content.
Definition: Installer.php:1721
Installer\showMessage
showMessage( $msg)
UI interface for displaying a short message The parameters are like parameters to wfMessage().
$wgParser
$wgParser
Definition: Setup.php:909
Installer\parse
parse( $text, $lineStart=false)
Convert wikitext $text to HTML.
Definition: Installer.php:691
ExtensionDependencyError
Copyright (C) 2018 Kunal Mehta legoktm@member.fsf.org
Definition: ExtensionDependencyError.php:24
MultiConfig
Provides a fallback sequence for Config objects.
Definition: MultiConfig.php:28
$wgAutoloadClasses
$wgAutoloadClasses['ReplaceTextHooks']
Definition: ReplaceText.php:61
$lang
if(!isset( $args[0])) $lang
Definition: testCompression.php:33
HashConfig
A Config instance which stores all settings as a member variable.
Definition: HashConfig.php:28
captcha-old.count
count
Definition: captcha-old.py:249
$wgMemc
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be but certainly PHP makes such object oriented programming models easier than they were in previous versions For the time being MediaWiki programmers will have to work in an environment with some global context At the time of globals were initialised on startup by MediaWiki of these were configuration which are documented in DefaultSettings php There is no comprehensive documentation for the remaining however some of the most important ones are listed below They are typically initialised either in index php or in Setup php For a description of the see design txt $wgTitle Title object created from the request URL $wgOut OutputPage object for HTTP response $wgUser User object for the user associated with the current request $wgLang Language object selected by user preferences $wgContLang Language object associated with the wiki being viewed $wgParser Parser object Parser extensions register their hooks here $wgRequest WebRequest to get request data $wgMemc
Definition: globals.txt:25
Installer\showStatusMessage
showStatusMessage(Status $status)
Show a message to the installing user by using a Status object.
Installer\dirIsExecutable
dirIsExecutable( $dir, $url)
Checks if scripts located in the given directory can be executed via the given URL.
Definition: Installer.php:1210
text
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition: design.txt:12
CACHE_NONE
const CACHE_NONE
Definition: Defines.php:103
Installer\envCheckLibicu
envCheckLibicu()
Check the libicu version.
Definition: Installer.php:1144
Title\newMainPage
static newMainPage()
Create a new Title for the Main Page.
Definition: Title.php:586
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1985
ExtensionRegistry
ExtensionRegistry class.
Definition: ExtensionRegistry.php:14
CACHE_MEMCACHED
const CACHE_MEMCACHED
Definition: Defines.php:105
Installer\populateSiteStats
populateSiteStats(DatabaseInstaller $installer)
Install step which adds a row to the site_stats table with appropriate initial values.
Definition: Installer.php:731
Installer\$extraInstallSteps
array $extraInstallSteps
Extra steps for installation, for things like DatabaseInstallers to modify.
Definition: Installer.php:241
DatabaseInstaller\getConnection
getConnection()
Connect to the database using the administrative user/password currently defined in the session.
Definition: DatabaseInstaller.php:179
Installer\$rightsProfiles
array $rightsProfiles
User rights profiles.
Definition: Installer.php:259
Installer\envCheckShellLocale
envCheckShellLocale()
Environment check for preferred locale in shell.
Definition: Installer.php:993
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
Installer\envCheckUploadsDirectory
envCheckUploadsDirectory()
Environment check for the permissions of the uploads directory.
Definition: Installer.php:1075
StatusValue\newFatal
static newFatal( $message)
Factory function for fatal errors.
Definition: StatusValue.php:68
Installer\$settings
array $settings
Definition: Installer.php:59
Installer\envPrepServer
envPrepServer()
Environment prep for the server hostname.
Definition: Installer.php:1180
$params
$params
Definition: styleTest.css.php:40
Installer\performInstallation
performInstallation( $startCB, $endCB)
Actually perform the installation.
Definition: Installer.php:1565
Installer\$mediaWikiAnnounceLanguages
$mediaWikiAnnounceLanguages
Supported language codes for Mailman.
Definition: Installer.php:327
PasswordError
Show an error when any operation involving passwords fails to run.
Definition: PasswordError.php:26
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:591
MediaWiki\Interwiki\NullInterwikiLookup
An interwiki lookup that has no data, intended for use in the installer.
Definition: NullInterwikiLookup.php:29
$s
$s
Definition: mergeMessageFileList.php:187
MWCryptRand\generateHex
static generateHex( $chars, $forceStrong=false)
Generate a run of (ideally) cryptographically random data and return it in hexadecimal string format.
Definition: MWCryptRand.php:76
$res
$res
Definition: database.txt:21
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:302
Installer\$dbInstallers
array $dbInstallers
Cached DB installer instances, access using getDBInstaller().
Definition: Installer.php:73
Installer\setParserLanguage
setParserLanguage( $lang)
ParserOptions are constructed before we determined the language, so fix it.
Definition: Installer.php:1274
Installer\addInstallStep
addInstallStep( $callback, $findStep='BEGINNING')
Add an installation step following the given step.
Definition: Installer.php:1801
Installer\$internalDefaults
array $internalDefaults
Variables that are stored alongside globals, and are used for any configuration of the installation p...
Definition: Installer.php:197
Installer\setPassword
setPassword( $name, $value)
Set a variable which stores a password, except if the new value is a fake password in which case leav...
Definition: Installer.php:644
Installer\envGetDefaultServer
envGetDefaultServer()
Helper function to be called from envPrepServer()
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
Installer\setVar
setVar( $name, $value)
Set a MW configuration variable, or internal installer configuration variable.
Definition: Installer.php:524
Installer\$parserTitle
Title $parserTitle
Cached Title, used by parse().
Definition: Installer.php:87
Installer\$objectCaches
array $objectCaches
Known object cache types and the functions used to test for their existence.
Definition: Installer.php:248
Installer\$minMemorySize
int $minMemorySize
Minimum memory size in MB.
Definition: Installer.php:80
Status
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Definition: Status.php:40
Installer\overrideConfig
static overrideConfig()
Override the necessary bits of the config to run an installation.
Definition: Installer.php:1752
Installer\createSysop
createSysop()
Create the first user account, grant it sysop and bureaucrat rights.
Definition: Installer.php:1648
Installer\getFakePassword
getFakePassword( $realPassword)
Get a fake password for sending back to the user in HTML.
Definition: Installer.php:633
Config
Interface for configuration instances.
Definition: Config.php:28
Installer\envCheckSuhosinMaxValueLength
envCheckSuhosinMaxValueLength()
Checks if suhosin.get.max_value_length is set, and if so generate a warning because it decreases Reso...
Definition: Installer.php:1094
Language\getLocalisationCache
static getLocalisationCache()
Get the LocalisationCache instance.
Definition: Language.php:406
Installer\showError
showError( $msg)
Same as showMessage(), but for displaying errors.
$html
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
Definition: hooks.txt:1987
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
Installer\envPrepPath
envPrepPath()
Environment prep for setting $IP and $wgScriptPath.
Definition: Installer.php:1196
WikiPage\factory
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:115
Installer\envCheckDiff3
envCheckDiff3()
Search for GNU diff3.
Definition: Installer.php:896
Config\get
get( $name)
Get a configuration variable such as "Sitename" or "UploadMaintenance.".
Installer\generateKeys
generateKeys()
Generate $wgSecretKey.
Definition: Installer.php:1604
Installer\envCheckMemory
envCheckMemory()
Environment check for available memory.
Definition: Installer.php:837
MediaWiki
A helper class for throttling authentication attempts.
$IP
$IP
Definition: update.php:3
$wgObjectCaches
$wgObjectCaches
Advanced object cache configuration.
Definition: DefaultSettings.php:2298
Installer\getCompiledDBs
getCompiledDBs()
Get a list of DBs supported by current PHP setup.
Definition: Installer.php:551
ObjectCache\getInstance
static getInstance( $id)
Get a cached instance of the specified type of cache object.
Definition: ObjectCache.php:92
$queue
$queue
Definition: mergeMessageFileList.php:160
Installer\envCheckCache
envCheckCache()
Environment check for compiled object cache types.
Definition: Installer.php:863
Installer\getExistingLocalSettings
static getExistingLocalSettings()
Determine if LocalSettings.php exists.
Definition: Installer.php:593
Installer\envCheckPath
envCheckPath()
Environment check to inform user which paths we've assumed.
Definition: Installer.php:980
Installer\doGenerateKeys
doGenerateKeys( $keys)
Generate a secret value for variables using our CryptRand generator.
Definition: Installer.php:1620
$lines
$lines
Definition: router.php:61
$wgLang
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as $wgLang
Definition: design.txt:56
Installer\$parserOptions
ParserOptions $parserOptions
Cached ParserOptions, used by parse().
Definition: Installer.php:94
SiteStatsUpdate\factory
static factory(array $deltas)
Definition: SiteStatsUpdate.php:66
GlobalVarConfig
Accesses configuration settings from $GLOBALS.
Definition: GlobalVarConfig.php:28
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
settings
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be but certainly PHP makes such object oriented programming models easier than they were in previous versions For the time being MediaWiki programmers will have to work in an environment with some global context At the time of globals were initialised on startup by MediaWiki of these were configuration settings
Definition: globals.txt:25
$wgExternalLinkTarget
$wgExternalLinkTarget
Set a default target for external links, e.g.
Definition: DefaultSettings.php:4330
Installer\$dbTypes
static array $dbTypes
Known database types.
Definition: Installer.php:105
Installer\getVar
getVar( $name, $default=null)
Get an MW configuration variable, or internal installer configuration variable.
Definition: Installer.php:538
WikitextContent
Content object for wiki text pages.
Definition: WikitextContent.php:33
list
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
Installer\restoreLinkPopups
restoreLinkPopups()
Definition: Installer.php:718
Installer\getDefaultSkin
getDefaultSkin(array $skinNames)
Returns a default value to be used for $wgDefaultSkin: normally the one set in DefaultSettings,...
Definition: Installer.php:1433
$fname
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
Definition: Setup.php:112
Installer\findExtensions
findExtensions( $directory='extensions')
Finds extensions that follow the format /$directory/Name/Name.php, and returns an array containing th...
Definition: Installer.php:1297
Http\get
static get( $url, $options=[], $caller=__METHOD__)
Simple wrapper for Http::request( 'GET' )
Definition: Http.php:98
Installer\getInstallerConfig
static getInstallerConfig(Config $baseConfig)
Constructs a Config object that contains configuration settings that should be overwritten for the in...
Definition: Installer.php:364
$line
$line
Definition: cdb.php:59
$e
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
Definition: hooks.txt:2163
$value
$value
Definition: styleTest.css.php:45
Installer\$envPreps
array $envPreps
A list of environment preparation methods called by doEnvironmentPreps().
Definition: Installer.php:148
$wgExtensionDirectory
$wgExtensionDirectory
Filesystem extensions directory.
Definition: DefaultSettings.php:222
StatusValue\newGood
static newGood( $value=null)
Factory function for good results.
Definition: StatusValue.php:81
Installer\$installSteps
array $installSteps
The actual list of installation steps.
Definition: Installer.php:234
wfIsWindows
wfIsWindows()
Check if the operating system is Windows.
Definition: GlobalFunctions.php:2007
Installer\doEnvironmentPreps
doEnvironmentPreps()
Definition: Installer.php:512
Installer\readExtension
readExtension( $fullJsonFile, $extDeps=[], $skinDeps=[])
Definition: Installer.php:1356
CACHE_ANYTHING
const CACHE_ANYTHING
Definition: Defines.php:102
Installer\getDBInstaller
getDBInstaller( $type=false)
Get an instance of DatabaseInstaller for the specified DB type.
Definition: Installer.php:573
DatabaseInstaller
Base class for DBMS-specific installation helper classes.
Definition: DatabaseInstaller.php:33
$ret
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition: hooks.txt:1987
Installer\envCheckDB
envCheckDB()
Environment check for DB types.
Definition: Installer.php:757
Installer\getInstallSteps
getInstallSteps(DatabaseInstaller $installer)
Get an array of install steps.
Definition: Installer.php:1511
RequestContext\getMain
static getMain()
Get the RequestContext object associated with the main request.
Definition: RequestContext.php:434
Installer\$compiledDBs
array $compiledDBs
List of detected DBs, access using getCompiledDBs().
Definition: Installer.php:66
Installer\doEnvironmentChecks
doEnvironmentChecks()
Do initial checks of the PHP environment.
Definition: Installer.php:483
EDIT_NEW
const EDIT_NEW
Definition: Defines.php:153
Installer\envCheckGraphics
envCheckGraphics()
Environment check for ImageMagick and GD.
Definition: Installer.php:919
wfShorthandToInteger
wfShorthandToInteger( $string='', $default=-1)
Converts shorthand byte notation to integer form.
Definition: GlobalFunctions.php:3082
Installer\apacheModulePresent
static apacheModulePresent( $moduleName)
Checks for presence of an Apache module.
Definition: Installer.php:1257
PhpXmlBugTester
Test for PHP+libxml2 bug which breaks XML input subtly with certain versions.
Definition: PhpBugTests.php:32
Title
Represents a title within MediaWiki.
Definition: Title.php:39
Installer\envCheckPCRE
envCheckPCRE()
Environment check for the PCRE module.
Definition: Installer.php:815
$wgHooks
$wgHooks['ArticleShow'][]
Definition: hooks.txt:108
Installer\getParserOptions
getParserOptions()
Definition: Installer.php:710
MWHttpRequest\canMakeRequests
static canMakeRequests()
Simple function to test if we can make any sort of requests at all, using cURL or fopen()
Definition: MWHttpRequest.php:170
$path
$path
Definition: NoLocalSettings.php:25
Installer\envCheck64Bit
envCheck64Bit()
Checks if we're running on 64 bit or not.
Definition: Installer.php:1110
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
Installer\$licenses
array $licenses
License types.
Definition: Installer.php:284
Installer\disableTimeLimit
disableTimeLimit()
Disable the time limit for execution.
Definition: Installer.php:1809
$keys
$keys
Definition: testCompression.php:67
$source
$source
Definition: mwdoc-filter.php:46
Installer\envCheckServer
envCheckServer()
Environment check to inform user which server we've assumed.
Definition: Installer.php:967
Installer
Base installer class.
Definition: Installer.php:46
Installer\MINIMUM_PCRE_VERSION
const MINIMUM_PCRE_VERSION
The oldest version of PCRE we can support.
Definition: Installer.php:54
Language\factory
static factory( $code)
Get a cached or new language object for a given language code.
Definition: Language.php:183
$status
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action or null $user:User who performed the tagging when the tagging is subsequent to the action or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
Definition: hooks.txt:1255
wfMessage
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
ExecutableFinder\findInDefaultPaths
static findInDefaultPaths( $names, $versionInfo=false)
Same as locateExecutable(), but checks in getPossibleBinPaths() by default.
Definition: ExecutableFinder.php:96
Installer\getDBTypes
static getDBTypes()
Get a list of known DB types.
Definition: Installer.php:466
Installer\disableLinkPopups
disableLinkPopups()
Definition: Installer.php:714
MediaWikiServices
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
Definition: injection.txt:23
Installer\$mediaWikiAnnounceUrl
$mediaWikiAnnounceUrl
URL to mediawiki-announce subscription.
Definition: Installer.php:321
wfIsHHVM
wfIsHHVM()
Check if we are running under HHVM.
Definition: GlobalFunctions.php:2020
Installer\includeExtensions
includeExtensions()
Installs the auto-detected extensions.
Definition: Installer.php:1447
$ext
$ext
Definition: router.php:55
$wgStyleDirectory
$wgStyleDirectory
Filesystem stylesheets directory.
Definition: DefaultSettings.php:229
Installer\envCheckGit
envCheckGit()
Search for git.
Definition: Installer.php:945
Installer\getDocUrl
getDocUrl( $page)
Overridden by WebInstaller to provide lastPage parameters.
Definition: Installer.php:1284
$GLOBALS
$GLOBALS['IP']
Definition: ComposerHookHandler.php:6
Installer\subscribeToMediaWikiAnnounce
subscribeToMediaWikiAnnounce(Status $s)
Definition: Installer.php:1689
Installer\unicodeChar
unicodeChar( $c)
Convert a hex string representing a Unicode code point to that code point.
Definition: Installer.php:1123
CACHE_DB
const CACHE_DB
Definition: Defines.php:104
MWHttpRequest\factory
static factory( $url, array $options=null, $caller=__METHOD__)
Generate a new request object Deprecated:
Definition: MWHttpRequest.php:184
array
the array() calling protocol came about after MediaWiki 1.4rc1.
Installer\maybeGetWebserverPrimaryGroup
static maybeGetWebserverPrimaryGroup()
On POSIX systems return the primary group of the webserver we're running under.
Definition: Installer.php:661
Installer\$defaultVarNames
array $defaultVarNames
MediaWiki configuration globals that will eventually be passed through to LocalSettings....
Definition: Installer.php:160
Installer\getDBInstallerClass
static getDBInstallerClass( $type)
Get the DatabaseInstaller class name for this type.
Definition: Installer.php:562
$out
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition: hooks.txt:783
Installer\$envChecks
array $envChecks
A list of environment check methods called by doEnvironmentChecks().
Definition: Installer.php:124
$type
$type
Definition: testCompression.php:48
Installer\envCheckModSecurity
envCheckModSecurity()
Scare user to death if they have mod_security or mod_security2.
Definition: Installer.php:883