2018-05-23 00:08:49 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Jobs\ImageOptimizePipeline;
|
|
|
|
|
2019-01-12 08:07:08 +00:00
|
|
|
use Storage;
|
2018-08-28 03:07:36 +00:00
|
|
|
use App\Media;
|
2018-05-23 00:08:49 +00:00
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
2018-08-28 03:07:36 +00:00
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
use ImageOptimizer;
|
2019-01-12 08:07:08 +00:00
|
|
|
use Illuminate\Http\File;
|
2021-01-18 04:59:34 +00:00
|
|
|
use App\Services\MediaPathService;
|
2021-01-24 20:30:31 +00:00
|
|
|
use App\Jobs\MediaPipeline\MediaStoragePipeline;
|
2018-05-23 00:08:49 +00:00
|
|
|
|
|
|
|
class ImageUpdate implements ShouldQueue
|
|
|
|
{
|
2021-06-08 09:22:01 +00:00
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
2018-05-23 00:08:49 +00:00
|
|
|
|
2021-06-08 09:22:01 +00:00
|
|
|
protected $media;
|
2018-05-23 00:08:49 +00:00
|
|
|
|
2021-06-08 09:22:01 +00:00
|
|
|
protected $protectedMimes = [
|
|
|
|
'image/jpeg',
|
|
|
|
'image/png',
|
|
|
|
'image/webp'
|
|
|
|
];
|
2018-08-26 19:05:45 +00:00
|
|
|
|
2021-06-08 09:22:01 +00:00
|
|
|
/**
|
|
|
|
* Delete the job if its models no longer exist.
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public $deleteWhenMissingModels = true;
|
2018-05-23 00:08:49 +00:00
|
|
|
|
2021-06-08 09:22:01 +00:00
|
|
|
/**
|
|
|
|
* Create a new job instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct(Media $media)
|
|
|
|
{
|
|
|
|
$this->media = $media;
|
|
|
|
}
|
2018-08-28 03:07:36 +00:00
|
|
|
|
2021-06-08 09:22:01 +00:00
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
|
|
|
$media = $this->media;
|
|
|
|
if(!$media) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$path = storage_path('app/'.$media->media_path);
|
|
|
|
$thumb = storage_path('app/'.$media->thumbnail_path);
|
2019-01-12 08:07:08 +00:00
|
|
|
|
2021-06-08 09:22:01 +00:00
|
|
|
if (!is_file($path)) {
|
|
|
|
return;
|
|
|
|
}
|
2019-01-12 08:07:08 +00:00
|
|
|
|
2021-06-08 09:22:01 +00:00
|
|
|
if (in_array($media->mime, $this->protectedMimes) == true) {
|
|
|
|
ImageOptimizer::optimize($thumb);
|
|
|
|
if(!$media->skip_optimize) {
|
|
|
|
ImageOptimizer::optimize($path);
|
|
|
|
}
|
|
|
|
}
|
2019-01-12 08:07:08 +00:00
|
|
|
|
2021-06-08 09:22:01 +00:00
|
|
|
if (!is_file($path) || !is_file($thumb)) {
|
|
|
|
return;
|
|
|
|
}
|
2021-01-24 20:30:31 +00:00
|
|
|
|
2021-06-08 09:22:01 +00:00
|
|
|
$photo_size = filesize($path);
|
|
|
|
$thumb_size = filesize($thumb);
|
|
|
|
$total = ($photo_size + $thumb_size);
|
|
|
|
$media->size = $total;
|
|
|
|
$media->save();
|
|
|
|
|
|
|
|
MediaStoragePipeline::dispatch($media);
|
|
|
|
}
|
2018-05-23 00:08:49 +00:00
|
|
|
}
|