ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilLoggingConfigStoredObjective Class Reference
+ Inheritance diagram for ilLoggingConfigStoredObjective:
+ Collaboration diagram for ilLoggingConfigStoredObjective:

Public Member Functions

 __construct (Config $config)
 
 getHash ()
 Get a hash for this objective. More...
 
 getLabel ()
 Get a label that describes this objective. More...
 
 isNotable ()
 Get to know if this is an interesting objective for a human. More...
 
 getPreconditions (Environment $environment)
 Objectives might depend on other objectives. More...
 
 achieve (Environment $environment)
 Objectives can be achieved. More...
 
 isApplicable (Environment $environment)
 

Protected Attributes

Config $config
 

Detailed Description

Definition at line 26 of file class.ilLoggingConfigStoredObjective.php.

Constructor & Destructor Documentation

◆ __construct()

ilLoggingConfigStoredObjective::__construct ( Config  $config)

Definition at line 30 of file class.ilLoggingConfigStoredObjective.php.

References $config.

31  {
32  $this->config = $config;
33  }

Member Function Documentation

◆ achieve()

ilLoggingConfigStoredObjective::achieve ( Environment  $environment)

Objectives can be achieved.

They might add resources to the environment when they have been achieved.

This method needs to be idempotent for a given environment. That means: if this is executed a second time, nothing new should happen. Or the other way round: if the environment already looks like desired, the objective should not take any further actions when this is called.

Exceptions

Implements ILIAS\Setup\Objective.

Definition at line 57 of file class.ilLoggingConfigStoredObjective.php.

References $ini, and ILIAS\Setup\Environment\getResource().

57  : Environment
58  {
59  $ini = $environment->getResource(Environment::RESOURCE_ILIAS_INI);
60 
61  $logPath = '';
62  $logFile = '';
63  if ($this->config->getPathToLogfile()) {
64  $logPath = dirname($this->config->getPathToLogfile());
65  $logFile = basename($this->config->getPathToLogfile());
66  }
67 
68  $ini->setVariable("log", "enabled", $this->config->isEnabled() ? "1" : "0");
69  $ini->setVariable("log", "path", $logPath);
70  $ini->setVariable("log", "file", $logFile);
71  $ini->setVariable(
72  "log",
73  "error_path",
74  $this->config->getErrorlogDir() ?? ''
75  );
76 
77  if (!$ini->write()) {
78  throw new UnachievableException("Could not write ilias.ini.php");
79  }
80 
81  return $environment;
82  }
Signals that some goal won't be achievable by actions of the system ever.
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
An environment holds resources to be used in the setup process.
Definition: Environment.php:27
$ini
Definition: raiseError.php:20
+ Here is the call graph for this function:

◆ getHash()

ilLoggingConfigStoredObjective::getHash ( )

Get a hash for this objective.

The hash of two objectives must be the same, if they are the same objective, with the same config on the same environment, i.e. if the one is achieved the other is achieved as well because they are the same.

Implements ILIAS\Setup\Objective.

Definition at line 35 of file class.ilLoggingConfigStoredObjective.php.

35  : string
36  {
37  return hash("sha256", self::class);
38  }

◆ getLabel()

ilLoggingConfigStoredObjective::getLabel ( )

Get a label that describes this objective.

Implements ILIAS\Setup\Objective.

Definition at line 40 of file class.ilLoggingConfigStoredObjective.php.

40  : string
41  {
42  return "Fill ini with settings for Services/Logging";
43  }

◆ getPreconditions()

ilLoggingConfigStoredObjective::getPreconditions ( Environment  $environment)

Objectives might depend on other objectives.

Exceptions
UnachievableExceptionif the objective is not achievable
Returns
Objective[]

Implements ILIAS\Setup\Objective.

Definition at line 50 of file class.ilLoggingConfigStoredObjective.php.

50  : array
51  {
52  return [
54  ];
55  }

◆ isApplicable()

ilLoggingConfigStoredObjective::isApplicable ( Environment  $environment)

Implements ILIAS\Setup\Objective.

Definition at line 87 of file class.ilLoggingConfigStoredObjective.php.

References $ini, and ILIAS\Setup\Environment\getResource().

87  : bool
88  {
89  $ini = $environment->getResource(Environment::RESOURCE_ILIAS_INI);
90  $enabled = $this->config->isEnabled() ? "1" : "0";
91 
92  $logPath = '';
93  $logFile = '';
94  if ($this->config->getPathToLogfile()) {
95  $logPath = dirname($this->config->getPathToLogfile());
96  $logFile = basename($this->config->getPathToLogfile());
97  }
98 
99  return
100  $ini->readVariable("log", "path") !== $logPath ||
101  $ini->readVariable("log", "file") !== $logFile ||
102  $ini->readVariable("log", "error_path") !== $this->config->getErrorlogDir() ||
103  $ini->readVariable("log", "enabled") !== $enabled
104  ;
105  }
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
$ini
Definition: raiseError.php:20
+ Here is the call graph for this function:

◆ isNotable()

ilLoggingConfigStoredObjective::isNotable ( )

Get to know if this is an interesting objective for a human.

Implements ILIAS\Setup\Objective.

Definition at line 45 of file class.ilLoggingConfigStoredObjective.php.

45  : bool
46  {
47  return false;
48  }

Field Documentation

◆ $config

Config ilLoggingConfigStoredObjective::$config
protected

Definition at line 28 of file class.ilLoggingConfigStoredObjective.php.

Referenced by __construct().


The documentation for this class was generated from the following file: