ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDatabaseMetricsCollectedObjective.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 
27 {
31  protected function getTentativePreconditions(Environment $environment): array
32  {
33  return [
34  new \ilIniFilesLoadedObjective(),
35  new \ilDatabaseInitializedObjective()
36  ];
37  }
38 
39  protected function collectFrom(Environment $environment, Storage $storage): void
40  {
41  $client_ini = $environment->getResource(Environment::RESOURCE_CLIENT_INI);
42  if ($client_ini) {
43  $storage->storeConfigText(
44  "type",
45  $client_ini->readVariable("db", "type") ?? "mysql",
46  "The storage backend that is used for the database."
47  );
48  $storage->storeConfigText(
49  "host",
50  $client_ini->readVariable("db", "host"),
51  "The host where the storage backend is located."
52  );
53  $storage->storeConfigText(
54  "port",
55  $client_ini->readVariable("db", "port"),
56  "The port where the storage backend is located at the host."
57  );
58  $storage->storeConfigText(
59  "name",
60  $client_ini->readVariable("db", "name"),
61  "The name of the database in the storage backend."
62  );
63  $storage->storeConfigText(
64  "user",
65  $client_ini->readVariable("db", "user"),
66  "The user to be used for the storage backend."
67  );
68  $storage->storeConfigText(
69  "pass",
70  PHP_SAPI === 'cli' ? $client_ini->readVariable("db", "pass") : '********',
71  "The password for the user for the storage backend."
72  );
73  }
74 
75 
76  $db = $environment->getResource(Environment::RESOURCE_DATABASE);
77  $ini = $environment->getResource(Environment::RESOURCE_ILIAS_INI);
78  if (!$db && !$ini) {
79  return;
80  }
81  $client_id = $environment->getResource(Environment::RESOURCE_CLIENT_ID);
82 
83  // ATTENTION: This is a total abomination. It only exists to allow the db-
84  // update to run. This is a memento to the fact, that dependency injection
85  // is something we want. Currently, every component could just service
86  // locate the whole world via the global $DIC.
87  $DIC = $GLOBALS["DIC"] ?? [];
88  try {
89  $GLOBALS["DIC"] = new Container();
90  $GLOBALS["DIC"]["ilDB"] = $db;
91  $GLOBALS["DIC"]["ilBench"] = null;
92  $GLOBALS["DIC"]["ilLog"] = new class () {
93  public function write(): void
94  {
95  }
96  public function info(): void
97  {
98  }
99  public function warning($msg): void
100  {
101  }
102  public function error($msg): void
103  {
104  }
105  };
107  $GLOBALS["DIC"]["ilLoggerFactory"] = new class () {
108  public function getRootLogger(): object
109  {
110  return new class () {
111  public function write(): void
112  {
113  }
114  };
115  }
116  };
117  if (!defined("CLIENT_DATA_DIR")) {
118  define("CLIENT_DATA_DIR", $ini->readVariable("clients", "datadir") . "/" . $client_id);
119  }
120  if (!defined("CLIENT_WEB_DIR")) {
121  define("CLIENT_WEB_DIR", dirname(__DIR__, 4) . "/data/" . $client_id);
122  }
123  if (!defined("ILIAS_ABSOLUTE_PATH")) {
124  define("ILIAS_ABSOLUTE_PATH", dirname(__FILE__, 5));
125  }
126  if (!defined("ILIAS_LOG_ENABLED")) {
127  define("ILIAS_LOG_ENABLED", false);
128  }
129  if (!defined("ROOT_FOLDER_ID")) {
130  define("ROOT_FOLDER_ID", (int) $client_ini->readVariable("system", "ROOT_FOLDER_ID"));
131  }
132  if (!defined("ROLE_FOLDER_ID")) {
133  define("ROLE_FOLDER_ID", (int) $client_ini->readVariable("system", "ROLE_FOLDER_ID"));
134  }
135  if (!defined("SYSTEM_FOLDER_ID")) {
136  define("SYSTEM_FOLDER_ID", (int) $client_ini->readVariable("system", "SYSTEM_FOLDER_ID"));
137  }
138 
139  $db_update = new ilDBUpdate($db);
140 
141  $storage->storeStableCounter(
142  "custom_version",
143  $db_update->getCustomUpdatesCurrentVersion() ?? 0,
144  "The version of the custom database schema that is currently installed."
145  );
146  $storage->storeStableCounter(
147  "available_custom_version",
148  $db_update->getCustomUpdatesFileVersion() ?? 0,
149  "The version of the custom database schema that is available in the current source."
150  );
151  $storage->storeStableBool(
152  "custom_update_required",
153  $db_update->customUpdatesAvailable(),
154  "Does the database require a custom update?"
155  );
156  } finally {
157  $GLOBALS["DIC"] = $DIC;
158  }
159  }
160 }
storeStableBool(string $key, bool $value, ?string $description=null)
collectFrom(Environment $environment, Storage $storage)
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
storeConfigText(string $key, string $value, ?string $description=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
info()
description: > Example for rendering a info message box.
Definition: info.php:34
Base class to simplify collection of metrics.
$GLOBALS["DIC"]
Definition: wac.php:53
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:22
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
Database Update class.
storeStableCounter(string $key, int $value, ?string $description=null)
An environment holds resources to be used in the setup process.
Definition: Environment.php:27
$client_id
Definition: ltiauth.php:66
$ini
Definition: raiseError.php:20