mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
1.9 KiB
PHP
85 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs\ImageOptimizePipeline;
|
|
|
|
use App\Media;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Facades\Log;
|
|
use Storage;
|
|
|
|
class ImageOptimize implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
protected $media;
|
|
|
|
/**
|
|
* Delete the job if its models no longer exist.
|
|
*
|
|
* @var bool
|
|
*/
|
|
public $deleteWhenMissingModels = true;
|
|
|
|
/**
|
|
* 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;
|
|
|
|
// Verify media exists
|
|
if (! $media) {
|
|
Log::info('ImageOptimize: Media no longer exists, skipping job');
|
|
|
|
return;
|
|
}
|
|
|
|
// Verify media has required path
|
|
if (! $media->media_path) {
|
|
Log::info("ImageOptimize: Media {$media->id} has no media_path, skipping job");
|
|
|
|
return;
|
|
}
|
|
|
|
$localFs = config('filesystems.default') === 'local';
|
|
|
|
if ($localFs) {
|
|
$path = storage_path('app/'.$media->media_path);
|
|
if (! is_file($path) || $media->skip_optimize) {
|
|
return;
|
|
}
|
|
} else {
|
|
$disk = Storage::disk(config('filesystems.default'));
|
|
if (! $disk->exists($media->media_path) || $media->skip_optimize) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
if ((bool) config_cache('pixelfed.optimize_image') == false) {
|
|
ImageThumbnail::dispatch($media)->onQueue('mmo');
|
|
|
|
return;
|
|
} else {
|
|
ImageResize::dispatch($media)->onQueue('mmo');
|
|
|
|
return;
|
|
}
|
|
}
|
|
}
|