Files
ploi-core/app/Jobs/Certificates/CreateCertificate.php
2021-09-23 08:27:27 +02:00

63 lines
1.8 KiB
PHP

<?php
namespace App\Jobs\Certificates;
use App\Traits\HasPloi;
use App\Models\Certificate;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
class CreateCertificate implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels, HasPloi;
public Certificate $certificate;
public function __construct(Certificate $certificate)
{
$this->certificate = $certificate;
}
public function handle()
{
if ($this->certificate->type === 'letsencrypt') {
$ploiCertificate = $this->getPloi()
->server($this->certificate->server->ploi_id)
->sites($this->certificate->site->ploi_id)
->certificates()
->create(
$this->certificate->domain
);
$this->certificate->ploi_id = $ploiCertificate->id;
$this->certificate->save();
}
if ($this->certificate->type === 'custom') {
$ploiCertificate = $this->getPloi()
->server($this->certificate->server->ploi_id)
->sites($this->certificate->site->ploi_id)
->certificates()
->create(
$this->certificate->certificate,
$this->certificate->type,
$this->certificate->private
);
$this->certificate->ploi_id = $ploiCertificate->id;
$this->certificate->save();
}
// Lets fetch the status after 5 seconds
dispatch(new FetchCertificateStatus($this->certificate))->delay(now()->addSeconds(5));
}
public function failed()
{
$this->certificate->delete();
}
}