coolify/app/Jobs/CoolifyTask.php

37 lines
903 B
PHP
Raw Normal View History

2023-03-20 13:04:22 +01:00
<?php
namespace App\Jobs;
2023-05-03 07:15:45 +02:00
use App\Actions\CoolifyTask\RunRemoteProcess;
2023-03-20 13:04:22 +01:00
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Spatie\Activitylog\Models\Activity;
2023-03-20 13:04:22 +01:00
2023-05-03 08:24:34 +02:00
class CoolifyTask implements ShouldQueue
2023-03-20 13:04:22 +01:00
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/**
* Create a new job instance.
*/
public function __construct(
public Activity $activity,
){}
/**
* Execute the job.
*/
public function handle(): void
2023-03-20 13:04:22 +01:00
{
$remoteProcess = resolve(RunRemoteProcess::class, [
'activity' => $this->activity,
]);
$remoteProcess();
// @TODO: Remove file at $this->activity->getExtraProperty('private_key_location') after process is finished
2023-03-20 13:04:22 +01:00
}
}