123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568 |
- <?php
- /**
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- * http://www.gnu.org/copyleft/gpl.html
- *
- * @file
- * @ingroup Deployment
- */
- class WebInstallerOptions extends WebInstallerPage {
- /**
- * @return string|null
- */
- public function execute() {
- global $wgLang;
- if ( $this->getVar( '_SkipOptional' ) == 'skip' ) {
- $this->submitSkins();
- return 'skip';
- }
- if ( $this->parent->request->wasPosted() && $this->submit() ) {
- return 'continue';
- }
- $emailwrapperStyle = $this->getVar( 'wgEnableEmail' ) ? '' : 'display: none';
- $this->startForm();
- $this->addHTML(
- # User Rights
- // getRadioSet() builds a set of labeled radio buttons.
- // For grep: The following messages are used as the item labels:
- // config-profile-wiki, config-profile-no-anon, config-profile-fishbowl, config-profile-private
- $this->parent->getRadioSet( [
- 'var' => '_RightsProfile',
- 'label' => 'config-profile',
- 'itemLabelPrefix' => 'config-profile-',
- 'values' => array_keys( $this->parent->rightsProfiles ),
- ] ) .
- $this->parent->getInfoBox( wfMessage( 'config-profile-help' )->plain() ) .
- # Licensing
- // getRadioSet() builds a set of labeled radio buttons.
- // For grep: The following messages are used as the item labels:
- // config-license-cc-by, config-license-cc-by-sa, config-license-cc-by-nc-sa,
- // config-license-cc-0, config-license-pd, config-license-gfdl,
- // config-license-none, config-license-cc-choose
- $this->parent->getRadioSet( [
- 'var' => '_LicenseCode',
- 'label' => 'config-license',
- 'itemLabelPrefix' => 'config-license-',
- 'values' => array_keys( $this->parent->licenses ),
- 'commonAttribs' => [ 'class' => 'licenseRadio' ],
- ] ) .
- $this->getCCChooser() .
- $this->parent->getHelpBox( 'config-license-help' ) .
- # E-mail
- $this->getFieldsetStart( 'config-email-settings' ) .
- $this->parent->getCheckBox( [
- 'var' => 'wgEnableEmail',
- 'label' => 'config-enable-email',
- 'attribs' => [ 'class' => 'showHideRadio', 'rel' => 'emailwrapper' ],
- ] ) .
- $this->parent->getHelpBox( 'config-enable-email-help' ) .
- "<div id=\"emailwrapper\" style=\"$emailwrapperStyle\">" .
- $this->parent->getTextBox( [
- 'var' => 'wgPasswordSender',
- 'label' => 'config-email-sender'
- ] ) .
- $this->parent->getHelpBox( 'config-email-sender-help' ) .
- $this->parent->getCheckBox( [
- 'var' => 'wgEnableUserEmail',
- 'label' => 'config-email-user',
- ] ) .
- $this->parent->getHelpBox( 'config-email-user-help' ) .
- $this->parent->getCheckBox( [
- 'var' => 'wgEnotifUserTalk',
- 'label' => 'config-email-usertalk',
- ] ) .
- $this->parent->getHelpBox( 'config-email-usertalk-help' ) .
- $this->parent->getCheckBox( [
- 'var' => 'wgEnotifWatchlist',
- 'label' => 'config-email-watchlist',
- ] ) .
- $this->parent->getHelpBox( 'config-email-watchlist-help' ) .
- $this->parent->getCheckBox( [
- 'var' => 'wgEmailAuthentication',
- 'label' => 'config-email-auth',
- ] ) .
- $this->parent->getHelpBox( 'config-email-auth-help' ) .
- "</div>" .
- $this->getFieldsetEnd()
- );
- $skins = $this->parent->findExtensions( 'skins' )->value;
- '@phan-var array[] $skins';
- $skinHtml = $this->getFieldsetStart( 'config-skins' );
- $skinNames = array_map( 'strtolower', array_keys( $skins ) );
- $chosenSkinName = $this->getVar( 'wgDefaultSkin', $this->parent->getDefaultSkin( $skinNames ) );
- if ( $skins ) {
- $radioButtons = $this->parent->getRadioElements( [
- 'var' => 'wgDefaultSkin',
- 'itemLabels' => array_fill_keys( $skinNames, 'config-skins-use-as-default' ),
- 'values' => $skinNames,
- 'value' => $chosenSkinName,
- ] );
- foreach ( $skins as $skin => $info ) {
- if ( isset( $info['screenshots'] ) ) {
- $screenshotText = $this->makeScreenshotsLink( $skin, $info['screenshots'] );
- } else {
- $screenshotText = htmlspecialchars( $skin );
- }
- $skinHtml .=
- '<div class="config-skins-item">' .
- $this->parent->getCheckBox( [
- 'var' => "skin-$skin",
- 'rawtext' => $screenshotText,
- 'value' => $this->getVar( "skin-$skin", true ), // all found skins enabled by default
- ] ) .
- '<div class="config-skins-use-as-default">' . $radioButtons[strtolower( $skin )] . '</div>' .
- '</div>';
- }
- } else {
- $skinHtml .=
- Html::warningBox( wfMessage( 'config-skins-missing' )->plain(), 'config-warning-box' ) .
- Html::hidden( 'config_wgDefaultSkin', $chosenSkinName );
- }
- $skinHtml .= $this->parent->getHelpBox( 'config-skins-help' ) .
- $this->getFieldsetEnd();
- $this->addHTML( $skinHtml );
- $extensions = $this->parent->findExtensions()->value;
- '@phan-var array[] $extensions';
- $dependencyMap = [];
- if ( $extensions ) {
- $extHtml = $this->getFieldsetStart( 'config-extensions' );
- $extByType = [];
- $types = SpecialVersion::getExtensionTypes();
- // Sort by type first
- foreach ( $extensions as $ext => $info ) {
- if ( !isset( $info['type'] ) || !isset( $types[$info['type']] ) ) {
- // We let extensions normally define custom types, but
- // since we aren't loading extensions, we'll have to
- // categorize them under other
- $info['type'] = 'other';
- }
- $extByType[$info['type']][$ext] = $info;
- }
- foreach ( $types as $type => $message ) {
- if ( !isset( $extByType[$type] ) ) {
- continue;
- }
- $extHtml .= Html::element( 'h2', [], $message );
- foreach ( $extByType[$type] as $ext => $info ) {
- $urlText = '';
- if ( isset( $info['url'] ) ) {
- $urlText = ' ' . Html::element( 'a', [ 'href' => $info['url'] ], '(more information)' );
- }
- $attribs = [
- 'data-name' => $ext,
- 'class' => 'config-ext-input'
- ];
- $labelAttribs = [];
- $fullDepList = [];
- if ( isset( $info['requires']['extensions'] ) ) {
- $dependencyMap[$ext]['extensions'] = $info['requires']['extensions'];
- $labelAttribs['class'] = 'mw-ext-with-dependencies';
- }
- if ( isset( $info['requires']['skins'] ) ) {
- $dependencyMap[$ext]['skins'] = $info['requires']['skins'];
- $labelAttribs['class'] = 'mw-ext-with-dependencies';
- }
- if ( isset( $dependencyMap[$ext] ) ) {
- $links = [];
- // For each dependency, link to the checkbox for each
- // extension/skin that is required
- if ( isset( $dependencyMap[$ext]['extensions'] ) ) {
- foreach ( $dependencyMap[$ext]['extensions'] as $name ) {
- $links[] = Html::element(
- 'a',
- [ 'href' => "#config_ext-$name" ],
- $name
- );
- }
- }
- if ( isset( $dependencyMap[$ext]['skins'] ) ) {
- foreach ( $dependencyMap[$ext]['skins'] as $name ) {
- $links[] = Html::element(
- 'a',
- [ 'href' => "#config_skin-$name" ],
- $name
- );
- }
- }
- $text = wfMessage( 'config-extensions-requires' )
- ->rawParams( $ext, $wgLang->commaList( $links ) )
- ->escaped();
- } else {
- $text = $ext;
- }
- $extHtml .= $this->parent->getCheckBox( [
- 'var' => "ext-$ext",
- 'rawtext' => $text,
- 'attribs' => $attribs,
- 'labelAttribs' => $labelAttribs,
- ] );
- }
- }
- $extHtml .= $this->parent->getHelpBox( 'config-extensions-help' ) .
- $this->getFieldsetEnd();
- $this->addHTML( $extHtml );
- // Push the dependency map to the client side
- $this->addHTML( Html::inlineScript(
- 'var extDependencyMap = ' . Xml::encodeJsVar( $dependencyMap )
- ) );
- }
- // Having / in paths in Windows looks funny :)
- $this->setVar( 'wgDeletedDirectory',
- str_replace(
- '/', DIRECTORY_SEPARATOR,
- $this->getVar( 'wgDeletedDirectory' )
- )
- );
- $uploadwrapperStyle = $this->getVar( 'wgEnableUploads' ) ? '' : 'display: none';
- $this->addHTML(
- # Uploading
- $this->getFieldsetStart( 'config-upload-settings' ) .
- $this->parent->getCheckBox( [
- 'var' => 'wgEnableUploads',
- 'label' => 'config-upload-enable',
- 'attribs' => [ 'class' => 'showHideRadio', 'rel' => 'uploadwrapper' ],
- 'help' => $this->parent->getHelpBox( 'config-upload-help' )
- ] ) .
- '<div id="uploadwrapper" style="' . $uploadwrapperStyle . '">' .
- $this->parent->getTextBox( [
- 'var' => 'wgDeletedDirectory',
- 'label' => 'config-upload-deleted',
- 'attribs' => [ 'dir' => 'ltr' ],
- 'help' => $this->parent->getHelpBox( 'config-upload-deleted-help' )
- ] ) .
- '</div>' .
- $this->parent->getTextBox( [
- 'var' => 'wgLogo',
- 'label' => 'config-logo',
- 'attribs' => [ 'dir' => 'ltr' ],
- 'help' => $this->parent->getHelpBox( 'config-logo-help' )
- ] )
- );
- $this->addHTML(
- $this->parent->getCheckBox( [
- 'var' => 'wgUseInstantCommons',
- 'label' => 'config-instantcommons',
- 'help' => $this->parent->getHelpBox( 'config-instantcommons-help' )
- ] ) .
- $this->getFieldsetEnd()
- );
- $caches = [ 'none' ];
- $cachevalDefault = 'none';
- if ( count( $this->getVar( '_Caches' ) ) ) {
- // A CACHE_ACCEL implementation is available
- $caches[] = 'accel';
- $cachevalDefault = 'accel';
- }
- $caches[] = 'memcached';
- // We'll hide/show this on demand when the value changes, see config.js.
- $cacheval = $this->getVar( '_MainCacheType' );
- if ( !$cacheval ) {
- // We need to set a default here; but don't hardcode it
- // or we lose it every time we reload the page for validation
- // or going back!
- $cacheval = $cachevalDefault;
- }
- $hidden = ( $cacheval == 'memcached' ) ? '' : 'display: none';
- $this->addHTML(
- # Advanced settings
- $this->getFieldsetStart( 'config-advanced-settings' ) .
- # Object cache settings
- // getRadioSet() builds a set of labeled radio buttons.
- // For grep: The following messages are used as the item labels:
- // config-cache-none, config-cache-accel, config-cache-memcached
- $this->parent->getRadioSet( [
- 'var' => '_MainCacheType',
- 'label' => 'config-cache-options',
- 'itemLabelPrefix' => 'config-cache-',
- 'values' => $caches,
- 'value' => $cacheval,
- ] ) .
- $this->parent->getHelpBox( 'config-cache-help' ) .
- "<div id=\"config-memcachewrapper\" style=\"$hidden\">" .
- $this->parent->getTextArea( [
- 'var' => '_MemCachedServers',
- 'label' => 'config-memcached-servers',
- 'help' => $this->parent->getHelpBox( 'config-memcached-help' )
- ] ) .
- '</div>' .
- $this->getFieldsetEnd()
- );
- $this->endForm();
- return null;
- }
- /**
- * @param string $name
- * @param array $screenshots
- */
- private function makeScreenshotsLink( $name, $screenshots ) {
- global $wgLang;
- if ( count( $screenshots ) > 1 ) {
- $links = [];
- $counter = 1;
- foreach ( $screenshots as $shot ) {
- $links[] = Html::element(
- 'a',
- [ 'href' => $shot, 'target' => '_blank' ],
- $wgLang->formatNum( $counter++ )
- );
- }
- return wfMessage( 'config-skins-screenshots' )
- ->rawParams( $name, $wgLang->commaList( $links ) )
- ->escaped();
- } else {
- $link = Html::element(
- 'a',
- [ 'href' => $screenshots[0], 'target' => '_blank' ],
- wfMessage( 'config-screenshot' )->text()
- );
- return wfMessage( 'config-skins-screenshot', $name )->rawParams( $link )->escaped();
- }
- }
- /**
- * @return string
- */
- public function getCCPartnerUrl() {
- $server = $this->getVar( 'wgServer' );
- $exitUrl = $server . $this->parent->getUrl( [
- 'page' => 'Options',
- 'SubmitCC' => 'indeed',
- 'config__LicenseCode' => 'cc',
- 'config_wgRightsUrl' => '[license_url]',
- 'config_wgRightsText' => '[license_name]',
- 'config_wgRightsIcon' => '[license_button]',
- ] );
- $styleUrl = $server . dirname( dirname( $this->parent->getUrl() ) ) .
- '/mw-config/config-cc.css';
- $iframeUrl = 'https://creativecommons.org/license/?' .
- wfArrayToCgi( [
- 'partner' => 'MediaWiki',
- 'exit_url' => $exitUrl,
- 'lang' => $this->getVar( '_UserLang' ),
- 'stylesheet' => $styleUrl,
- ] );
- return $iframeUrl;
- }
- /**
- * @return string
- */
- public function getCCChooser() {
- $iframeAttribs = [
- 'class' => 'config-cc-iframe',
- 'name' => 'config-cc-iframe',
- 'id' => 'config-cc-iframe',
- 'frameborder' => 0,
- 'width' => '100%',
- 'height' => '100%',
- ];
- if ( $this->getVar( '_CCDone' ) ) {
- $iframeAttribs['src'] = $this->parent->getUrl( [ 'ShowCC' => 'yes' ] );
- } else {
- $iframeAttribs['src'] = $this->getCCPartnerUrl();
- }
- $wrapperStyle = ( $this->getVar( '_LicenseCode' ) == 'cc-choose' ) ? '' : 'display: none';
- return "<div class=\"config-cc-wrapper\" id=\"config-cc-wrapper\" style=\"$wrapperStyle\">\n" .
- Html::element( 'iframe', $iframeAttribs ) .
- "</div>\n";
- }
- /**
- * @return string
- */
- public function getCCDoneBox() {
- $js = "parent.document.getElementById('config-cc-wrapper').style.height = '$1';";
- // If you change this height, also change it in config.css
- $expandJs = str_replace( '$1', '54em', $js );
- $reduceJs = str_replace( '$1', '70px', $js );
- return '<p>' .
- Html::element( 'img', [ 'src' => $this->getVar( 'wgRightsIcon' ) ] ) .
- "\u{00A0}\u{00A0}" .
- htmlspecialchars( $this->getVar( 'wgRightsText' ) ) .
- "</p>\n" .
- "<p style=\"text-align: center;\">" .
- Html::element( 'a',
- [
- 'href' => $this->getCCPartnerUrl(),
- 'onclick' => $expandJs,
- ],
- wfMessage( 'config-cc-again' )->text()
- ) .
- "</p>\n" .
- "<script>\n" .
- # Reduce the wrapper div height
- htmlspecialchars( $reduceJs ) .
- "\n" .
- "</script>\n";
- }
- public function submitCC() {
- $newValues = $this->parent->setVarsFromRequest(
- [ 'wgRightsUrl', 'wgRightsText', 'wgRightsIcon' ] );
- if ( count( $newValues ) != 3 ) {
- $this->parent->showError( 'config-cc-error' );
- return;
- }
- $this->setVar( '_CCDone', true );
- $this->addHTML( $this->getCCDoneBox() );
- }
- /**
- * If the user skips this installer page, we still need to set up the default skins, but ignore
- * everything else.
- *
- * @return bool
- */
- public function submitSkins() {
- $skins = array_keys( $this->parent->findExtensions( 'skins' )->value );
- $this->parent->setVar( '_Skins', $skins );
- if ( $skins ) {
- $skinNames = array_map( 'strtolower', $skins );
- $this->parent->setVar( 'wgDefaultSkin', $this->parent->getDefaultSkin( $skinNames ) );
- }
- return true;
- }
- /**
- * @return bool
- */
- public function submit() {
- $this->parent->setVarsFromRequest( [ '_RightsProfile', '_LicenseCode',
- 'wgEnableEmail', 'wgPasswordSender', 'wgEnableUploads', 'wgLogo',
- 'wgEnableUserEmail', 'wgEnotifUserTalk', 'wgEnotifWatchlist',
- 'wgEmailAuthentication', '_MainCacheType', '_MemCachedServers',
- 'wgUseInstantCommons', 'wgDefaultSkin' ] );
- $retVal = true;
- if ( !array_key_exists( $this->getVar( '_RightsProfile' ), $this->parent->rightsProfiles ) ) {
- reset( $this->parent->rightsProfiles );
- $this->setVar( '_RightsProfile', key( $this->parent->rightsProfiles ) );
- }
- $code = $this->getVar( '_LicenseCode' );
- if ( $code == 'cc-choose' ) {
- if ( !$this->getVar( '_CCDone' ) ) {
- $this->parent->showError( 'config-cc-not-chosen' );
- $retVal = false;
- }
- } elseif ( array_key_exists( $code, $this->parent->licenses ) ) {
- // Messages:
- // config-license-cc-by, config-license-cc-by-sa, config-license-cc-by-nc-sa,
- // config-license-cc-0, config-license-pd, config-license-gfdl, config-license-none,
- // config-license-cc-choose
- $entry = $this->parent->licenses[$code];
- $this->setVar( 'wgRightsText',
- $entry['text'] ?? wfMessage( 'config-license-' . $code )->text() );
- $this->setVar( 'wgRightsUrl', $entry['url'] );
- $this->setVar( 'wgRightsIcon', $entry['icon'] );
- } else {
- $this->setVar( 'wgRightsText', '' );
- $this->setVar( 'wgRightsUrl', '' );
- $this->setVar( 'wgRightsIcon', '' );
- }
- $skinsAvailable = array_keys( $this->parent->findExtensions( 'skins' )->value );
- $skinsToInstall = [];
- foreach ( $skinsAvailable as $skin ) {
- $this->parent->setVarsFromRequest( [ "skin-$skin" ] );
- if ( $this->getVar( "skin-$skin" ) ) {
- $skinsToInstall[] = $skin;
- }
- }
- $this->parent->setVar( '_Skins', $skinsToInstall );
- if ( !$skinsToInstall && $skinsAvailable ) {
- $this->parent->showError( 'config-skins-must-enable-some' );
- $retVal = false;
- }
- $defaultSkin = $this->getVar( 'wgDefaultSkin' );
- $skinsToInstallLowercase = array_map( 'strtolower', $skinsToInstall );
- if ( $skinsToInstall && array_search( $defaultSkin, $skinsToInstallLowercase ) === false ) {
- $this->parent->showError( 'config-skins-must-enable-default' );
- $retVal = false;
- }
- $extsAvailable = array_keys( $this->parent->findExtensions()->value );
- $extsToInstall = [];
- foreach ( $extsAvailable as $ext ) {
- $this->parent->setVarsFromRequest( [ "ext-$ext" ] );
- if ( $this->getVar( "ext-$ext" ) ) {
- $extsToInstall[] = $ext;
- }
- }
- $this->parent->setVar( '_Extensions', $extsToInstall );
- if ( $this->getVar( '_MainCacheType' ) == 'memcached' ) {
- $memcServers = explode( "\n", $this->getVar( '_MemCachedServers' ) );
- if ( !$memcServers ) {
- $this->parent->showError( 'config-memcache-needservers' );
- $retVal = false;
- }
- foreach ( $memcServers as $server ) {
- $memcParts = explode( ":", $server, 2 );
- if ( !isset( $memcParts[0] )
- || ( !IP::isValid( $memcParts[0] )
- && ( gethostbyname( $memcParts[0] ) == $memcParts[0] ) )
- ) {
- $this->parent->showError( 'config-memcache-badip', $memcParts[0] );
- $retVal = false;
- } elseif ( !isset( $memcParts[1] ) ) {
- $this->parent->showError( 'config-memcache-noport', $memcParts[0] );
- $retVal = false;
- } elseif ( $memcParts[1] < 1 || $memcParts[1] > 65535 ) {
- $this->parent->showError( 'config-memcache-badport', 1, 65535 );
- $retVal = false;
- }
- }
- }
- return $retVal;
- }
- }
|