lasthourcloud/app/Actions/RemoteProcess/DispatchRemoteProcess.php

46 lines
1.2 KiB
PHP
Raw Normal View History

2023-03-20 12:04:22 +00:00
<?php
namespace App\Actions\RemoteProcess;
2023-03-20 12:04:22 +00:00
use App\Enums\ActivityTypes;
use App\Enums\ProcessStatus;
2023-03-20 12:04:22 +00:00
use App\Jobs\ExecuteCoolifyProcess;
use Spatie\Activitylog\Contracts\Activity;
class DispatchRemoteProcess
2023-03-20 12:04:22 +00:00
{
protected Activity $activity;
// TODO Left 'root' as default user instead of 'coolify' because
// there's a task at TODO.md to run docker without sudo
public function __construct(
protected string $destination,
protected string $command,
protected ?int $port = 22,
protected ?string $user = 'root',
){
$this->activity = activity()
->withProperties([
'type' => ActivityTypes::COOLIFY_PROCESS,
'status' => ProcessStatus::HOLDING,
'user' => $this->user,
'destination' => $this->destination,
'port' => $this->port,
'command' => $this->command,
])
->log("Awaiting command to start...\n\n");
2023-03-20 12:04:22 +00:00
}
public function __invoke(): Activity
2023-03-20 12:04:22 +00:00
{
$job = new ExecuteCoolifyProcess($this->activity);
dispatch($job);
$this->activity->refresh();
2023-03-20 12:04:22 +00:00
return $this->activity;
}
}