-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathHasImageUploads.php
806 lines (706 loc) · 20.1 KB
/
HasImageUploads.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
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
<?php
namespace QCod\ImageUp;
use Exception;
use Illuminate\Contracts\Filesystem\Filesystem;
use Illuminate\Contracts\Validation\Factory;
use Illuminate\Http\UploadedFile;
use Illuminate\Support\Arr;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Str;
use Intervention\Image\Facades\Image;
use QCod\ImageUp\Exceptions\InvalidUploadFieldException;
trait HasImageUploads
{
/**
* Flag to disable auto upload
*
* @var bool
*/
protected $disableAutoUpload = false;
/**
* All the images fields for model
*
* @var string[]
*/
private $imagesFields = [];
/**
* All the file fields for model
*
* @var string[]
*/
private $filesFields = [];
/**
* Image crop coordinates
*
* @var int[]
*/
private $cropCoordinates;
/**
* Upload field name
*
* @var string
*/
private $uploadFieldName;
/**
* Upload field options
*
* @var array
*/
private $uploadFieldOptions;
/**
* Boot up the trait
*/
public static function bootHasImageUploads(): void
{
// hook up the events
static::saved(function ($model) {
// check for autoupload disabled
if (!$model->disableAutoUpload) {
$model->autoUpload();
}
});
// delete event
static::deleted(function ($model) {
$model->autoDeleteImage();
});
}
/**
* Get absolute file url for a field
*
* @param string|null $field
*
* @return mixed|string
* @throws InvalidUploadFieldException
*/
public function fileUrl(?string $field = null): string
{
return $this->imageUrl($field);
}
/**
* Get absolute url for a field
*
* @param string|null $field
*
* @return mixed|string
* @throws InvalidUploadFieldException
*/
public function imageUrl(?string $field = null): string
{
$this->uploadFieldName = $this->getUploadFieldName($field);
$this->uploadFieldOptions = $this->getUploadFieldOptions($this->uploadFieldName);
// get the model attribute value
if (Arr::get($this->uploadFieldOptions, 'update_database', true)) {
$attributeValue = $this->getOriginal($this->uploadFieldName);
} else {
$attributeValue = $this->getFileUploadPath($field);
}
// check for placeholder defined in option
$placeholderImage = Arr::get($this->uploadFieldOptions, 'placeholder');
return (empty($attributeValue) && $placeholderImage)
? $placeholderImage
: $this->getStorageDisk()->url($attributeValue);
}
/**
* Get the upload field name
*
* @param null $field
*
* @return mixed|null
*/
public function getUploadFieldName($field = null)
{
if (!is_null($field)) {
return $field;
}
$imagesFields = $this->getDefinedUploadFields();
$fieldKey = Arr::first(array_keys($imagesFields));
// return first field name
return is_int($fieldKey)
? $imagesFields[$fieldKey]
: $fieldKey;
}
/**
* Get all the image and file fields defined on model
*
* @return array
*/
public function getDefinedUploadFields(): array
{
$fields = static::$imageFields ?? $this->imagesFields;
return array_merge($this->getDefinedFileFields(), $fields);
}
/**
* Get all the file fields defined on model
*
* @return array
*/
public function getDefinedFileFields(): array
{
return static::$fileFields ?? $this->filesFields;
}
/**
* Get upload field options
*
* @param $field
*
* @return array
* @throws InvalidUploadFieldException
*/
public function getUploadFieldOptions($field = null): array
{
// get first option if no field provided
if (is_null($field)) {
$imagesFields = $this->getDefinedUploadFields();
if (!$imagesFields) {
throw new InvalidUploadFieldException(
'No upload fields are defined in $imageFields/$fileFields array on model.'
);
}
$fieldKey = Arr::first(array_keys($imagesFields));
return is_int($fieldKey) ? [] : Arr::first($imagesFields);
}
// check if provided filed defined
if (!$this->hasImageField($field)) {
throw new InvalidUploadFieldException(
'Image/File field `' . $field . '` is not defined in $imageFields/$fileFields array on model.'
);
}
return Arr::get($this->getDefinedUploadFields(), $field, []);
}
/**
* Check if image filed is defined
*
* @param string $field
*
* @return bool
*/
public function hasImageField(string $field): bool
{
return $this->hasUploadField($field, $this->getDefinedUploadFields());
}
/**
* Check is upload field is defined
*
* @param string $field
* @param array $definedField
*
* @return bool
*/
private function hasUploadField(string $field, array $definedField): bool
{
// check for string key
if (Arr::has($definedField, $field)) {
return true;
}
// check for value
$found = false;
foreach ($definedField as $key => $val) {
$found = (is_numeric($key) && $val === $field);
if ($found) {
break;
}
}
return $found;
}
/**
* Get the full path to upload file
*
* @param UploadedFile $file
*
* @return string
*/
protected function getFileUploadPath(UploadedFile $file): string
{
// check if path override is defined for current file
$pathOverrideMethod = Str::camel(strtolower($this->uploadFieldName) . 'UploadFilePath');
if (method_exists($this, $pathOverrideMethod)) {
return $this->getImageUploadPath() . '/' . $this->$pathOverrideMethod($file);
}
return $this->getImageUploadPath() . '/' . $file->hashName();
}
/**
* Get image upload path
*
* @return string
*/
protected function getImageUploadPath(): string
{
// check for disk option
if ($pathInOption = Arr::get($this->uploadFieldOptions, 'path')) {
return $pathInOption;
}
return property_exists($this, 'imagesUploadPath')
? trim($this->imagesUploadPath, '/')
: trim(config('imageup.upload_directory', 'uploads'), '/');
}
/**
* Get storage disk
*
* @return Filesystem
*/
protected function getStorageDisk(): Filesystem
{
return Storage::disk($this->getImageUploadDisk());
}
/**
* Get image upload disk
*
* @return string
*/
protected function getImageUploadDisk(): string
{
// check for disk option
if ($diskInOption = Arr::get($this->uploadFieldOptions, 'disk')) {
return $diskInOption;
}
return property_exists($this, 'imagesUploadDisk')
? $this->imagesUploadDisk
: config('imageup.upload_disk', 'public');
}
/**
* Get html image tag for a field if image present
*
* @param string|null $field
* @param string $attributes
*
* @return string
*/
public function imageTag(?string $field = null, string $attributes = ''): string
{
// if no field found just return empty string
if (!$this->hasImageField($field) || $this->hasFileField($field)) {
return '';
}
try {
return '<img src="' . $this->imageUrl($field) . '" ' . $attributes . ' />';
} catch (Exception $exception) {
}
return '';
}
/**
* Check if file filed is defined
*
* @param string $field
*
* @return bool
*/
public function hasFileField(string $field): bool
{
return $this->hasUploadField($field, $this->getDefinedFileFields());
}
/**
* Upload a file
*
* @param $file
* @param string|null $field
*
* @return $this
* @throws InvalidUploadFieldException
*/
public function uploadFile($file, ?string $field = null): self
{
return $this->uploadImage($file, $field);
}
/**
* Upload and resize image
*
* @param UploadedFile $imageFile
* @param string|null $field
*
* @return $this
* @throws InvalidUploadFieldException|\Exception
*/
public function uploadImage(UploadedFile $imageFile, ?string $field = null): self
{
$this->uploadFieldName = $this->getUploadFieldName($field);
$this->uploadFieldOptions = $this->getUploadFieldOptions($this->uploadFieldName);
// validate it
$this->validateImage($imageFile, $this->uploadFieldName, $this->uploadFieldOptions);
// handle upload
$filePath = $this->hasFileField($this->uploadFieldName)
? $this->handleFileUpload($imageFile)
: $this->handleImageUpload($imageFile);
// hold old file
$currentFile = $this->getOriginal($this->uploadFieldName);
// update the model with field name
$this->updateModel($filePath, $this->uploadFieldName);
// delete old file
if (!empty($currentFile) && $currentFile != $filePath) {
$this->deleteImage($currentFile);
}
return $this;
}
/**
* Validate image file with given rules in option
*
* @param $file
* @param string $fieldName
* @param array $imageOptions
*
* @throws \Illuminate\Validation\ValidationException
*/
protected function validateImage($file, string $fieldName, array $imageOptions): void
{
if ($rules = Arr::get($imageOptions, 'rules')) {
$this->validationFactory()->make(
[$fieldName => $file],
[$fieldName => $rules]
)->validate();
}
}
/**
* Get a validation factory instance.
*
* @return \Illuminate\Contracts\Validation\Factory
*/
protected function validationFactory(): Factory
{
return app(Factory::class);
}
/**
* Process file upload
*
* @param UploadedFile $file
*
* @return string
* @throws \Exception
*/
public function handleFileUpload(UploadedFile $file): string
{
// Trigger before save hook
$this->triggerBeforeSaveHook($file);
$filePath = $this->getFileUploadPath($file);
$this->getStorageDisk()->put($filePath, file_get_contents($file), 'public');
// Trigger after save hook
$this->triggerAfterSaveHook($file);
return $filePath;
}
/**
* Trigger user defined before save hook.
*
* @param $image
*
* @return $this
* @throws \Exception
*/
protected function triggerBeforeSaveHook($image): self
{
if (isset($this->uploadFieldOptions['before_save'])) {
$this->triggerHook($this->uploadFieldOptions['before_save'], $image);
}
return $this;
}
/**
* This will try to trigger the hook depending on the user definition.
*
* @param $hook
* @param $image
*
* @throws \Exception
*/
protected function triggerHook($hook, $image)
{
if (is_callable($hook)) {
$hook($image);
}
// We assume that the user is passing the hook class name
if (is_string($hook)) {
$instance = app($hook);
$instance->handle($image);
}
}
/**
* Trigger user defined after save hook.
*
* @param $image
*
* @return $this
* @throws \Exception
*/
protected function triggerAfterSaveHook($image): self
{
if (isset($this->uploadFieldOptions['after_save'])) {
$this->triggerHook($this->uploadFieldOptions['after_save'], $image);
}
return $this;
}
/**
* Process image upload
*
* @param $imageFile
*
* @return string
* @throws \Exception
*/
protected function handleImageUpload($imageFile): string
{
// resize the image with given option
$image = $this->resizeImage($imageFile, $this->uploadFieldOptions);
// save the uploaded file on disk
return $this->saveImage($imageFile, $image);
}
/**
* Resize image based on options
*
* @param $imageFile
* @param array $imageFieldOptions
*
* @return \Intervention\Image\Image
*/
public function resizeImage($imageFile, array $imageFieldOptions): \Intervention\Image\Image
{
$image = Image::make($imageFile);
// check if resize needed
if (!$this->needResizing($imageFieldOptions)) {
return $image;
}
// resize it according to options
$width = Arr::get($imageFieldOptions, 'width');
$height = Arr::get($imageFieldOptions, 'height');
$cropHeight = empty($height) ? $width : $height;
$crop = $this->getCropOption($imageFieldOptions);
// crop it if option is set to true
if ($crop === true) {
$image->fit($width, $cropHeight, function ($constraint) {
$constraint->upsize();
});
return $image;
}
// crop with x,y coordinate array
if (is_array($crop) && count($crop) == 2) {
[$x, $y] = $crop;
$image->crop($width, $cropHeight, $x, $y);
return $image;
}
// or resize it with given width and height
$image->resize($width, $height, function ($constraint) {
$constraint->aspectRatio();
$constraint->upsize();
});
return $image;
}
/**
* Check if image need resizing from options
*
* @param array $imageFieldOptions
*
* @return bool
*/
protected function needResizing(array $imageFieldOptions): bool
{
return Arr::has($imageFieldOptions, 'width') || Arr::has($imageFieldOptions, 'height');
}
/**
* Get the crop option
*
* @param array $imageFieldOptions
*
* @return array|boolean
*/
protected function getCropOption(array $imageFieldOptions)
{
$crop = Arr::get($imageFieldOptions, 'crop', false);
// check for crop override
if (isset($this->cropCoordinates) && count($this->cropCoordinates) == 2) {
$crop = $this->cropCoordinates;
}
return $crop;
}
/**
* Save the image to disk
*
* @param UploadedFile $imageFile
* @param $image
*
* @return string
* @throws \Exception
*/
protected function saveImage(UploadedFile $imageFile, $image): string
{
// Trigger before save hook
$this->triggerBeforeSaveHook($image);
$imageQuality = Arr::get(
$this->uploadFieldOptions,
'resize_image_quality',
config('imageup.resize_image_quality')
);
$imagePath = $this->getFileUploadPath($imageFile);
$this->getStorageDisk()->put(
$imagePath,
(string) $image->encode(null, $imageQuality),
'public'
);
// Trigger after save hook
$this->triggerAfterSaveHook($image);
// clean up
$image->destroy();
return $imagePath;
}
/**
* update the model field
*
* @param string $imagePath
* @param string $imageFieldName
*/
protected function updateModel(string $imagePath, string $imageFieldName): void
{
// check if update_database = false (default: true)
$imagesFields = $this->getDefinedUploadFields();
$actualField = Arr::get($imagesFields, $imageFieldName);
$updateAuthorized = Arr::get($actualField, 'update_database', true);
// update model (if update_database=true or not set)
if ($updateAuthorized) {
$this->attributes[$imageFieldName] = $imagePath;
$dispatcher = $this->getEventDispatcher();
self::unsetEventDispatcher();
$this->save();
self::setEventDispatcher($dispatcher);
}
}
/**
* Delete an Image
*
* @param string $filePath
*/
public function deleteImage(string $filePath): void
{
$this->deleteUploadedFile($filePath);
}
/**
* Delete a file from disk
*
* @param string $filePath
*/
private function deleteUploadedFile(string $filePath): void
{
if ($this->getStorageDisk()->exists($filePath)) {
$this->getStorageDisk()->delete($filePath);
}
}
/**
* Override Crop X and Y coordinates
*
* @param int $x
* @param int $y
*
* @return $this
*/
public function cropTo(int $x, int $y): self
{
$this->cropCoordinates = [$x, $y];
return $this;
}
/**
* Setter for model image fields
*
* @param array $fieldsOptions
*
* @return $this
*/
public function setImagesField(array $fieldsOptions): self
{
if (isset(static::$imageFields)) {
static::$imageFields = array_merge($this->getDefinedUploadFields(), $fieldsOptions);
} else {
$this->imagesFields = $fieldsOptions;
}
return $this;
}
/**
* Setter for model file fields
*
* @param array $fieldsOptions
*
* @return $this
*/
public function setFilesField(array $fieldsOptions): self
{
if (isset(static::$fileFields)) {
static::$fileFields = array_merge($this->getDefinedUploadFields(), $fieldsOptions);
} else {
$this->filesFields = $fieldsOptions;
}
return $this;
}
/**
* Delete a file
*
* @param string $filePath
*/
public function deleteFile(string $filePath): void
{
$this->deleteUploadedFile($filePath);
}
/**
* Disable auto upload
*
* @return $this
*/
public function disableAutoUpload(): self
{
$this->disableAutoUpload = true;
return $this;
}
/**
* Enable auto upload
*
* @return $this
*/
public function enableAutoUpload(): self
{
$this->disableAutoUpload = false;
return $this;
}
/**
* Auto image upload handler
*
* @throws InvalidUploadFieldException
* @throws \Exception
*/
protected function autoUpload(): void
{
foreach ($this->getDefinedUploadFields() as $key => $val) {
$field = is_int($key) ? $val : $key;
$options = Arr::wrap($val);
// check if global upload is allowed, then in override in option
$autoUploadAllowed = Arr::get($options, 'auto_upload', $this->canAutoUploadImages());
if (!$autoUploadAllowed) {
continue;
}
// get the input file name
$requestFileName = Arr::get($options, 'file_input', $field);
// if request has the file upload it
if (request()->hasFile($requestFileName)) {
$this->uploadImage(
request()->file($requestFileName),
$field
);
}
}
}
/**
* Check if auto upload is allowed
*
* @return bool
*/
protected function canAutoUploadImages(): bool
{
return property_exists($this, 'autoUploadImages')
? $this->autoUploadImages
: config('imageup.auto_upload_images', false);
}
/**
* Auto delete image handler
*/
protected function autoDeleteImage(): void
{
if (config('imageup.auto_delete_images')) {
foreach ($this->getDefinedUploadFields() as $field => $options) {
$field = is_numeric($field) ? $options : $field;
if (!is_null($this->getOriginal($field))) {
$this->deleteImage($this->getOriginal($field));
}
}
}
}
}