13 new \ilIniFilesLoadedObjective(),
14 new \ilDatabaseInitializedObjective(),
15 new \ilFileSystemComponentDataDirectoryCreatedObjective(
"chatroom")
21 $db = $environment->getResource(Setup\Environment::RESOURCE_DATABASE);
28 $GLOBALS[
"DIC"] =
new DI\Container();
33 $chatAdministration = current($chatAdministrations);
36 $settings = $chat_admin->loadGeneralSettings();
38 if (count($settings) > 0) {
39 $storage->storeConfigText(
41 $settings[
'address'] ??
"",
42 "IP-Address/FQN of Chat Server." 44 $storage->storeConfigText(
46 $settings[
'port'] ??
"",
47 "Port of the chat server." 49 $storage->storeConfigText(
51 $settings[
'sub_directory'] ??
"",
52 "http(s)://[IP/Domain]/[SUB_DIRECTORY]" 55 $storage->storeConfigText(
57 $settings[
'protocol'] ??
"",
58 "Protocol used for connection (http/https)." 61 if ($settings[
'protocol'] ===
'https') {
62 $cert =
new Setup\Metrics\Metric(
63 Setup\Metrics\Metric::STABILITY_CONFIG,
64 Setup\Metrics\Metric::TYPE_TEXT,
65 $settings[
'cert'] ??
"" 67 $key =
new Setup\Metrics\Metric(
68 Setup\Metrics\Metric::STABILITY_CONFIG,
69 Setup\Metrics\Metric::TYPE_TEXT,
70 $settings[
'key'] ??
"" 72 $dhparam =
new Setup\Metrics\Metric(
73 Setup\Metrics\Metric::STABILITY_CONFIG,
74 Setup\Metrics\Metric::TYPE_TEXT,
75 $settings[
'dhparam'] ??
"" 77 $https =
new Setup\Metrics\Metric(
78 Setup\Metrics\Metric::STABILITY_CONFIG,
79 Setup\Metrics\Metric::TYPE_COLLECTION,
83 "dhparam" => $dhparam,
85 "Holds parameters for https." 87 $storage->store(
"https",
$https);
90 $storage->storeConfigText(
92 $settings[
'log'] ??
"",
93 "Absolute server path to the chat server's log file." 95 $storage->storeConfigText(
97 $settings[
'log_level'] ??
"",
98 "Possible values are emerg, alert, crit error, warning, notice, info, debug, silly." 100 $storage->storeConfigText(
102 $settings[
'error_log'] ??
"",
103 "Absolute server path to the chat server's error log file." 106 if ($settings[
'ilias_proxy']) {
107 $ilias_url =
new Setup\Metrics\Metric(
108 Setup\Metrics\Metric::STABILITY_CONFIG,
109 Setup\Metrics\Metric::TYPE_TEXT,
110 $settings[
'ilias_url'] ??
"" 112 $ilias_proxy =
new Setup\Metrics\Metric(
113 Setup\Metrics\Metric::STABILITY_CONFIG,
114 Setup\Metrics\Metric::TYPE_COLLECTION,
116 "ilias_url" => $ilias_url
118 "Holds proxy url if ILIAS proxy is enabled." 120 $storage->store(
"ilias_proxy", $ilias_proxy);
122 $storage->storeConfigBool(
125 "Holds proxy url if ILIAS proxy is enabled." 129 if ($settings[
'client_proxy']) {
130 $client_url =
new Setup\Metrics\Metric(
131 Setup\Metrics\Metric::STABILITY_CONFIG,
132 Setup\Metrics\Metric::TYPE_TEXT,
133 $settings[
'client_url'] ??
"" 135 $client_proxy =
new Setup\Metrics\Metric(
136 Setup\Metrics\Metric::STABILITY_CONFIG,
137 Setup\Metrics\Metric::TYPE_COLLECTION,
139 "client_url" => $client_url
141 "Holds proxy url if client proxy is enabled." 143 $storage->store(
"client_proxy", $client_proxy);
145 $storage->storeConfigBool(
148 "Holds proxy url if client proxy is enabled." 152 if ($settings[
'deletion_mode']) {
153 $deletion_unit =
new Setup\Metrics\Metric(
154 Setup\Metrics\Metric::STABILITY_CONFIG,
155 Setup\Metrics\Metric::TYPE_TEXT,
156 $settings[
'deletion_unit'] ??
"" 158 $deletion_value =
new Setup\Metrics\Metric(
159 Setup\Metrics\Metric::STABILITY_CONFIG,
160 Setup\Metrics\Metric::TYPE_TEXT,
161 (
string) $settings[
'deletion_value'] ??
"" 163 $deletion_time =
new Setup\Metrics\Metric(
164 Setup\Metrics\Metric::STABILITY_CONFIG,
165 Setup\Metrics\Metric::TYPE_TEXT,
166 $settings[
'deletion_time'] ??
"" 168 $deletion_mode =
new Setup\Metrics\Metric(
169 Setup\Metrics\Metric::STABILITY_CONFIG,
170 Setup\Metrics\Metric::TYPE_COLLECTION,
172 "deletion_unit" => $deletion_unit,
173 "deletion_value" => $deletion_value,
174 "deletion_time" => $deletion_time,
176 "Holds information about deletion process." 178 $storage->store(
"deletion_mode", $deletion_mode);
collectFrom(Setup\Environment $environment, Setup\Metrics\Storage $storage)
static _getObjectsByType($a_obj_type="", $a_owner="")
Get objects by type.
getTentativePreconditions(Setup\Environment $environment)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
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.