1 <?php declare(strict_types=1);
25 public function __construct($authSourceName, $configurationPath)
29 SimpleSAML\Configuration::setConfigDir($configurationPath);
30 $this->config = SimpleSAML\Configuration::getInstance();
32 $sessionHandler = $this->config->getString(
'session.handler',
false);
33 $storageType = $this->config->getString(
'store.type',
false);
36 $storageType ==
'phpsession' || $sessionHandler ==
'phpsession' ||
37 (empty($storageType) && empty($sessionHandler))
39 throw new RuntimeException(
'Invalid SimpleSAMLphp session handler: Must not be phpsession');
42 $this->authSource =
new SimpleSAML\Auth\Simple($authSourceName);
53 $templateHandler->
copy(
'./Services/Saml/lib/config.php.dist',
'auth/saml/config/config.php', [
54 'DB_PATH' => rtrim($configurationPath,
'/') .
'/ssphp.sq3',
55 'SQL_INITIAL_PASSWORD' =>
function () {
61 $templateHandler->copy(
'./Services/Saml/lib/authsources.php.dist',
'auth/saml/config/authsources.php', [
62 'RELAY_STATE' => rtrim(ILIAS_HTTP_PATH,
'/') .
'/saml.php',
63 'SP_ENTITY_ID' => rtrim(ILIAS_HTTP_PATH,
'/') .
'/Services/Saml/lib/metadata.php' 72 return $this->authSource->getAuthSource()->getAuthId();
80 $this->authSource->requireAuth();
88 $session = SimpleSAML\Session::getSessionFromRequest();
89 $session->setData(
'ilias', $key, $value);
97 $session = SimpleSAML\Session::getSessionFromRequest();
99 $value =
$session->getData(
'ilias', $key);
109 $session = SimpleSAML\Session::getSessionFromRequest();
111 $session->deleteData(
'ilias', $key);
121 return $this->authSource->isAuthenticated();
129 return $this->authSource->getAttributes();
135 public function logout(
string $returnUrl =
'') : void
140 'ReturnStateParam' =>
'LogoutState',
141 'ReturnStateStage' =>
'ilLogoutState' 144 if (strlen($returnUrl) > 0) {
145 $params[
'ReturnTo'] = $returnUrl;
148 $this->authSource->logout($params);
164 return $this->authSource->getAuthDataArray();
initConfigFiles($configurationPath)
copy(string $sourcePath, string $destinationPath, array $placeholders=[])
protectResource()
Protect a script resource with a SAML auth.
static set($a_var, $a_val)
Set a value.
__construct($authSourceName, $configurationPath)
ilSimpleSAMLphpWrapper constructor.
popParam(string $key)
mixed
static getBytes($length)
Generate random bytes using OpenSSL or Mcrypt and mt_rand() as fallback.
getIdpDiscovery()
ilSamlIdpDiscovery
static getInstance()
Get instance.
Class ilSimpleSAMLphpConfigTemplateHandler.
Class ilSimpleSAMLphpWrapper.
getParam(string $key)
mixed
Class ilSimpleSAMLphplIdpDiscovery.
logout(string $returnUrl='')