ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilCommonSetupAgent.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\Data;
25 
32 {
33  private const PHP_MEMORY_LIMIT = "128M";
34  private const PHP_MIN_VERSION = "8.3.0";
35  private const PHP_MAX_VERSION = "8.4.999";
36 
37  protected Refinery\Factory $refinery;
38  protected Data\Factory $data;
39 
40  public function __construct(
41  Refinery\Factory $refinery,
42  Data\Factory $data
43  ) {
44  $this->refinery = $refinery;
45  $this->data = $data;
46  }
47 
51  public function hasConfig(): bool
52  {
53  return true;
54  }
55 
60  {
61  return $this->refinery->custom()->transformation(function ($data) {
62  $export_hooks_path = null;
63  if (key_exists("export_hooks_path", $data)) {
64  $export_hooks_path = $data["export_hooks_path"];
65  }
66  $datetimezone = $this->refinery->to()->toNew(\DateTimeZone::class);
67  return new \ilSetupConfig(
68  $this->data->clientId($data["client_id"] ?? ''),
69  $datetimezone->transform([$data["server_timezone"] ?? "UTC"]),
70  $data["register_nic"] ?? false,
71  $export_hooks_path
72  );
73  });
74  }
75 
79  public function getInstallObjective(?Setup\Config $config = null): Setup\Objective
80  {
81  return new Setup\Objective\ObjectiveWithPreconditions(
85  "Complete common ILIAS objectives.",
86  false,
87  new Setup\Condition\PHPVersionCondition(self::PHP_MIN_VERSION, self::PHP_MAX_VERSION, true),
88  new Setup\Condition\PHPExtensionLoadedCondition("dom"),
89  new Setup\Condition\PHPExtensionLoadedCondition("xsl"),
90  new Setup\Condition\PHPExtensionLoadedCondition("gd"),
92  new ilSetupConfigStoredObjective($config),
93  new ilNICKeyRegisteredObjective($config)
94  )
95  );
96  }
97 
99  {
100  return new Setup\Condition\ExternalConditionObjective(
101  "PHP memory limit >= " . self::PHP_MEMORY_LIMIT,
102  function (Setup\Environment $env): bool {
103  $limit = ini_get("memory_limit");
104  if ($limit == -1) {
105  return true;
106  }
107  $expected = $this->data->dataSize(self::PHP_MEMORY_LIMIT);
108  $current = $this->data->dataSize($limit);
109  return $current->inBytes() >= $expected->inBytes();
110  },
111  "To properly execute ILIAS, please take care that the PHP memory limit is at least set to 128M."
112  );
113  }
114 
118  public function getUpdateObjective(?Setup\Config $config = null): Setup\Objective
119  {
120  $objectives = [
121  new Setup\Objective\ObjectiveWithPreconditions(
122  new ilVersionWrittenToSettingsObjective($this->data),
123  new Setup\Condition\PHPVersionCondition(self::PHP_MIN_VERSION, self::PHP_MAX_VERSION, true),
126  )
127  ];
128 
129  if ($config !== null) {
130  $objectives[] = new ilSetupConfigStoredObjective($config);
131  $objectives[] = new ilNICKeyRegisteredObjective($config);
132  }
133 
134  return new Setup\ObjectiveCollection(
135  "Complete common ILIAS objectives.",
136  false,
137  ...$objectives
138  );
139  }
140 
144  public function getBuildObjective(): Setup\Objective
145  {
146  return new Setup\Objective\NullObjective();
147  }
148 
152  public function getStatusObjective(Setup\Metrics\Storage $storage): Setup\Objective
153  {
154  return new ilSetupMetricsCollectedObjective($storage);
155  }
156 
160  public function getMigrations(): array
161  {
162  return [];
163  }
164 
165  public function getNamedObjectives(?Config $config = null): array
166  {
167  return [
168  "registerNICKey" => new Setup\ObjectiveConstructor(
169  "Register NIC key",
170  static function () use ($config): Setup\Objective {
171  if (is_null($config)) {
172  throw new \RuntimeException(
173  "Missing Config for objective 'registerNICKey'."
174  );
175  }
176 
177  return new ilNICKeyRegisteredObjective($config);
178  }
179  ),
180  "buildExportZip" => new Setup\ObjectiveConstructor(
181  "Build ILIAS export zip",
182  static function () use ($config): Setup\Objective {
183  if (is_null($config)) {
184  throw new \RuntimeException(
185  "Missing Config for objective 'buildExportZip'."
186  );
187  }
188  return new ilExportZipBuiltObjective($config);
189  }
190  )
191  ];
192  }
193 }
A objective collection is a objective that is achieved once all subobjectives are achieved...
getArrayToConfigTransformation()
Agents must be able to tell how to create a configuration from a nested array.if Agent has no Config ...
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
There seems to already exist an ILIAS installation, an interaction with it should be confirmed...
__construct(Refinery\Factory $refinery, Data\Factory $data)
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
$objectives
Storage is simple key/value store without further schema definition.
Definition: Storage.php:29
hasConfig()
Does this agent require a configuration?
getStatusObjective(Setup\Metrics\Storage $storage)
Builds data types.
Definition: Factory.php:35
getBuildObjective()
Get the goal the agent wants to achieve to build artifacts.if Config does not match the Agent...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getUpdateObjective(?Setup\Config $config=null)
An environment holds resources to be used in the setup process.
Definition: Environment.php:27
getInstallObjective(?Setup\Config $config=null)
A transformation is a function from one datatype to another.
getNamedObjectives(?Config $config=null)
A configuration for the setup.
Definition: Config.php:26