first commit
This commit is contained in:
33
app/Jobs/GenerateScreenshotThumbnail.php
Normal file
33
app/Jobs/GenerateScreenshotThumbnail.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace App\Jobs;
|
||||
|
||||
use App\Contracts\ScreenshotService;
|
||||
use App\Models\TimeInterval;
|
||||
use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Contracts\Queue\ShouldBeUnique;
|
||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
use Illuminate\Foundation\Bus\Dispatchable;
|
||||
use Illuminate\Queue\InteractsWithQueue;
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
|
||||
class GenerateScreenshotThumbnail implements ShouldQueue, ShouldBeUnique
|
||||
{
|
||||
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
||||
|
||||
public int $uniqueFor = 3600;
|
||||
|
||||
public function __construct(private readonly TimeInterval|int $interval)
|
||||
{
|
||||
}
|
||||
|
||||
public function handle(ScreenshotService $screenshotService): void
|
||||
{
|
||||
$screenshotService->createThumbnail($this->interval);
|
||||
}
|
||||
|
||||
public function uniqueId(): string
|
||||
{
|
||||
return optional($this->interval)->id ?: $this->interval;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user