This commit is contained in:
2024-06-01 03:10:49 +02:00
parent 26551964b1
commit dd341ed642
21 changed files with 896 additions and 0 deletions

34
app/Importers/Image.php Normal file
View File

@@ -0,0 +1,34 @@
<?php
namespace App\Importers;
use App\ImportsMedia;
use Illuminate\Http\UploadedFile;
use App\Importers\Image\Jobs\{ImportImage, GenerateFullscreen, GenerateThumbnail};
use App\Models\Image as ImageModel;
use App\Models\Album;
class Image implements ImportsMedia {
public static function supports(UploadedFile $file): bool {
$supportedMimes = config('gallery.image.suffixes', ['png', 'gif', 'bmp', 'svg', 'avi', 'jpg', 'jpeg']);
return in_array($file->guessExtension(), $supportedMimes);
}
public function __construct(private UploadedFile $file, private Album $location)
{
}
public function import(): array {
$image = ImageModel::create([
'album_id' => $this->location->id
]);
$imageId = $image->id;
return [
new ImportImage($this->file->getPathname(), $image),
new GenerateFullscreen($image),
new GenerateThumbnail($image),
];
}
}

View File

@@ -0,0 +1,58 @@
<?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;
}
$image = InterventionImage::read($this->source);
if($image->width() >= $image->height()) {
// landscape
$image->scaleDown(width: config('gallery.image.fullscreen.maxWidth', 2000));
} else {
// portrait
$image->scaleDown(height: config('gallery.image.fullscreen.maxHeight', 2000));
}
Storage::disk('images')->put($this->destination, $image->toAvif(config('gallery.image.quality', 80)));
}
public function failed(?Throwable $exception): void
{
$this->image->delete();
Log::error($exception, [
'image' => $this->image,
'source' => $this->source,
'destination' => $this->destination
]);
}
}

View File

@@ -0,0 +1,58 @@
<?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 GenerateThumbnail 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 . '/thumbnail/' . $this->image->id . '.avif';
}
public function handle(): void
{
if ($this->batch()->cancelled()) {
return;
}
$image = InterventionImage::read($this->source);
if($image->width() >= $image->height()) {
// landscape
$image->scaleDown(width: config('gallery.image.thumbnail.maxWidth', 150));
} else {
// portrait
$image->scaleDown(height: config('gallery.image.thumbnail.maxHeight', 150));
}
Storage::disk('images')->put($this->destination, $image->toAvif(config('gallery.image.quality', 80)));
}
public function failed(?Throwable $exception): void
{
$this->image->delete();
Log::error($exception, [
'image' => $this->image,
'source' => $this->source,
'destination' => $this->destination
]);
}
}

View File

@@ -0,0 +1,40 @@
<?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 Illuminate\Support\Facades\Log;
use Intervention\Image\Laravel\Facades\Image as InterventionImage;
use \Throwable;
class ImportImage implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels, Batchable;
public function __construct(public string $tmpFile, public Image $image)
{
}
public function handle(): void
{
if ($this->batch()->cancelled()) {
return;
}
$encoded = InterventionImage::read($this->tmpFile)->toAvif(config('gallery.image.quality', 80));
Storage::disk('images')->put("{$this->image->album->id}/original/{$this->image->id}.avif", $encoded);
}
public function failed(?Throwable $exception): void
{
Log::error($exception, ['image' => $this->image, 'tmpFile' => $this->tmpFile]);
$this->image->delete();
}
}