ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSystemFolderSetupAgent.php
Go to the documentation of this file.
1 <?php
2 
19 use ILIAS\Setup;
20 use ILIAS\Refinery;
21 use ILIAS\Data;
22 use ILIAS\UI;
23 
25 {
27 
31  protected $refinery;
32 
33  public function __construct(
35  ) {
36  $this->refinery = $refinery;
37  }
38 
42  public function hasConfig(): bool
43  {
44  return true;
45  }
46 
51  {
52  return $this->refinery->custom()->transformation(function ($data) {
53  return new \ilSystemFolderSetupConfig(
54  $data["client"]["name"] ?? null,
55  $data["client"]["description"] ?? null,
56  $data["client"]["institution"] ?? null,
57  $data["contact"]["firstname"],
58  $data["contact"]["lastname"],
59  $data["contact"]["title"] ?? null,
60  $data["contact"]["position"] ?? null,
61  $data["contact"]["institution"] ?? null,
62  $data["contact"]["street"] ?? null,
63  $data["contact"]["zipcode"] ?? null,
64  $data["contact"]["city"] ?? null,
65  $data["contact"]["country"] ?? null,
66  $data["contact"]["phone"] ?? null,
67  $data["contact"]["email"],
68  );
69  });
70  }
71 
75  public function getInstallObjective(?Setup\Config $config = null): Setup\Objective
76  {
77  return new ilInstallationInformationStoredObjective($config);
78  }
79 
83  public function getUpdateObjective(?Setup\Config $config = null): Setup\Objective
84  {
85  if ($config !== null) {
86  return new ilInstallationInformationStoredObjective($config);
87  }
88  return new Setup\Objective\NullObjective();
89  }
90 
94  public function getBuildObjective(): Setup\Objective
95  {
96  return new Setup\Objective\NullObjective();
97  }
98 
102  public function getStatusObjective(Setup\Metrics\Storage $storage): Setup\Objective
103  {
104  return new ilSystemFolderMetricsCollectedObjective($storage);
105  }
106 
110  public function getMigrations(): array
111  {
112  return [];
113  }
114 }
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
getBuildObjective()
Get the goal the agent wants to achieve to build artifacts.if Config does not match the Agent...
getInstallObjective(?Setup\Config $config=null)
A agent is some component that performs part of the setup process.
Definition: Agent.php:29
hasConfig()
Does this agent require a configuration?
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getArrayToConfigTransformation()
Agents must be able to tell how to create a configuration from a nested array.if Agent has no Config ...
Storage is simple key/value store without further schema definition.
Definition: Storage.php:29
getStatusObjective(Setup\Metrics\Storage $storage)
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...
getUpdateObjective(?Setup\Config $config=null)
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...
Store information about the installation, like title, description and contact information in the acco...
A configuration for the setup.
Definition: Config.php:26
__construct(Refinery\Factory $refinery)