forked from mirror/pixelfed
46 lines
923 B
PHP
46 lines
923 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Jobs\ImageOptimizePipeline;
|
||
|
|
||
|
use Carbon\Carbon;
|
||
|
use ImageOptimizer;
|
||
|
use App\{Media, Status};
|
||
|
use Illuminate\Bus\Queueable;
|
||
|
use Illuminate\Queue\SerializesModels;
|
||
|
use Illuminate\Queue\InteractsWithQueue;
|
||
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||
|
use Illuminate\Foundation\Bus\Dispatchable;
|
||
|
|
||
|
class ImageOptimize implements ShouldQueue
|
||
|
{
|
||
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
||
|
|
||
|
protected $media;
|
||
|
|
||
|
/**
|
||
|
* 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;
|
||
|
$path = storage_path('app/'. $media->media_path);
|
||
|
if(!is_file($path)) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
ImageResize::dispatch($media);
|
||
|
}
|
||
|
}
|