ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAuthenticationSetupAgent.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 use ILIAS\Setup;
22 use ILIAS\Refinery;
23 
25 {
27 
28  protected const DEFAULT_SESSION_EXPIRE_IN_SECONDS = 1_800;
29 
30  public function __construct(protected Refinery\Factory $refinery)
31  {
32  }
33 
34  public function hasConfig(): bool
35  {
36  return true;
37  }
38 
40  {
41  return $this->refinery->custom()->transformation(function ($data): \ilAuthenticationSetupConfig {
42  return new ilAuthenticationSetupConfig($data["session_max_idle"] ?? self::DEFAULT_SESSION_EXPIRE_IN_SECONDS);
43  });
44  }
45 
46  public function getInstallObjective(?Setup\Config $config = null): Setup\Objective
47  {
48  if ($config !== null) {
49  return new ilSessionMaxIdleIsSetObjective($config);
50  }
51 
53  new ilAuthenticationSetupConfig(self::DEFAULT_SESSION_EXPIRE_IN_SECONDS)
54  );
55  }
56 
57  public function getUpdateObjective(?Setup\Config $config = null): Setup\Objective
58  {
59  if ($config !== null) {
60  return new Setup\ObjectiveCollection(
61  'Authentication',
62  true,
65  ),
68  ),
70  );
71  }
72 
73  return new Setup\ObjectiveCollection(
74  'Authentication',
75  true,
78  ),
81  ),
82  );
83  }
84 
85  public function getBuildObjective(): Setup\Objective
86  {
87  return new Setup\Objective\NullObjective();
88  }
89 
90  public function getStatusObjective(Setup\Metrics\Storage $storage): Setup\Objective
91  {
92  return new Setup\ObjectiveCollection(
93  'Component Authentication',
94  true,
96  $storage,
98  ),
100  $storage,
102  ),
103  );
104  }
105 
106  public function getMigrations(): array
107  {
108  return [];
109  }
110 }
hasConfig()
Does this agent require a configuration?
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
A agent is some component that performs part of the setup process.
Definition: Agent.php:29
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getUpdateObjective(?Setup\Config $config=null)
getBuildObjective()
Get the goal the agent wants to achieve to build artifacts.
getInstallObjective(?Setup\Config $config=null)
Builds data types.
Definition: Factory.php:35
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A transformation is a function from one datatype to another.
getArrayToConfigTransformation()
Agents must be able to tell how to create a configuration from a nested array.
getStatusObjective(Setup\Metrics\Storage $storage)
A configuration for the setup.
Definition: Config.php:26
__construct(protected Refinery\Factory $refinery)
getMigrations()
Get a named map of migrations available for this Agent.