MediaWiki REL1_33
TemporaryPasswordAuthenticationRequest.php
Go to the documentation of this file.
1<?php
22namespace MediaWiki\Auth;
23
25
33 public $password;
34
36 public $mailpassword = false;
37
39 public $caller;
40
41 public function getFieldInfo() {
42 return [
43 'mailpassword' => [
44 'type' => 'checkbox',
45 'label' => wfMessage( 'createaccountmail' ),
46 'help' => wfMessage( 'createaccountmail-help' ),
47 ],
48 ];
49 }
50
54 public function __construct( $password = null ) {
55 $this->password = $password;
56 if ( $password ) {
57 $this->mailpassword = true;
58 }
59 }
60
65 public static function newRandom() {
66 $config = MediaWikiServices::getInstance()->getMainConfig();
67
68 // get the min password length
69 $minLength = $config->get( 'MinimalPasswordLength' );
70 $policy = $config->get( 'PasswordPolicy' );
71 foreach ( $policy['policies'] as $p ) {
72 foreach ( [ 'MinimalPasswordLength', 'MinimumPasswordLengthToLogin' ] as $check ) {
73 $minLength = max( $minLength, $p[$check]['value'] ?? $p[$check] ?? 0 );
74 }
75 }
76
77 $password = \PasswordFactory::generateRandomPasswordString( $minLength );
78
79 return new self( $password );
80 }
81
86 public static function newInvalid() {
87 $request = new self( null );
88 return $request;
89 }
90
91 public function describeCredentials() {
92 return [
93 'provider' => wfMessage( 'authmanager-provider-temporarypassword' ),
94 'account' => new \RawMessage( '$1', [ $this->username ] ),
95 ] + parent::describeCredentials();
96 }
97
98}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
This is a value object for authentication requests.
This represents the intention to set a temporary password for the user.
static newRandom()
Return an instance with a new, random password.
describeCredentials()
Describe the credentials represented by this request.
static newInvalid()
Return an instance with an invalid password.
MediaWikiServices is the service locator for the application scope of MediaWiki.
static getInstance()
Returns the global default instance of the top level service locator.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
Definition hooks.txt:2843
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
Definition hooks.txt:783
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services