-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathImageManipulation.php
433 lines (358 loc) · 9.54 KB
/
ImageManipulation.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
<?php
namespace Plank\Mediable;
use Plank\Mediable\Exceptions\MediaUpload\ConfigurationException;
use Plank\Mediable\Helpers\File;
use Spatie\ImageOptimizer\Optimizer;
use Spatie\ImageOptimizer\OptimizerChain;
class ImageManipulation
{
public const FORMAT_BMP = 'bmp';
public const FORMAT_GIF = 'gif';
public const FORMAT_HEIC = 'heic';
public const FORMAT_JPG = 'jpg';
public const FORMAT_PNG = 'png';
public const FORMAT_TIFF = 'tif';
public const FORMAT_WEBP = 'webp';
public const VALID_IMAGE_FORMATS = [
self::FORMAT_BMP,
self::FORMAT_GIF,
self::FORMAT_HEIC,
self::FORMAT_JPG,
self::FORMAT_PNG,
self::FORMAT_TIFF,
];
public const MIME_TYPE_MAP = [
self::FORMAT_BMP => 'image/bmp',
self::FORMAT_GIF => 'image/gif',
self::FORMAT_HEIC => 'image/heic',
self::FORMAT_JPG => 'image/jpeg',
self::FORMAT_PNG => 'image/png',
self::FORMAT_TIFF => 'image/tiff',
self::FORMAT_WEBP => 'image/webp'
];
public const ON_DUPLICATE_INCREMENT = 'increment';
public const ON_DUPLICATE_ERROR = 'error';
/** @var callable */
private $callback;
private ?string $outputFormat = null;
private int $outputQuality = 90;
private ?string $disk = null;
private ?string $directory = null;
private ?string $filename = null;
private ?string $hashFilenameAlgo = null;
private string $onDuplicateBehaviour = self::ON_DUPLICATE_INCREMENT;
/** @var string|null */
private ?string $visibility = null;
/** @var callable|null */
private $beforeSave;
private bool $shouldOptimize;
/** @var array<class-string<Optimizer>,string[]> */
private array $optimizers;
public function __construct(callable $callback)
{
$this->callback = $callback;
$this->shouldOptimize = config('mediable.image_optimization.enabled', true);
$this->setOptimizers(config('mediable.image_optimization.optimizers', []));
}
public static function make(callable $callback): self
{
return new self($callback);
}
/**
* @return callable
*/
public function getCallback(): callable
{
return $this->callback;
}
/**
* @return int
*/
public function getOutputQuality(): int
{
return $this->outputQuality;
}
/**
* @param int $outputQuality
* @return $this
*/
public function setOutputQuality(int $outputQuality): self
{
$this->outputQuality = min(100, max(0, $outputQuality));
return $this;
}
/**
* @return string|null
*/
public function getOutputFormat(): ?string
{
return $this->outputFormat;
}
/**
* @param string|null $outputFormat
* @return $this
*/
public function setOutputFormat(?string $outputFormat): self
{
$this->outputFormat = $outputFormat;
return $this;
}
/**
* @return $this
*/
public function outputJpegFormat(): self
{
$this->setOutputFormat(self::FORMAT_JPG);
return $this;
}
/**
* @return $this
*/
public function outputPngFormat(): self
{
$this->setOutputFormat(self::FORMAT_PNG);
return $this;
}
/**
* @return $this
*/
public function outputGifFormat(): self
{
$this->setOutputFormat(self::FORMAT_GIF);
return $this;
}
/**
* @return $this
*/
public function outputTiffFormat(): self
{
$this->setOutputFormat(self::FORMAT_TIFF);
return $this;
}
/**
* @return $this
*/
public function outputBmpFormat(): self
{
$this->setOutputFormat(self::FORMAT_BMP);
return $this;
}
/**
* @return $this
*/
public function outputWebpFormat(): self
{
$this->setOutputFormat(self::FORMAT_WEBP);
return $this;
}
public function outputHeicFormat(): self
{
$this->setOutputFormat(self::FORMAT_HEIC);
return $this;
}
/**
* @return callable
*/
public function getBeforeSave(): ?callable
{
return $this->beforeSave;
}
/**
* Set the filesystem disk and relative directory where the file will be saved.
*
* @param string $disk
* @param string $directory
*
* @return $this
*/
public function toDestination(string $disk, string $directory): self
{
return $this->toDisk($disk)->toDirectory($directory);
}
/**
* Set the filesystem disk on which the file will be saved.
*
* @param string $disk
*
* @return $this
*/
public function toDisk(string $disk): self
{
if (!array_key_exists($disk, config('filesystems.disks', []))) {
throw ConfigurationException::diskNotFound($disk);
}
$this->disk = $disk;
return $this;
}
/**
* @return string|null
*/
public function getDisk(): ?string
{
return $this->disk;
}
/**
* Set the directory relative to the filesystem disk at which the file will be saved.
* @param string $directory
* @return $this
*/
public function toDirectory(string $directory): self
{
$this->directory = File::sanitizePath($directory);
return $this;
}
/**
* @return string|null
*/
public function getDirectory(): ?string
{
return $this->directory;
}
/**
* Specify the filename to copy to the file to.
* @param string $filename
* @return $this
*/
public function useFilename(string $filename): self
{
$this->filename = File::sanitizeFilename($filename);
$this->hashFilenameAlgo = null;
return $this;
}
/**
* Indicates to the uploader to generate a filename using the file's MD5 hash.
* @return $this
*/
public function useHashForFilename(string $algo = 'md5'): self
{
$this->hashFilenameAlgo = $algo;
$this->filename = null;
return $this;
}
/**
* Restore the default behaviour of using the source file's filename.
* @return $this
*/
public function useOriginalFilename(): self
{
$this->filename = null;
$this->hashFilenameAlgo = null;
return $this;
}
public function getFilename(): ?string
{
return $this->filename;
}
public function isUsingHashForFilename(): bool
{
return $this->hashFilenameAlgo !== null;
}
public function getHashFilenameAlgo(): ?string
{
return $this->hashFilenameAlgo;
}
/**
* @return $this
*/
public function onDuplicateIncrement(): self
{
$this->onDuplicateBehaviour = self::ON_DUPLICATE_INCREMENT;
return $this;
}
/**
* @return $this
*/
public function onDuplicateError(): self
{
$this->onDuplicateBehaviour = self::ON_DUPLICATE_ERROR;
return $this;
}
/**
* @return string
*/
public function getOnDuplicateBehaviour(): string
{
return $this->onDuplicateBehaviour;
}
public function makePrivate(): self
{
$this->visibility = 'private';
return $this;
}
public function makePublic(): self
{
$this->visibility = 'public';
return $this;
}
public function matchOriginalVisibility(): self
{
$this->visibility = 'match';
return $this;
}
public function setVisibility(?string $visibility): self
{
$this->visibility = $visibility;
return $this;
}
public function getVisibility(): ?string
{
return $this->visibility;
}
/**
* @param callable $beforeSave
* @return $this
*/
public function beforeSave(callable $beforeSave): self
{
$this->beforeSave = $beforeSave;
return $this;
}
/**
* Disable image optimization.
* @return $this
*/
public function noOptimization(): self
{
$this->shouldOptimize = false;
return $this;
}
/**
* Enable image optimization.
* @param array<class-string<Optimizer>,string[]> $customOptimizers Override default optimizers.
* The array keys should be the fully qualified class names of the optimizers to use.
* The array values should be arrays of command line arguments to pass to the optimizer.
* DO NOT PASS UNTRUSTED USER INPUT AS COMMAND LINE ARGUMENTS
* @return $this
* @throws ConfigurationException
*/
public function optimize(?array $customOptimizers = null): self
{
if ($customOptimizers !== null) {
$this->setOptimizers($customOptimizers);
}
$this->shouldOptimize = true;
return $this;
}
public function shouldOptimize(): bool
{
return $this->shouldOptimize && !empty($this->optimizers);
}
public function getOptimizerChain(): OptimizerChain
{
$chain = new OptimizerChain();
foreach ($this->optimizers as $optimizerClass => $args) {
$optimizer = new $optimizerClass($args);
$chain->addOptimizer($optimizer);
}
return $chain;
}
private function setOptimizers(array $customOptimizers): void
{
foreach ($customOptimizers as $optimizerClass => $args) {
if (!is_a($optimizerClass, Optimizer::class, true)) {
throw ConfigurationException::invalidOptimizer($optimizerClass);
}
}
$this->optimizers = $customOptimizers;
}
}