13 new \ilSettingsFactoryExistsObjective()
19 $ilias_ini = $environment->getResource(Setup\Environment::RESOURCE_ILIAS_INI);
22 $storage->storeConfigText(
24 $ilias_ini->readVariable(
"server",
"http_path"),
28 if ($ilias_ini->readVariable(
"https",
"auto_https_detect_enabled")) {
29 $header_name =
new Setup\Metrics\Metric(
30 Setup\Metrics\Metric::STABILITY_CONFIG,
31 Setup\Metrics\Metric::TYPE_TEXT,
32 $ilias_ini->readVariable(
"https",
"auto_https_detect_header_name"),
33 "The name of the header used for https detection in requests." 35 $header_value =
new Setup\Metrics\Metric(
36 Setup\Metrics\Metric::STABILITY_CONFIG,
37 Setup\Metrics\Metric::TYPE_TEXT,
38 $ilias_ini->readVariable(
"https",
"auto_https_detect_header_value"),
39 "The value in the named header that indicates usage of https in requests." 41 $https_metrics =
new Setup\Metrics\Metric(
42 Setup\Metrics\Metric::STABILITY_CONFIG,
43 Setup\Metrics\Metric::TYPE_COLLECTION,
45 "header_name" => $header_name,
46 "header_value" => $header_value
48 "The properties of a request used for https detection." 50 $storage->store(
"https_autodetection", $https_metrics);
52 $storage->storeConfigBool(
53 "https_autodetection",
55 "Does the server attempt to detect https in incoming requests?" 60 $factory = $environment->getResource(Setup\Environment::RESOURCE_SETTINGS_FACTORY);
64 $settings =
$factory->settingsFor(
"common");
66 if ($settings->get(
"proxy_status")) {
67 $host =
new Setup\Metrics\Metric(
68 Setup\Metrics\Metric::STABILITY_CONFIG,
69 Setup\Metrics\Metric::TYPE_TEXT,
70 $settings->get(
"proxy_host"),
71 "The host of the proxy." 73 $port =
new Setup\Metrics\Metric(
74 Setup\Metrics\Metric::STABILITY_CONFIG,
75 Setup\Metrics\Metric::TYPE_TEXT,
76 $settings->get(
"proxy_port"),
77 "The port of the proxy." 79 $proxy =
new Setup\Metrics\Metric(
80 Setup\Metrics\Metric::STABILITY_CONFIG,
81 Setup\Metrics\Metric::TYPE_COLLECTION,
86 "The proxy that is used for outgoing connections." 88 $storage->store(
"proxy", $proxy);
90 $storage->storeConfigBool(
93 "Does the server use a proxy for outgoing connections?"
collectFrom(Setup\Environment $environment, Setup\Metrics\Storage $storage)
getTentativePreconditions(Setup\Environment $environment)
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.