ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilWebServicesConfigStoredObjective.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 use ILIAS\Setup;
22 
26 class ilWebServicesConfigStoredObjective implements Setup\Objective
27 {
29 
30  public function __construct(ilWebServicesSetupConfig $config)
31  {
32  $this->config = $config;
33  }
34 
35  public function getHash(): string
36  {
37  return hash("sha256", self::class);
38  }
39 
40  public function getLabel(): string
41  {
42  return "Store information about web services in the settings";
43  }
44 
45  public function isNotable(): bool
46  {
47  return true;
48  }
49 
50  public function getPreconditions(Setup\Environment $environment): array
51  {
52  return [
53  new \ilIniFilesPopulatedObjective(),
54  new \ilSettingsFactoryExistsObjective()
55  ];
56  }
57 
58  public function achieve(Setup\Environment $environment): Setup\Environment
59  {
60  $factory = $environment->getResource(Setup\Environment::RESOURCE_SETTINGS_FACTORY);
61  $settings = $factory->settingsFor("common");
62  $settings->set(
63  "soap_user_administration",
64  $this->bool2string($this->config->isSOAPUserAdministration())
65  );
66  $settings->set("soap_wsdl_path", $this->config->getSOAPWsdlPath());
67  $settings->set("soap_connect_timeout", (string) $this->config->getSOAPConnectTimeout());
68  $settings->set("soap_response_timeout", (string) $this->config->getSoapResponseTimeout());
69  $settings->set("rpc_server_host", $this->config->getRPCServerHost());
70  $settings->set("rpc_server_port", (string) $this->config->getRPCServerPort());
71 
72  $settings->set('soap_internal_wsdl_path', (string) $this->config->getSoapInternalWsdlPath());
73  $settings->set('soap_internal_wsdl_verify_peer', (string) $this->config->getSoapInternalWsdlVerifyPeer());
74  $settings->set('soap_internal_wsdl_verify_peer_name', (string) $this->config->getSoapInternalWsdlVerifyPeerName());
75  $settings->set('soap_internal_wsdl_allow_self_signed', (string) $this->config->getSoapInternalWsdlAllowSelfSigned());
76 
77  return $environment;
78  }
79 
83  public function isApplicable(Setup\Environment $environment): bool
84  {
85  return true;
86  }
87 
88  protected function bool2string(bool $value): string
89  {
90  if ($value) {
91  return "1";
92  }
93  return "0";
94  }
95 }
Store information about https is enabled.
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:27