-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathExtension.php
51 lines (39 loc) · 1.16 KB
/
Extension.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
declare(strict_types=1);
namespace Palmtree\Form\Constraint\File;
use Palmtree\Form\Constraint\AbstractConstraint;
use Palmtree\Form\Constraint\ConstraintInterface;
use Palmtree\Form\UploadedFile;
class Extension extends AbstractConstraint implements ConstraintInterface
{
/** @var array<int, string> */
private array $extensions = [];
public function validate(mixed $input): bool
{
return $this->doValidate($input);
}
private function doValidate(UploadedFile $input): bool
{
$extension = pathinfo($input->getName(), \PATHINFO_EXTENSION);
if (!\in_array($extension, $this->extensions, true)) {
$this->setErrorMessage('Only the following file extensions are allowed: ' . implode(', ', $this->extensions));
return false;
}
return true;
}
/**
* @param array<int, string> $extensions
*/
public function setExtensions(array $extensions): self
{
$this->extensions = $extensions;
return $this;
}
/**
* @return array<int, string>
*/
public function getExtensions(): array
{
return $this->extensions;
}
}