ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
BlacklistFileHeaderPreProcessor.php
Go to the documentation of this file.
1 <?php
2 
20 
25 
36 {
38 
39  private string $fileHeader;
40  private int $fileHeaderLength;
41 
42 
46  public function __construct(string $fileHeader)
47  {
48  $this->stringTypeCheck($fileHeader, 'fileHeader');
49 
50  $this->fileHeaderLength = strlen($fileHeader);
51  $this->fileHeader = $fileHeader;
52  }
53 
54 
58  public function process(FileStream $stream, Metadata $metadata): ProcessingStatus
59  {
60  $header = $stream->read($this->fileHeaderLength);
61  if (strcmp($this->fileHeader, $header) !== 0) {
62  return new ProcessingStatus(ProcessingStatus::OK, 'File header does not match blacklist.');
63  }
64 
65  return new ProcessingStatus(ProcessingStatus::REJECTED, 'File header matches blacklist.');
66  }
67 }
__construct(string $fileHeader)
BlacklistFileHeaderPreProcessor constructor.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...