coolify/app/Actions/RemoteProcess/RunRemoteProcess.php

179 lines
5.4 KiB
PHP
Raw Normal View History

<?php
namespace App\Actions\RemoteProcess;
use App\Enums\ActivityTypes;
use App\Enums\ProcessStatus;
2023-04-12 13:09:27 +02:00
use App\Jobs\DeployApplicationJob;
use Illuminate\Process\ProcessResult;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Process;
use Spatie\Activitylog\Models\Activity;
class RunRemoteProcess
{
public Activity $activity;
public bool $hideFromOutput;
public bool $isFinished;
public bool $ignoreErrors;
protected $timeStart;
protected $currentTime;
protected $lastWriteAt = 0;
protected $throttleIntervalMS = 500;
2023-04-01 21:50:57 +02:00
protected int $counter = 1;
/**
* Create a new job instance.
*/
public function __construct(Activity $activity, bool $hideFromOutput = false, bool $isFinished = false, bool $ignoreErrors = false)
{
if ($activity->getExtraProperty('type') !== ActivityTypes::REMOTE_PROCESS->value && $activity->getExtraProperty('type') !== ActivityTypes::DEPLOYMENT->value) {
throw new \RuntimeException('Incompatible Activity to run a remote command.');
}
$this->activity = $activity;
$this->hideFromOutput = $hideFromOutput;
$this->isFinished = $isFinished;
$this->ignoreErrors = $ignoreErrors;
}
public function __invoke(): ProcessResult
{
$this->timeStart = hrtime(true);
$status = ProcessStatus::IN_PROGRESS;
$processResult = Process::run($this->getCommand(), $this->handleOutput(...));
if ($this->activity->properties->get('status') === ProcessStatus::ERROR->value) {
$status = ProcessStatus::ERROR;
} else {
if (($processResult->exitCode() == 0 && $this->isFinished) || $this->activity->properties->get('status') === ProcessStatus::FINISHED->value) {
$status = ProcessStatus::FINISHED;
}
if ($processResult->exitCode() != 0 && !$this->ignoreErrors) {
$status = ProcessStatus::ERROR;
}
}
$this->activity->properties = $this->activity->properties->merge([
'exitCode' => $processResult->exitCode(),
'stdout' => $processResult->output(),
'stderr' => $processResult->errorOutput(),
'status' => $status->value,
]);
$this->activity->save();
if ($processResult->exitCode() != 0 && !$this->ignoreErrors) {
throw new \RuntimeException($processResult->errorOutput());
2023-04-04 14:23:10 +02:00
}
return $processResult;
}
2023-04-12 13:09:27 +02:00
protected function getLatestCounter(): int
{
$description = json_decode($this->activity->description, associative: true, flags: JSON_THROW_ON_ERROR);
if ($description === null || count($description) === 0) {
return 1;
}
return end($description)['order'] + 1;
}
protected function getCommand(): string
{
$user = $this->activity->getExtraProperty('user');
$server_ip = $this->activity->getExtraProperty('server_ip');
$private_key_location = $this->activity->getExtraProperty('private_key_location');
$port = $this->activity->getExtraProperty('port');
$command = $this->activity->getExtraProperty('command');
2023-03-30 15:52:19 +02:00
return generateSshCommand($private_key_location, $server_ip, $user, $port, $command);
}
protected function handleOutput(string $type, string $output)
{
if ($this->hideFromOutput) {
return;
}
2023-04-01 21:50:57 +02:00
$this->currentTime = $this->elapsedTime();
2023-04-07 16:58:45 +02:00
$this->activity->description = $this->encodeOutput($type, $output);
if ($this->isAfterLastThrottle()) {
// Let's write to database.
DB::transaction(function () {
$this->activity->save();
$this->lastWriteAt = $this->currentTime;
});
}
}
2023-04-01 21:50:57 +02:00
public function encodeOutput($type, $output)
{
2023-04-07 16:58:45 +02:00
$outputStack = json_decode($this->activity->description, associative: true, flags: JSON_THROW_ON_ERROR);
$outputStack[] = [
'type' => $type,
'output' => $output,
2023-04-12 13:09:27 +02:00
'timestamp' => hrtime(true),
'batch' => DeployApplicationJob::$batch_counter,
'order' => $this->getLatestCounter(),
2023-04-07 16:58:45 +02:00
];
return json_encode($outputStack, flags: JSON_THROW_ON_ERROR);
}
public static function decodeOutput(?Activity $activity = null): string
{
2023-04-12 13:09:27 +02:00
if (is_null($activity)) {
2023-04-07 16:58:45 +02:00
return '';
}
try {
2023-04-12 13:09:27 +02:00
$decoded = json_decode(
data_get($activity, 'description'),
2023-04-07 16:58:45 +02:00
associative: true,
flags: JSON_THROW_ON_ERROR
);
} catch (\JsonException $exception) {
return '';
}
return collect($decoded)
2023-04-12 13:09:27 +02:00
->sortBy(fn ($i) => $i['order'])
->map(fn ($i) => $i['output'])
->implode("");
2023-04-01 21:50:57 +02:00
}
/**
* Determines if it's time to write again to database.
*
* @return bool
*/
protected function isAfterLastThrottle()
{
// If DB was never written, then we immediately decide we have to write.
if ($this->lastWriteAt === 0) {
return true;
}
return ($this->currentTime - $this->throttleIntervalMS) > $this->lastWriteAt;
}
protected function elapsedTime(): int
{
$timeMs = (hrtime(true) - $this->timeStart) / 1_000_000;
return intval($timeMs);
}
}