ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilHttpSetupAgent.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;
7 use ILIAS\Data;
8 use ILIAS\UI;
9 
10 class ilHttpSetupAgent implements Setup\Agent
11 {
13 
17  protected $refinery;
18 
19  public function __construct(
21  ) {
22  $this->refinery = $refinery;
23  }
24 
28  public function hasConfig() : bool
29  {
30  return true;
31  }
32 
37  {
38  return $this->refinery->custom()->transformation(function ($data) {
39  return new \ilHttpSetupConfig(
40  $data["path"],
41  (isset($data["https_autodetection"]) && $data["https_autodetection"])
42  ? true
43  : false,
44  (isset($data["https_autodetection"]) && $data["https_autodetection"])
45  ? $data["https_autodetection"]["header_name"]
46  : null,
47  (isset($data["https_autodetection"]) && $data["https_autodetection"])
48  ? $data["https_autodetection"]["header_value"]
49  : null,
50  (isset($data["proxy"]) && $data["proxy"])
51  ? true
52  : false,
53  (isset($data["proxy"]) && $data["proxy"])
54  ? $data["proxy"]["host"]
55  : null,
56  (isset($data["proxy"]) && $data["proxy"])
57  ? $data["proxy"]["port"]
58  : null,
59  );
60  });
61  }
62 
66  public function getInstallObjective(Setup\Config $config = null) : Setup\Objective
67  {
68  $http_config_stored = new ilHttpConfigStoredObjective($config);
69 
70  if (!$config->isProxyEnabled()) {
71  return $http_config_stored;
72  }
73 
74  return new Setup\Objective\ObjectiveWithPreconditions(
75  $http_config_stored,
77  );
78  }
79 
83  public function getUpdateObjective(Setup\Config $config = null) : Setup\Objective
84  {
85  if ($config !== null) {
87  }
88  return new Setup\Objective\NullObjective();
89  }
90 
94  public function getBuildArtifactObjective() : Setup\Objective
95  {
96  return new Setup\Objective\NullObjective();
97  }
98 
102  public function getStatusObjective(Setup\Metrics\Storage $storage) : Setup\Objective
103  {
104  return new ilHttpMetricsCollectedObjective($storage);
105  }
106 
110  public function getMigrations() : array
111  {
112  return [];
113  }
114 }
$data
Definition: storeScorm.php:23
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:14
__construct(Refinery\Factory $refinery)
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition: metadata.php:68
getUpdateObjective(Setup\Config $config=null)
Builds data types.
Definition: Factory.php:19
getInstallObjective(Setup\Config $config=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getStatusObjective(Setup\Metrics\Storage $storage)
A transformation is a function from one datatype to another.
A configuration for the setup.
Definition: Config.php:10