ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
BaseDirObjective.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\FileDelivery\Setup;
22 
27 
32 {
33  public const BASE_DIR = './src/FileDelivery/artifacts/base_dir.php';
34 
35  protected array $data = [];
36 
37  public function getArtifactPath(): string
38  {
39  return self::BASE_DIR;
40  }
41 
42  #[\Override]
43  public function buildIn(Environment $env): Artifact
44  {
45  $ilias_ini = $env->getResource(Environment::RESOURCE_ILIAS_INI);
46  if ($ilias_ini instanceof \ilIniFile) {
47  $base_dir = $ilias_ini->readVariable('clients', 'datadir');
48  $client_id = $ilias_ini->readVariable('clients', 'default');
49  if (!empty($base_dir) && !empty($client_id)) {
50  $this->data['base_dir'] = rtrim(rtrim($base_dir, '/') . '/' . $client_id, '/') . '/';
51  }
52  }
53  return $this->build();
54  }
55 
56  public function getArtifactName(): string
57  {
58  return 'base_dir';
59  }
60 
61  public function build(): Artifact
62  {
63  return new ArrayArtifact($this->data);
64  }
65 
66  #[\Override]
67  public function getPreconditions(Environment $environment): array
68  {
69  return [
70  new \ilIniFilesLoadedObjective(),
71  ];
72  }
73 
74  public static function get(): ?string
75  {
76  static $base;
77 
78  if ($base !== null) {
79  return $base;
80  }
81 
82  if (is_readable(self::PATH())) {
83  $data = require self::PATH();
84  }
85 
86  return $base = $data['base_dir'] ?? null;
87  }
88 }
This is an objective to build some artifact.
getPreconditions(Environment $environment)
Objectives might depend on other objectives.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
An array as an artifact.
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
An environment holds resources to be used in the setup process.
Definition: Environment.php:27
An artifact is some file that is build on demand per installation and is not shipped with the ILIAS s...
Definition: Artifact.php:27
string $client_id
Definition: class.ilias.php:36