Go to the documentation of this file.
16 if ( $params[
'user'] !==
null ) {
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';
const PARAM_REQUIRED
(boolean) Is the parameter required?
mustBePosted()
Indicates whether this module must be called with a POST request.
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
getHelpUrls()
Return links to more detailed help pages about the module.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
getResult()
Get the result object.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
This abstract class implements many basic API functions, and is the base of all API classes.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
getExamplesMessages()
Returns usage examples for this module.
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
encodeParamName( $paramName)
This method mangles parameter name based on the prefix supplied to the constructor.
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
getModuleName()
Get the name of the module being executed by this instance.
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
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...