MediaWiki  REL1_31
TemporaryPasswordAuthenticationRequest.php
Go to the documentation of this file.
1 <?php
22 namespace 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  if ( isset( $p['MinimalPasswordLength'] ) ) {
73  $minLength = max( $minLength, $p['MinimalPasswordLength'] );
74  }
75  if ( isset( $p['MinimalPasswordLengthToLogin'] ) ) {
76  $minLength = max( $minLength, $p['MinimalPasswordLengthToLogin'] );
77  }
78  }
79 
81 
82  return new self( $password );
83  }
84 
89  public static function newInvalid() {
90  $request = new self( null );
91  return $request;
92  }
93 
94  public function describeCredentials() {
95  return [
96  'provider' => wfMessage( 'authmanager-provider-temporarypassword' ),
97  'account' => new \RawMessage( '$1', [ $this->username ] ),
98  ] + parent::describeCredentials();
99  }
100 
101 }
use
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
Definition: APACHE-LICENSE-2.0.txt:10
wfMessage
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 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
MediaWiki\Auth\TemporaryPasswordAuthenticationRequest\__construct
__construct( $password=null)
Definition: TemporaryPasswordAuthenticationRequest.php:54
PasswordFactory\generateRandomPasswordString
static generateRandomPasswordString( $minLength=10)
Generate a random string suitable for a password.
Definition: PasswordFactory.php:198
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:37
Config\get
get( $name)
Get a configuration variable such as "Sitename" or "UploadMaintenance.".
MediaWiki\Auth\TemporaryPasswordAuthenticationRequest\getFieldInfo
getFieldInfo()
Fetch input field info.
Definition: TemporaryPasswordAuthenticationRequest.php:41
MediaWiki\Auth\TemporaryPasswordAuthenticationRequest\$password
string null $password
Temporary password.
Definition: TemporaryPasswordAuthenticationRequest.php:33
MediaWiki\Auth\TemporaryPasswordAuthenticationRequest\newInvalid
static newInvalid()
Return an instance with an invalid password.
Definition: TemporaryPasswordAuthenticationRequest.php:89
MediaWiki\MediaWikiServices\getInstance
static getInstance()
Returns the global default instance of the top level service locator.
Definition: MediaWikiServices.php:109
MediaWiki\Auth\TemporaryPasswordAuthenticationRequest\$caller
string $caller
Username or IP address of the caller.
Definition: TemporaryPasswordAuthenticationRequest.php:39
MediaWiki\Auth\TemporaryPasswordAuthenticationRequest\$mailpassword
bool $mailpassword
Email password to the user.
Definition: TemporaryPasswordAuthenticationRequest.php:36
MediaWiki\Auth\TemporaryPasswordAuthenticationRequest\describeCredentials
describeCredentials()
Describe the credentials represented by this request.
Definition: TemporaryPasswordAuthenticationRequest.php:94
MediaWiki\$config
Config $config
Definition: MediaWiki.php:43
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:22
MediaWiki\Auth\TemporaryPasswordAuthenticationRequest
This represents the intention to set a temporary password for the user.
Definition: TemporaryPasswordAuthenticationRequest.php:31
$request
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:2806
MediaWikiServices
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
Definition: injection.txt:25
MediaWiki\Auth\TemporaryPasswordAuthenticationRequest\newRandom
static newRandom()
Return an instance with a new, random password.
Definition: TemporaryPasswordAuthenticationRequest.php:65
MediaWiki\Auth
Definition: AbstractAuthenticationProvider.php:22
MediaWiki\Auth\AuthenticationRequest
This is a value object for authentication requests.
Definition: AuthenticationRequest.php:37