1
0
Fork 0
pixelfed/app/Jobs/ImageOptimizePipeline/ImageResize.php

68 lines
1.5 KiB
PHP
Raw Normal View History

2018-05-23 00:08:49 +00:00
<?php
namespace App\Jobs\ImageOptimizePipeline;
2018-08-28 03:07:36 +00:00
use App\Media;
2018-05-23 00:08:49 +00:00
use App\Util\Media\Image;
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 Log;
2018-05-23 00:08:49 +00:00
class ImageResize implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
protected $media;
2019-01-12 22:21:48 +00:00
/**
* Delete the job if its models no longer exist.
*
* @var bool
*/
public $deleteWhenMissingModels = true;
2018-05-23 00:08:49 +00:00
/**
* Create a new job instance.
*
* @return void
*/
public function __construct(Media $media)
{
$this->media = $media;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
$media = $this->media;
2019-03-08 07:14:16 +00:00
if(!$media) {
return;
}
2018-08-28 03:07:36 +00:00
$path = storage_path('app/'.$media->media_path);
if (!is_file($path) || $media->skip_optimize) {
Log::info('Tried to optimize media that does not exist or is not readable. ' . $path);
2018-05-23 00:08:49 +00:00
return;
}
if((bool) config_cache('pixelfed.optimize_image') === false) {
ImageThumbnail::dispatch($media)->onQueue('mmo');
return;
}
2018-05-23 00:08:49 +00:00
try {
2018-08-28 03:07:36 +00:00
$img = new Image();
2018-05-23 00:08:49 +00:00
$img->resizeImage($media);
} catch (Exception $e) {
Log::error($e);
2018-05-23 00:08:49 +00:00
}
ImageThumbnail::dispatch($media)->onQueue('mmo');
2018-05-23 00:08:49 +00:00
}
}