ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.LocalUserPasswordEncoderFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
29 use ilUserException;
30 
32 {
33  private ?string $default_encoder = null;
34 
36  private array $supported_encoders = [];
37 
42  public function __construct(array $config = [])
43  {
44  if (!empty($config)) {
45  foreach ($config as $key => $value) {
46  switch (strtolower($key)) {
47  case 'default_password_encoder':
48  $this->setDefaultEncoder($value);
49 
50  break;
51  }
52  }
53  }
54 
55  $this->initEncoders($config);
56  }
57 
63  private function getEncoders(array $config): array
64  {
65  return [
66  new ilArgon2idPasswordEncoder($config),
67  new ilBcryptPhpPasswordEncoder($config),
68  new ilBcryptPasswordEncoder($config),
70  ];
71  }
72 
77  private function initEncoders(array $config): void
78  {
79  $this->supported_encoders = [];
80 
81  $encoders = $this->getEncoders($config);
82  foreach ($encoders as $encoder) {
83  if ($encoder->isSupportedByRuntime()) {
84  $this->supported_encoders[$encoder->getName()] = $encoder;
85  }
86  }
87  }
88 
89  public function getDefaultEncoder(): ?string
90  {
92  }
93 
94  public function setDefaultEncoder(string $default_encoder): void
95  {
96  $this->default_encoder = $default_encoder;
97  }
98 
102  public function getSupportedEncoders(): array
103  {
105  }
106 
111  public function setSupportedEncoders(array $supported_encoders): void
112  {
113  $this->supported_encoders = [];
114  foreach ($supported_encoders as $encoder) {
115  if (!($encoder instanceof ilPasswordEncoder) || !$encoder->isSupportedByRuntime()) {
116  throw new ilUserException(sprintf(
117  'One of the passed encoders is not valid: %s.',
118  print_r($encoder, true)
119  ));
120  }
121  $this->supported_encoders[$encoder->getName()] = $encoder;
122  }
123  }
124 
128  public function getSupportedEncoderNames(): array
129  {
130  return array_keys($this->getSupportedEncoders());
131  }
132 
136  public function getEncoderByName(?string $name): ilPasswordEncoder
137  {
138  if ($name !== null && isset($this->supported_encoders[$name])) {
139  return $this->supported_encoders[$name];
140  }
141 
142  if (!$this->getDefaultEncoder()) {
143  throw new ilUserException('No default encoder specified, fallback not possible.');
144  }
145 
146  if (!isset($this->supported_encoders[$this->getDefaultEncoder()])) {
147  throw new ilUserException("No default encoder found for name: '{$this->getDefaultEncoder()}'.");
148  }
149 
150  return $this->supported_encoders[$this->getDefaultEncoder()];
151  }
152 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null