19 declare(strict_types=1);
29 return hash(
"sha256", self::class);
34 return "Fill ini with settings for Services/Database";
55 $client_ini = $environment->
getResource(Environment::RESOURCE_CLIENT_INI);
57 $type = $this->config->getType();
59 if ($type ===
'postgres' || $type ===
'pdo-postgre') {
63 $client_ini->setVariable(
"db",
"type", $type);
64 $client_ini->setVariable(
"db",
"host", $this->config->getHost());
65 $client_ini->setVariable(
"db",
"name", $this->config->getDatabase());
66 $client_ini->setVariable(
"db",
"user", $this->config->getUser());
67 $client_ini->setVariable(
"db",
"port", (
string) ($this->config->getPort() ??
""));
68 $pw = $this->config->getPassword();
69 $client_ini->setVariable(
"db",
"pass", $pw !==
null ? $pw->toString() :
"");
71 if (!$client_ini->write()) {
80 $client_ini = $environment->
getResource(Environment::RESOURCE_CLIENT_INI);
82 $port = $this->config->getPort() ??
"";
83 $pass = $this->config->getPassword() !==
null ? $this->config->getPassword()->toString() :
"";
84 if ($client_ini->readVariable(
"db",
"type") !== $this->config->getType()) {
87 if ($client_ini->readVariable(
"db",
"host") !== $this->config->getHost()) {
90 if ($client_ini->readVariable(
"db",
"name") !== $this->config->getDatabase()) {
93 if ($client_ini->readVariable(
"db",
"user") !== $this->config->getUser()) {
96 if ($client_ini->readVariable(
"db",
"port") !== $port) {
99 return $client_ini->readVariable(
"dv",
"pass") !== $pass;
Signals that the setup is not executable at all.
getPreconditions(Environment $environment)
getHash()
Get a hash for this objective.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
isApplicable(Environment $environment)
Get to know whether the objective is applicable.
Signals that some goal won't be achievable by actions of the system ever.
achieve(Environment $environment)
Objectives can be achieved.
getLabel()
Get a label that describes this objective.
isNotable()
Get to know if this is an interesting objective for a human.
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.