ILIAS  release_7 Revision v7.30-3-g800a261c036
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  $client_id = $environment->getResource(Setup\Environment::RESOURCE_CLIENT_ID);
39  $data_dir = $this->config->getDataDir();
40  $web_dir = dirname(__DIR__, 4) . "/data";
41 
42  $client_data_dir = $data_dir . '/' . $client_id;
43  $client_web_dir = $web_dir . '/' . $client_id;
44 
45  return [
47  new Setup\Objective\DirectoryCreatedObjective($data_dir),
48  new Setup\Objective\DirectoryCreatedObjective($web_dir),
49  new Setup\Objective\DirectoryCreatedObjective(
50  $client_web_dir
51  ),
52  new Setup\Objective\DirectoryCreatedObjective(
53  $client_data_dir
54  )
55  ];
56  }
57 
58  public function achieve(Setup\Environment $environment) : Setup\Environment
59  {
60  $ini = $environment->getResource(Setup\Environment::RESOURCE_ILIAS_INI);
61 
62  $ini->setVariable("clients", "datadir", $this->config->getDataDir());
63 
64  if (!$ini->write()) {
65  throw new Setup\UnachievableException("Could not write ilias.ini.php");
66  }
67 
68  return $environment;
69  }
70 
74  public function isApplicable(Setup\Environment $environment) : bool
75  {
76  $ini = $environment->getResource(Setup\Environment::RESOURCE_ILIAS_INI);
77 
78  return $ini->readVariable("clients", "datadir") !== $this->config->getDataDir();
79  }
80 }
$client_id
Definition: webdav.php:17
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
An environment holds resources to be used in the setup process.
Definition: Environment.php:11
$ini
Definition: raiseError.php:4