MediaWiki  1.34.0
LocalSettingsGenerator.php
Go to the documentation of this file.
1 <?php
31 
32  protected $extensions = [];
33  protected $skins = [];
34  protected $values = [];
35  protected $groupPermissions = [];
36  protected $dbSettings = '';
37  protected $IP;
38 
42  protected $installer;
43 
47  public function __construct( Installer $installer ) {
48  $this->installer = $installer;
49 
50  $this->extensions = $installer->getVar( '_Extensions' );
51  $this->skins = $installer->getVar( '_Skins' );
52  $this->IP = $installer->getVar( 'IP' );
53 
54  $db = $installer->getDBInstaller( $installer->getVar( 'wgDBtype' ) );
55 
56  $confItems = array_merge(
57  [
58  'wgServer', 'wgScriptPath',
59  'wgPasswordSender', 'wgImageMagickConvertCommand', 'wgShellLocale',
60  'wgLanguageCode', 'wgEnableEmail', 'wgEnableUserEmail', 'wgDiff3',
61  'wgEnotifUserTalk', 'wgEnotifWatchlist', 'wgEmailAuthentication',
62  'wgDBtype', 'wgSecretKey', 'wgRightsUrl', 'wgSitename', 'wgRightsIcon',
63  'wgRightsText', '_MainCacheType', 'wgEnableUploads',
64  '_MemCachedServers', 'wgDBserver', 'wgDBuser',
65  'wgDBpassword', 'wgUseInstantCommons', 'wgUpgradeKey', 'wgDefaultSkin',
66  'wgMetaNamespace', 'wgLogo', 'wgAuthenticationTokenVersion', 'wgPingback',
67  ],
68  $db->getGlobalNames()
69  );
70 
71  $unescaped = [ 'wgRightsIcon', 'wgLogo', '_Caches' ];
72  $boolItems = [
73  'wgEnableEmail', 'wgEnableUserEmail', 'wgEnotifUserTalk',
74  'wgEnotifWatchlist', 'wgEmailAuthentication', 'wgEnableUploads', 'wgUseInstantCommons',
75  'wgPingback',
76  ];
77 
78  foreach ( $confItems as $c ) {
79  $val = $installer->getVar( $c );
80 
81  if ( in_array( $c, $boolItems ) ) {
82  $val = wfBoolToStr( $val );
83  }
84 
85  if ( !in_array( $c, $unescaped ) && $val !== null ) {
86  $val = self::escapePhpString( $val );
87  }
88 
89  $this->values[$c] = $val;
90  }
91 
92  $this->dbSettings = $db->getLocalSettings();
93  $this->values['wgEmergencyContact'] = $this->values['wgPasswordSender'];
94  }
95 
102  public function setGroupRights( $group, $rightsArr ) {
103  $this->groupPermissions[$group] = $rightsArr;
104  }
105 
113  public static function escapePhpString( $string ) {
114  if ( is_array( $string ) || is_object( $string ) ) {
115  return false;
116  }
117 
118  return strtr(
119  $string,
120  [
121  "\n" => "\\n",
122  "\r" => "\\r",
123  "\t" => "\\t",
124  "\\" => "\\\\",
125  "\$" => "\\\$",
126  "\"" => "\\\""
127  ]
128  );
129  }
130 
137  public function getText() {
138  $localSettings = $this->getDefaultText();
139 
140  if ( count( $this->skins ) ) {
141  $localSettings .= "
142 # Enabled skins.
143 # The following skins were automatically enabled:\n";
144 
145  foreach ( $this->skins as $skinName ) {
146  $localSettings .= $this->generateExtEnableLine( 'skins', $skinName );
147  }
148 
149  $localSettings .= "\n";
150  }
151 
152  if ( count( $this->extensions ) ) {
153  $localSettings .= "
154 # Enabled extensions. Most of the extensions are enabled by adding
155 # wfLoadExtensions('ExtensionName');
156 # to LocalSettings.php. Check specific extension documentation for more details.
157 # The following extensions were automatically enabled:\n";
158 
159  foreach ( $this->extensions as $extName ) {
160  $localSettings .= $this->generateExtEnableLine( 'extensions', $extName );
161  }
162 
163  $localSettings .= "\n";
164  }
165 
166  $localSettings .= "
167 # End of automatically generated settings.
168 # Add more configuration options below.\n\n";
169 
170  return $localSettings;
171  }
172 
181  private function generateExtEnableLine( $dir, $name ) {
182  if ( $dir === 'extensions' ) {
183  $jsonFile = 'extension.json';
184  $function = 'wfLoadExtension';
185  } elseif ( $dir === 'skins' ) {
186  $jsonFile = 'skin.json';
187  $function = 'wfLoadSkin';
188  } else {
189  throw new InvalidArgumentException( '$dir was not "extensions" or "skins"' );
190  }
191 
192  $encName = self::escapePhpString( $name );
193 
194  if ( file_exists( "{$this->IP}/$dir/$encName/$jsonFile" ) ) {
195  return "$function( '$encName' );\n";
196  } else {
197  return "require_once \"\$IP/$dir/$encName/$encName.php\";\n";
198  }
199  }
200 
206  public function writeFile( $fileName ) {
207  file_put_contents( $fileName, $this->getText() );
208  }
209 
213  protected function buildMemcachedServerList() {
214  $servers = $this->values['_MemCachedServers'];
215 
216  if ( !$servers ) {
217  return '[]';
218  } else {
219  $ret = '[ ';
220  $servers = explode( ',', $servers );
221 
222  foreach ( $servers as $srv ) {
223  $srv = trim( $srv );
224  $ret .= "'$srv', ";
225  }
226 
227  return rtrim( $ret, ', ' ) . ' ]';
228  }
229  }
230 
234  protected function getDefaultText() {
235  if ( !$this->values['wgImageMagickConvertCommand'] ) {
236  $this->values['wgImageMagickConvertCommand'] = '/usr/bin/convert';
237  $magic = '#';
238  } else {
239  $magic = '';
240  }
241 
242  if ( !$this->values['wgShellLocale'] ) {
243  $this->values['wgShellLocale'] = 'C.UTF-8';
244  $locale = '#';
245  } else {
246  $locale = '';
247  }
248 
249  $metaNamespace = '';
250  if ( $this->values['wgMetaNamespace'] !== $this->values['wgSitename'] ) {
251  $metaNamespace = "\$wgMetaNamespace = \"{$this->values['wgMetaNamespace']}\";\n";
252  }
253 
254  $groupRights = '';
255  $noFollow = '';
256  if ( $this->groupPermissions ) {
257  $groupRights .= "# The following permissions were set based on your choice in the installer\n";
258  foreach ( $this->groupPermissions as $group => $rightArr ) {
259  $group = self::escapePhpString( $group );
260  foreach ( $rightArr as $right => $perm ) {
261  $right = self::escapePhpString( $right );
262  $groupRights .= "\$wgGroupPermissions['$group']['$right'] = " .
263  wfBoolToStr( $perm ) . ";\n";
264  }
265  }
266  $groupRights .= "\n";
267 
268  if ( ( isset( $this->groupPermissions['*']['edit'] ) &&
269  $this->groupPermissions['*']['edit'] === false )
270  && ( isset( $this->groupPermissions['*']['createaccount'] ) &&
271  $this->groupPermissions['*']['createaccount'] === false )
272  && ( isset( $this->groupPermissions['*']['read'] ) &&
273  $this->groupPermissions['*']['read'] !== false )
274  ) {
275  $noFollow = "# Set \$wgNoFollowLinks to true if you open up your wiki to editing by\n"
276  . "# the general public and wish to apply nofollow to external links as a\n"
277  . "# deterrent to spammers. Nofollow is not a comprehensive anti-spam solution\n"
278  . "# and open wikis will generally require other anti-spam measures; for more\n"
279  . "# information, see https://www.mediawiki.org/wiki/Manual:Combating_spam\n"
280  . "\$wgNoFollowLinks = false;\n\n";
281  }
282  }
283 
284  $serverSetting = "";
285  if ( array_key_exists( 'wgServer', $this->values ) && $this->values['wgServer'] !== null ) {
286  $serverSetting = "\n## The protocol and server name to use in fully-qualified URLs\n";
287  $serverSetting .= "\$wgServer = \"{$this->values['wgServer']}\";";
288  }
289 
290  switch ( $this->values['_MainCacheType'] ) {
291  case 'anything':
292  case 'db':
293  case 'memcached':
294  case 'accel':
295  $cacheType = 'CACHE_' . strtoupper( $this->values['_MainCacheType'] );
296  break;
297  case 'none':
298  default:
299  $cacheType = 'CACHE_NONE';
300  }
301 
302  $mcservers = $this->buildMemcachedServerList();
303  if ( file_exists( dirname( __DIR__ ) . '/PlatformSettings.php' ) ) {
304  $platformSettings = "\n## Include platform/distribution defaults";
305  $platformSettings .= "\nrequire_once \"\$IP/includes/PlatformSettings.php\";";
306  } else {
307  $platformSettings = '';
308  }
309 
310  return "<?php
311 # This file was automatically generated by the MediaWiki {$GLOBALS['wgVersion']}
312 # installer. If you make manual changes, please keep track in case you
313 # need to recreate them later.
314 #
315 # See includes/DefaultSettings.php for all configurable settings
316 # and their default values, but don't forget to make changes in _this_
317 # file, not there.
318 #
319 # Further documentation for configuration settings may be found at:
320 # https://www.mediawiki.org/wiki/Manual:Configuration_settings
321 
322 # Protect against web entry
323 if ( !defined( 'MEDIAWIKI' ) ) {
324  exit;
325 }
326 {$platformSettings}
327 
328 ## Uncomment this to disable output compression
329 # \$wgDisableOutputCompression = true;
330 
331 \$wgSitename = \"{$this->values['wgSitename']}\";
332 {$metaNamespace}
333 ## The URL base path to the directory containing the wiki;
334 ## defaults for all runtime URL paths are based off of this.
335 ## For more information on customizing the URLs
336 ## (like /w/index.php/Page_title to /wiki/Page_title) please see:
337 ## https://www.mediawiki.org/wiki/Manual:Short_URL
338 \$wgScriptPath = \"{$this->values['wgScriptPath']}\";
339 ${serverSetting}
340 
341 ## The URL path to static resources (images, scripts, etc.)
342 \$wgResourceBasePath = \$wgScriptPath;
343 
344 ## The URL path to the logo. Make sure you change this from the default,
345 ## or else you'll overwrite your logo when you upgrade!
346 \$wgLogo = \"{$this->values['wgLogo']}\";
347 
348 ## UPO means: this is also a user preference option
349 
350 \$wgEnableEmail = {$this->values['wgEnableEmail']};
351 \$wgEnableUserEmail = {$this->values['wgEnableUserEmail']}; # UPO
352 
353 \$wgEmergencyContact = \"{$this->values['wgEmergencyContact']}\";
354 \$wgPasswordSender = \"{$this->values['wgPasswordSender']}\";
355 
356 \$wgEnotifUserTalk = {$this->values['wgEnotifUserTalk']}; # UPO
357 \$wgEnotifWatchlist = {$this->values['wgEnotifWatchlist']}; # UPO
358 \$wgEmailAuthentication = {$this->values['wgEmailAuthentication']};
359 
360 ## Database settings
361 \$wgDBtype = \"{$this->values['wgDBtype']}\";
362 \$wgDBserver = \"{$this->values['wgDBserver']}\";
363 \$wgDBname = \"{$this->values['wgDBname']}\";
364 \$wgDBuser = \"{$this->values['wgDBuser']}\";
365 \$wgDBpassword = \"{$this->values['wgDBpassword']}\";
366 
367 {$this->dbSettings}
368 
369 ## Shared memory settings
370 \$wgMainCacheType = $cacheType;
371 \$wgMemCachedServers = $mcservers;
372 
373 ## To enable image uploads, make sure the 'images' directory
374 ## is writable, then set this to true:
375 \$wgEnableUploads = {$this->values['wgEnableUploads']};
376 {$magic}\$wgUseImageMagick = true;
377 {$magic}\$wgImageMagickConvertCommand = \"{$this->values['wgImageMagickConvertCommand']}\";
378 
379 # InstantCommons allows wiki to use images from https://commons.wikimedia.org
380 \$wgUseInstantCommons = {$this->values['wgUseInstantCommons']};
381 
382 # Periodically send a pingback to https://www.mediawiki.org/ with basic data
383 # about this MediaWiki instance. The Wikimedia Foundation shares this data
384 # with MediaWiki developers to help guide future development efforts.
385 \$wgPingback = {$this->values['wgPingback']};
386 
387 ## If you use ImageMagick (or any other shell command) on a
388 ## Linux server, this will need to be set to the name of an
389 ## available UTF-8 locale
390 {$locale}\$wgShellLocale = \"{$this->values['wgShellLocale']}\";
391 
392 ## Set \$wgCacheDirectory to a writable directory on the web server
393 ## to make your wiki go slightly faster. The directory should not
394 ## be publicly accessible from the web.
395 #\$wgCacheDirectory = \"\$IP/cache\";
396 
397 # Site language code, should be one of the list in ./languages/data/Names.php
398 \$wgLanguageCode = \"{$this->values['wgLanguageCode']}\";
399 
400 \$wgSecretKey = \"{$this->values['wgSecretKey']}\";
401 
402 # Changing this will log out all existing sessions.
403 \$wgAuthenticationTokenVersion = \"{$this->values['wgAuthenticationTokenVersion']}\";
404 
405 # Site upgrade key. Must be set to a string (default provided) to turn on the
406 # web installer while LocalSettings.php is in place
407 \$wgUpgradeKey = \"{$this->values['wgUpgradeKey']}\";
408 
409 ## For attaching licensing metadata to pages, and displaying an
410 ## appropriate copyright notice / icon. GNU Free Documentation
411 ## License and Creative Commons licenses are supported so far.
412 \$wgRightsPage = \"\"; # Set to the title of a wiki page that describes your license/copyright
413 \$wgRightsUrl = \"{$this->values['wgRightsUrl']}\";
414 \$wgRightsText = \"{$this->values['wgRightsText']}\";
415 \$wgRightsIcon = \"{$this->values['wgRightsIcon']}\";
416 
417 # Path to the GNU diff3 utility. Used for conflict resolution.
418 \$wgDiff3 = \"{$this->values['wgDiff3']}\";
419 
420 {$groupRights}{$noFollow}## Default skin: you can change the default skin. Use the internal symbolic
421 ## names, ie 'vector', 'monobook':
422 \$wgDefaultSkin = \"{$this->values['wgDefaultSkin']}\";
423 ";
424  }
425 }
LocalSettingsGenerator\generateExtEnableLine
generateExtEnableLine( $dir, $name)
Generate the appropriate line to enable the given extension or skin.
Definition: LocalSettingsGenerator.php:181
LocalSettingsGenerator\$dbSettings
$dbSettings
Definition: LocalSettingsGenerator.php:36
LocalSettingsGenerator\writeFile
writeFile( $fileName)
Write the generated LocalSettings to a file.
Definition: LocalSettingsGenerator.php:206
IP
A collection of public static functions to play with IP address and IP ranges.
Definition: IP.php:67
wfBoolToStr
wfBoolToStr( $value)
Convenience function converts boolean values into "true" or "false" (string) values.
Definition: GlobalFunctions.php:2683
LocalSettingsGenerator\buildMemcachedServerList
buildMemcachedServerList()
Definition: LocalSettingsGenerator.php:213
LocalSettingsGenerator\$installer
Installer $installer
Definition: LocalSettingsGenerator.php:42
LocalSettingsGenerator\$IP
$IP
Definition: LocalSettingsGenerator.php:37
LocalSettingsGenerator\__construct
__construct(Installer $installer)
Definition: LocalSettingsGenerator.php:47
LocalSettingsGenerator\getText
getText()
Return the full text of the generated LocalSettings.php file, including the extensions and skins.
Definition: LocalSettingsGenerator.php:137
Installer\getVar
getVar( $name, $default=null)
Get an MW configuration variable, or internal installer configuration variable.
Definition: Installer.php:542
Installer\getDBInstaller
getDBInstaller( $type=false)
Get an instance of DatabaseInstaller for the specified DB type.
Definition: Installer.php:573
LocalSettingsGenerator\$extensions
$extensions
Definition: LocalSettingsGenerator.php:32
LocalSettingsGenerator
Class for generating LocalSettings.php file.
Definition: LocalSettingsGenerator.php:30
LocalSettingsGenerator\$groupPermissions
$groupPermissions
Definition: LocalSettingsGenerator.php:35
LocalSettingsGenerator\getDefaultText
getDefaultText()
Definition: LocalSettingsGenerator.php:234
LocalSettingsGenerator\$values
$values
Definition: LocalSettingsGenerator.php:34
LocalSettingsGenerator\escapePhpString
static escapePhpString( $string)
Returns the escaped version of a string of php code.
Definition: LocalSettingsGenerator.php:113
Installer
Base installer class.
Definition: Installer.php:46
LocalSettingsGenerator\setGroupRights
setGroupRights( $group, $rightsArr)
For $wgGroupPermissions, set a given ['group']['permission'] value.
Definition: LocalSettingsGenerator.php:102
LocalSettingsGenerator\$skins
$skins
Definition: LocalSettingsGenerator.php:33