MediaWiki REL1_31
ApiValidatePassword.php
Go to the documentation of this file.
1<?php
2
4
9
10 public function execute() {
12
13 // For sanity
14 $this->requirePostedParameters( [ 'password' ] );
15
16 if ( $params['user'] !== null ) {
17 $user = User::newFromName( $params['user'], 'creatable' );
18 if ( !$user ) {
19 $encParamName = $this->encodeParamName( 'user' );
20 $this->dieWithError(
21 [ 'apierror-baduser', $encParamName, wfEscapeWikiText( $params['user'] ) ],
22 "baduser_{$encParamName}"
23 );
24 }
25
26 if ( !$user->isAnon() || AuthManager::singleton()->userExists( $user->getName() ) ) {
27 $this->dieWithError( 'userexists' );
28 }
29
30 $user->setEmail( (string)$params['email'] );
31 $user->setRealName( (string)$params['realname'] );
32 } else {
33 $user = $this->getUser();
34 }
35
36 $validity = $user->checkPasswordValidity( $params['password'] );
37 $r['validity'] = $validity->isGood() ? 'Good' : ( $validity->isOK() ? 'Change' : 'Invalid' );
38 $messages = array_merge(
39 $this->getErrorFormatter()->arrayFromStatus( $validity, 'error' ),
40 $this->getErrorFormatter()->arrayFromStatus( $validity, 'warning' )
41 );
42 if ( $messages ) {
43 $r['validitymessages'] = $messages;
44 }
45
46 Hooks::run( 'ApiValidatePassword', [ $this, &$r ] );
47
48 $this->getResult()->addValue( null, $this->getModuleName(), $r );
49 }
50
51 public function mustBePosted() {
52 return true;
53 }
54
55 public function getAllowedParams() {
56 return [
57 'password' => [
58 ApiBase::PARAM_TYPE => 'password',
60 ],
61 'user' => [
62 ApiBase::PARAM_TYPE => 'user',
63 ],
64 'email' => null,
65 'realname' => null,
66 ];
67 }
68
69 protected function getExamplesMessages() {
70 return [
71 'action=validatepassword&password=foobar'
72 => 'apihelp-validatepassword-example-1',
73 'action=validatepassword&password=querty&user=Example'
74 => 'apihelp-validatepassword-example-2',
75 ];
76 }
77
78 public function getHelpUrls() {
79 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Validatepassword';
80 }
81}
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
$messages
This abstract class implements many basic API functions, and is the base of all API classes.
Definition ApiBase.php:37
const PARAM_REQUIRED
(boolean) Is the parameter required?
Definition ApiBase.php:111
encodeParamName( $paramName)
This method mangles parameter name based on the prefix supplied to the constructor.
Definition ApiBase.php:730
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
Definition ApiBase.php:1895
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition ApiBase.php:87
getErrorFormatter()
Get the error formatter.
Definition ApiBase.php:655
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...
Definition ApiBase.php:881
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:749
getResult()
Get the result object.
Definition ApiBase.php:641
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:521
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.
This serves as the entry point to the authentication system.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition User.php:591
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition hooks.txt:2006
$params