ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
BlacklistFileHeaderPreProcessor.php
Go to the documentation of this file.
1
<?php
2
19
namespace
ILIAS\FileUpload\Processor
;
20
21
use
ILIAS\Filesystem\Stream\FileStream
;
22
use
ILIAS\FileUpload\DTO\Metadata
;
23
use
ILIAS\FileUpload\DTO\ProcessingStatus
;
24
use
ILIAS\FileUpload\ScalarTypeCheckAware
;
25
35
final
class
BlacklistFileHeaderPreProcessor
implements
PreProcessor
36
{
37
use
ScalarTypeCheckAware
;
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
}
ILIAS\MetaData\Repository\Validation\Processor\PreProcessor
Class PreProcessor.
Definition:
PreProcessor.php:37
ILIAS\FileUpload\DTO\ProcessingStatus\REJECTED
const REJECTED
Definition:
ProcessingStatus.php:45
ILIAS\MetaData\Repository\Validation\Processor\BlacklistFileHeaderPreProcessor\__construct
__construct(string $fileHeader)
BlacklistFileHeaderPreProcessor constructor.
Definition:
BlacklistFileHeaderPreProcessor.php:46
ILIAS\MetaData\Repository\Validation\Processor\BlacklistFileHeaderPreProcessor\$fileHeader
string $fileHeader
Definition:
BlacklistFileHeaderPreProcessor.php:39
ILIAS\MetaData\Repository\Validation\Processor\BlacklistFileHeaderPreProcessor
Class BlacklistFileHeaderPreProcessor.
Definition:
BlacklistFileHeaderPreProcessor.php:35
ProcessingStatus
ScalarTypeCheckAware
ILIAS\FileUpload\Processor
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
AbstractRecursiveZipPreProcessor.php:19
ILIAS\MetaData\Repository\Validation\Processor\BlacklistFileHeaderPreProcessor\$fileHeaderLength
int $fileHeaderLength
Definition:
BlacklistFileHeaderPreProcessor.php:40
ILIAS\MetaData\Repository\Validation\Processor\BlacklistFileHeaderPreProcessor\process
process(FileStream $stream, Metadata $metadata)
Definition:
BlacklistFileHeaderPreProcessor.php:58
ILIAS\FileUpload\DTO\Metadata
ScalarTypeCheckAware
FileStream
ServicesInterface
ILIAS\FileUpload\DTO\ProcessingStatus\OK
const OK
Definition:
ProcessingStatus.php:40
components
ILIAS
FileUpload
src
Processor
BlacklistFileHeaderPreProcessor.php
Generated on Thu Apr 3 2025 23:02:57 for ILIAS by
1.8.13 (using
Doxyfile
)