Merge "Selenium: replace UserLoginPage with BlankPage where possible"
[lhc/web/wiklou.git] / includes / installer / WebInstaller.php
1 <?php
2 /**
3 * Core installer web interface.
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 use MediaWiki\MediaWikiServices;
25
26 /**
27 * Class for the core installer web interface.
28 *
29 * @ingroup Deployment
30 * @since 1.17
31 */
32 class WebInstaller extends Installer {
33
34 /**
35 * @var WebInstallerOutput
36 */
37 public $output;
38
39 /**
40 * WebRequest object.
41 *
42 * @var WebRequest
43 */
44 public $request;
45
46 /**
47 * Cached session array.
48 *
49 * @var array[]
50 */
51 protected $session;
52
53 /**
54 * Captured PHP error text. Temporary.
55 *
56 * @var string[]
57 */
58 protected $phpErrors;
59
60 /**
61 * The main sequence of page names. These will be displayed in turn.
62 *
63 * To add a new installer page:
64 * * Add it to this WebInstaller::$pageSequence property
65 * * Add a "config-page-<name>" message
66 * * Add a "WebInstaller<name>" class
67 *
68 * @var string[]
69 */
70 public $pageSequence = [
71 'Language',
72 'ExistingWiki',
73 'Welcome',
74 'DBConnect',
75 'Upgrade',
76 'DBSettings',
77 'Name',
78 'Options',
79 'Install',
80 'Complete',
81 ];
82
83 /**
84 * Out of sequence pages, selectable by the user at any time.
85 *
86 * @var string[]
87 */
88 protected $otherPages = [
89 'Restart',
90 'Readme',
91 'ReleaseNotes',
92 'Copying',
93 'UpgradeDoc', // Can't use Upgrade due to Upgrade step
94 ];
95
96 /**
97 * Array of pages which have declared that they have been submitted, have validated
98 * their input, and need no further processing.
99 *
100 * @var bool[]
101 */
102 protected $happyPages;
103
104 /**
105 * List of "skipped" pages. These are pages that will automatically continue
106 * to the next page on any GET request. To avoid breaking the "back" button,
107 * they need to be skipped during a back operation.
108 *
109 * @var bool[]
110 */
111 protected $skippedPages;
112
113 /**
114 * Flag indicating that session data may have been lost.
115 *
116 * @var bool
117 */
118 public $showSessionWarning = false;
119
120 /**
121 * Numeric index of the page we're on
122 *
123 * @var int
124 */
125 protected $tabIndex = 1;
126
127 /**
128 * Numeric index of the help box
129 *
130 * @var int
131 */
132 protected $helpBoxId = 1;
133
134 /**
135 * Name of the page we're on
136 *
137 * @var string
138 */
139 protected $currentPageName;
140
141 /**
142 * @param WebRequest $request
143 */
144 public function __construct( WebRequest $request ) {
145 parent::__construct();
146 $this->output = new WebInstallerOutput( $this );
147 $this->request = $request;
148
149 // Add parser hooks
150 $parser = MediaWikiServices::getInstance()->getParser();
151 $parser->setHook( 'downloadlink', [ $this, 'downloadLinkHook' ] );
152 $parser->setHook( 'doclink', [ $this, 'docLink' ] );
153 }
154
155 /**
156 * Main entry point.
157 *
158 * @param array[] $session Initial session array
159 *
160 * @return array[] New session array
161 */
162 public function execute( array $session ) {
163 $this->session = $session;
164
165 if ( isset( $session['settings'] ) ) {
166 $this->settings = $session['settings'] + $this->settings;
167 // T187586 MediaWikiServices works with globals
168 foreach ( $this->settings as $key => $val ) {
169 $GLOBALS[$key] = $val;
170 }
171 }
172
173 $this->setupLanguage();
174
175 if ( ( $this->getVar( '_InstallDone' ) || $this->getVar( '_UpgradeDone' ) )
176 && $this->request->getVal( 'localsettings' )
177 ) {
178 $this->outputLS();
179 return $this->session;
180 }
181
182 $isCSS = $this->request->getVal( 'css' );
183 if ( $isCSS ) {
184 $this->outputCss();
185 return $this->session;
186 }
187
188 $this->happyPages = $session['happyPages'] ?? [];
189
190 $this->skippedPages = $session['skippedPages'] ?? [];
191
192 $lowestUnhappy = $this->getLowestUnhappy();
193
194 # Special case for Creative Commons partner chooser box.
195 if ( $this->request->getVal( 'SubmitCC' ) ) {
196 $page = $this->getPageByName( 'Options' );
197 $this->output->useShortHeader();
198 $this->output->allowFrames();
199 $page->submitCC();
200
201 return $this->finish();
202 }
203
204 if ( $this->request->getVal( 'ShowCC' ) ) {
205 $page = $this->getPageByName( 'Options' );
206 $this->output->useShortHeader();
207 $this->output->allowFrames();
208 $this->output->addHTML( $page->getCCDoneBox() );
209
210 return $this->finish();
211 }
212
213 # Get the page name.
214 $pageName = $this->request->getVal( 'page' );
215
216 if ( in_array( $pageName, $this->otherPages ) ) {
217 # Out of sequence
218 $pageId = false;
219 $page = $this->getPageByName( $pageName );
220 } else {
221 # Main sequence
222 if ( !$pageName || !in_array( $pageName, $this->pageSequence ) ) {
223 $pageId = $lowestUnhappy;
224 } else {
225 $pageId = array_search( $pageName, $this->pageSequence );
226 }
227
228 # If necessary, move back to the lowest-numbered unhappy page
229 if ( $pageId > $lowestUnhappy ) {
230 $pageId = $lowestUnhappy;
231 if ( $lowestUnhappy == 0 ) {
232 # Knocked back to start, possible loss of session data.
233 $this->showSessionWarning = true;
234 }
235 }
236
237 $pageName = $this->pageSequence[$pageId];
238 $page = $this->getPageByName( $pageName );
239 }
240
241 # If a back button was submitted, go back without submitting the form data.
242 if ( $this->request->wasPosted() && $this->request->getBool( 'submit-back' ) ) {
243 if ( $this->request->getVal( 'lastPage' ) ) {
244 $nextPage = $this->request->getVal( 'lastPage' );
245 } elseif ( $pageId !== false ) {
246 # Main sequence page
247 # Skip the skipped pages
248 $nextPageId = $pageId;
249
250 do {
251 $nextPageId--;
252 $nextPage = $this->pageSequence[$nextPageId];
253 } while ( isset( $this->skippedPages[$nextPage] ) );
254 } else {
255 $nextPage = $this->pageSequence[$lowestUnhappy];
256 }
257
258 $this->output->redirect( $this->getUrl( [ 'page' => $nextPage ] ) );
259
260 return $this->finish();
261 }
262
263 # Execute the page.
264 $this->currentPageName = $page->getName();
265 $this->startPageWrapper( $pageName );
266
267 if ( $page->isSlow() ) {
268 $this->disableTimeLimit();
269 }
270
271 $result = $page->execute();
272
273 $this->endPageWrapper();
274
275 if ( $result == 'skip' ) {
276 # Page skipped without explicit submission.
277 # Skip it when we click "back" so that we don't just go forward again.
278 $this->skippedPages[$pageName] = true;
279 $result = 'continue';
280 } else {
281 unset( $this->skippedPages[$pageName] );
282 }
283
284 # If it was posted, the page can request a continue to the next page.
285 if ( $result === 'continue' && !$this->output->headerDone() ) {
286 if ( $pageId !== false ) {
287 $this->happyPages[$pageId] = true;
288 }
289
290 $lowestUnhappy = $this->getLowestUnhappy();
291
292 if ( $this->request->getVal( 'lastPage' ) ) {
293 $nextPage = $this->request->getVal( 'lastPage' );
294 } elseif ( $pageId !== false ) {
295 $nextPage = $this->pageSequence[$pageId + 1];
296 } else {
297 $nextPage = $this->pageSequence[$lowestUnhappy];
298 }
299
300 if ( array_search( $nextPage, $this->pageSequence ) > $lowestUnhappy ) {
301 $nextPage = $this->pageSequence[$lowestUnhappy];
302 }
303
304 $this->output->redirect( $this->getUrl( [ 'page' => $nextPage ] ) );
305 }
306
307 return $this->finish();
308 }
309
310 /**
311 * Find the next page in sequence that hasn't been completed
312 * @return int
313 */
314 public function getLowestUnhappy() {
315 if ( count( $this->happyPages ) == 0 ) {
316 return 0;
317 } else {
318 return max( array_keys( $this->happyPages ) ) + 1;
319 }
320 }
321
322 /**
323 * Start the PHP session. This may be called before execute() to start the PHP session.
324 *
325 * @throws Exception
326 * @return bool
327 */
328 public function startSession() {
329 if ( wfIniGetBool( 'session.auto_start' ) || session_id() ) {
330 // Done already
331 return true;
332 }
333
334 $this->phpErrors = [];
335 set_error_handler( [ $this, 'errorHandler' ] );
336 try {
337 session_name( 'mw_installer_session' );
338 session_start();
339 } catch ( Exception $e ) {
340 restore_error_handler();
341 throw $e;
342 }
343 restore_error_handler();
344
345 if ( $this->phpErrors ) {
346 return false;
347 }
348
349 return true;
350 }
351
352 /**
353 * Get a hash of data identifying this MW installation.
354 *
355 * This is used by mw-config/index.php to prevent multiple installations of MW
356 * on the same cookie domain from interfering with each other.
357 *
358 * @return string
359 */
360 public function getFingerprint() {
361 // Get the base URL of the installation
362 $url = $this->request->getFullRequestURL();
363 if ( preg_match( '!^(.*\?)!', $url, $m ) ) {
364 // Trim query string
365 $url = $m[1];
366 }
367 if ( preg_match( '!^(.*)/[^/]*/[^/]*$!', $url, $m ) ) {
368 // This... seems to try to get the base path from
369 // the /mw-config/index.php. Kinda scary though?
370 $url = $m[1];
371 }
372
373 return md5( serialize( [
374 'local path' => dirname( __DIR__ ),
375 'url' => $url,
376 'version' => $GLOBALS['wgVersion']
377 ] ) );
378 }
379
380 /**
381 * Show an error message in a box. Parameters are like wfMessage(), or
382 * alternatively, pass a Message object in.
383 * @param string|Message $msg
384 * @param mixed ...$params
385 */
386 public function showError( $msg, ...$params ) {
387 if ( !( $msg instanceof Message ) ) {
388 $msg = wfMessage(
389 $msg,
390 array_map( 'htmlspecialchars', $params )
391 );
392 }
393 $text = $msg->useDatabase( false )->plain();
394 $this->output->addHTML( $this->getErrorBox( $text ) );
395 }
396
397 /**
398 * Temporary error handler for session start debugging.
399 *
400 * @param int $errno Unused
401 * @param string $errstr
402 */
403 public function errorHandler( $errno, $errstr ) {
404 $this->phpErrors[] = $errstr;
405 }
406
407 /**
408 * Clean up from execute()
409 *
410 * @return array[]
411 */
412 public function finish() {
413 $this->output->output();
414
415 $this->session['happyPages'] = $this->happyPages;
416 $this->session['skippedPages'] = $this->skippedPages;
417 $this->session['settings'] = $this->settings;
418
419 return $this->session;
420 }
421
422 /**
423 * We're restarting the installation, reset the session, happyPages, etc
424 */
425 public function reset() {
426 $this->session = [];
427 $this->happyPages = [];
428 $this->settings = [];
429 }
430
431 /**
432 * Get a URL for submission back to the same script.
433 *
434 * @param string[] $query
435 *
436 * @return string
437 */
438 public function getUrl( $query = [] ) {
439 $url = $this->request->getRequestURL();
440 # Remove existing query
441 $url = preg_replace( '/\?.*$/', '', $url );
442
443 if ( $query ) {
444 $url .= '?' . wfArrayToCgi( $query );
445 }
446
447 return $url;
448 }
449
450 /**
451 * Get a WebInstallerPage by name.
452 *
453 * @param string $pageName
454 * @return WebInstallerPage
455 */
456 public function getPageByName( $pageName ) {
457 $pageClass = 'WebInstaller' . $pageName;
458
459 return new $pageClass( $this );
460 }
461
462 /**
463 * Get a session variable.
464 *
465 * @param string $name
466 * @param array|null $default
467 *
468 * @return array
469 */
470 public function getSession( $name, $default = null ) {
471 return $this->session[$name] ?? $default;
472 }
473
474 /**
475 * Set a session variable.
476 *
477 * @param string $name Key for the variable
478 * @param mixed $value
479 */
480 public function setSession( $name, $value ) {
481 $this->session[$name] = $value;
482 }
483
484 /**
485 * Get the next tabindex attribute value.
486 *
487 * @return int
488 */
489 public function nextTabIndex() {
490 return $this->tabIndex++;
491 }
492
493 /**
494 * Initializes language-related variables.
495 */
496 public function setupLanguage() {
497 global $wgLang, $wgContLang, $wgLanguageCode;
498
499 if ( $this->getSession( 'test' ) === null && !$this->request->wasPosted() ) {
500 $wgLanguageCode = $this->getAcceptLanguage();
501 $wgLang = Language::factory( $wgLanguageCode );
502 RequestContext::getMain()->setLanguage( $wgLang );
503 $this->setVar( 'wgLanguageCode', $wgLanguageCode );
504 $this->setVar( '_UserLang', $wgLanguageCode );
505 } else {
506 $wgLanguageCode = $this->getVar( 'wgLanguageCode' );
507 }
508 $wgContLang = MediaWikiServices::getInstance()->getContentLanguage();
509 }
510
511 /**
512 * Retrieves MediaWiki language from Accept-Language HTTP header.
513 *
514 * @return string
515 */
516 public function getAcceptLanguage() {
517 global $wgLanguageCode, $wgRequest;
518
519 $mwLanguages = Language::fetchLanguageNames( null, 'mwfile' );
520 $headerLanguages = array_keys( $wgRequest->getAcceptLang() );
521
522 foreach ( $headerLanguages as $lang ) {
523 if ( isset( $mwLanguages[$lang] ) ) {
524 return $lang;
525 }
526 }
527
528 return $wgLanguageCode;
529 }
530
531 /**
532 * Called by execute() before page output starts, to show a page list.
533 *
534 * @param string $currentPageName
535 */
536 private function startPageWrapper( $currentPageName ) {
537 $s = "<div class=\"config-page-wrapper\">\n";
538 $s .= "<div class=\"config-page\">\n";
539 $s .= "<div class=\"config-page-list\"><ul>\n";
540 $lastHappy = -1;
541
542 foreach ( $this->pageSequence as $id => $pageName ) {
543 $happy = !empty( $this->happyPages[$id] );
544 $s .= $this->getPageListItem(
545 $pageName,
546 $happy || $lastHappy == $id - 1,
547 $currentPageName
548 );
549
550 if ( $happy ) {
551 $lastHappy = $id;
552 }
553 }
554
555 $s .= "</ul><br/><ul>\n";
556 $s .= $this->getPageListItem( 'Restart', true, $currentPageName );
557 // End list pane
558 $s .= "</ul></div>\n";
559
560 // Messages:
561 // config-page-language, config-page-welcome, config-page-dbconnect, config-page-upgrade,
562 // config-page-dbsettings, config-page-name, config-page-options, config-page-install,
563 // config-page-complete, config-page-restart, config-page-readme, config-page-releasenotes,
564 // config-page-copying, config-page-upgradedoc, config-page-existingwiki
565 $s .= Html::element( 'h2', [],
566 wfMessage( 'config-page-' . strtolower( $currentPageName ) )->text() );
567
568 $this->output->addHTMLNoFlush( $s );
569 }
570
571 /**
572 * Get a list item for the page list.
573 *
574 * @param string $pageName
575 * @param bool $enabled
576 * @param string $currentPageName
577 *
578 * @return string
579 */
580 private function getPageListItem( $pageName, $enabled, $currentPageName ) {
581 $s = "<li class=\"config-page-list-item\">";
582
583 // Messages:
584 // config-page-language, config-page-welcome, config-page-dbconnect, config-page-upgrade,
585 // config-page-dbsettings, config-page-name, config-page-options, config-page-install,
586 // config-page-complete, config-page-restart, config-page-readme, config-page-releasenotes,
587 // config-page-copying, config-page-upgradedoc, config-page-existingwiki
588 $name = wfMessage( 'config-page-' . strtolower( $pageName ) )->text();
589
590 if ( $enabled ) {
591 $query = [ 'page' => $pageName ];
592
593 if ( !in_array( $pageName, $this->pageSequence ) ) {
594 if ( in_array( $currentPageName, $this->pageSequence ) ) {
595 $query['lastPage'] = $currentPageName;
596 }
597
598 $link = Html::element( 'a',
599 [
600 'href' => $this->getUrl( $query )
601 ],
602 $name
603 );
604 } else {
605 $link = htmlspecialchars( $name );
606 }
607
608 if ( $pageName == $currentPageName ) {
609 $s .= "<span class=\"config-page-current\">$link</span>";
610 } else {
611 $s .= $link;
612 }
613 } else {
614 $s .= Html::element( 'span',
615 [
616 'class' => 'config-page-disabled'
617 ],
618 $name
619 );
620 }
621
622 $s .= "</li>\n";
623
624 return $s;
625 }
626
627 /**
628 * Output some stuff after a page is finished.
629 */
630 private function endPageWrapper() {
631 $this->output->addHTMLNoFlush(
632 "<div class=\"visualClear\"></div>\n" .
633 "</div>\n" .
634 "<div class=\"visualClear\"></div>\n" .
635 "</div>" );
636 }
637
638 /**
639 * Get HTML for an error box with an icon.
640 *
641 * @param string $text Wikitext, get this with wfMessage()->plain()
642 *
643 * @return string
644 */
645 public function getErrorBox( $text ) {
646 return $this->getInfoBox( $text, 'critical-32.png', 'config-error-box' );
647 }
648
649 /**
650 * Get HTML for a warning box with an icon.
651 *
652 * @param string $text Wikitext, get this with wfMessage()->plain()
653 *
654 * @return string
655 */
656 public function getWarningBox( $text ) {
657 return $this->getInfoBox( $text, 'warning-32.png', 'config-warning-box' );
658 }
659
660 /**
661 * Get HTML for an info box with an icon.
662 *
663 * @param string $text Wikitext, get this with wfMessage()->plain()
664 * @param string|bool $icon Icon name, file in mw-config/images. Default: false
665 * @param string|bool $class Additional class name to add to the wrapper div. Default: false.
666 *
667 * @return string
668 */
669 public function getInfoBox( $text, $icon = false, $class = false ) {
670 $text = $this->parse( $text, true );
671 $icon = ( $icon == false ) ?
672 'images/info-32.png' :
673 'images/' . $icon;
674 $alt = wfMessage( 'config-information' )->text();
675
676 return Html::infoBox( $text, $icon, $alt, $class );
677 }
678
679 /**
680 * Get small text indented help for a preceding form field.
681 * Parameters like wfMessage().
682 *
683 * @param string $msg
684 * @return string
685 */
686 public function getHelpBox( $msg, ...$args ) {
687 $args = array_map( 'htmlspecialchars', $args );
688 $text = wfMessage( $msg, $args )->useDatabase( false )->plain();
689 $html = $this->parse( $text, true );
690 $id = 'helpBox-' . $this->helpBoxId++;
691
692 return "<div class=\"config-help-field-container\">\n" .
693 "<input type=\"checkbox\" class=\"config-help-field-checkbox\" id=\"$id\" />" .
694 "<label class=\"config-help-field-hint\" for=\"$id\" title=\"" .
695 wfMessage( 'config-help-tooltip' )->escaped() . "\">" .
696 wfMessage( 'config-help' )->escaped() . "</label>\n" .
697 "<div class=\"config-help-field-data\">" . $html . "</div>\n" .
698 "</div>\n";
699 }
700
701 /**
702 * Output a help box.
703 * @param string $msg Key for wfMessage()
704 * @param mixed ...$params
705 */
706 public function showHelpBox( $msg, ...$params ) {
707 $html = $this->getHelpBox( $msg, ...$params );
708 $this->output->addHTML( $html );
709 }
710
711 /**
712 * Show a short informational message.
713 * Output looks like a list.
714 *
715 * @param string $msg
716 * @param mixed ...$params
717 */
718 public function showMessage( $msg, ...$params ) {
719 $html = '<div class="config-message">' .
720 $this->parse( wfMessage( $msg, $params )->useDatabase( false )->plain() ) .
721 "</div>\n";
722 $this->output->addHTML( $html );
723 }
724
725 /**
726 * @param Status $status
727 */
728 public function showStatusMessage( Status $status ) {
729 $errors = array_merge( $status->getErrorsArray(), $status->getWarningsArray() );
730 foreach ( $errors as $error ) {
731 $this->showMessage( ...$error );
732 }
733 }
734
735 /**
736 * Label a control by wrapping a config-input div around it and putting a
737 * label before it.
738 *
739 * @param string $msg
740 * @param string $forId
741 * @param string $contents
742 * @param string $helpData
743 * @return string
744 */
745 public function label( $msg, $forId, $contents, $helpData = "" ) {
746 if ( strval( $msg ) == '' ) {
747 $labelText = "\u{00A0}";
748 } else {
749 $labelText = wfMessage( $msg )->escaped();
750 }
751
752 $attributes = [ 'class' => 'config-label' ];
753
754 if ( $forId ) {
755 $attributes['for'] = $forId;
756 }
757
758 return "<div class=\"config-block\">\n" .
759 " <div class=\"config-block-label\">\n" .
760 Xml::tags( 'label',
761 $attributes,
762 $labelText
763 ) . "\n" .
764 $helpData .
765 " </div>\n" .
766 " <div class=\"config-block-elements\">\n" .
767 $contents .
768 " </div>\n" .
769 "</div>\n";
770 }
771
772 /**
773 * Get a labelled text box to configure a variable.
774 *
775 * @param mixed[] $params
776 * Parameters are:
777 * var: The variable to be configured (required)
778 * label: The message name for the label (required)
779 * attribs: Additional attributes for the input element (optional)
780 * controlName: The name for the input element (optional)
781 * value: The current value of the variable (optional)
782 * help: The html for the help text (optional)
783 *
784 * @return string
785 */
786 public function getTextBox( $params ) {
787 if ( !isset( $params['controlName'] ) ) {
788 $params['controlName'] = 'config_' . $params['var'];
789 }
790
791 if ( !isset( $params['value'] ) ) {
792 $params['value'] = $this->getVar( $params['var'] );
793 }
794
795 if ( !isset( $params['attribs'] ) ) {
796 $params['attribs'] = [];
797 }
798 if ( !isset( $params['help'] ) ) {
799 $params['help'] = "";
800 }
801
802 return $this->label(
803 $params['label'],
804 $params['controlName'],
805 Xml::input(
806 $params['controlName'],
807 30, // intended to be overridden by CSS
808 $params['value'],
809 $params['attribs'] + [
810 'id' => $params['controlName'],
811 'class' => 'config-input-text',
812 'tabindex' => $this->nextTabIndex()
813 ]
814 ),
815 $params['help']
816 );
817 }
818
819 /**
820 * Get a labelled textarea to configure a variable
821 *
822 * @param mixed[] $params
823 * Parameters are:
824 * var: The variable to be configured (required)
825 * label: The message name for the label (required)
826 * attribs: Additional attributes for the input element (optional)
827 * controlName: The name for the input element (optional)
828 * value: The current value of the variable (optional)
829 * help: The html for the help text (optional)
830 *
831 * @return string
832 */
833 public function getTextArea( $params ) {
834 if ( !isset( $params['controlName'] ) ) {
835 $params['controlName'] = 'config_' . $params['var'];
836 }
837
838 if ( !isset( $params['value'] ) ) {
839 $params['value'] = $this->getVar( $params['var'] );
840 }
841
842 if ( !isset( $params['attribs'] ) ) {
843 $params['attribs'] = [];
844 }
845 if ( !isset( $params['help'] ) ) {
846 $params['help'] = "";
847 }
848
849 return $this->label(
850 $params['label'],
851 $params['controlName'],
852 Xml::textarea(
853 $params['controlName'],
854 $params['value'],
855 30,
856 5,
857 $params['attribs'] + [
858 'id' => $params['controlName'],
859 'class' => 'config-input-text',
860 'tabindex' => $this->nextTabIndex()
861 ]
862 ),
863 $params['help']
864 );
865 }
866
867 /**
868 * Get a labelled password box to configure a variable.
869 *
870 * Implements password hiding
871 * @param mixed[] $params
872 * Parameters are:
873 * var: The variable to be configured (required)
874 * label: The message name for the label (required)
875 * attribs: Additional attributes for the input element (optional)
876 * controlName: The name for the input element (optional)
877 * value: The current value of the variable (optional)
878 * help: The html for the help text (optional)
879 *
880 * @return string
881 */
882 public function getPasswordBox( $params ) {
883 if ( !isset( $params['value'] ) ) {
884 $params['value'] = $this->getVar( $params['var'] );
885 }
886
887 if ( !isset( $params['attribs'] ) ) {
888 $params['attribs'] = [];
889 }
890
891 $params['value'] = $this->getFakePassword( $params['value'] );
892 $params['attribs']['type'] = 'password';
893
894 return $this->getTextBox( $params );
895 }
896
897 /**
898 * Get a labelled checkbox to configure a boolean variable.
899 *
900 * @param mixed[] $params
901 * Parameters are:
902 * var: The variable to be configured (required)
903 * label: The message name for the label (required)
904 * labelAttribs:Additional attributes for the label element (optional)
905 * attribs: Additional attributes for the input element (optional)
906 * controlName: The name for the input element (optional)
907 * value: The current value of the variable (optional)
908 * help: The html for the help text (optional)
909 *
910 * @return string
911 */
912 public function getCheckBox( $params ) {
913 if ( !isset( $params['controlName'] ) ) {
914 $params['controlName'] = 'config_' . $params['var'];
915 }
916
917 if ( !isset( $params['value'] ) ) {
918 $params['value'] = $this->getVar( $params['var'] );
919 }
920
921 if ( !isset( $params['attribs'] ) ) {
922 $params['attribs'] = [];
923 }
924 if ( !isset( $params['help'] ) ) {
925 $params['help'] = "";
926 }
927 if ( !isset( $params['labelAttribs'] ) ) {
928 $params['labelAttribs'] = [];
929 }
930 $labelText = $params['rawtext'] ?? $this->parse( wfMessage( $params['label'] )->plain() );
931
932 return "<div class=\"config-input-check\">\n" .
933 $params['help'] .
934 Html::rawElement(
935 'label',
936 $params['labelAttribs'],
937 Xml::check(
938 $params['controlName'],
939 $params['value'],
940 $params['attribs'] + [
941 'id' => $params['controlName'],
942 'tabindex' => $this->nextTabIndex(),
943 ]
944 ) .
945 $labelText . "\n"
946 ) .
947 "</div>\n";
948 }
949
950 /**
951 * Get a set of labelled radio buttons.
952 *
953 * @param mixed[] $params
954 * Parameters are:
955 * var: The variable to be configured (required)
956 * label: The message name for the label (required)
957 * itemLabelPrefix: The message name prefix for the item labels (required)
958 * itemLabels: List of message names to use for the item labels instead
959 * of itemLabelPrefix, keyed by values
960 * values: List of allowed values (required)
961 * itemAttribs: Array of attribute arrays, outer key is the value name (optional)
962 * commonAttribs: Attribute array applied to all items
963 * controlName: The name for the input element (optional)
964 * value: The current value of the variable (optional)
965 * help: The html for the help text (optional)
966 *
967 * @return string
968 */
969 public function getRadioSet( $params ) {
970 $items = $this->getRadioElements( $params );
971
972 $label = $params['label'] ?? '';
973
974 if ( !isset( $params['controlName'] ) ) {
975 $params['controlName'] = 'config_' . $params['var'];
976 }
977
978 if ( !isset( $params['help'] ) ) {
979 $params['help'] = "";
980 }
981
982 $s = "<ul>\n";
983 foreach ( $items as $value => $item ) {
984 $s .= "<li>$item</li>\n";
985 }
986 $s .= "</ul>\n";
987
988 return $this->label( $label, $params['controlName'], $s, $params['help'] );
989 }
990
991 /**
992 * Get a set of labelled radio buttons. You probably want to use getRadioSet(), not this.
993 *
994 * @see getRadioSet
995 *
996 * @param mixed[] $params
997 * @return array
998 */
999 public function getRadioElements( $params ) {
1000 if ( !isset( $params['controlName'] ) ) {
1001 $params['controlName'] = 'config_' . $params['var'];
1002 }
1003
1004 if ( !isset( $params['value'] ) ) {
1005 $params['value'] = $this->getVar( $params['var'] );
1006 }
1007
1008 $items = [];
1009
1010 foreach ( $params['values'] as $value ) {
1011 $itemAttribs = [];
1012
1013 if ( isset( $params['commonAttribs'] ) ) {
1014 $itemAttribs = $params['commonAttribs'];
1015 }
1016
1017 if ( isset( $params['itemAttribs'][$value] ) ) {
1018 $itemAttribs = $params['itemAttribs'][$value] + $itemAttribs;
1019 }
1020
1021 $checked = $value == $params['value'];
1022 $id = $params['controlName'] . '_' . $value;
1023 $itemAttribs['id'] = $id;
1024 $itemAttribs['tabindex'] = $this->nextTabIndex();
1025
1026 $items[$value] =
1027 Xml::radio( $params['controlName'], $value, $checked, $itemAttribs ) .
1028 "\u{00A0}" .
1029 Xml::tags( 'label', [ 'for' => $id ], $this->parse(
1030 isset( $params['itemLabels'] ) ?
1031 wfMessage( $params['itemLabels'][$value] )->plain() :
1032 wfMessage( $params['itemLabelPrefix'] . strtolower( $value ) )->plain()
1033 ) );
1034 }
1035
1036 return $items;
1037 }
1038
1039 /**
1040 * Output an error or warning box using a Status object.
1041 *
1042 * @param Status $status
1043 */
1044 public function showStatusBox( $status ) {
1045 if ( !$status->isGood() ) {
1046 $text = $status->getWikiText();
1047
1048 if ( $status->isOK() ) {
1049 $box = $this->getWarningBox( $text );
1050 } else {
1051 $box = $this->getErrorBox( $text );
1052 }
1053
1054 $this->output->addHTML( $box );
1055 }
1056 }
1057
1058 /**
1059 * Convenience function to set variables based on form data.
1060 * Assumes that variables containing "password" in the name are (potentially
1061 * fake) passwords.
1062 *
1063 * @param string[] $varNames
1064 * @param string $prefix The prefix added to variables to obtain form names
1065 *
1066 * @return string[]
1067 */
1068 public function setVarsFromRequest( $varNames, $prefix = 'config_' ) {
1069 $newValues = [];
1070
1071 foreach ( $varNames as $name ) {
1072 $value = $this->request->getVal( $prefix . $name );
1073 // T32524, do not trim passwords
1074 if ( stripos( $name, 'password' ) === false ) {
1075 $value = trim( $value );
1076 }
1077 $newValues[$name] = $value;
1078
1079 if ( $value === null ) {
1080 // Checkbox?
1081 $this->setVar( $name, false );
1082 } elseif ( stripos( $name, 'password' ) !== false ) {
1083 $this->setPassword( $name, $value );
1084 } else {
1085 $this->setVar( $name, $value );
1086 }
1087 }
1088
1089 return $newValues;
1090 }
1091
1092 /**
1093 * Helper for Installer::docLink()
1094 *
1095 * @param string $page
1096 *
1097 * @return string
1098 */
1099 protected function getDocUrl( $page ) {
1100 $query = [ 'page' => $page ];
1101
1102 if ( in_array( $this->currentPageName, $this->pageSequence ) ) {
1103 $query['lastPage'] = $this->currentPageName;
1104 }
1105
1106 return $this->getUrl( $query );
1107 }
1108
1109 /**
1110 * Extension tag hook for a documentation link.
1111 *
1112 * @param string $linkText
1113 * @param string[] $attribs
1114 * @param Parser $parser Unused
1115 *
1116 * @return string
1117 */
1118 public function docLink( $linkText, $attribs, $parser ) {
1119 $url = $this->getDocUrl( $attribs['href'] );
1120
1121 return Html::element( 'a', [ 'href' => $url ], $linkText );
1122 }
1123
1124 /**
1125 * Helper for "Download LocalSettings" link on WebInstall_Complete
1126 *
1127 * @param string $text Unused
1128 * @param string[] $attribs Unused
1129 * @param Parser $parser Unused
1130 *
1131 * @return string Html for download link
1132 */
1133 public function downloadLinkHook( $text, $attribs, $parser ) {
1134 $anchor = Html::rawElement( 'a',
1135 [ 'href' => $this->getUrl( [ 'localsettings' => 1 ] ) ],
1136 wfMessage( 'config-download-localsettings' )->parse()
1137 );
1138
1139 return Html::rawElement( 'div', [ 'class' => 'config-download-link' ], $anchor );
1140 }
1141
1142 /**
1143 * If the software package wants the LocalSettings.php file
1144 * to be placed in a specific location, override this function
1145 * (see mw-config/overrides/README) to return the path of
1146 * where the file should be saved, or false for a generic
1147 * "in the base of your install"
1148 *
1149 * @since 1.27
1150 * @return string|bool
1151 */
1152 public function getLocalSettingsLocation() {
1153 return false;
1154 }
1155
1156 /**
1157 * @return bool
1158 */
1159 public function envCheckPath() {
1160 // PHP_SELF isn't available sometimes, such as when PHP is CGI but
1161 // cgi.fix_pathinfo is disabled. In that case, fall back to SCRIPT_NAME
1162 // to get the path to the current script... hopefully it's reliable. SIGH
1163 $path = false;
1164 if ( !empty( $_SERVER['PHP_SELF'] ) ) {
1165 $path = $_SERVER['PHP_SELF'];
1166 } elseif ( !empty( $_SERVER['SCRIPT_NAME'] ) ) {
1167 $path = $_SERVER['SCRIPT_NAME'];
1168 }
1169 if ( $path === false ) {
1170 $this->showError( 'config-no-uri' );
1171 return false;
1172 }
1173
1174 return parent::envCheckPath();
1175 }
1176
1177 public function envPrepPath() {
1178 parent::envPrepPath();
1179 // PHP_SELF isn't available sometimes, such as when PHP is CGI but
1180 // cgi.fix_pathinfo is disabled. In that case, fall back to SCRIPT_NAME
1181 // to get the path to the current script... hopefully it's reliable. SIGH
1182 $path = false;
1183 if ( !empty( $_SERVER['PHP_SELF'] ) ) {
1184 $path = $_SERVER['PHP_SELF'];
1185 } elseif ( !empty( $_SERVER['SCRIPT_NAME'] ) ) {
1186 $path = $_SERVER['SCRIPT_NAME'];
1187 }
1188 if ( $path !== false ) {
1189 $scriptPath = preg_replace( '{^(.*)/(mw-)?config.*$}', '$1', $path );
1190
1191 $this->setVar( 'wgScriptPath', "$scriptPath" );
1192 // Update variables set from Setup.php that are derived from wgScriptPath
1193 $this->setVar( 'wgScript', "$scriptPath/index.php" );
1194 $this->setVar( 'wgLoadScript', "$scriptPath/load.php" );
1195 $this->setVar( 'wgStylePath', "$scriptPath/skins" );
1196 $this->setVar( 'wgLocalStylePath', "$scriptPath/skins" );
1197 $this->setVar( 'wgExtensionAssetsPath', "$scriptPath/extensions" );
1198 $this->setVar( 'wgUploadPath', "$scriptPath/images" );
1199 $this->setVar( 'wgResourceBasePath', "$scriptPath" );
1200 }
1201 }
1202
1203 /**
1204 * @return string
1205 */
1206 protected function envGetDefaultServer() {
1207 return WebRequest::detectServer();
1208 }
1209
1210 /**
1211 * Actually output LocalSettings.php for download
1212 *
1213 * @suppress SecurityCheck-XSS
1214 */
1215 private function outputLS() {
1216 $this->request->response()->header( 'Content-type: application/x-httpd-php' );
1217 $this->request->response()->header(
1218 'Content-Disposition: attachment; filename="LocalSettings.php"'
1219 );
1220
1221 $ls = InstallerOverrides::getLocalSettingsGenerator( $this );
1222 $rightsProfile = $this->rightsProfiles[$this->getVar( '_RightsProfile' )];
1223 foreach ( $rightsProfile as $group => $rightsArr ) {
1224 $ls->setGroupRights( $group, $rightsArr );
1225 }
1226 echo $ls->getText();
1227 }
1228
1229 /**
1230 * Output stylesheet for web installer pages
1231 */
1232 public function outputCss() {
1233 $this->request->response()->header( 'Content-type: text/css' );
1234 echo $this->output->getCSS();
1235 }
1236
1237 /**
1238 * @return string[]
1239 */
1240 public function getPhpErrors() {
1241 return $this->phpErrors;
1242 }
1243
1244 }