ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilChatroomServerConfigStoredObjective.php
Go to the documentation of this file.
1 <?php declare(strict_types=1);
2 
3 /* Copyright (c) 2020 Daniel Weise <daniel.weise@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4 
5 use ILIAS\Setup;
6 use ILIAS\DI;
7 
11 class ilChatroomServerConfigStoredObjective implements Setup\Objective
12 {
16  protected $config;
17 
19  {
20  $this->config = $config;
21  }
22 
23  public function getHash() : string
24  {
25  return hash("sha256", self::class);
26  }
27 
28  public function getLabel() : string
29  {
30  return "Store information about chatroom server to db";
31  }
32 
33  public function isNotable() : bool
34  {
35  return true;
36  }
37 
38  public function getPreconditions(Setup\Environment $environment) : array
39  {
40  return [
41  new \ilIniFilesLoadedObjective(),
42  new \ilDatabaseInitializedObjective(),
43  new \ilFileSystemComponentDataDirectoryCreatedObjective("chatroom")
44  ];
45  }
46 
47  public function achieve(Setup\Environment $environment) : Setup\Environment
48  {
49  $db = $environment->getResource(Setup\Environment::RESOURCE_DATABASE);
50  $common_config = $environment->getConfigFor("common");
51  $filesystem_config = $environment->getConfigFor("filesystem");
52 
53  // ATTENTION: This is a total abomination. It only exists to allow various
54  // sub components of the various readers to run. This is a memento to the
55  // fact, that dependency injection is something we want. Currently, every
56  // component could just service locate the whole world via the global $DIC.
57  $DIC = $GLOBALS["DIC"];
58  $GLOBALS["DIC"] = new DI\Container();
59  $GLOBALS["DIC"]["ilDB"] = $db;
60  $GLOBALS["DIC"]["ilBench"] = null;
61 
62  $chatAdministrations = ilObject::_getObjectsByType('chta');
63  $chatAdministration = current($chatAdministrations);
64 
65  $chat_admin = new ilChatroomAdmin((int) $chatAdministration['obj_id']);
66  $settings = $chat_admin->loadGeneralSettings();
67 
68  $settings['address'] = $this->config->getAddress();
69  $settings['port'] = $this->config->getPort();
70  $settings['sub_directory'] = $this->config->getSubDirectory();
71  $settings['protocol'] = $this->config->getProtocol();
72  $settings['cert'] = $this->config->getCert();
73  $settings['key'] = $this->config->getKey();
74  $settings['dhparam'] = $this->config->getDhparam();
75  $settings['log'] = $this->config->getLog();
76  $settings['log_level'] = $this->config->getLogLevel();
77  $settings['error_log'] = $this->config->getErrorLog();
78  $settings['ilias_proxy'] = (int) $this->config->hasIliasProxy();
79  $settings['ilias_url'] = $this->config->getIliasUrl();
80  $settings['client_proxy'] = (int) $this->config->hasClientProxy();
81  $settings['client_url'] = $this->config->getClientUrl();
82  $settings['deletion_mode'] = (int) $this->config->hasDeletionMode();
83  $settings['deletion_unit'] = $this->config->getDeletionUnit();
84  $settings['deletion_value'] = $this->config->getDeletionValue();
85  $settings['deletion_time'] = $this->config->getDeletionTime();
86 
87  $chat_admin->saveGeneralSettings((object) $settings);
88 
89  if (!defined("CLIENT_DATA_DIR")) {
90  define(
91  "CLIENT_DATA_DIR",
92  $filesystem_config->getDataDir() . "/" . $common_config->getClientId()
93  );
94  }
95 
96  $fileHandler = new ilChatroomConfigFileHandler();
97  $fileHandler->createServerConfigFile($settings);
98 
99  $GLOBALS["DIC"] = $DIC;
100 
101  return $environment;
102  }
103 
107  public function isApplicable(Setup\Environment $environment) : bool
108  {
109  return $this->config->getAddress() != '' && $this->config->getPort() != 0;
110  }
111 }
static _getObjectsByType($a_obj_type="", $a_owner="")
Get objects by type.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilChatroomAdmin.
global $DIC
Definition: goto.php:24
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
Definition: PEAR.php:64
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.
Definition: Environment.php:11