-
Notifications
You must be signed in to change notification settings - Fork 9.3k
/
AbstractAdapter.php
775 lines (685 loc) · 17.7 KB
/
AbstractAdapter.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\Image\Adapter;
use Magento\Framework\App\Filesystem\DirectoryList;
/**
* Image abstract adapter
*
* phpcs:disable Magento2.Classes.AbstractApi
* @api
* @SuppressWarnings(PHPMD.TooManyFields)
*/
abstract class AbstractAdapter implements AdapterInterface
{
/**
* Background color
* @var int|string
*/
public $imageBackgroundColor = 0;
/**#@+
* Position constants.
* Used mainly for watermarks
*/
public const POSITION_TOP_LEFT = 'top-left';
public const POSITION_TOP_RIGHT = 'top-right';
public const POSITION_BOTTOM_LEFT = 'bottom-left';
public const POSITION_BOTTOM_RIGHT = 'bottom-right';
public const POSITION_STRETCH = 'stretch';
public const POSITION_TILE = 'tile';
public const POSITION_CENTER = 'center';
/**#@-*/
/**
* The size of the font to use as default
*/
public const DEFAULT_FONT_SIZE = 15;
/**
* @var int
*/
protected $_fileType;
/**
* @var string
*/
protected $_fileName;
/**
* @var string
*/
protected $_fileMimeType;
/**
* @var string
*/
protected $_fileSrcName;
/**
* @var string
*/
protected $_fileSrcPath;
/**
* @var resource
*/
protected $_imageHandler;
/**
* @var int
*/
protected $_imageSrcWidth;
/**
* @var int
*/
protected $_imageSrcHeight;
/**
* @var array
*/
protected $_requiredExtensions;
/**
* @var string
*/
protected $_watermarkPosition;
/**
* @var int
*/
protected $_watermarkWidth;
/**
* @var int
*/
protected $_watermarkHeight;
/**
* @var int
*/
protected $_watermarkImageOpacity;
/**
* @var int
*/
protected $_quality;
/**
* @var int
*/
protected $_fontSize = self::DEFAULT_FONT_SIZE;
/**
* @var bool
*/
protected $_keepAspectRatio;
/**
* @var bool
*/
protected $_keepFrame;
/**
* @var bool
*/
protected $_keepTransparency;
/**
* @var array
*/
protected $_backgroundColor;
/**
* @var bool
*/
protected $_constrainOnly;
/**
* Filesystem instance
*
* @var \Magento\Framework\Filesystem
*/
protected $_filesystem;
/**
* @var \Magento\Framework\Filesystem\Directory\Write
*/
protected $directoryWrite;
/**
* @var \Psr\Log\LoggerInterface
*/
protected $logger;
/**
* Open image for processing
*
* @param string $fileName
* @return void
*/
abstract public function open($fileName);
/**
* Save image to specific path.
*
* If some folders of the path do not exist they will be created.
*
* @param null|string $destination
* @param null|string $newName
* @return void
* @throws \Exception If destination path is not writable
*/
abstract public function save($destination = null, $newName = null);
/**
* Render image and return its binary contents
*
* @return string
*/
abstract public function getImage();
/**
* Change the image size
*
* @param null|int $width
* @param null|int $height
* @return void
*/
abstract public function resize($width = null, $height = null);
/**
* Rotate image on specific angle
*
* @param int $angle
* @return void
*/
abstract public function rotate($angle);
/**
* Crop image
*
* @param int $top
* @param int $left
* @param int $right
* @param int $bottom
* @return bool
*/
abstract public function crop($top = 0, $left = 0, $right = 0, $bottom = 0);
/**
* Add watermark to image
*
* @param string $imagePath
* @param int $positionX
* @param int $positionY
* @param int $opacity
* @param bool $tile
* @return void
*/
abstract public function watermark($imagePath, $positionX = 0, $positionY = 0, $opacity = 30, $tile = false);
/**
* Checks required dependencies
*
* @return void
* @throws \Exception If some of dependencies are missing
*/
abstract public function checkDependencies();
/**
* Create Image from string
*
* @param string $text
* @param string $font Path to font file
* @return AbstractAdapter
*/
abstract public function createPngFromString($text, $font = '');
/**
* Reassign image dimensions
*
* @return void
*/
abstract public function refreshImageDimensions();
/**
* Returns rgba array of the specified pixel
*
* @param int $x
* @param int $y
* @return array
*/
abstract public function getColorAt($x, $y);
/**
* Initialize default values
*
* @param \Magento\Framework\Filesystem $filesystem
* @param \Psr\Log\LoggerInterface $logger
* @param array $data
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function __construct(
\Magento\Framework\Filesystem $filesystem,
\Psr\Log\LoggerInterface $logger,
array $data = []
) {
$this->_filesystem = $filesystem;
$this->logger = $logger;
$this->directoryWrite = $this->_filesystem->getDirectoryWrite(DirectoryList::ROOT);
}
/**
* Assign image width, height, fileMimeType to object properties
*
* @return string|null
*/
public function getMimeType()
{
if ($this->_fileMimeType) {
return $this->_fileMimeType;
} else {
$this->_fileMimeType = image_type_to_mime_type((int) $this->getImageType());
return $this->_fileMimeType;
}
}
/**
* Assign image width, height, fileType to object properties using getimagesize function
*
* @return int|null
*/
public function getImageType()
{
if ($this->_fileType) {
return $this->_fileType;
} else {
if ($this->_canProcess()) {
list($this->_imageSrcWidth, $this->_imageSrcHeight, $this->_fileType) = getimagesize($this->_fileName);
return $this->_fileType;
}
}
return null;
}
/**
* Retrieve Original Image Width
*
* @return int|null
*/
public function getOriginalWidth()
{
$this->getImageType();
return $this->_imageSrcWidth;
}
/**
* Retrieve Original Image Height
*
* @return int|null
*/
public function getOriginalHeight()
{
$this->getImageType();
return $this->_imageSrcHeight;
}
/**
* Set watermark position
*
* @param string $position
* @return $this
*/
public function setWatermarkPosition($position)
{
$this->_watermarkPosition = $position;
return $this;
}
/**
* Get watermark position
*
* @return string
*/
public function getWatermarkPosition()
{
return $this->_watermarkPosition;
}
/**
* Set watermark opacity
*
* @param int $imageOpacity
* @return $this
*/
public function setWatermarkImageOpacity($imageOpacity)
{
$this->_watermarkImageOpacity = $imageOpacity;
return $this;
}
/**
* Get watermark opacity
*
* @return int
*/
public function getWatermarkImageOpacity()
{
return $this->_watermarkImageOpacity;
}
/**
* Set watermark width
*
* @param int $width
* @return $this
*/
public function setWatermarkWidth($width)
{
$this->_watermarkWidth = $width;
return $this;
}
/**
* Get watermark width
*
* @return int
*/
public function getWatermarkWidth()
{
return $this->_watermarkWidth;
}
/**
* Set watermark height
*
* @param int $height
* @return $this
*/
public function setWatermarkHeight($height)
{
$this->_watermarkHeight = $height;
return $this;
}
/**
* Return watermark height
*
* @return int
*/
public function getWatermarkHeight()
{
return $this->_watermarkHeight;
}
/**
* Get/set keepAspectRatio
*
* @param bool $value
* @return bool|\Magento\Framework\Image\Adapter\AbstractAdapter
*/
public function keepAspectRatio($value = null)
{
if (null !== $value) {
$this->_keepAspectRatio = (bool)$value;
}
return $this->_keepAspectRatio;
}
/**
* Get/set keepFrame
*
* @param bool $value
* @return bool
*/
public function keepFrame($value = null)
{
if (null !== $value) {
$this->_keepFrame = (bool)$value;
}
return $this->_keepFrame;
}
/**
* Get/set keepTransparency
*
* @param bool $value
* @return bool
*/
public function keepTransparency($value = null)
{
if (null !== $value) {
$this->_keepTransparency = (bool)$value;
}
return $this->_keepTransparency;
}
/**
* Get/set constrainOnly
*
* @param bool $value
* @return bool
*/
public function constrainOnly($value = null)
{
if (null !== $value) {
$this->_constrainOnly = (bool)$value;
}
return $this->_constrainOnly;
}
/**
* Get/set quality, values in percentage from 0 to 100
*
* @param int $value
* @return int
*/
public function quality($value = null)
{
if (null !== $value) {
$this->_quality = (int)$value;
}
return $this->_quality;
}
/**
* Get/set keepBackgroundColor
*
* @param null|array $value
* @return array|void
*/
public function backgroundColor($value = null)
{
if (null !== $value) {
if (!is_array($value) || 3 !== count($value)) {
return;
}
foreach ($value as $color) {
if (!is_integer($color) || $color < 0 || $color > 255) {
return;
}
}
}
$this->_backgroundColor = $value;
return $this->_backgroundColor;
}
/**
* Assign file dirname and basename to object properties
*
* @return void
*/
protected function _getFileAttributes()
{
$pathinfo = pathinfo((string) $this->_fileName);
$this->_fileSrcPath = $pathinfo['dirname'];
$this->_fileSrcName = $pathinfo['basename'];
}
/**
* Adapt resize values based on image configuration
*
* @param int $frameWidth
* @param int $frameHeight
* @return array
* @throws \Exception
*/
protected function _adaptResizeValues($frameWidth, $frameHeight)
{
$this->_checkDimensions($frameWidth, $frameHeight);
// calculate lacking dimension
if (!$this->_keepFrame && $this->_checkSrcDimensions()) {
if (null === $frameWidth) {
$frameWidth = round($frameHeight * ($this->_imageSrcWidth / $this->_imageSrcHeight));
} elseif (null === $frameHeight) {
$frameHeight = round($frameWidth * ($this->_imageSrcHeight / $this->_imageSrcWidth));
}
} else {
if (null === $frameWidth) {
$frameWidth = $frameHeight;
} elseif (null === $frameHeight) {
$frameHeight = $frameWidth;
}
}
// define coordinates of image inside new frame
$srcX = 0;
$srcY = 0;
list($dstWidth, $dstHeight) = $this->_checkAspectRatio($frameWidth, $frameHeight);
// define position in center
// TODO: add positions option
$dstY = round(($frameHeight - $dstHeight) / 2);
$dstX = round(($frameWidth - $dstWidth) / 2);
// get rid of frame (fallback to zero position coordinates)
if (!$this->_keepFrame) {
$frameWidth = $dstWidth;
$frameHeight = $dstHeight;
$dstY = 0;
$dstX = 0;
}
return [
'src' => ['x' => $srcX, 'y' => $srcY],
'dst' => ['x' => $dstX, 'y' => $dstY, 'width' => $dstWidth, 'height' => $dstHeight],
// size for new image
'frame' => ['width' => $frameWidth, 'height' => $frameHeight]
];
}
/**
* Check aspect ratio
*
* @param int $frameWidth
* @param int $frameHeight
* @return int[]
*/
protected function _checkAspectRatio($frameWidth, $frameHeight)
{
$dstWidth = $frameWidth;
$dstHeight = $frameHeight;
if ($this->_keepAspectRatio && $this->_checkSrcDimensions()) {
// do not make picture bigger, than it is, if required
if ($this->_constrainOnly) {
if ($frameWidth >= $this->_imageSrcWidth && $frameHeight >= $this->_imageSrcHeight) {
$dstWidth = $this->_imageSrcWidth;
$dstHeight = $this->_imageSrcHeight;
}
}
// keep aspect ratio
if ($this->_imageSrcWidth / $this->_imageSrcHeight >= $frameWidth / $frameHeight) {
$dstHeight = max(
1,
round($dstWidth / $this->_imageSrcWidth * $this->_imageSrcHeight)
);
} else {
$dstWidth = round($dstHeight / $this->_imageSrcHeight * $this->_imageSrcWidth);
}
}
return [$dstWidth, $dstHeight];
}
/**
* Check Frame dimensions and throw exception if they are not valid
*
* @param int $frameWidth
* @param int $frameHeight
* @return void
* @throws \Exception
*/
protected function _checkDimensions($frameWidth, $frameHeight)
{
if ($frameWidth !== null && $frameWidth <= 0 ||
$frameHeight !== null && $frameHeight <= 0 ||
($frameWidth === null && $frameHeight === null)
) {
//phpcs:ignore Magento2.Exceptions.DirectThrow
throw new \InvalidArgumentException('Invalid image dimensions.');
}
}
/**
* Return false if source width or height is empty
*
* @return bool
*/
protected function _checkSrcDimensions()
{
return !empty($this->_imageSrcWidth) && !empty($this->_imageSrcHeight);
}
/**
* Return information about image using getimagesize function
*
* @param string $filePath
* @return array
*/
protected function _getImageOptions($filePath)
{
return getimagesize($filePath);
}
/**
* Return supported image formats
*
* @return string[]
*/
public function getSupportedFormats()
{
return ['gif', 'jpeg', 'jpg', 'png'];
}
/**
* Create destination folder if not exists and return full file path
*
* @param string $destination
* @param string $newName
* @return string
* @throws \Exception
*/
protected function _prepareDestination($destination = null, $newName = null)
{
if (empty($destination)) {
$destination = $this->_fileSrcPath;
} elseif (empty($newName)) {
$info = pathinfo((string) $destination);
$newName = $info['basename'];
$destination = $info['dirname'];
}
if (empty($newName)) {
$newFileName = $this->_fileSrcName;
} else {
$newFileName = $newName;
}
$fileName = $destination . '/' . $newFileName;
if (!is_writable($destination)) {
try {
$this->directoryWrite->create($this->directoryWrite->getRelativePath($destination));
} catch (\Magento\Framework\Exception\FileSystemException $e) {
$this->logger->critical($e);
//phpcs:ignore Magento2.Exceptions.DirectThrow
throw new \DomainException(
'Unable to write file into directory ' . $destination . '. Access forbidden.'
);
}
}
return $fileName;
}
/**
* Checks is adapter can work with image
*
* @return bool
*/
protected function _canProcess()
{
return !empty($this->_fileName) && filesize($this->_fileName) > 0;
}
/**
* Check - is this file an image
*
* @param string $filePath
* @return bool
* @throws \InvalidArgumentException
* @throws \DomainException
* @throws \BadFunctionCallException
* @throws \RuntimeException
* @throws \OverflowException
*/
public function validateUploadFile($filePath)
{
if (!file_exists($filePath)) {
throw new \InvalidArgumentException('Upload file does not exist.');
}
if (filesize($filePath) === 0) {
throw new \InvalidArgumentException('Wrong file size.');
}
try {
$imageSize = getimagesize($filePath);
} catch (\Exception $e) {
$imageSize = false;
}
if (!$imageSize) {
throw new \InvalidArgumentException('Disallowed file type.');
}
$this->checkDependencies();
$this->open($filePath);
return $this->getImageType() !== null;
}
/**
* Get file source path
*
* @return string
*/
public function getFileSrcPath(): string
{
return $this->_fileSrcPath ?? '';
}
/**
* Get file source name
*
* @return string
*/
public function getFileSrcName(): string
{
return $this->_fileSrcName ?? '';
}
}