ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAuthFrontendCredentialsOpenIdConnect.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  private const SESSION_TARGET = 'oidc_target';
24  private const QUERY_PARAM_TARGET = 'target';
25 
27  private ?string $target = null;
28 
29  public function __construct()
30  {
31  global $DIC;
32 
34 
36  $httpquery = $DIC->http()->wrapper()->query();
37  if ($httpquery->has(self::QUERY_PARAM_TARGET)) {
38  $this->target = $httpquery->retrieve(self::QUERY_PARAM_TARGET, $DIC->refinery()->to()->string());
39  }
40  }
41 
42  protected function getSettings(): ilOpenIdConnectSettings
43  {
44  return $this->settings;
45  }
46 
47  public function getRedirectionTarget(): ?string
48  {
49  return $this->target;
50  }
51 
52  public function initFromRequest(): void
53  {
54  $this->setUsername('');
55  $this->setPassword('');
56 
57  $this->parseRedirectionTarget();
58  }
59 
60  protected function parseRedirectionTarget(): void
61  {
62  if ($this->target) {
63  ilSession::set(self::SESSION_TARGET, $this->target);
64  } elseif (ilSession::get(self::SESSION_TARGET)) {
65  $this->target = ilSession::get(self::SESSION_TARGET);
66  }
67  }
68 }
static get(string $a_var)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setPassword(string $a_password)
Set password.
global $DIC
Definition: shib_login.php:22
setUsername(string $a_name)
Set username.
__construct(Container $dic, ilPlugin $plugin)
static set(string $a_var, $a_val)
Set a value.