ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilMediaObjectSetupAgent.php
Go to the documentation of this file.
1 <?php
2 
19 use ILIAS\Setup;
20 use ILIAS\Refinery;
21 
25 class ilMediaObjectSetupAgent implements Setup\Agent
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) {
72  }
73  return new Setup\Objective\NullObjective();
74  }
75 
76  public function getBuildArtifactObjective(): 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 ilMediaObjectMetricsCollectedObjective($storage);
84  }
85 
86  public function getMigrations(): array
87  {
88  return [];
89  }
90 }
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
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
Stores configuration for the service (currently only path to ffmpeg) in the according ini-field...
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.
A configuration for the setup.
Definition: Config.php:26
Richard Klees richard.klees@concepts-and-training.de