coolify/app/Actions/RemoteProcess/DispatchRemoteProcess.php

47 lines
1.2 KiB
PHP
Raw Normal View History

2023-03-20 13:04:22 +01:00
<?php
namespace App\Actions\RemoteProcess;
2023-03-20 13:04:22 +01:00
use App\Data\RemoteProcessArgs;
use App\Enums\ActivityTypes;
use App\Enums\ProcessStatus;
2023-03-20 13:04:22 +01:00
use App\Jobs\ExecuteCoolifyProcess;
use Spatie\Activitylog\Contracts\Activity;
class DispatchRemoteProcess
2023-03-20 13:04:22 +01: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',
){
$arguments = new RemoteProcessArgs(
destination: $this->destination,
command: $this->command,
port: $this->port,
user: $this->user,
);
2023-03-20 13:04:22 +01:00
$this->activity = activity()
->withProperties($arguments->toArray())
->log("Awaiting command to start...\n\n");
2023-03-20 13:04:22 +01:00
}
public function __invoke(): Activity
2023-03-20 13:04:22 +01:00
{
$job = new ExecuteCoolifyProcess($this->activity);
dispatch($job);
$this->activity->refresh();
2023-03-20 13:04:22 +01:00
return $this->activity;
}
}