113 lines
4.3 KiB
PHP
113 lines
4.3 KiB
PHP
<?php
|
|
|
|
namespace Symfony\Config\Security\FirewallConfig\AccessToken;
|
|
|
|
require_once __DIR__.\DIRECTORY_SEPARATOR.'TokenHandler'.\DIRECTORY_SEPARATOR.'OidcUserInfoConfig.php';
|
|
require_once __DIR__.\DIRECTORY_SEPARATOR.'TokenHandler'.\DIRECTORY_SEPARATOR.'OidcConfig.php';
|
|
|
|
use Symfony\Component\Config\Loader\ParamConfigurator;
|
|
use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException;
|
|
|
|
/**
|
|
* This class is automatically generated to help in creating a config.
|
|
*/
|
|
class TokenHandlerConfig
|
|
{
|
|
private $id;
|
|
private $oidcUserInfo;
|
|
private $oidc;
|
|
private $_usedProperties = [];
|
|
|
|
/**
|
|
* @default null
|
|
* @param ParamConfigurator|mixed $value
|
|
* @return $this
|
|
*/
|
|
public function id($value): static
|
|
{
|
|
$this->_usedProperties['id'] = true;
|
|
$this->id = $value;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @template TValue
|
|
* @param TValue $value
|
|
* @return \Symfony\Config\Security\FirewallConfig\AccessToken\TokenHandler\OidcUserInfoConfig|$this
|
|
* @psalm-return (TValue is array ? \Symfony\Config\Security\FirewallConfig\AccessToken\TokenHandler\OidcUserInfoConfig : static)
|
|
*/
|
|
public function oidcUserInfo(string|array $value = []): \Symfony\Config\Security\FirewallConfig\AccessToken\TokenHandler\OidcUserInfoConfig|static
|
|
{
|
|
if (!\is_array($value)) {
|
|
$this->_usedProperties['oidcUserInfo'] = true;
|
|
$this->oidcUserInfo = $value;
|
|
|
|
return $this;
|
|
}
|
|
|
|
if (!$this->oidcUserInfo instanceof \Symfony\Config\Security\FirewallConfig\AccessToken\TokenHandler\OidcUserInfoConfig) {
|
|
$this->_usedProperties['oidcUserInfo'] = true;
|
|
$this->oidcUserInfo = new \Symfony\Config\Security\FirewallConfig\AccessToken\TokenHandler\OidcUserInfoConfig($value);
|
|
} elseif (0 < \func_num_args()) {
|
|
throw new InvalidConfigurationException('The node created by "oidcUserInfo()" has already been initialized. You cannot pass values the second time you call oidcUserInfo().');
|
|
}
|
|
|
|
return $this->oidcUserInfo;
|
|
}
|
|
|
|
public function oidc(array $value = []): \Symfony\Config\Security\FirewallConfig\AccessToken\TokenHandler\OidcConfig
|
|
{
|
|
if (null === $this->oidc) {
|
|
$this->_usedProperties['oidc'] = true;
|
|
$this->oidc = new \Symfony\Config\Security\FirewallConfig\AccessToken\TokenHandler\OidcConfig($value);
|
|
} elseif (0 < \func_num_args()) {
|
|
throw new InvalidConfigurationException('The node created by "oidc()" has already been initialized. You cannot pass values the second time you call oidc().');
|
|
}
|
|
|
|
return $this->oidc;
|
|
}
|
|
|
|
public function __construct(array $value = [])
|
|
{
|
|
if (array_key_exists('id', $value)) {
|
|
$this->_usedProperties['id'] = true;
|
|
$this->id = $value['id'];
|
|
unset($value['id']);
|
|
}
|
|
|
|
if (array_key_exists('oidc_user_info', $value)) {
|
|
$this->_usedProperties['oidcUserInfo'] = true;
|
|
$this->oidcUserInfo = \is_array($value['oidc_user_info']) ? new \Symfony\Config\Security\FirewallConfig\AccessToken\TokenHandler\OidcUserInfoConfig($value['oidc_user_info']) : $value['oidc_user_info'];
|
|
unset($value['oidc_user_info']);
|
|
}
|
|
|
|
if (array_key_exists('oidc', $value)) {
|
|
$this->_usedProperties['oidc'] = true;
|
|
$this->oidc = new \Symfony\Config\Security\FirewallConfig\AccessToken\TokenHandler\OidcConfig($value['oidc']);
|
|
unset($value['oidc']);
|
|
}
|
|
|
|
if ([] !== $value) {
|
|
throw new InvalidConfigurationException(sprintf('The following keys are not supported by "%s": ', __CLASS__).implode(', ', array_keys($value)));
|
|
}
|
|
}
|
|
|
|
public function toArray(): array
|
|
{
|
|
$output = [];
|
|
if (isset($this->_usedProperties['id'])) {
|
|
$output['id'] = $this->id;
|
|
}
|
|
if (isset($this->_usedProperties['oidcUserInfo'])) {
|
|
$output['oidc_user_info'] = $this->oidcUserInfo instanceof \Symfony\Config\Security\FirewallConfig\AccessToken\TokenHandler\OidcUserInfoConfig ? $this->oidcUserInfo->toArray() : $this->oidcUserInfo;
|
|
}
|
|
if (isset($this->_usedProperties['oidc'])) {
|
|
$output['oidc'] = $this->oidc->toArray();
|
|
}
|
|
|
|
return $output;
|
|
}
|
|
|
|
}
|