ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilVirusScannerMetricsCollectedObjective.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 2020 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4 
5 use ILIAS\Setup;
6 
7 class ilVirusScannerMetricsCollectedObjective extends Setup\Metrics\CollectedObjective
8 {
9  public function getTentativePreconditions(Setup\Environment $environment) : array
10  {
11  return [
13  ];
14  }
15 
16  public function collectFrom(Setup\Environment $environment, Setup\Metrics\Storage $storage) : void
17  {
18  $ini = $environment->getResource(Setup\Environment::RESOURCE_ILIAS_INI);
19  if (!$ini) {
20  return;
21  }
22 
23  $virus_scanner = $ini->readVariable("tools", "vscantype");
24  $storage->storeConfigText(
25  "virusscanner",
26  $virus_scanner,
27  "The engine that is used for virus scanning."
28  );
29 
30  if ($virus_scanner === ilVirusScannerSetupConfig::VIRUS_SCANNER_ICAP) {
31  $storage->storeConfigText(
32  "icap_client_path",
33  $ini->readVariable("tools", "icap_client_path"),
34  "The configured ICAP client path."
35  );
36  $storage->storeConfigText(
37  "icap_host",
38  $ini->readVariable("tools", "icap_host"),
39  "The configured ICAP host."
40  );
41  $storage->storeConfigText(
42  "icap_port",
43  $ini->readVariable("tools", "icap_port"),
44  "The configured ICAP port."
45  );
46  $storage->storeConfigText(
47  "icap_service_name",
48  $ini->readVariable("tools", "icap_service_name"),
49  "The configured ICAP service name."
50  );
51  } elseif (is_string($virus_scanner) &&
52  $virus_scanner !== '' &&
54  $storage->storeConfigText(
55  "path_to_scan",
56  $ini->readVariable("tools", "scancommand"),
57  "The path to the binary that is used for virus scanning."
58  );
59  $storage->storeConfigText(
60  "path_to_clean",
61  $ini->readVariable("tools", "cleancommand"),
62  "The path to the binary that is used for cleaning up after virus scanning."
63  );
64  }
65  }
66 }
collectFrom(Setup\Environment $environment, Setup\Metrics\Storage $storage)
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
$ini
Definition: raiseError.php:4