MediaWiki  1.33.0
PasswordFactory.php
Go to the documentation of this file.
1 <?php
28 final class PasswordFactory {
35  private $default = '';
36 
44  private $types = [
45  '' => [ 'type' => '', 'class' => InvalidPassword::class ],
46  ];
47 
57  public function __construct( array $config = [], $default = '' ) {
58  foreach ( $config as $type => $options ) {
59  $this->register( $type, $options );
60  }
61 
62  if ( $default !== '' ) {
63  $this->setDefaultType( $default );
64  }
65  }
66 
75  public function register( $type, array $config ) {
76  $config['type'] = $type;
77  $this->types[$type] = $config;
78  }
79 
89  public function setDefaultType( $type ) {
90  if ( !isset( $this->types[$type] ) ) {
91  throw new InvalidArgumentException( "Invalid password type $type." );
92  }
93  $this->default = $type;
94  }
95 
101  public function getDefaultType() {
102  return $this->default;
103  }
104 
112  public function init( Config $config ) {
113  foreach ( $config->get( 'PasswordConfig' ) as $type => $options ) {
114  $this->register( $type, $options );
115  }
116 
117  $this->setDefaultType( $config->get( 'PasswordDefault' ) );
118  }
119 
125  public function getTypes() {
126  return $this->types;
127  }
128 
140  public function newFromCiphertext( $hash ) {
141  if ( $hash === null || $hash === false || $hash === '' ) {
142  return new InvalidPassword( $this, [ 'type' => '' ], null );
143  } elseif ( $hash[0] !== ':' ) {
144  throw new PasswordError( 'Invalid hash given' );
145  }
146 
147  $type = substr( $hash, 1, strpos( $hash, ':', 1 ) - 1 );
148  if ( !isset( $this->types[$type] ) ) {
149  throw new PasswordError( "Unrecognized password hash type $type." );
150  }
151 
152  $config = $this->types[$type];
153 
154  return new $config['class']( $this, $config, $hash );
155  }
156 
164  public function newFromType( $type ) {
165  if ( !isset( $this->types[$type] ) ) {
166  throw new PasswordError( "Unrecognized password hash type $type." );
167  }
168 
169  $config = $this->types[$type];
170 
171  return new $config['class']( $this, $config );
172  }
173 
184  public function newFromPlaintext( $password, Password $existing = null ) {
185  if ( $password === null ) {
186  return new InvalidPassword( $this, [ 'type' => '' ], null );
187  }
188 
189  if ( $existing === null ) {
190  $config = $this->types[$this->default];
191  $obj = new $config['class']( $this, $config );
192  } else {
193  $obj = clone $existing;
194  }
195 
196  $obj->crypt( $password );
197 
198  return $obj;
199  }
200 
211  public function needsUpdate( Password $password ) {
212  if ( $password->getType() !== $this->default ) {
213  return true;
214  } else {
215  return $password->needsUpdate();
216  }
217  }
218 
225  public static function generateRandomPasswordString( $minLength = 10 ) {
226  // Decide the final password length based on our min password length,
227  // stopping at a minimum of 10 chars.
228  $length = max( 10, $minLength );
229  // Multiply by 1.25 to get the number of hex characters we need
230  // Generate random hex chars
231  $hex = MWCryptRand::generateHex( ceil( $length * 1.25 ) );
232  // Convert from base 16 to base 32 to get a proper password like string
233  return substr( Wikimedia\base_convert( $hex, 16, 32, $length ), -$length );
234  }
235 
241  public static function newInvalidPassword() {
242  static $password = null;
243 
244  if ( $password === null ) {
245  $factory = new self();
246  $password = new InvalidPassword( $factory, [ 'type' => '' ], null );
247  }
248 
249  return $password;
250  }
251 }
PasswordFactory\newFromPlaintext
newFromPlaintext( $password, Password $existing=null)
Create a new Hash object from a plaintext password.
Definition: PasswordFactory.php:184
PasswordFactory\getDefaultType
getDefaultType()
Get the default password type.
Definition: PasswordFactory.php:101
PasswordFactory\$default
string $default
The default PasswordHash type.
Definition: PasswordFactory.php:35
PasswordFactory\setDefaultType
setDefaultType( $type)
Set the default password type.
Definition: PasswordFactory.php:89
PasswordError
Show an error when any operation involving passwords fails to run.
Definition: PasswordError.php:26
PasswordFactory\generateRandomPasswordString
static generateRandomPasswordString( $minLength=10)
Generate a random string suitable for a password.
Definition: PasswordFactory.php:225
InvalidPassword
Represents an invalid password hash.
Definition: InvalidPassword.php:32
PasswordFactory\needsUpdate
needsUpdate(Password $password)
Determine whether a password object needs updating.
Definition: PasswordFactory.php:211
PasswordFactory\__construct
__construct(array $config=[], $default='')
Construct a new password factory.
Definition: PasswordFactory.php:57
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:35
Config
Interface for configuration instances.
Definition: Config.php:28
Config\get
get( $name)
Get a configuration variable such as "Sitename" or "UploadMaintenance.".
PasswordFactory\newFromCiphertext
newFromCiphertext( $hash)
Create a new Hash object from an existing string hash.
Definition: PasswordFactory.php:140
Password\getType
getType()
Get the type name of the password.
Definition: Password.php:120
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
PasswordFactory\getTypes
getTypes()
Get the list of types of passwords.
Definition: PasswordFactory.php:125
MWCryptRand\generateHex
static generateHex( $chars)
Generate a run of cryptographically random data and return it in hexadecimal string format.
Definition: MWCryptRand.php:74
PasswordFactory\newInvalidPassword
static newInvalidPassword()
Create an InvalidPassword.
Definition: PasswordFactory.php:241
$options
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 & $options
Definition: hooks.txt:1985
PasswordFactory\init
init(Config $config)
Definition: PasswordFactory.php:112
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:9
Password\needsUpdate
needsUpdate()
Determine if the hash needs to be updated.
Wikimedia
This program is free software; you can redistribute it and/or modify it under the terms of the GNU Ge...
PasswordFactory
Factory class for creating and checking Password objects.
Definition: PasswordFactory.php:28
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
Password
Represents a password hash for use in authentication.
Definition: Password.php:61
PasswordFactory\$types
array $types
Mapping of password types to classes.
Definition: PasswordFactory.php:44
PasswordFactory\newFromType
newFromType( $type)
Make a new default password of the given type.
Definition: PasswordFactory.php:164
$type
$type
Definition: testCompression.php:48