54 lines
1.6 KiB
PHP
54 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Importers\Image\Jobs;
|
|
|
|
use App\Models\Image;
|
|
use Illuminate\Bus\Batchable;
|
|
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\Storage;
|
|
use Intervention\Image\Laravel\Facades\Image as InterventionImage;
|
|
use \Throwable;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class GenerateFullscreen implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels, Batchable;
|
|
|
|
public string $source;
|
|
public string $destination;
|
|
|
|
public function __construct(public Image $image)
|
|
{
|
|
$this->source = Storage::disk('images')->path($this->image->album_id . '/original/' . $this->image->id . '.avif');
|
|
$this->destination = $this->image->album_id . '/lightbox/' . $this->image->id . '.avif';
|
|
}
|
|
|
|
public function handle(): void
|
|
{
|
|
if ($this->batch()->cancelled()) {
|
|
return;
|
|
}
|
|
|
|
$lightbox = InterventionImage::read($this->source);
|
|
$lightbox = $lightbox->scaleDown(height: config('gallery.image.fullscreen.height', 2000));
|
|
|
|
Storage::disk('images')->put($this->destination, $lightbox->toAvif(config('gallery.image.quality', 80)));
|
|
$this->image->setLightboxSize($lightbox->width(), $lightbox->height());
|
|
}
|
|
|
|
public function failed(?Throwable $exception): void
|
|
{
|
|
$this->image->delete();
|
|
|
|
Log::error($exception, [
|
|
'image' => $this->image,
|
|
'source' => $this->source,
|
|
'destination' => $this->destination
|
|
]);
|
|
}
|
|
}
|