ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilPrivacySecuritySetupAgent.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 use ILIAS\UI;
24 
26 {
28 
32  protected Refinery\Factory $refinery;
33 
34  public function __construct(Refinery\Factory $refinery)
35  {
36  $this->refinery = $refinery;
37  }
38 
42  public function hasConfig(): bool
43  {
44  return true;
45  }
46 
50  public function getConfigInput(?Setup\Config $config = null): UI\Component\Input\Container\Form\FormInput
51  {
52  throw new LogicException("Not yet implemented.");
53  }
54 
59  {
60  return $this->refinery->custom()->transformation(function ($data) {
62  (bool) ($data["https_enabled"] ?? false),
63  (isset($data["auth_duration"])) ? (int) $data["auth_duration"] : null,
64  (isset($data["account_assistance_duration"])) ? (int) $data["account_assistance_duration"] : null,
65  (isset($data["registration_duration"])) ? (int) $data["registration_duration"] : null,
66  );
67  });
68  }
69 
73  public function getInstallObjective(?Setup\Config $config = null): Setup\Objective
74  {
75  return new Setup\ObjectiveCollection(
76  "Complete objectives from Services/PrivacySecurity",
77  false,
79  );
80  }
81 
85  public function getUpdateObjective(?Setup\Config $config = null): Setup\Objective
86  {
87  if ($config === null || $config instanceof Setup\NullConfig) {
88  return new Setup\Objective\NullObjective();
89  }
90 
91  return $this->getInstallObjective($config);
92  }
93 
97  public function getBuildObjective(): Setup\Objective
98  {
99  return new Setup\Objective\NullObjective();
100  }
101 
105  public function getStatusObjective(Setup\Metrics\Storage $storage): Setup\Objective
106  {
107  return new Setup\Objective\NullObjective();
108  }
109 
113  public function getMigrations(): array
114  {
115  return [];
116  }
117 }
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
getInstallObjective(?Setup\Config $config=null)
getBuildObjective()
Get the goal the agent wants to achieve to build artifacts.if Config does not match the Agent...
getStatusObjective(Setup\Metrics\Storage $storage)
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
Storage is simple key/value store without further schema definition.
Definition: Storage.php:29
Builds data types.
Definition: Factory.php:35
getUpdateObjective(?Setup\Config $config=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getArrayToConfigTransformation()
Agents must be able to tell how to create a configuration from a nested array.if Agent has no Config ...
A transformation is a function from one datatype to another.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A configuration for the setup.
Definition: Config.php:26
A configuration with no content.
Definition: NullConfig.php:26
hasConfig()
Does this agent require a configuration?