coolify/app/Jobs/InstanceAutoUpdateJob.php

28 lines
657 B
PHP
Raw Normal View History

2023-05-22 12:00:59 +02:00
<?php
namespace App\Jobs;
2023-06-15 11:23:48 +02:00
use App\Actions\Server\UpdateCoolify;
2023-05-22 12:00:59 +02:00
use Illuminate\Bus\Queueable;
2023-05-26 08:16:39 +02:00
use Illuminate\Contracts\Queue\ShouldBeUnique;
2023-05-22 12:00:59 +02:00
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
2023-06-12 18:06:56 +02:00
class InstanceAutoUpdateJob implements ShouldQueue, ShouldBeUnique
2023-05-22 12:00:59 +02:00
{
2023-05-22 12:47:15 +02:00
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
2023-05-22 12:00:59 +02:00
2023-05-26 08:16:39 +02:00
public $timeout = 120;
2023-06-06 08:43:01 +02:00
2023-05-25 22:59:33 +02:00
public function __construct(private bool $force = false)
2023-05-26 08:58:58 +02:00
{
}
2023-05-26 08:58:58 +02:00
public function handle(): void
2023-05-22 12:00:59 +02:00
{
2023-06-15 11:23:48 +02:00
resolve(UpdateCoolify::class)($this->force);
2023-06-15 09:27:00 +02:00
}
2023-05-22 12:00:59 +02:00
}