Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F33838
WebInstallerName.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
8 KB
Referenced Files
None
Subscribers
None
WebInstallerName.php
View Options
<?php
/**
* @license GPL-2.0-or-later
* @file
* @ingroup Installer
*/
namespace
MediaWiki\Installer
;
use
MediaWiki\Config\HashConfig
;
use
MediaWiki\Json\FormatJson
;
use
MediaWiki\MainConfigNames
;
use
MediaWiki\MediaWikiServices
;
use
MediaWiki\Parser\Sanitizer
;
use
MediaWiki\Password\UserPasswordPolicy
;
use
MediaWiki\Title\Title
;
use
MediaWiki\User\User
;
use
MediaWiki\User\UserRigorOptions
;
class
WebInstallerName
extends
WebInstallerPage
{
/**
* @return string
*/
public
function
execute
()
{
$r
=
$this
->
parent
->
request
;
if
(
$r
->
wasPosted
()
&&
$this
->
submit
()
)
{
return
'continue'
;
}
$this
->
startForm
();
// Encourage people to not name their site 'MediaWiki' by blanking the
// field. I think that was the intent with the original $GLOBALS['wgSitename']
// but these two always were the same so had the effect of making the
// installer forget $wgSitename when navigating back to this page.
if
(
$this
->
getVar
(
'wgSitename'
)
==
'MediaWiki'
)
{
$this
->
setVar
(
'wgSitename'
,
''
);
}
// Set wgMetaNamespace to something valid before we show the form.
// $wgMetaNamespace defaults to $wgSiteName which is 'MediaWiki'
$metaNS
=
$this
->
getVar
(
'wgMetaNamespace'
);
$this
->
setVar
(
'wgMetaNamespace'
,
wfMessage
(
'config-ns-other-default'
)->
inContentLanguage
()->
text
()
);
// Database isn't available in config yet, so take it
// from the installer
$pingbackConf
=
new
HashConfig
(
[
MainConfigNames
::
DBtype
=>
$this
->
getVar
(
'wgDBtype'
),
]
);
$pingbackInfo
=
Pingback
::
getSystemInfo
(
$pingbackConf
);
$this
->
addHTML
(
// TODO: validate wgServer on the client side
$this
->
parent
->
getTextBox
(
[
'var'
=>
'wgServer'
,
'label'
=>
'config-server'
,
'help'
=>
$this
->
parent
->
getHelpBox
(
'config-server-help'
)
]
)
.
$this
->
parent
->
getTextBox
(
[
'var'
=>
'wgSitename'
,
'label'
=>
'config-site-name'
,
'help'
=>
$this
->
parent
->
getHelpBox
(
'config-site-name-help'
)
]
)
.
// getRadioSet() builds a set of labeled radio buttons.
// For grep: The following messages are used as the item labels:
// config-ns-site-name, config-ns-generic, config-ns-other
$this
->
parent
->
getRadioSet
(
[
'var'
=>
'_NamespaceType'
,
'label'
=>
'config-project-namespace'
,
'itemLabelPrefix'
=>
'config-ns-'
,
'values'
=>
[
'site-name'
,
'generic'
,
'other'
],
'commonAttribs'
=>
[
'class'
=>
'enableForOther'
,
'rel'
=>
'config_wgMetaNamespace'
],
'help'
=>
$this
->
parent
->
getHelpBox
(
'config-project-namespace-help'
)
]
)
.
$this
->
parent
->
getTextBox
(
[
'var'
=>
'wgMetaNamespace'
,
'label'
=>
''
,
// @todo Needs a label?
'attribs'
=>
[
'class'
=>
'enabledByOther'
]
]
)
.
$this
->
getFieldsetStart
(
'config-admin-box'
)
.
$this
->
parent
->
getTextBox
(
[
'var'
=>
'_AdminName'
,
'label'
=>
'config-admin-name'
,
'help'
=>
$this
->
parent
->
getHelpBox
(
'config-admin-help'
)
]
)
.
$this
->
parent
->
getPasswordBox
(
[
'var'
=>
'_AdminPassword'
,
'label'
=>
'config-admin-password'
,
]
)
.
$this
->
parent
->
getPasswordBox
(
[
'var'
=>
'_AdminPasswordConfirm'
,
'label'
=>
'config-admin-password-confirm'
]
)
.
$this
->
parent
->
getTextBox
(
[
'var'
=>
'_AdminEmail'
,
'attribs'
=>
[
'dir'
=>
'ltr'
,
],
'label'
=>
'config-admin-email'
,
'help'
=>
$this
->
parent
->
getHelpBox
(
'config-admin-email-help'
)
]
)
.
$this
->
parent
->
getCheckBox
(
[
'var'
=>
'_Subscribe'
,
'label'
=>
'config-subscribe'
,
'help'
=>
$this
->
parent
->
getHelpBox
(
'config-subscribe-help'
)
]
)
.
$this
->
parent
->
getCheckBox
(
[
'var'
=>
'wgPingback'
,
'label'
=>
'config-pingback'
,
'help'
=>
$this
->
parent
->
getHelpBox
(
'config-pingback-help'
,
FormatJson
::
encode
(
$pingbackInfo
,
true
)
),
'value'
=>
true
,
]
)
.
$this
->
getFieldsetEnd
()
.
$this
->
parent
->
getInfoBox
(
wfMessage
(
'config-almost-done'
)->
plain
()
)
.
// getRadioSet() builds a set of labeled radio buttons.
// For grep: The following messages are used as the item labels:
// config-optional-continue, config-optional-skip
$this
->
parent
->
getRadioSet
(
[
'var'
=>
'_SkipOptional'
,
'itemLabelPrefix'
=>
'config-optional-'
,
'values'
=>
[
'continue'
,
'skip'
]
]
)
);
// Restore the default value
$this
->
setVar
(
'wgMetaNamespace'
,
$metaNS
);
$this
->
endForm
();
return
'output'
;
}
/**
* @return bool
*/
public
function
submit
()
{
global
$wgPasswordPolicy
;
$retVal
=
true
;
$this
->
parent
->
setVarsFromRequest
(
[
'wgServer'
,
'wgSitename'
,
'_NamespaceType'
,
'_AdminName'
,
'_AdminPassword'
,
'_AdminPasswordConfirm'
,
'_AdminEmail'
,
'_Subscribe'
,
'_SkipOptional'
,
'wgMetaNamespace'
,
'wgPingback'
]
);
// Validate site name
if
(
strval
(
$this
->
getVar
(
'wgSitename'
)
)
===
''
)
{
$this
->
parent
->
showError
(
'config-site-name-blank'
);
$retVal
=
false
;
}
// Fetch namespace
$nsType
=
$this
->
getVar
(
'_NamespaceType'
);
if
(
$nsType
==
'site-name'
)
{
$name
=
$this
->
getVar
(
'wgSitename'
);
// Sanitize for namespace
// This algorithm should match the JS one in WebInstallerOutput.php
$name
=
preg_replace
(
'/[
\[\]\{\}
|#<>%+? ]/'
,
'_'
,
$name
);
$name
=
str_replace
(
'&'
,
'&'
,
$name
);
$name
=
preg_replace
(
'/__+/'
,
'_'
,
$name
);
$name
=
ucfirst
(
trim
(
$name
,
'_'
)
);
}
elseif
(
$nsType
==
'generic'
)
{
$name
=
wfMessage
(
'config-ns-generic'
)->
text
();
}
else
{
// other
$name
=
$this
->
getVar
(
'wgMetaNamespace'
);
}
// Validate namespace
if
(
str_contains
(
$name
,
':'
)
)
{
$good
=
false
;
}
else
{
// Title-style validation
$title
=
Title
::
newFromText
(
$name
);
if
(
!
$title
)
{
$good
=
$nsType
==
'site-name'
;
}
else
{
$name
=
$title
->
getDBkey
();
$good
=
true
;
}
}
if
(
!
$good
)
{
$this
->
parent
->
showError
(
'config-ns-invalid'
,
$name
);
$retVal
=
false
;
}
// Make sure it won't conflict with any existing namespaces
$nsIndex
=
MediaWikiServices
::
getInstance
()->
getContentLanguage
()->
getNsIndex
(
$name
);
if
(
$nsIndex
!==
false
&&
$nsIndex
!==
NS_PROJECT
)
{
$this
->
parent
->
showError
(
'config-ns-conflict'
,
$name
);
$retVal
=
false
;
}
$this
->
setVar
(
'wgMetaNamespace'
,
$name
);
// Validate username for creation
$name
=
$this
->
getVar
(
'_AdminName'
);
if
(
strval
(
$name
)
===
''
)
{
$this
->
parent
->
showError
(
'config-admin-name-blank'
);
$cname
=
$name
;
$retVal
=
false
;
}
else
{
$userNameUtils
=
MediaWikiServices
::
getInstance
()->
getUserNameUtils
();
$cname
=
$userNameUtils
->
getCanonical
(
$name
,
UserRigorOptions
::
RIGOR_CREATABLE
);
if
(
$cname
===
false
)
{
$this
->
parent
->
showError
(
'config-admin-name-invalid'
,
$name
);
$retVal
=
false
;
}
else
{
$this
->
setVar
(
'_AdminName'
,
$cname
);
}
}
// Validate password
$msg
=
false
;
$pwd
=
$this
->
getVar
(
'_AdminPassword'
);
$user
=
User
::
newFromName
(
$cname
);
if
(
$user
)
{
$upp
=
new
UserPasswordPolicy
(
$wgPasswordPolicy
[
'policies'
],
$wgPasswordPolicy
[
'checks'
]
);
$status
=
$upp
->
checkUserPasswordForGroups
(
$user
,
$pwd
,
[
'bureaucrat'
,
'sysop'
,
'interface-admin'
]
// per Installer::createSysop()
);
$valid
=
$status
->
isGood
()
?
true
:
$status
->
getMessage
();
}
else
{
$valid
=
'config-admin-name-invalid'
;
}
if
(
strval
(
$pwd
)
===
''
)
{
// Provide a more specific and helpful message if password field is left blank
$msg
=
'config-admin-password-blank'
;
}
elseif
(
$pwd
!==
$this
->
getVar
(
'_AdminPasswordConfirm'
)
)
{
$msg
=
'config-admin-password-mismatch'
;
}
elseif
(
$valid
!==
true
)
{
$msg
=
$valid
;
}
if
(
$msg
!==
false
)
{
$this
->
parent
->
showError
(
$msg
);
$this
->
setVar
(
'_AdminPassword'
,
''
);
$this
->
setVar
(
'_AdminPasswordConfirm'
,
''
);
$retVal
=
false
;
}
// Validate e-mail if provided
$email
=
$this
->
getVar
(
'_AdminEmail'
);
if
(
$email
&&
!
Sanitizer
::
validateEmail
(
$email
)
)
{
$this
->
parent
->
showError
(
'config-admin-error-bademail'
);
$retVal
=
false
;
}
// If they asked to subscribe to mediawiki-announce but didn't give
// an e-mail, show an error. T31332
if
(
!
$email
&&
$this
->
getVar
(
'_Subscribe'
)
)
{
$this
->
parent
->
showError
(
'config-subscribe-noemail'
);
$retVal
=
false
;
}
return
$retVal
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Dec 18, 19:18 (22 h, 5 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
d6/1e/6818a79ba42dcce5f9f1423c64a7
Default Alt Text
WebInstallerName.php (8 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment