ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMediaObjectSetupAgent.php
Go to the documentation of this file.
1 <?php
2 
19 use ILIAS\Setup;
20 use ILIAS\Refinery;
21 
26 {
28 
29  protected Refinery\Factory $refinery;
30 
31  public function __construct(
32  Refinery\Factory $refinery
33  ) {
34  $this->refinery = $refinery;
35  }
36 
37  public function hasConfig(): bool
38  {
39  return true;
40  }
41 
43  {
44  return $this->refinery->custom()->transformation(function ($data) {
45  return new \ilMediaObjectSetupConfig(
46  $data["path_to_ffmpeg"] ?? null
47  );
48  });
49  }
50 
51  public function getInstallObjective(?Setup\Config $config = null): Setup\Objective
52  {
54  'mobs',
56  );
57 
59  return new Setup\ObjectiveCollection(
60  "Complete objectives from Services/MediaObject",
61  false,
63  $dir_objective
64  );
65  }
66 
67  public function getUpdateObjective(?Setup\Config $config = null): Setup\Objective
68  {
70  if ($config !== null) {
71  return new ilMediaObjectConfigStoredObjective($config);
72  }
73  return new Setup\Objective\NullObjective();
74  }
75 
76  public function getBuildObjective(): Setup\Objective
77  {
78  return new Setup\Objective\NullObjective();
79  }
80 
81  public function getStatusObjective(Setup\Metrics\Storage $storage): Setup\Objective
82  {
83  return new Setup\ObjectiveCollection(
84  'Component MediaObjects',
85  true,
87  new ilDatabaseUpdateStepsMetricsCollectedObjective($storage, new \ILIAS\MediaObjects\Setup\ilMediaObjectsDBUpdateSteps())
88  );
89  }
90 
91  public function getMigrations(): array
92  {
93  return [
94  new ilMobMigration()
95  ];
96  }
97 }
getStatusObjective(Setup\Metrics\Storage $storage)
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
Interface Observer Contains several chained tasks and infos about them.
Stores configuration for the service (currently only path to ffmpeg) in the according ini-field...
A agent is some component that performs part of the setup process.
Definition: Agent.php:29
getBuildObjective()
Get the goal the agent wants to achieve to build artifacts.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Storage is simple key/value store without further schema definition.
Definition: Storage.php:29
getUpdateObjective(?Config $config=null)
Get the goal the agent wants to achieve on update.
getMigrations()
Get a named map of migrations available for this Agent.
Builds data types.
Definition: Factory.php:35
getInstallObjective(?Config $config=null)
Get the goals the agent wants to achieve on setup.
getArrayToConfigTransformation()
Agents must be able to tell how to create a configuration from a nested array.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Refinery\Factory $refinery)
A transformation is a function from one datatype to another.
hasConfig()
Does this agent require a configuration?
A configuration for the setup.
Definition: Config.php:26
Richard Klees richard.klees@concepts-and-training.de