19 declare(strict_types=1);
38 return hash(
"sha256", self::class);
43 return "Store information about chatroom server to db";
62 $db = $environment->
getResource(Setup\Environment::RESOURCE_DATABASE);
63 $common_config = $environment->getConfigFor(
"common");
64 $filesystem_config = $environment->getConfigFor(
"filesystem");
71 $GLOBALS[
"DIC"] =
new DI\Container();
76 $chatAdministration = current($chatAdministrations);
79 $settings = $chat_admin->loadGeneralSettings();
81 $settings[
'address'] = $this->config->getAddress();
82 $settings[
'port'] = $this->config->getPort();
83 $settings[
'sub_directory'] = $this->config->getSubDirectory();
84 $settings[
'protocol'] = $this->config->getProtocol();
85 $settings[
'cert'] = $this->config->getCert();
86 $settings[
'key'] = $this->config->getKey();
87 $settings[
'dhparam'] = $this->config->getDhparam();
88 $settings[
'log'] = $this->config->getLog();
89 $settings[
'log_level'] = $this->config->getLogLevel();
90 $settings[
'error_log'] = $this->config->getErrorLog();
91 $settings[
'ilias_proxy'] = (
int) $this->config->hasIliasProxy();
92 $settings[
'ilias_url'] = $this->config->getIliasUrl();
93 $settings[
'client_proxy'] = (
int) $this->config->hasClientProxy();
94 $settings[
'client_url'] = $this->config->getClientUrl();
95 $settings[
'deletion_mode'] = (
int) $this->config->hasDeletionMode();
96 $settings[
'deletion_unit'] = $this->config->getDeletionUnit();
97 $settings[
'deletion_value'] = $this->config->getDeletionValue();
98 $settings[
'deletion_time'] = $this->config->getDeletionTime();
100 $chat_admin->saveGeneralSettings((
object)
$settings);
102 if (!defined(
"CLIENT_DATA_DIR")) {
105 $filesystem_config->getDataDir() .
"/" . ((string) $common_config->getClientId())
110 $fileHandler->createServerConfigFile($settings);
122 return $this->config->getAddress() !==
'' && $this->config->getPort() !== 0;
static _getObjectsByType(string $obj_type="", int $owner=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilChatroomSetupConfig $config
isApplicable(Setup\Environment $environment)
achieve(Setup\Environment $environment)
Store information about https is enabled.
getPreconditions(Setup\Environment $environment)
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
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(ilChatroomSetupConfig $config)