19 declare(strict_types=1);
53 public function __construct(
string $scan_command,
string $clean_command)
56 $error = $DIC[
'ilErr'];
57 $lng = $DIC->language();
58 $log = $DIC->logger()->root();
63 $this->scanCommand = $scan_command;
64 $this->cleanCommand = $clean_command;
66 $this->type =
"simulate";
67 $this->scanZipFiles =
false;
76 public static function virusHandling(
string $a_file,
string $a_orig_name =
'',
bool $a_clean =
true): array
80 $lng = $DIC->language();
82 if ((defined(
'IL_VIRUS_SCANNER') && IL_VIRUS_SCANNER !==
'None') || (defined(
84 ) && IL_ICAP_HOST !==
'')) {
86 if (($vs_txt = $vs->scanFile($a_file, $a_orig_name)) !==
'') {
87 if ($a_clean && defined(
'IL_VIRUS_CLEAN_COMMAND') && IL_VIRUS_CLEAN_COMMAND !==
'') {
88 $clean_txt = $vs->cleanFile($a_file, $a_orig_name);
89 if ($vs->fileCleaned()) {
90 $vs_txt .=
'<br />' . $lng->
txt(
'cleaned_file') .
'<br />' . $clean_txt;
91 $vs_txt .=
'<br />' . $lng->
txt(
'repeat_scan');
92 if (($vs2_txt = $vs->scanFile($a_file, $a_orig_name)) !==
'') {
95 nl2br($vs_txt) .
'<br />' . $lng->
txt(
'repeat_scan_failed') .
'<br />' . nl2br($vs2_txt)
99 return [
true, nl2br($vs_txt) .
'<br />' . $lng->
txt(
'repeat_scan_succeded')];
102 return [
false, nl2br($vs_txt) .
'<br />' . $lng->
txt(
'cleaning_failed')];
105 return [
false, nl2br($vs_txt)];
120 $infection = $this->
scanFile($bufferFile);
122 return $infection !==
'';
128 file_put_contents($bufferFile, $buffer);
132 public function scanFile(
string $file_path,
string $org_name =
""): string
134 $this->scanFilePath = $file_path;
135 $this->scanFileOrigName = $org_name;
137 if ($org_name ===
"infected.txt" || $org_name ===
"cleanable.txt") {
138 $this->scanFileIsInfected =
true;
140 "FILE INFECTED: [" . $file_path .
"] (VIRUS: simulated)";
145 $this->scanFileIsInfected =
false;
146 $this->scanResult =
"";
152 $mess =
"Virus Scanner (" . $this->type .
")";
153 if ($this->scanFileOrigName) {
154 $mess .=
" (File " . $this->scanFileOrigName .
")";
156 $mess .=
": " . preg_replace(
'/[\r\n]+/',
"; ", $this->scanResult);
158 $this->log->write($mess);
166 public function cleanFile(
string $file_path,
string $org_name =
""): string
168 $this->cleanFilePath = $file_path;
169 $this->cleanFileOrigName = $org_name;
171 if ($org_name ===
"cleanable.txt") {
172 $this->cleanFileIsCleaned =
true;
174 "FILE CLEANED: [" . $file_path .
"] (VIRUS: simulated)";
179 $this->cleanFileIsCleaned =
false;
181 "FILE NOT CLEANED: [" . $file_path .
"] (VIRUS: simulated)";
188 $mess =
"Virus Cleaner (" . $this->type .
")";
189 if ($this->cleanFileOrigName) {
190 $mess .=
" (File " . $this->cleanFileOrigName .
")";
192 $mess .=
": " . preg_replace(
'/[\r\n]+/',
"; ", $this->cleanResult);
194 $this->log->write($mess);
214 if ($this->scanFileIsInfected) {
220 if ($this->scanResult) {
221 $ret .=
" " . $this->
lng->txt(
"virus_scan_message")
225 $this->scanFileOrigName,
226 nl2br($this->scanResult)
234 if ($this->cleanFileIsCleaned) {
240 if ($this->cleanResult) {
241 $ret .=
" " . $this->
lng->txt(
"virus_clean_message")
244 $this->cleanFilePath,
245 $this->cleanFileOrigName,
246 nl2br($this->cleanResult)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
static virusHandling(string $a_file, string $a_orig_name='', bool $a_clean=true)
removeBufferFile(string $bufferFile)
__construct(string $scan_command, string $clean_command)
scanBuffer(string $buffer)
scanFileFromBuffer(string $buffer)
scanFile(string $file_path, string $org_name="")
cleanFile(string $file_path, string $org_name="")
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
createBufferFile(string $buffer)
Error Handling & global info handling uses PEAR error class.
string $cleanFileOrigName