ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilPrivacySecuritySetupAgent.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
20 use ILIAS\Setup;
21 use ILIAS\Refinery;
22 use ILIAS\UI;
23 
24 class ilPrivacySecuritySetupAgent implements Setup\Agent
25 {
27 
31  protected Refinery\Factory $refinery;
32 
33  public function __construct(Refinery\Factory $refinery)
34  {
35  $this->refinery = $refinery;
36  }
37 
41  public function hasConfig(): bool
42  {
43  return true;
44  }
45 
49  public function getConfigInput(Setup\Config $config = null): UI\Component\Input\Field\Input
50  {
51  throw new LogicException("Not yet implemented.");
52  }
53 
58  {
59  return $this->refinery->custom()->transformation(function ($data) {
61  (bool) ($data["https_enabled"] ?? false),
62  (isset($data["auth_duration"])) ? (int) $data["auth_duration"] : null,
63  (isset($data["account_assistance_duration"])) ? (int) $data["account_assistance_duration"] : null
64  );
65  });
66  }
67 
71  public function getInstallObjective(Setup\Config $config = null): Setup\Objective
72  {
73  return new Setup\ObjectiveCollection(
74  "Complete objectives from Services/PrivacySecurity",
75  false,
77  );
78  }
79 
83  public function getUpdateObjective(Setup\Config $config = null): Setup\Objective
84  {
85  if ($config === null || $config instanceof Setup\NullConfig) {
86  return new Setup\Objective\NullObjective();
87  }
88 
89  return $this->getInstallObjective($config);
90  }
91 
95  public function getBuildArtifactObjective(): Setup\Objective
96  {
97  return new Setup\Objective\NullObjective();
98  }
99 
103  public function getStatusObjective(Setup\Metrics\Storage $storage): Setup\Objective
104  {
105  return new Setup\Objective\NullObjective();
106  }
107 
111  public function getMigrations(): array
112  {
113  return [];
114  }
115 }
Class Factory.
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: ByTrying.php:21
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition: metadata.php:85
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getStatusObjective(Setup\Metrics\Storage $storage)
getInstallObjective(Setup\Config $config=null)
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.
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