Installer: properly override default $wgLogo value
[lhc/web/wiklou.git] / includes / installer / WebInstallerPage.php
1 <?php
2 /**
3 * Base code for web installer pages.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup Deployment
22 */
23
24 /**
25 * Abstract class to define pages for the web installer.
26 *
27 * @ingroup Deployment
28 * @since 1.17
29 */
30 abstract class WebInstallerPage {
31
32 /**
33 * The WebInstaller object this WebInstallerPage belongs to.
34 *
35 * @var WebInstaller
36 */
37 public $parent;
38
39 abstract public function execute();
40
41 /**
42 * Constructor.
43 *
44 * @param $parent WebInstaller
45 */
46 public function __construct( WebInstaller $parent ) {
47 $this->parent = $parent;
48 }
49
50 /**
51 * Is this a slow-running page in the installer? If so, WebInstaller will
52 * set_time_limit(0) before calling execute(). Right now this only applies
53 * to Install and Upgrade pages
54 * @return bool
55 */
56 public function isSlow() {
57 return false;
58 }
59
60 public function addHTML( $html ) {
61 $this->parent->output->addHTML( $html );
62 }
63
64 public function startForm() {
65 $this->addHTML(
66 "<div class=\"config-section\">\n" .
67 Html::openElement(
68 'form',
69 array(
70 'method' => 'post',
71 'action' => $this->parent->getUrl( array( 'page' => $this->getName() ) )
72 )
73 ) . "\n"
74 );
75 }
76
77 /**
78 * @param string|bool $continue
79 * @param string|bool $back
80 */
81 public function endForm( $continue = 'continue', $back = 'back' ) {
82 $s = "<div class=\"config-submit\">\n";
83 $id = $this->getId();
84
85 if ( $id === false ) {
86 $s .= Html::hidden( 'lastPage', $this->parent->request->getVal( 'lastPage' ) );
87 }
88
89 if ( $continue ) {
90 // Fake submit button for enter keypress (bug 26267)
91 // Messages: config-continue, config-restart, config-regenerate
92 $s .= Xml::submitButton(
93 wfMessage( "config-$continue" )->text(),
94 array(
95 'name' => "enter-$continue",
96 'style' => 'visibility:hidden;overflow:hidden;width:1px;margin:0'
97 )
98 ) . "\n";
99 }
100
101 if ( $back ) {
102 // Message: config-back
103 $s .= Xml::submitButton(
104 wfMessage( "config-$back" )->text(),
105 array(
106 'name' => "submit-$back",
107 'tabindex' => $this->parent->nextTabIndex()
108 )
109 ) . "\n";
110 }
111
112 if ( $continue ) {
113 // Messages: config-continue, config-restart, config-regenerate
114 $s .= Xml::submitButton(
115 wfMessage( "config-$continue" )->text(),
116 array(
117 'name' => "submit-$continue",
118 'tabindex' => $this->parent->nextTabIndex(),
119 )
120 ) . "\n";
121 }
122
123 $s .= "</div></form></div>\n";
124 $this->addHTML( $s );
125 }
126
127 public function getName() {
128 return str_replace( 'WebInstaller_', '', get_class( $this ) );
129 }
130
131 protected function getId() {
132 return array_search( $this->getName(), $this->parent->pageSequence );
133 }
134
135 public function getVar( $var ) {
136 return $this->parent->getVar( $var );
137 }
138
139 public function setVar( $name, $value ) {
140 $this->parent->setVar( $name, $value );
141 }
142
143 /**
144 * Get the starting tags of a fieldset.
145 *
146 * @param string $legend message name
147 *
148 * @return string
149 */
150 protected function getFieldsetStart( $legend ) {
151 return "\n<fieldset><legend>" . wfMessage( $legend )->escaped() . "</legend>\n";
152 }
153
154 /**
155 * Get the end tag of a fieldset.
156 *
157 * @return string
158 */
159 protected function getFieldsetEnd() {
160 return "</fieldset>\n";
161 }
162
163 /**
164 * Opens a textarea used to display the progress of a long operation
165 */
166 protected function startLiveBox() {
167 $this->addHTML(
168 '<div id="config-spinner" style="display:none;">' .
169 '<img src="../skins/common/images/ajax-loader.gif" /></div>' .
170 '<script>jQuery( "#config-spinner" ).show();</script>' .
171 '<div id="config-live-log">' .
172 '<textarea name="LiveLog" rows="10" cols="30" readonly="readonly">'
173 );
174 $this->parent->output->flush();
175 }
176
177 /**
178 * Opposite to startLiveBox()
179 */
180 protected function endLiveBox() {
181 $this->addHTML( '</textarea></div>
182 <script>jQuery( "#config-spinner" ).hide()</script>' );
183 $this->parent->output->flush();
184 }
185 }
186
187 class WebInstaller_Language extends WebInstallerPage {
188 public function execute() {
189 global $wgLang;
190 $r = $this->parent->request;
191 $userLang = $r->getVal( 'uselang' );
192 $contLang = $r->getVal( 'ContLang' );
193
194 $languages = Language::fetchLanguageNames();
195 $lifetime = intval( ini_get( 'session.gc_maxlifetime' ) );
196 if ( !$lifetime ) {
197 $lifetime = 1440; // PHP default
198 }
199
200 if ( $r->wasPosted() ) {
201 # Do session test
202 if ( $this->parent->getSession( 'test' ) === null ) {
203 $requestTime = $r->getVal( 'LanguageRequestTime' );
204 if ( !$requestTime ) {
205 // The most likely explanation is that the user was knocked back
206 // from another page on POST due to session expiry
207 $msg = 'config-session-expired';
208 } elseif ( time() - $requestTime > $lifetime ) {
209 $msg = 'config-session-expired';
210 } else {
211 $msg = 'config-no-session';
212 }
213 $this->parent->showError( $msg, $wgLang->formatTimePeriod( $lifetime ) );
214 } else {
215 if ( isset( $languages[$userLang] ) ) {
216 $this->setVar( '_UserLang', $userLang );
217 }
218 if ( isset( $languages[$contLang] ) ) {
219 $this->setVar( 'wgLanguageCode', $contLang );
220 }
221
222 return 'continue';
223 }
224 } elseif ( $this->parent->showSessionWarning ) {
225 # The user was knocked back from another page to the start
226 # This probably indicates a session expiry
227 $this->parent->showError( 'config-session-expired',
228 $wgLang->formatTimePeriod( $lifetime ) );
229 }
230
231 $this->parent->setSession( 'test', true );
232
233 if ( !isset( $languages[$userLang] ) ) {
234 $userLang = $this->getVar( '_UserLang', 'en' );
235 }
236 if ( !isset( $languages[$contLang] ) ) {
237 $contLang = $this->getVar( 'wgLanguageCode', 'en' );
238 }
239 $this->startForm();
240 $s = Html::hidden( 'LanguageRequestTime', time() ) .
241 $this->getLanguageSelector( 'uselang', 'config-your-language', $userLang,
242 $this->parent->getHelpBox( 'config-your-language-help' ) ) .
243 $this->getLanguageSelector( 'ContLang', 'config-wiki-language', $contLang,
244 $this->parent->getHelpBox( 'config-wiki-language-help' ) );
245 $this->addHTML( $s );
246 $this->endForm( 'continue', false );
247 }
248
249 /**
250 * Get a "<select>" for selecting languages.
251 *
252 * @param $name
253 * @param $label
254 * @param $selectedCode
255 * @param $helpHtml string
256 * @return string
257 */
258 public function getLanguageSelector( $name, $label, $selectedCode, $helpHtml = '' ) {
259 global $wgDummyLanguageCodes;
260
261 $s = $helpHtml;
262
263 $s .= Html::openElement( 'select', array( 'id' => $name, 'name' => $name,
264 'tabindex' => $this->parent->nextTabIndex() ) ) . "\n";
265
266 $languages = Language::fetchLanguageNames();
267 ksort( $languages );
268 foreach ( $languages as $code => $lang ) {
269 if ( isset( $wgDummyLanguageCodes[$code] ) ) {
270 continue;
271 }
272 $s .= "\n" . Xml::option( "$code - $lang", $code, $code == $selectedCode );
273 }
274 $s .= "\n</select>\n";
275
276 return $this->parent->label( $label, $name, $s );
277 }
278 }
279
280 class WebInstaller_ExistingWiki extends WebInstallerPage {
281 public function execute() {
282 // If there is no LocalSettings.php, continue to the installer welcome page
283 $vars = Installer::getExistingLocalSettings();
284 if ( !$vars ) {
285 return 'skip';
286 }
287
288 // Check if the upgrade key supplied to the user has appeared in LocalSettings.php
289 if ( $vars['wgUpgradeKey'] !== false
290 && $this->getVar( '_UpgradeKeySupplied' )
291 && $this->getVar( 'wgUpgradeKey' ) === $vars['wgUpgradeKey']
292 ) {
293 // It's there, so the user is authorized
294 $status = $this->handleExistingUpgrade( $vars );
295 if ( $status->isOK() ) {
296 return 'skip';
297 } else {
298 $this->startForm();
299 $this->parent->showStatusBox( $status );
300 $this->endForm( 'continue' );
301
302 return 'output';
303 }
304 }
305
306 // If there is no $wgUpgradeKey, tell the user to add one to LocalSettings.php
307 if ( $vars['wgUpgradeKey'] === false ) {
308 if ( $this->getVar( 'wgUpgradeKey', false ) === false ) {
309 $secretKey = $this->getVar( 'wgSecretKey' ); // preserve $wgSecretKey
310 $this->parent->generateKeys();
311 $this->setVar( 'wgSecretKey', $secretKey );
312 $this->setVar( '_UpgradeKeySupplied', true );
313 }
314 $this->startForm();
315 $this->addHTML( $this->parent->getInfoBox(
316 wfMessage( 'config-upgrade-key-missing', "<pre dir=\"ltr\">\$wgUpgradeKey = '" .
317 $this->getVar( 'wgUpgradeKey' ) . "';</pre>" )->plain()
318 ) );
319 $this->endForm( 'continue' );
320
321 return 'output';
322 }
323
324 // If there is an upgrade key, but it wasn't supplied, prompt the user to enter it
325
326 $r = $this->parent->request;
327 if ( $r->wasPosted() ) {
328 $key = $r->getText( 'config_wgUpgradeKey' );
329 if ( !$key || $key !== $vars['wgUpgradeKey'] ) {
330 $this->parent->showError( 'config-localsettings-badkey' );
331 $this->showKeyForm();
332
333 return 'output';
334 }
335 // Key was OK
336 $status = $this->handleExistingUpgrade( $vars );
337 if ( $status->isOK() ) {
338 return 'continue';
339 } else {
340 $this->parent->showStatusBox( $status );
341 $this->showKeyForm();
342
343 return 'output';
344 }
345 } else {
346 $this->showKeyForm();
347
348 return 'output';
349 }
350 }
351
352 /**
353 * Show the "enter key" form
354 */
355 protected function showKeyForm() {
356 $this->startForm();
357 $this->addHTML(
358 $this->parent->getInfoBox( wfMessage( 'config-localsettings-upgrade' )->plain() ) .
359 '<br />' .
360 $this->parent->getTextBox( array(
361 'var' => 'wgUpgradeKey',
362 'label' => 'config-localsettings-key',
363 'attribs' => array( 'autocomplete' => 'off' ),
364 ) )
365 );
366 $this->endForm( 'continue' );
367 }
368
369 protected function importVariables( $names, $vars ) {
370 $status = Status::newGood();
371 foreach ( $names as $name ) {
372 if ( !isset( $vars[$name] ) ) {
373 $status->fatal( 'config-localsettings-incomplete', $name );
374 }
375 $this->setVar( $name, $vars[$name] );
376 }
377
378 return $status;
379 }
380
381 /**
382 * Initiate an upgrade of the existing database
383 * @param array $vars Variables from LocalSettings.php
384 * @return Status
385 */
386 protected function handleExistingUpgrade( $vars ) {
387 // Check $wgDBtype
388 if ( !isset( $vars['wgDBtype'] ) ||
389 !in_array( $vars['wgDBtype'], Installer::getDBTypes() )
390 ) {
391 return Status::newFatal( 'config-localsettings-connection-error', '' );
392 }
393
394 // Set the relevant variables from LocalSettings.php
395 $requiredVars = array( 'wgDBtype' );
396 $status = $this->importVariables( $requiredVars, $vars );
397 $installer = $this->parent->getDBInstaller();
398 $status->merge( $this->importVariables( $installer->getGlobalNames(), $vars ) );
399 if ( !$status->isOK() ) {
400 return $status;
401 }
402
403 if ( isset( $vars['wgDBadminuser'] ) ) {
404 $this->setVar( '_InstallUser', $vars['wgDBadminuser'] );
405 } else {
406 $this->setVar( '_InstallUser', $vars['wgDBuser'] );
407 }
408 if ( isset( $vars['wgDBadminpassword'] ) ) {
409 $this->setVar( '_InstallPassword', $vars['wgDBadminpassword'] );
410 } else {
411 $this->setVar( '_InstallPassword', $vars['wgDBpassword'] );
412 }
413
414 // Test the database connection
415 $status = $installer->getConnection();
416 if ( !$status->isOK() ) {
417 // Adjust the error message to explain things correctly
418 $status->replaceMessage( 'config-connection-error',
419 'config-localsettings-connection-error' );
420
421 return $status;
422 }
423
424 // All good
425 $this->setVar( '_ExistingDBSettings', true );
426
427 return $status;
428 }
429 }
430
431 class WebInstaller_Welcome extends WebInstallerPage {
432
433 public function execute() {
434 if ( $this->parent->request->wasPosted() ) {
435 if ( $this->getVar( '_Environment' ) ) {
436 return 'continue';
437 }
438 }
439 $this->parent->output->addWikiText( wfMessage( 'config-welcome' )->plain() );
440 $status = $this->parent->doEnvironmentChecks();
441 if ( $status->isGood() ) {
442 $this->parent->output->addHTML( '<span class="success-message">' .
443 wfMessage( 'config-env-good' )->escaped() . '</span>' );
444 $this->parent->output->addWikiText( wfMessage( 'config-copyright',
445 SpecialVersion::getCopyrightAndAuthorList() )->plain() );
446 $this->startForm();
447 $this->endForm();
448 } else {
449 $this->parent->showStatusMessage( $status );
450 }
451
452 return '';
453 }
454 }
455
456 class WebInstaller_DBConnect extends WebInstallerPage {
457 /**
458 * @return string|void When string, "skip" or "continue"
459 */
460 public function execute() {
461 if ( $this->getVar( '_ExistingDBSettings' ) ) {
462 return 'skip';
463 }
464
465 $r = $this->parent->request;
466 if ( $r->wasPosted() ) {
467 $status = $this->submit();
468
469 if ( $status->isGood() ) {
470 $this->setVar( '_UpgradeDone', false );
471
472 return 'continue';
473 } else {
474 $this->parent->showStatusBox( $status );
475 }
476 }
477
478 $this->startForm();
479
480 $types = "<ul class=\"config-settings-block\">\n";
481 $settings = '';
482 $defaultType = $this->getVar( 'wgDBtype' );
483
484 // Messages: config-dbsupport-mysql, config-dbsupport-postgres, config-dbsupport-oracle,
485 // config-dbsupport-sqlite, config-dbsupport-mssql
486 $dbSupport = '';
487 foreach ( Installer::getDBTypes() as $type ) {
488 $dbSupport .= wfMessage( "config-dbsupport-$type" )->plain() . "\n";
489 }
490 $this->addHTML( $this->parent->getInfoBox(
491 wfMessage( 'config-support-info', trim( $dbSupport ) )->text() ) );
492
493 // It's possible that the library for the default DB type is not compiled in.
494 // In that case, instead select the first supported DB type in the list.
495 $compiledDBs = $this->parent->getCompiledDBs();
496 if ( !in_array( $defaultType, $compiledDBs ) ) {
497 $defaultType = $compiledDBs[0];
498 }
499
500 foreach ( $compiledDBs as $type ) {
501 $installer = $this->parent->getDBInstaller( $type );
502 $types .=
503 '<li>' .
504 Xml::radioLabel(
505 $installer->getReadableName(),
506 'DBType',
507 $type,
508 "DBType_$type",
509 $type == $defaultType,
510 array( 'class' => 'dbRadio', 'rel' => "DB_wrapper_$type" )
511 ) .
512 "</li>\n";
513
514 // Messages: config-header-mysql, config-header-postgres, config-header-oracle,
515 // config-header-sqlite
516 $settings .= Html::openElement(
517 'div',
518 array(
519 'id' => 'DB_wrapper_' . $type,
520 'class' => 'dbWrapper'
521 )
522 ) .
523 Html::element( 'h3', array(), wfMessage( 'config-header-' . $type )->text() ) .
524 $installer->getConnectForm() .
525 "</div>\n";
526 }
527
528 $types .= "</ul><br style=\"clear: left\"/>\n";
529
530 $this->addHTML( $this->parent->label( 'config-db-type', false, $types ) . $settings );
531 $this->endForm();
532 }
533
534 public function submit() {
535 $r = $this->parent->request;
536 $type = $r->getVal( 'DBType' );
537 if ( !$type ) {
538 return Status::newFatal( 'config-invalid-db-type' );
539 }
540 $this->setVar( 'wgDBtype', $type );
541 $installer = $this->parent->getDBInstaller( $type );
542 if ( !$installer ) {
543 return Status::newFatal( 'config-invalid-db-type' );
544 }
545
546 return $installer->submitConnectForm();
547 }
548 }
549
550 class WebInstaller_Upgrade extends WebInstallerPage {
551 public function isSlow() {
552 return true;
553 }
554
555 public function execute() {
556 if ( $this->getVar( '_UpgradeDone' ) ) {
557 // Allow regeneration of LocalSettings.php, unless we are working
558 // from a pre-existing LocalSettings.php file and we want to avoid
559 // leaking its contents
560 if ( $this->parent->request->wasPosted() && !$this->getVar( '_ExistingDBSettings' ) ) {
561 // Done message acknowledged
562 return 'continue';
563 } else {
564 // Back button click
565 // Show the done message again
566 // Make them click back again if they want to do the upgrade again
567 $this->showDoneMessage();
568
569 return 'output';
570 }
571 }
572
573 // wgDBtype is generally valid here because otherwise the previous page
574 // (connect) wouldn't have declared its happiness
575 $type = $this->getVar( 'wgDBtype' );
576 $installer = $this->parent->getDBInstaller( $type );
577
578 if ( !$installer->needsUpgrade() ) {
579 return 'skip';
580 }
581
582 if ( $this->parent->request->wasPosted() ) {
583 $installer->preUpgrade();
584
585 $this->startLiveBox();
586 $result = $installer->doUpgrade();
587 $this->endLiveBox();
588
589 if ( $result ) {
590 // If they're going to possibly regenerate LocalSettings, we
591 // need to create the upgrade/secret keys. Bug 26481
592 if ( !$this->getVar( '_ExistingDBSettings' ) ) {
593 $this->parent->generateKeys();
594 }
595 $this->setVar( '_UpgradeDone', true );
596 $this->showDoneMessage();
597
598 return 'output';
599 }
600 }
601
602 $this->startForm();
603 $this->addHTML( $this->parent->getInfoBox(
604 wfMessage( 'config-can-upgrade', $GLOBALS['wgVersion'] )->plain() ) );
605 $this->endForm();
606 }
607
608 public function showDoneMessage() {
609 $this->startForm();
610 $regenerate = !$this->getVar( '_ExistingDBSettings' );
611 if ( $regenerate ) {
612 $msg = 'config-upgrade-done';
613 } else {
614 $msg = 'config-upgrade-done-no-regenerate';
615 }
616 $this->parent->disableLinkPopups();
617 $this->addHTML(
618 $this->parent->getInfoBox(
619 wfMessage( $msg,
620 $this->getVar( 'wgServer' ) .
621 $this->getVar( 'wgScriptPath' ) . '/index' .
622 $this->getVar( 'wgScriptExtension' )
623 )->plain(), 'tick-32.png'
624 )
625 );
626 $this->parent->restoreLinkPopups();
627 $this->endForm( $regenerate ? 'regenerate' : false, false );
628 }
629 }
630
631 class WebInstaller_DBSettings extends WebInstallerPage {
632
633 public function execute() {
634 $installer = $this->parent->getDBInstaller( $this->getVar( 'wgDBtype' ) );
635
636 $r = $this->parent->request;
637 if ( $r->wasPosted() ) {
638 $status = $installer->submitSettingsForm();
639 if ( $status === false ) {
640 return 'skip';
641 } elseif ( $status->isGood() ) {
642 return 'continue';
643 } else {
644 $this->parent->showStatusBox( $status );
645 }
646 }
647
648 $form = $installer->getSettingsForm();
649 if ( $form === false ) {
650 return 'skip';
651 }
652
653 $this->startForm();
654 $this->addHTML( $form );
655 $this->endForm();
656 }
657 }
658
659 class WebInstaller_Name extends WebInstallerPage {
660
661 public function execute() {
662 $r = $this->parent->request;
663 if ( $r->wasPosted() ) {
664 if ( $this->submit() ) {
665 return 'continue';
666 }
667 }
668
669 $this->startForm();
670
671 // Encourage people to not name their site 'MediaWiki' by blanking the
672 // field. I think that was the intent with the original $GLOBALS['wgSitename']
673 // but these two always were the same so had the effect of making the
674 // installer forget $wgSitename when navigating back to this page.
675 if ( $this->getVar( 'wgSitename' ) == 'MediaWiki' ) {
676 $this->setVar( 'wgSitename', '' );
677 }
678
679 // Set wgMetaNamespace to something valid before we show the form.
680 // $wgMetaNamespace defaults to $wgSiteName which is 'MediaWiki'
681 $metaNS = $this->getVar( 'wgMetaNamespace' );
682 $this->setVar(
683 'wgMetaNamespace',
684 wfMessage( 'config-ns-other-default' )->inContentLanguage()->text()
685 );
686
687 $this->addHTML(
688 $this->parent->getTextBox( array(
689 'var' => 'wgSitename',
690 'label' => 'config-site-name',
691 'help' => $this->parent->getHelpBox( 'config-site-name-help' )
692 ) ) .
693 // getRadioSet() builds a set of labeled radio buttons.
694 // For grep: The following messages are used as the item labels:
695 // config-ns-site-name, config-ns-generic, config-ns-other
696 $this->parent->getRadioSet( array(
697 'var' => '_NamespaceType',
698 'label' => 'config-project-namespace',
699 'itemLabelPrefix' => 'config-ns-',
700 'values' => array( 'site-name', 'generic', 'other' ),
701 'commonAttribs' => array( 'class' => 'enableForOther',
702 'rel' => 'config_wgMetaNamespace' ),
703 'help' => $this->parent->getHelpBox( 'config-project-namespace-help' )
704 ) ) .
705 $this->parent->getTextBox( array(
706 'var' => 'wgMetaNamespace',
707 'label' => '', // @todo Needs a label?
708 'attribs' => array( 'readonly' => 'readonly', 'class' => 'enabledByOther' )
709 ) ) .
710 $this->getFieldSetStart( 'config-admin-box' ) .
711 $this->parent->getTextBox( array(
712 'var' => '_AdminName',
713 'label' => 'config-admin-name',
714 'help' => $this->parent->getHelpBox( 'config-admin-help' )
715 ) ) .
716 $this->parent->getPasswordBox( array(
717 'var' => '_AdminPassword',
718 'label' => 'config-admin-password',
719 ) ) .
720 $this->parent->getPasswordBox( array(
721 'var' => '_AdminPassword2',
722 'label' => 'config-admin-password-confirm'
723 ) ) .
724 $this->parent->getTextBox( array(
725 'var' => '_AdminEmail',
726 'label' => 'config-admin-email',
727 'help' => $this->parent->getHelpBox( 'config-admin-email-help' )
728 ) ) .
729 $this->parent->getCheckBox( array(
730 'var' => '_Subscribe',
731 'label' => 'config-subscribe',
732 'help' => $this->parent->getHelpBox( 'config-subscribe-help' )
733 ) ) .
734 $this->getFieldSetEnd() .
735 $this->parent->getInfoBox( wfMessage( 'config-almost-done' )->text() ) .
736 // getRadioSet() builds a set of labeled radio buttons.
737 // For grep: The following messages are used as the item labels:
738 // config-optional-continue, config-optional-skip
739 $this->parent->getRadioSet( array(
740 'var' => '_SkipOptional',
741 'itemLabelPrefix' => 'config-optional-',
742 'values' => array( 'continue', 'skip' )
743 ) )
744 );
745
746 // Restore the default value
747 $this->setVar( 'wgMetaNamespace', $metaNS );
748
749 $this->endForm();
750
751 return 'output';
752 }
753
754 public function submit() {
755 $retVal = true;
756 $this->parent->setVarsFromRequest( array( 'wgSitename', '_NamespaceType',
757 '_AdminName', '_AdminPassword', '_AdminPassword2', '_AdminEmail',
758 '_Subscribe', '_SkipOptional', 'wgMetaNamespace' ) );
759
760 // Validate site name
761 if ( strval( $this->getVar( 'wgSitename' ) ) === '' ) {
762 $this->parent->showError( 'config-site-name-blank' );
763 $retVal = false;
764 }
765
766 // Fetch namespace
767 $nsType = $this->getVar( '_NamespaceType' );
768 if ( $nsType == 'site-name' ) {
769 $name = $this->getVar( 'wgSitename' );
770 // Sanitize for namespace
771 // This algorithm should match the JS one in WebInstallerOutput.php
772 $name = preg_replace( '/[\[\]\{\}|#<>%+? ]/', '_', $name );
773 $name = str_replace( '&', '&amp;', $name );
774 $name = preg_replace( '/__+/', '_', $name );
775 $name = ucfirst( trim( $name, '_' ) );
776 } elseif ( $nsType == 'generic' ) {
777 $name = wfMessage( 'config-ns-generic' )->text();
778 } else { // other
779 $name = $this->getVar( 'wgMetaNamespace' );
780 }
781
782 // Validate namespace
783 if ( strpos( $name, ':' ) !== false ) {
784 $good = false;
785 } else {
786 // Title-style validation
787 $title = Title::newFromText( $name );
788 if ( !$title ) {
789 $good = $nsType == 'site-name';
790 } else {
791 $name = $title->getDBkey();
792 $good = true;
793 }
794 }
795 if ( !$good ) {
796 $this->parent->showError( 'config-ns-invalid', $name );
797 $retVal = false;
798 }
799
800 // Make sure it won't conflict with any existing namespaces
801 global $wgContLang;
802 $nsIndex = $wgContLang->getNsIndex( $name );
803 if ( $nsIndex !== false && $nsIndex !== NS_PROJECT ) {
804 $this->parent->showError( 'config-ns-conflict', $name );
805 $retVal = false;
806 }
807
808 $this->setVar( 'wgMetaNamespace', $name );
809
810 // Validate username for creation
811 $name = $this->getVar( '_AdminName' );
812 if ( strval( $name ) === '' ) {
813 $this->parent->showError( 'config-admin-name-blank' );
814 $cname = $name;
815 $retVal = false;
816 } else {
817 $cname = User::getCanonicalName( $name, 'creatable' );
818 if ( $cname === false ) {
819 $this->parent->showError( 'config-admin-name-invalid', $name );
820 $retVal = false;
821 } else {
822 $this->setVar( '_AdminName', $cname );
823 }
824 }
825
826 // Validate password
827 $msg = false;
828 $pwd = $this->getVar( '_AdminPassword' );
829 $user = User::newFromName( $cname );
830 if ( $user ) {
831 $valid = $user->getPasswordValidity( $pwd );
832 } else {
833 $valid = 'config-admin-name-invalid';
834 }
835 if ( strval( $pwd ) === '' ) {
836 # $user->getPasswordValidity just checks for $wgMinimalPasswordLength.
837 # This message is more specific and helpful.
838 $msg = 'config-admin-password-blank';
839 } elseif ( $pwd !== $this->getVar( '_AdminPassword2' ) ) {
840 $msg = 'config-admin-password-mismatch';
841 } elseif ( $valid !== true ) {
842 $msg = $valid;
843 }
844 if ( $msg !== false ) {
845 call_user_func_array( array( $this->parent, 'showError' ), (array)$msg );
846 $this->setVar( '_AdminPassword', '' );
847 $this->setVar( '_AdminPassword2', '' );
848 $retVal = false;
849 }
850
851 // Validate e-mail if provided
852 $email = $this->getVar( '_AdminEmail' );
853 if ( $email && !Sanitizer::validateEmail( $email ) ) {
854 $this->parent->showError( 'config-admin-error-bademail' );
855 $retVal = false;
856 }
857 // If they asked to subscribe to mediawiki-announce but didn't give
858 // an e-mail, show an error. Bug 29332
859 if ( !$email && $this->getVar( '_Subscribe' ) ) {
860 $this->parent->showError( 'config-subscribe-noemail' );
861 $retVal = false;
862 }
863
864 return $retVal;
865 }
866 }
867
868 class WebInstaller_Options extends WebInstallerPage {
869 public function execute() {
870 if ( $this->getVar( '_SkipOptional' ) == 'skip' ) {
871 return 'skip';
872 }
873 if ( $this->parent->request->wasPosted() ) {
874 if ( $this->submit() ) {
875 return 'continue';
876 }
877 }
878
879 $emailwrapperStyle = $this->getVar( 'wgEnableEmail' ) ? '' : 'display: none';
880 $this->startForm();
881 $this->addHTML(
882 # User Rights
883 // getRadioSet() builds a set of labeled radio buttons.
884 // For grep: The following messages are used as the item labels:
885 // config-profile-wiki, config-profile-no-anon, config-profile-fishbowl, config-profile-private
886 $this->parent->getRadioSet( array(
887 'var' => '_RightsProfile',
888 'label' => 'config-profile',
889 'itemLabelPrefix' => 'config-profile-',
890 'values' => array_keys( $this->parent->rightsProfiles ),
891 ) ) .
892 $this->parent->getInfoBox( wfMessage( 'config-profile-help' )->plain() ) .
893
894 # Licensing
895 // getRadioSet() builds a set of labeled radio buttons.
896 // For grep: The following messages are used as the item labels:
897 // config-license-cc-by, config-license-cc-by-sa, config-license-cc-by-nc-sa,
898 // config-license-cc-0, config-license-pd, config-license-gfdl,
899 // config-license-none, config-license-cc-choose
900 $this->parent->getRadioSet( array(
901 'var' => '_LicenseCode',
902 'label' => 'config-license',
903 'itemLabelPrefix' => 'config-license-',
904 'values' => array_keys( $this->parent->licenses ),
905 'commonAttribs' => array( 'class' => 'licenseRadio' ),
906 ) ) .
907 $this->getCCChooser() .
908 $this->parent->getHelpBox( 'config-license-help' ) .
909
910 # E-mail
911 $this->getFieldSetStart( 'config-email-settings' ) .
912 $this->parent->getCheckBox( array(
913 'var' => 'wgEnableEmail',
914 'label' => 'config-enable-email',
915 'attribs' => array( 'class' => 'showHideRadio', 'rel' => 'emailwrapper' ),
916 ) ) .
917 $this->parent->getHelpBox( 'config-enable-email-help' ) .
918 "<div id=\"emailwrapper\" style=\"$emailwrapperStyle\">" .
919 $this->parent->getTextBox( array(
920 'var' => 'wgPasswordSender',
921 'label' => 'config-email-sender'
922 ) ) .
923 $this->parent->getHelpBox( 'config-email-sender-help' ) .
924 $this->parent->getCheckBox( array(
925 'var' => 'wgEnableUserEmail',
926 'label' => 'config-email-user',
927 ) ) .
928 $this->parent->getHelpBox( 'config-email-user-help' ) .
929 $this->parent->getCheckBox( array(
930 'var' => 'wgEnotifUserTalk',
931 'label' => 'config-email-usertalk',
932 ) ) .
933 $this->parent->getHelpBox( 'config-email-usertalk-help' ) .
934 $this->parent->getCheckBox( array(
935 'var' => 'wgEnotifWatchlist',
936 'label' => 'config-email-watchlist',
937 ) ) .
938 $this->parent->getHelpBox( 'config-email-watchlist-help' ) .
939 $this->parent->getCheckBox( array(
940 'var' => 'wgEmailAuthentication',
941 'label' => 'config-email-auth',
942 ) ) .
943 $this->parent->getHelpBox( 'config-email-auth-help' ) .
944 "</div>" .
945 $this->getFieldSetEnd()
946 );
947
948 $extensions = $this->parent->findExtensions();
949
950 if ( $extensions ) {
951 $extHtml = $this->getFieldSetStart( 'config-extensions' );
952
953 foreach ( $extensions as $ext ) {
954 $extHtml .= $this->parent->getCheckBox( array(
955 'var' => "ext-$ext",
956 'rawtext' => $ext,
957 ) );
958 }
959
960 $extHtml .= $this->parent->getHelpBox( 'config-extensions-help' ) .
961 $this->getFieldSetEnd();
962 $this->addHTML( $extHtml );
963 }
964
965 // Having / in paths in Windows looks funny :)
966 $this->setVar( 'wgDeletedDirectory',
967 str_replace(
968 '/', DIRECTORY_SEPARATOR,
969 $this->getVar( 'wgDeletedDirectory' )
970 )
971 );
972
973 $uploadwrapperStyle = $this->getVar( 'wgEnableUploads' ) ? '' : 'display: none';
974 $this->addHTML(
975 # Uploading
976 $this->getFieldSetStart( 'config-upload-settings' ) .
977 $this->parent->getCheckBox( array(
978 'var' => 'wgEnableUploads',
979 'label' => 'config-upload-enable',
980 'attribs' => array( 'class' => 'showHideRadio', 'rel' => 'uploadwrapper' ),
981 'help' => $this->parent->getHelpBox( 'config-upload-help' )
982 ) ) .
983 '<div id="uploadwrapper" style="' . $uploadwrapperStyle . '">' .
984 $this->parent->getTextBox( array(
985 'var' => 'wgDeletedDirectory',
986 'label' => 'config-upload-deleted',
987 'attribs' => array( 'dir' => 'ltr' ),
988 'help' => $this->parent->getHelpBox( 'config-upload-deleted-help' )
989 ) ) .
990 '</div>' .
991 $this->parent->getTextBox( array(
992 'var' => 'wgLogo',
993 'label' => 'config-logo',
994 'attribs' => array( 'dir' => 'ltr' ),
995 'help' => $this->parent->getHelpBox( 'config-logo-help' )
996 ) )
997 );
998 $this->addHTML(
999 $this->parent->getCheckBox( array(
1000 'var' => 'wgUseInstantCommons',
1001 'label' => 'config-instantcommons',
1002 'help' => $this->parent->getHelpBox( 'config-instantcommons-help' )
1003 ) ) .
1004 $this->getFieldSetEnd()
1005 );
1006
1007 $caches = array( 'none' );
1008 if ( count( $this->getVar( '_Caches' ) ) ) {
1009 $caches[] = 'accel';
1010 }
1011 $caches[] = 'memcached';
1012
1013 // We'll hide/show this on demand when the value changes, see config.js.
1014 $cacheval = $this->getVar( 'wgMainCacheType' );
1015 if ( !$cacheval ) {
1016 // We need to set a default here; but don't hardcode it
1017 // or we lose it every time we reload the page for validation
1018 // or going back!
1019 $cacheval = 'none';
1020 }
1021 $hidden = ( $cacheval == 'memcached' ) ? '' : 'display: none';
1022 $this->addHTML(
1023 # Advanced settings
1024 $this->getFieldSetStart( 'config-advanced-settings' ) .
1025 # Object cache settings
1026 // getRadioSet() builds a set of labeled radio buttons.
1027 // For grep: The following messages are used as the item labels:
1028 // config-cache-none, config-cache-accel, config-cache-memcached
1029 $this->parent->getRadioSet( array(
1030 'var' => 'wgMainCacheType',
1031 'label' => 'config-cache-options',
1032 'itemLabelPrefix' => 'config-cache-',
1033 'values' => $caches,
1034 'value' => $cacheval,
1035 ) ) .
1036 $this->parent->getHelpBox( 'config-cache-help' ) .
1037 "<div id=\"config-memcachewrapper\" style=\"$hidden\">" .
1038 $this->parent->getTextArea( array(
1039 'var' => '_MemCachedServers',
1040 'label' => 'config-memcached-servers',
1041 'help' => $this->parent->getHelpBox( 'config-memcached-help' )
1042 ) ) .
1043 '</div>' .
1044 $this->getFieldSetEnd()
1045 );
1046 $this->endForm();
1047 }
1048
1049 /**
1050 * @return string
1051 */
1052 public function getCCPartnerUrl() {
1053 $server = $this->getVar( 'wgServer' );
1054 $exitUrl = $server . $this->parent->getUrl( array(
1055 'page' => 'Options',
1056 'SubmitCC' => 'indeed',
1057 'config__LicenseCode' => 'cc',
1058 'config_wgRightsUrl' => '[license_url]',
1059 'config_wgRightsText' => '[license_name]',
1060 'config_wgRightsIcon' => '[license_button]',
1061 ) );
1062 $styleUrl = $server . dirname( dirname( $this->parent->getUrl() ) ) .
1063 '/skins/common/config-cc.css';
1064 $iframeUrl = 'http://creativecommons.org/license/?' .
1065 wfArrayToCgi( array(
1066 'partner' => 'MediaWiki',
1067 'exit_url' => $exitUrl,
1068 'lang' => $this->getVar( '_UserLang' ),
1069 'stylesheet' => $styleUrl,
1070 ) );
1071
1072 return $iframeUrl;
1073 }
1074
1075 public function getCCChooser() {
1076 $iframeAttribs = array(
1077 'class' => 'config-cc-iframe',
1078 'name' => 'config-cc-iframe',
1079 'id' => 'config-cc-iframe',
1080 'frameborder' => 0,
1081 'width' => '100%',
1082 'height' => '100%',
1083 );
1084 if ( $this->getVar( '_CCDone' ) ) {
1085 $iframeAttribs['src'] = $this->parent->getUrl( array( 'ShowCC' => 'yes' ) );
1086 } else {
1087 $iframeAttribs['src'] = $this->getCCPartnerUrl();
1088 }
1089 $wrapperStyle = ( $this->getVar( '_LicenseCode' ) == 'cc-choose' ) ? '' : 'display: none';
1090
1091 return "<div class=\"config-cc-wrapper\" id=\"config-cc-wrapper\" style=\"$wrapperStyle\">\n" .
1092 Html::element( 'iframe', $iframeAttribs, '', false /* not short */ ) .
1093 "</div>\n";
1094 }
1095
1096 public function getCCDoneBox() {
1097 $js = "parent.document.getElementById('config-cc-wrapper').style.height = '$1';";
1098 // If you change this height, also change it in config.css
1099 $expandJs = str_replace( '$1', '54em', $js );
1100 $reduceJs = str_replace( '$1', '70px', $js );
1101
1102 return '<p>' .
1103 Html::element( 'img', array( 'src' => $this->getVar( 'wgRightsIcon' ) ) ) .
1104 '&#160;&#160;' .
1105 htmlspecialchars( $this->getVar( 'wgRightsText' ) ) .
1106 "</p>\n" .
1107 "<p style=\"text-align: center;\">" .
1108 Html::element( 'a',
1109 array(
1110 'href' => $this->getCCPartnerUrl(),
1111 'onclick' => $expandJs,
1112 ),
1113 wfMessage( 'config-cc-again' )->text()
1114 ) .
1115 "</p>\n" .
1116 "<script>\n" .
1117 # Reduce the wrapper div height
1118 htmlspecialchars( $reduceJs ) .
1119 "\n" .
1120 "</script>\n";
1121 }
1122
1123 public function submitCC() {
1124 $newValues = $this->parent->setVarsFromRequest(
1125 array( 'wgRightsUrl', 'wgRightsText', 'wgRightsIcon' ) );
1126 if ( count( $newValues ) != 3 ) {
1127 $this->parent->showError( 'config-cc-error' );
1128
1129 return;
1130 }
1131 $this->setVar( '_CCDone', true );
1132 $this->addHTML( $this->getCCDoneBox() );
1133 }
1134
1135 public function submit() {
1136 $this->parent->setVarsFromRequest( array( '_RightsProfile', '_LicenseCode',
1137 'wgEnableEmail', 'wgPasswordSender', 'wgEnableUploads', 'wgLogo',
1138 'wgEnableUserEmail', 'wgEnotifUserTalk', 'wgEnotifWatchlist',
1139 'wgEmailAuthentication', 'wgMainCacheType', '_MemCachedServers',
1140 'wgUseInstantCommons' ) );
1141
1142 if ( !in_array( $this->getVar( '_RightsProfile' ),
1143 array_keys( $this->parent->rightsProfiles ) )
1144 ) {
1145 reset( $this->parent->rightsProfiles );
1146 $this->setVar( '_RightsProfile', key( $this->parent->rightsProfiles ) );
1147 }
1148
1149 $code = $this->getVar( '_LicenseCode' );
1150 if ( $code == 'cc-choose' ) {
1151 if ( !$this->getVar( '_CCDone' ) ) {
1152 $this->parent->showError( 'config-cc-not-chosen' );
1153
1154 return false;
1155 }
1156 } elseif ( in_array( $code, array_keys( $this->parent->licenses ) ) ) {
1157 // Messages:
1158 // config-license-cc-by, config-license-cc-by-sa, config-license-cc-by-nc-sa,
1159 // config-license-cc-0, config-license-pd, config-license-gfdl, config-license-none,
1160 // config-license-cc-choose
1161 $entry = $this->parent->licenses[$code];
1162 if ( isset( $entry['text'] ) ) {
1163 $this->setVar( 'wgRightsText', $entry['text'] );
1164 } else {
1165 $this->setVar( 'wgRightsText', wfMessage( 'config-license-' . $code )->text() );
1166 }
1167 $this->setVar( 'wgRightsUrl', $entry['url'] );
1168 $this->setVar( 'wgRightsIcon', $entry['icon'] );
1169 } else {
1170 $this->setVar( 'wgRightsText', '' );
1171 $this->setVar( 'wgRightsUrl', '' );
1172 $this->setVar( 'wgRightsIcon', '' );
1173 }
1174
1175 $extsAvailable = $this->parent->findExtensions();
1176 $extsToInstall = array();
1177 foreach ( $extsAvailable as $ext ) {
1178 if ( $this->parent->request->getCheck( 'config_ext-' . $ext ) ) {
1179 $extsToInstall[] = $ext;
1180 }
1181 }
1182 $this->parent->setVar( '_Extensions', $extsToInstall );
1183
1184 if ( $this->getVar( 'wgMainCacheType' ) == 'memcached' ) {
1185 $memcServers = explode( "\n", $this->getVar( '_MemCachedServers' ) );
1186 if ( !$memcServers ) {
1187 $this->parent->showError( 'config-memcache-needservers' );
1188
1189 return false;
1190 }
1191
1192 foreach ( $memcServers as $server ) {
1193 $memcParts = explode( ":", $server, 2 );
1194 if ( !isset( $memcParts[0] )
1195 || ( !IP::isValid( $memcParts[0] )
1196 && ( gethostbyname( $memcParts[0] ) == $memcParts[0] ) )
1197 ) {
1198 $this->parent->showError( 'config-memcache-badip', $memcParts[0] );
1199
1200 return false;
1201 } elseif ( !isset( $memcParts[1] ) ) {
1202 $this->parent->showError( 'config-memcache-noport', $memcParts[0] );
1203
1204 return false;
1205 } elseif ( $memcParts[1] < 1 || $memcParts[1] > 65535 ) {
1206 $this->parent->showError( 'config-memcache-badport', 1, 65535 );
1207
1208 return false;
1209 }
1210 }
1211 }
1212
1213 return true;
1214 }
1215 }
1216
1217 class WebInstaller_Install extends WebInstallerPage {
1218 public function isSlow() {
1219 return true;
1220 }
1221
1222 public function execute() {
1223 if ( $this->getVar( '_UpgradeDone' ) ) {
1224 return 'skip';
1225 } elseif ( $this->getVar( '_InstallDone' ) ) {
1226 return 'continue';
1227 } elseif ( $this->parent->request->wasPosted() ) {
1228 $this->startForm();
1229 $this->addHTML( "<ul>" );
1230 $results = $this->parent->performInstallation(
1231 array( $this, 'startStage' ),
1232 array( $this, 'endStage' )
1233 );
1234 $this->addHTML( "</ul>" );
1235 // PerformInstallation bails on a fatal, so make sure the last item
1236 // completed before giving 'next.' Likewise, only provide back on failure
1237 $lastStep = end( $results );
1238 $continue = $lastStep->isOK() ? 'continue' : false;
1239 $back = $lastStep->isOK() ? false : 'back';
1240 $this->endForm( $continue, $back );
1241 } else {
1242 $this->startForm();
1243 $this->addHTML( $this->parent->getInfoBox( wfMessage( 'config-install-begin' )->plain() ) );
1244 $this->endForm();
1245 }
1246
1247 return true;
1248 }
1249
1250 public function startStage( $step ) {
1251 // Messages: config-install-database, config-install-tables, config-install-interwiki,
1252 // config-install-stats, config-install-keys, config-install-sysop, config-install-mainpage
1253 $this->addHTML( "<li>" . wfMessage( "config-install-$step" )->escaped() .
1254 wfMessage( 'ellipsis' )->escaped() );
1255
1256 if ( $step == 'extension-tables' ) {
1257 $this->startLiveBox();
1258 }
1259 }
1260
1261 /**
1262 * @param $step
1263 * @param $status Status
1264 */
1265 public function endStage( $step, $status ) {
1266 if ( $step == 'extension-tables' ) {
1267 $this->endLiveBox();
1268 }
1269 $msg = $status->isOk() ? 'config-install-step-done' : 'config-install-step-failed';
1270 $html = wfMessage( 'word-separator' )->escaped() . wfMessage( $msg )->escaped();
1271 if ( !$status->isOk() ) {
1272 $html = "<span class=\"error\">$html</span>";
1273 }
1274 $this->addHTML( $html . "</li>\n" );
1275 if ( !$status->isGood() ) {
1276 $this->parent->showStatusBox( $status );
1277 }
1278 }
1279 }
1280
1281 class WebInstaller_Complete extends WebInstallerPage {
1282 public function execute() {
1283 // Pop up a dialog box, to make it difficult for the user to forget
1284 // to download the file
1285 $lsUrl = $this->getVar( 'wgServer' ) . $this->parent->getURL( array( 'localsettings' => 1 ) );
1286 if ( isset( $_SERVER['HTTP_USER_AGENT'] ) &&
1287 strpos( $_SERVER['HTTP_USER_AGENT'], 'MSIE' ) !== false
1288 ) {
1289 // JS appears to be the only method that works consistently with IE7+
1290 $this->addHtml( "\n<script>jQuery( function () { document.location = " .
1291 Xml::encodeJsVar( $lsUrl ) . "; } );</script>\n" );
1292 } else {
1293 $this->parent->request->response()->header( "Refresh: 0;url=$lsUrl" );
1294 }
1295
1296 $this->startForm();
1297 $this->parent->disableLinkPopups();
1298 $this->addHTML(
1299 $this->parent->getInfoBox(
1300 wfMessage( 'config-install-done',
1301 $lsUrl,
1302 $this->getVar( 'wgServer' ) .
1303 $this->getVar( 'wgScriptPath' ) . '/index' .
1304 $this->getVar( 'wgScriptExtension' ),
1305 '<downloadlink/>'
1306 )->plain(), 'tick-32.png'
1307 )
1308 );
1309 $this->addHTML( $this->parent->getInfoBox(
1310 wfMessage( 'config-extension-link' )->text() ) );
1311
1312 $this->parent->restoreLinkPopups();
1313 $this->endForm( false, false );
1314 }
1315 }
1316
1317 class WebInstaller_Restart extends WebInstallerPage {
1318
1319 public function execute() {
1320 $r = $this->parent->request;
1321 if ( $r->wasPosted() ) {
1322 $really = $r->getVal( 'submit-restart' );
1323 if ( $really ) {
1324 $this->parent->reset();
1325 }
1326
1327 return 'continue';
1328 }
1329
1330 $this->startForm();
1331 $s = $this->parent->getWarningBox( wfMessage( 'config-help-restart' )->plain() );
1332 $this->addHTML( $s );
1333 $this->endForm( 'restart' );
1334 }
1335 }
1336
1337 abstract class WebInstaller_Document extends WebInstallerPage {
1338
1339 abstract protected function getFileName();
1340
1341 public function execute() {
1342 $text = $this->getFileContents();
1343 $text = InstallDocFormatter::format( $text );
1344 $this->parent->output->addWikiText( $text );
1345 $this->startForm();
1346 $this->endForm( false );
1347 }
1348
1349 public function getFileContents() {
1350 $file = __DIR__ . '/../../' . $this->getFileName();
1351 if ( !file_exists( $file ) ) {
1352 return wfMessage( 'config-nofile', $file )->plain();
1353 }
1354
1355 return file_get_contents( $file );
1356 }
1357 }
1358
1359 class WebInstaller_Readme extends WebInstaller_Document {
1360 protected function getFileName() {
1361 return 'README';
1362 }
1363 }
1364
1365 class WebInstaller_ReleaseNotes extends WebInstaller_Document {
1366 protected function getFileName() {
1367 global $wgVersion;
1368
1369 if ( !preg_match( '/^(\d+)\.(\d+).*/i', $wgVersion, $result ) ) {
1370 throw new MWException( 'Variable $wgVersion has an invalid value.' );
1371 }
1372
1373 return 'RELEASE-NOTES-' . $result[1] . '.' . $result[2];
1374 }
1375 }
1376
1377 class WebInstaller_UpgradeDoc extends WebInstaller_Document {
1378 protected function getFileName() {
1379 return 'UPGRADE';
1380 }
1381 }
1382
1383 class WebInstaller_Copying extends WebInstaller_Document {
1384 protected function getFileName() {
1385 return 'COPYING';
1386 }
1387 }