Completed
Pull Request — master (#9)
by Laurens
02:09
created

ImageFileUpload::getUploadRequest()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 7
c 0
b 0
f 0
ccs 3
cts 3
cp 1
rs 9.4285
cc 1
eloc 4
nc 1
nop 0
crap 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace LauLamanApps\IzettleApi\Client\Image;
6
7
use Exception;
8
use LauLamanApps\IzettleApi\Client\Image\Exceptions\FileIsNotAnImageException;
9
use LauLamanApps\IzettleApi\Client\Image\Exceptions\ImageIsToSmallException;
10
use LauLamanApps\IzettleApi\Client\Image\Exceptions\ImageTypeNotAllowedException;
11
use LauLamanApps\IzettleApi\Client\Image\Exceptions\MaximumImageFileSizeExcededException;
12
13
final class ImageFileUpload implements ImageUploadRequestInterface
14
{
15
    const ALLOWED_FILE_TYPES = [
16
        IMAGETYPE_GIF => 'GIF',
17
        IMAGETYPE_JPEG => 'JPEG',
18
        IMAGETYPE_PNG => 'PNG',
19
        IMAGETYPE_BMP => 'BMP',
20
        IMAGETYPE_TIFF_II => 'TIFF',
21
        IMAGETYPE_TIFF_MM => 'TIFF'
22
    ];
23
    const MAX_FILE_SIZE_MB = 5;
24
    const MINIMAL_HEIGHT = 50;
25
    const MINIMAL_WIDTH = 50;
26
27
    private $imageFormat;
28
    private $imageData;
29
30 5
    public function __construct(string $filename)
31
    {
32 5
        $this->validateFile($filename);
33 1
        $this->imageFormat = self::ALLOWED_FILE_TYPES[exif_imagetype($filename)];
34 1
        $this->imageData = file_get_contents($filename);
35 1
    }
36
37 1
    public function getUploadRequest(): array
38
    {
39
        return [
40 1
            'imageFormat' => $this->imageFormat,
41 1
            'imageData' => $this->imageData,
42
        ];
43
    }
44
45 5
    private function validateFile(string $file)
46
    {
47 5
        self::validateFileSize($file);
48 4
        self::validatedImageType($file);
49 2
        self::validateImageSize($file);
50 1
    }
51
52 5
    private static function validateFileSize($file)
53
    {
54 5
        $maxFileSizeBytes = (self::MAX_FILE_SIZE_MB * 1024 * 1024);
55 5
        if (filesize($file) > $maxFileSizeBytes) {
56 1
            throw new MaximumImageFileSizeExcededException(sprintf('Max file size is \'%d Mb\'', self::MAX_FILE_SIZE_MB));
57
        }
58 4
    }
59
60 4
    private static function validatedImageType(string $file)
61
    {
62 4
        $type = false;
63
64
        try {
65 4
            $type = exif_imagetype($file);
66 1
        } catch (Exception $e) {
67
            //-- $type is already false
68
        }
69
70 4
        if ($type === false) {
71 1
            throw new FileIsNotAnImageException();
72
        }
73
74 3
        if (!array_key_exists($type, self::ALLOWED_FILE_TYPES)) {
75 1
            throw new ImageTypeNotAllowedException(
76 1
                sprintf('Allowed: %s', implode(', ', self::ALLOWED_FILE_TYPES))
77
            );
78
        }
79 2
    }
80
81 2
    private static function validateImageSize(string $file)
82
    {
83 2
        list($width, $height) = getimagesize($file);
84
85 2
        if ($width < self::MINIMAL_WIDTH or $height < self::MINIMAL_HEIGHT) {
86 1
            throw new ImageIsToSmallException(
87 1
                sprintf(
88 1
                    'Minimal image dimensions not met. Required: \'%dx%d\' Provided: \'%dx%d\'',
89 1
                    self::MINIMAL_HEIGHT,
90 1
                    self::MINIMAL_WIDTH,
91 1
                    $height,
92 1
                    $width
93
                )
94
            );
95
        }
96 1
    }
97
}
98