16 if ( $params[
'user'] !==
null ) {
17 $user = User::newFromName( $params[
'user'],
'creatable' );
22 "baduser_{$encParamName}"
26 if ( !$user->isAnon() || AuthManager::singleton()->userExists( $user->getName() ) ) {
30 $user->setEmail( (
string)$params[
'email'] );
31 $user->setRealName( (
string)$params[
'realname'] );
37 $validity = $user->checkPasswordValidity( $params[
'password'] );
38 $r[
'validity'] = $validity->isGood() ?
'Good' : ( $validity->isOK() ?
'Change' :
'Invalid' );
39 $messages = array_merge(
44 $r[
'validitymessages'] = $messages;
47 Hooks::run(
'ApiValidatePassword', [ $this, &$r ] );
72 'action=validatepassword&password=foobar'
73 =>
'apihelp-validatepassword-example-1',
74 'action=validatepassword&password=querty&user=Example'
75 =>
'apihelp-validatepassword-example-2',
80 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Validatepassword';
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
This abstract class implements many basic API functions, and is the base of all API classes.
const PARAM_REQUIRED
(boolean) Is the parameter required?
encodeParamName( $paramName)
This method mangles parameter name based on the prefix supplied to the constructor.
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
getErrorFormatter()
Get the error formatter.
requirePostedParameters( $params, $prefix='prefix')
Die if any of the specified parameters were found in the query part of the URL rather than the post b...
getResult()
Get the result object.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
getModuleName()
Get the name of the module being executed by this instance.
getExamplesMessages()
Returns usage examples for this module.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
mustBePosted()
Indicates whether this module must be called with a POST request.
getHelpUrls()
Return links to more detailed help pages about the module.