44 lines
1.0 KiB
PHP
44 lines
1.0 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Jobs;
|
||
|
|
||
|
use App\Models\Waitlist;
|
||
|
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 CleanupInstanceStuffsJob implements ShouldQueue, ShouldBeUnique
|
||
|
{
|
||
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
||
|
|
||
|
public function __construct()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
// public function uniqueId(): string
|
||
|
// {
|
||
|
// return $this->container_name;
|
||
|
// }
|
||
|
|
||
|
public function handle(): void
|
||
|
{
|
||
|
try {
|
||
|
$this->cleanup_waitlist();
|
||
|
} catch (\Exception $e) {
|
||
|
ray($e->getMessage());
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private function cleanup_waitlist()
|
||
|
{
|
||
|
$waitlist = Waitlist::whereVerified(false)->where('created_at', '<', now()->subMinutes(config('constants.waitlist.confirmation_valid_for_minutes')))->get();
|
||
|
foreach ($waitlist as $item) {
|
||
|
$item->delete();
|
||
|
}
|
||
|
}
|
||
|
}
|