coolify/app/Actions/CoolifyTask/RunRemoteProcess.php

205 lines
6.7 KiB
PHP
Raw Normal View History

<?php
2023-05-03 07:15:45 +02:00
namespace App\Actions\CoolifyTask;
use App\Enums\ActivityTypes;
use App\Enums\ProcessStatus;
2023-05-24 14:26:50 +02:00
use App\Jobs\ApplicationDeploymentJob;
use App\Models\Server;
use Illuminate\Process\ProcessResult;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Process;
use Spatie\Activitylog\Models\Activity;
class RunRemoteProcess
{
public Activity $activity;
2023-06-07 15:39:08 +02:00
public bool $hide_from_output;
2023-06-07 15:39:08 +02:00
public bool $ignore_errors;
public $call_event_on_finish = null;
public $call_event_data = null;
2023-06-07 15:39:08 +02:00
protected $time_start;
2023-06-07 15:39:08 +02:00
protected $current_time;
2023-06-07 15:39:08 +02:00
protected $last_write_at = 0;
2023-12-08 22:51:42 +01:00
protected $throttle_interval_ms = 200;
2023-04-01 21:50:57 +02:00
protected int $counter = 1;
/**
* Create a new job instance.
*/
public function __construct(Activity $activity, bool $hide_from_output = false, bool $ignore_errors = false, $call_event_on_finish = null, $call_event_data = null)
{
if ($activity->getExtraProperty('type') !== ActivityTypes::INLINE->value && $activity->getExtraProperty('type') !== ActivityTypes::COMMAND->value) {
throw new \RuntimeException('Incompatible Activity to run a remote command.');
}
$this->activity = $activity;
2023-06-07 15:39:08 +02:00
$this->hide_from_output = $hide_from_output;
$this->ignore_errors = $ignore_errors;
$this->call_event_on_finish = $call_event_on_finish;
$this->call_event_data = $call_event_data;
}
public static function decodeOutput(?Activity $activity = null): string
{
if (is_null($activity)) {
return '';
}
try {
$decoded = json_decode(
data_get($activity, 'description'),
associative: true,
2024-05-23 11:58:54 +02:00
flags: JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE
);
} catch (\JsonException $exception) {
return '';
}
return collect($decoded)
2023-08-11 20:48:52 +02:00
->sortBy(fn ($i) => $i['order'])
->map(fn ($i) => $i['output'])
2024-06-10 22:43:34 +02:00
->implode('');
}
public function __invoke(): ProcessResult
{
2023-06-07 15:39:08 +02:00
$this->time_start = hrtime(true);
$status = ProcessStatus::IN_PROGRESS;
2023-12-08 22:51:42 +01:00
$timeout = config('constants.ssh.command_timeout');
$process = Process::timeout($timeout)->start($this->getCommand(), $this->handleOutput(...));
$this->activity->properties = $this->activity->properties->merge([
'process_id' => $process->id(),
]);
2023-12-08 22:51:42 +01:00
$processResult = $process->wait();
// $processResult = Process::timeout($timeout)->run($this->getCommand(), $this->handleOutput(...));
if ($this->activity->properties->get('status') === ProcessStatus::ERROR->value) {
$status = ProcessStatus::ERROR;
} else {
2023-12-08 13:07:42 +01:00
if ($processResult->exitCode() == 0) {
$status = ProcessStatus::FINISHED;
}
2024-06-10 22:43:34 +02:00
if ($processResult->exitCode() != 0 && ! $this->ignore_errors) {
$status = ProcessStatus::ERROR;
}
// if (($processResult->exitCode() == 0 && $this->is_finished) || $this->activity->properties->get('status') === ProcessStatus::FINISHED->value) {
// $status = ProcessStatus::FINISHED;
// }
// if ($processResult->exitCode() != 0 && !$this->ignore_errors) {
// $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();
2024-06-10 22:43:34 +02:00
if ($processResult->exitCode() != 0 && ! $this->ignore_errors) {
throw new \RuntimeException($processResult->errorOutput(), $processResult->exitCode());
2023-04-04 14:23:10 +02:00
}
if ($this->call_event_on_finish) {
try {
if ($this->call_event_data) {
event(resolve("App\\Events\\$this->call_event_on_finish", [
2024-06-10 22:43:34 +02:00
'data' => $this->call_event_data,
]));
} else {
event(resolve("App\\Events\\$this->call_event_on_finish", [
'userId' => $this->activity->causer_id,
]));
}
} catch (\Throwable $e) {
ray($e);
}
}
2024-06-10 22:43:34 +02:00
return $processResult;
}
protected function getCommand(): string
{
$server_uuid = $this->activity->getExtraProperty('server_uuid');
$command = $this->activity->getExtraProperty('command');
$server = Server::whereUuid($server_uuid)->firstOrFail();
return generateSshCommand($server, $command);
}
protected function handleOutput(string $type, string $output)
{
2023-06-07 15:39:08 +02:00
if ($this->hide_from_output) {
return;
}
2023-06-07 15:39:08 +02:00
$this->current_time = $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();
2023-06-07 15:39:08 +02:00
$this->last_write_at = $this->current_time;
});
}
}
protected function elapsedTime(): int
{
$timeMs = (hrtime(true) - $this->time_start) / 1_000_000;
return intval($timeMs);
}
2023-04-01 21:50:57 +02:00
public function encodeOutput($type, $output)
{
2024-05-23 11:58:54 +02:00
$outputStack = json_decode($this->activity->description, associative: true, flags: JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE);
$outputStack[] = [
'type' => $type,
'output' => $output,
'timestamp' => hrtime(true),
'batch' => ApplicationDeploymentJob::$batch_counter,
'order' => $this->getLatestCounter(),
];
2023-04-07 16:58:45 +02:00
2024-05-23 11:58:54 +02:00
return json_encode($outputStack, flags: JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE);
2023-04-07 16:58:45 +02:00
}
protected function getLatestCounter(): int
2023-04-07 16:58:45 +02:00
{
2024-05-23 11:58:54 +02:00
$description = json_decode($this->activity->description, associative: true, flags: JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE);
if ($description === null || count($description) === 0) {
return 1;
2023-04-07 16:58:45 +02:00
}
2024-06-10 22:43:34 +02:00
return end($description)['order'] + 1;
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.
2023-06-07 15:39:08 +02:00
if ($this->last_write_at === 0) {
return true;
}
2023-06-07 15:39:08 +02:00
return ($this->current_time - $this->throttle_interval_ms) > $this->last_write_at;
}
}