ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilVirusScannerSetupConfig.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 use ILIAS\Setup;
22 
23 class ilVirusScannerSetupConfig implements Setup\Config
24 {
25  public const VIRUS_SCANNER_NONE = "none";
26  private const VIRUS_SCANNER_SOPHOS = "sophos";
27  private const VIRUS_SCANNER_ANTIVIR = "antivir";
28  private const VIRUS_SCANNER_CLAMAV = "clamav";
29  private const VIRUS_SCANNER_ICAP = "icap";
30 
31  protected string $virus_scanner;
32 
33  protected ?string $path_to_scan = null;
34 
35  protected ?string $path_to_clean = null;
36 
37  protected ?string $icap_host = null;
38 
39  protected ?string $icap_port = null;
40 
41  protected ?string $icap_service_name = null;
42 
43  protected ?string $icap_client_path = null;
44 
45  public function __construct(
46  string $virus_scanner,
47  ?string $path_to_scan,
48  ?string $path_to_clean,
49  ?string $icap_host,
50  ?string $icap_port,
51  ?string $icap_service_name,
52  ?string $icap_client_path
53  ) {
54  $scanners = [
55  self::VIRUS_SCANNER_NONE,
56  self::VIRUS_SCANNER_SOPHOS,
57  self::VIRUS_SCANNER_ANTIVIR,
58  self::VIRUS_SCANNER_CLAMAV,
59  self::VIRUS_SCANNER_ICAP
60  ];
61  if (!in_array($virus_scanner, $scanners)) {
62  throw new InvalidArgumentException(
63  "Unknown virus scanner: '$virus_scanner'"
64  );
65  }
66  if ($virus_scanner === self::VIRUS_SCANNER_ICAP) {
67  $this->icap_host = $this->toLinuxConvention($icap_host);
68  $this->icap_port = $this->toLinuxConvention($icap_port);
69  $this->icap_service_name = $this->toLinuxConvention($icap_service_name);
70  $this->icap_client_path = $this->toLinuxConvention($icap_client_path);
71  } elseif ($virus_scanner !== self::VIRUS_SCANNER_NONE && (!$path_to_scan || !$path_to_clean)) {
72  throw new InvalidArgumentException(
73  "Missing path to scan and/or clean commands for virus scanner."
74  );
75  }
76  $this->virus_scanner = $virus_scanner;
77  $this->path_to_scan = $this->toLinuxConvention($path_to_scan);
78  $this->path_to_clean = $this->toLinuxConvention($path_to_clean);
79  }
80 
81  protected function toLinuxConvention(?string $p): ?string
82  {
83  if (!$p) {
84  return null;
85  }
86  return preg_replace("/\\\\/", "/", $p);
87  }
88 
89  public function getVirusScanner(): string
90  {
91  return $this->virus_scanner;
92  }
93 
94  public function getPathToScan(): ?string
95  {
96  return $this->path_to_scan;
97  }
98 
99  public function getPathToClean(): ?string
100  {
101  return $this->path_to_clean;
102  }
103 
104  public function getIcapHost(): ?string
105  {
106  return $this->icap_host;
107  }
108 
109  public function getIcapPort(): ?string
110  {
111  return $this->icap_port;
112  }
113 
114  public function getIcapServiceName(): ?string
115  {
117  }
118 
119  public function getIcapClientPath(): ?string
120  {
122  }
123 }
__construct(string $virus_scanner, ?string $path_to_scan, ?string $path_to_clean, ?string $icap_host, ?string $icap_port, ?string $icap_service_name, ?string $icap_client_path)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...