19 declare(strict_types=1);
32 return hash(
'sha256', self::class);
37 return "Ensures 'session_max_idle' is set properly";
47 $http_config = $environment->getConfigFor(
'http');
60 $client_ini = $environment->getResource(
Setup\Environment::RESOURCE_CLIENT_INI);
62 $ini = $environment->getResource(
Setup\Environment::RESOURCE_ILIAS_INI);
64 $io = $environment->getResource(
Setup\Environment::RESOURCE_ADMIN_INTERACTION);
65 $factory = $environment->getResource(
Setup\Environment::RESOURCE_SETTINGS_FACTORY);
67 $settings = $factory->settingsFor(
'common');
69 $session_max_idle = $this->config->getSessionMaxIdle();
71 $url =
$ini->readVariable(
'server',
'http_path');
72 $filename = uniqid((
string) mt_rand(),
true) .
'.php';
74 $token = bin2hex(random_bytes(32));
81 $result = $curl->exec();
87 "An error occurred while trying to determine the values for 'session.cookie_lifetime' and" . PHP_EOL .
88 "'session.gc_maxlifetime' in your php.ini: {$e->getMessage()}" . PHP_EOL .
89 'You can IGNORE the the error if you are sure these settings comply with our expection to' . PHP_EOL .
90 'ensure a proper session handling.' 93 $client_ini->setVariable(
'session',
'expire', (
string) $session_max_idle);
97 if (!is_null($curl)) {
100 unlink(
"public/$filename");
103 if ($result ===
'') {
105 "ILIAS could not determine the value for 'session.cookie_lifetime' and 'session.gc_maxlifetime'" . PHP_EOL .
106 'in your php.ini to check whether it complies with our expection to ensure a proper session handling.' . PHP_EOL .
107 'Do you like to continue, anyway?';
109 if (!$io->confirmOrDeny(
$message)) {
110 throw new Setup\NoConfirmationException(
$message);
114 [$cookie_lifetime, $gc_maxlifetime] = explode(
'&', $result);
116 if ($cookie_lifetime != 0) {
118 "The value 'session.cookie_lifetime' in your php.ini does not correspond" . PHP_EOL .
119 "to the value '0' recommended by ILIAS. Do you want to continue anyway?";
121 if (!$io->confirmOrDeny(
$message)) {
122 throw new Setup\NoConfirmationException(
$message);
126 if ($gc_maxlifetime <= $session_max_idle) {
128 "The value 'session.gc_maxlifetime' in your php.ini is smaller or equal than" . PHP_EOL .
129 "'session_max_idle' in your ILIAS-Config. ILIAS recommends a bigger value." . PHP_EOL .
130 'Do you want to continue anyway?';
132 if (!$io->confirmOrDeny(
$message)) {
133 throw new Setup\NoConfirmationException(
$message);
137 $client_ini->setVariable(
'session',
'expire', (
string) $session_max_idle);
144 $factory = $environment->getResource(
Setup\Environment::RESOURCE_SETTINGS_FACTORY);
146 $settings = $factory->settingsFor(
'common');
148 $ini = $environment->getResource(
Setup\Environment::RESOURCE_ILIAS_INI);
150 $io = $environment->getResource(
Setup\Environment::RESOURCE_ADMIN_INTERACTION);
152 $url =
$ini->readVariable(
'server',
'http_path');
158 $result = $curl->getInfo(CURLINFO_HTTP_CODE);
159 if ($result !== 200) {
160 throw new \Exception();
184 if (!isset(\
$_GET[
'token'])) {
188 if (\
$_GET[
'token'] !==
"$token") {
192 \$scl = ini_get(
'session.cookie_lifetime');
193 \$smlt = ini_get(
'session.gc_maxlifetime');
195 echo \$scl .
"&" . \$smlt;
198 file_put_contents(
"public/$filename", $content);
207 $url = $url .
"?token=" .
$token;
215 $curl->setOpt(CURLOPT_SSL_VERIFYPEER, 0);
216 $curl->setOpt(CURLOPT_SSL_VERIFYHOST, 0);
217 $curl->setOpt(CURLOPT_RETURNTRANSFER, 1);
218 $curl->setOpt(CURLOPT_FOLLOWLOCATION, 1);
219 $curl->setOpt(CURLOPT_MAXREDIRS, 1);
229 set_error_handler(
static function (
int $severity,
string $message,
string $file,
int $line): never {
230 throw new ErrorException($message, $severity, $severity, $file, $line);
234 $url = $url .
"?token=" .
$token;
238 return file_get_contents($url);
240 restore_error_handler();
248 "ilSessionMaxIdleIsSetObjective:\n" .
249 "Cannot establish proper connection to webserver.\n" .
250 "In the event of an installation the value for session expire\n" .
251 "will be the default value.\n" .
252 "In the event of an update, the current value for session expire\n" .
getPHPIniValuesByFileGetContents(string $url, ?string $token=null)
getCurlConnection(ilSetting $settings, string $url, ?string $token=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getPreconditions(Setup\Environment $environment)
static _isCurlExtensionLoaded()
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.
__construct(protected Setup\Config $config)
infoNoConnection(Setup\CLI\IOWrapper $io)
A configuration for the setup.
generateServerInfoFile(string $filename, string $token)