ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilFileSystemDirectoriesCreatedObjective.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 
6 use ILIAS\Setup;
7 
8 class ilFileSystemDirectoriesCreatedObjective implements Setup\Objective
9 {
13  protected $config;
14 
15  public function __construct(
17  ) {
18  $this->config = $config;
19  }
20 
21  public function getHash() : string
22  {
23  return hash("sha256", self::class);
24  }
25 
26  public function getLabel() : string
27  {
28  return "ILIAS directories are created";
29  }
30 
31  public function isNotable() : bool
32  {
33  return false;
34  }
35 
36  public function getPreconditions(Setup\Environment $environment) : array
37  {
38  $common_config = $environment->getConfigFor("common");
39  return [
40  new Setup\DirectoryCreatedObjective($this->config->getDataDir()),
41 
42  new Setup\DirectoryCreatedObjective($this->config->getWebDir()),
43  new Setup\DirectoryCreatedObjective($this->config->getWebDir() . "/" . $common_config->getClientId()),
44  new Setup\DirectoryCreatedObjective($this->config->getDataDir() . "/" . $common_config->getClientId())
45  ];
46  }
47 
48  public function achieve(Setup\Environment $environment) : Setup\Environment
49  {
50  $ini = $environment->getResource(Setup\Environment::RESOURCE_ILIAS_INI);
51 
52  $ini->setVariable("clients", "datadir", $this->config->getDataDir());
53 
54  if (!$ini->write()) {
55  throw new Setup\UnachievableException("Could not write ilias.ini.php");
56  }
57 
58  return $environment;
59  }
60 }
An environment holds resources to be used in the setup process.
Definition: Environment.php:11
$ini
Definition: raiseError.php:4