ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilFileSystemSetupAgent.php
Go to the documentation of this file.
1 <?php
2 
27 
28 class ilFileSystemSetupAgent implements Agent
29 {
31 
32  public function __construct(protected Factory $refinery)
33  {
34  }
35 
39  public function hasConfig(): bool
40  {
41  return true;
42  }
43 
48  {
49  return $this->refinery->custom()->transformation(fn($data): \ilFileSystemSetupConfig => new \ilFileSystemSetupConfig(
50  $data["data_dir"]
51  ));
52  }
53 
57  public function getInstallObjective(?Config $config = null): Objective
58  {
60  return new ilFileSystemDirectoriesCreatedObjective($config);
61  }
62 
66  public function getUpdateObjective(?Config $config = null): Objective
67  {
68  if ($config !== null) {
70  return new ilFileSystemConfigNotChangedObjective($config);
71  }
72  return new NullObjective();
73  }
74 
78  public function getBuildObjective(): Objective
79  {
80  return new NullObjective();
81  }
82 
86  public function getStatusObjective(Storage $storage): Objective
87  {
88  return new ilFileSystemMetricsCollectedObjective($storage);
89  }
90 
94  public function getMigrations(): array
95  {
96  return [];
97  }
98 }
getArrayToConfigTransformation()
Agents must be able to tell how to create a configuration from a nested array.if Agent has no Config ...
getInstallObjective(?Config $config=null)
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
hasConfig()
Does this agent require a configuration?
__construct(protected Factory $refinery)
A non-objective, nothing to do to achieve it...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
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...
A transformation is a function from one datatype to another.
getUpdateObjective(?Config $config=null)
A configuration for the setup.
Definition: Config.php:26