47 lines
1.4 KiB
PHP
47 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Actions\CoolifyTask;
|
|
|
|
use App\Data\CoolifyTaskArgs;
|
|
use App\Jobs\CoolifyTask;
|
|
use Spatie\Activitylog\Models\Activity;
|
|
|
|
/**
|
|
* The initial step to run a `CoolifyTask`: a remote SSH process
|
|
* with monitoring/tracking/trace feature. Such thing is made
|
|
* possible using an Activity model and some attributes.
|
|
*/
|
|
class PrepareCoolifyTask
|
|
{
|
|
protected Activity $activity;
|
|
protected CoolifyTaskArgs $remoteProcessArgs;
|
|
public function __construct(CoolifyTaskArgs $remoteProcessArgs)
|
|
{
|
|
$this->remoteProcessArgs = $remoteProcessArgs;
|
|
|
|
if ($remoteProcessArgs->model) {
|
|
$properties = $remoteProcessArgs->toArray();
|
|
unset($properties['model']);
|
|
|
|
$this->activity = activity()
|
|
->withProperties($properties)
|
|
->performedOn($remoteProcessArgs->model)
|
|
->event($remoteProcessArgs->type)
|
|
->log("[]");
|
|
} else {
|
|
$this->activity = activity()
|
|
->withProperties($remoteProcessArgs->toArray())
|
|
->event($remoteProcessArgs->type)
|
|
->log("[]");
|
|
}
|
|
}
|
|
|
|
public function __invoke(): Activity
|
|
{
|
|
$job = new CoolifyTask($this->activity, ignore_errors: $this->remoteProcessArgs->ignore_errors);
|
|
dispatch($job);
|
|
$this->activity->refresh();
|
|
return $this->activity;
|
|
}
|
|
}
|