ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSamlAuthFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 final class ilSamlAuthFactory
24 {
25  private const METADATA_PATH = 'auth/saml/config';
26 
30  public function auth(string $authSourceName = 'default-sp'): ilSamlAuth
31  {
32  return new ilSimpleSAMLphpWrapper(
33  $authSourceName,
34  $this->getConfigDirectory()
35  );
36  }
37 
41  public function getConfigDirectory(): string
42  {
43  global $DIC;
44 
45  $fs = $DIC->filesystem()->storage();
46 
47  if (!$fs->hasDir(self::METADATA_PATH)) {
48  $fs->createDir(self::METADATA_PATH);
49  }
50 
51  return rtrim(ilFileUtils::getDataDir(), '/') . '/' . self::METADATA_PATH;
52  }
53 }
global $DIC
Definition: shib_login.php:22
auth(string $authSourceName='default-sp')
static getDataDir()
get data directory (outside webspace)