ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilDatabaseSetupAgent.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 2019 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4 
5 use ILIAS\Setup;
9 
10 class ilDatabaseSetupAgent implements Setup\Agent
11 {
15  protected $refinery;
16 
17  public function __construct(Refinery $refinery)
18  {
19  $this->refinery = $refinery;
20  }
21 
25  public function hasConfig() : bool
26  {
27  return true;
28  }
29 
33  public function getConfigInput(Setup\Config $config = null) : ILIAS\UI\Component\Input\Field\Input
34  {
35  throw new \LogicException("NYI!");
36  }
37 
42  {
43  // TODO: Migrate this to refinery-methods once possible.
44  return $this->refinery->custom()->transformation(function ($data) {
45  $password = $this->refinery->to()->data("password");
46  return new \ilDatabaseSetupConfig(
47  $data["type"] ?? "innodb",
48  $data["host"] ?? "localhost",
49  $data["database"] ?? "ilias",
50  $data["user"] ?? null,
51  $data["password"] ? $password->transform($data["password"]) : null,
52  $data["create_database"] ?? true,
53  $data["collation"] ?? null,
54  $data["port"] ?? 3306,
55  $data["path_to_db_dump"] ?? null
56  );
57  });
58  }
59 
63  public function getInstallObjective(Setup\Config $config = null) : Setup\Objective
64  {
65  return new Setup\ObjectiveCollection(
66  "Complete objectives from Services\Database",
67  false,
70  );
71  }
72 
76  public function getUpdateObjective(Setup\Config $config = null) : Setup\Objective
77  {
78  return new \ilDatabaseUpdatedObjective($config, false);
79  }
80 
84  public function getBuildArtifactObjective() : Setup\Objective
85  {
86  return new Setup\NullObjective();
87  }
88 }
Class Factory.
$data
Definition: storeScorm.php:23
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:14
Class ChatMainBarProvider .
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition: metadata.php:68
getConfigInput(Setup\Config $config=null)
getUpdateObjective(Setup\Config $config=null)
$password
Definition: cron.php:14
A transformation is a function from one datatype to another.
getInstallObjective(Setup\Config $config=null)
A configuration for the setup.
Definition: Config.php:10