coolify/bootstrap/helpers.php

132 lines
4.8 KiB
PHP
Raw Normal View History

2023-03-20 13:04:22 +01:00
<?php
use App\Actions\RemoteProcess\DispatchRemoteProcess;
use App\Data\RemoteProcessArgs;
use App\Enums\ActivityTypes;
2023-03-24 15:48:57 +01:00
use App\Models\Server;
use Illuminate\Database\Eloquent\Model;
2023-03-30 15:52:19 +02:00
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
2023-03-31 09:42:05 +02:00
use Illuminate\Support\Facades\Process;
use Illuminate\Support\Facades\Storage;
2023-03-20 13:04:22 +01:00
use Spatie\Activitylog\Contracts\Activity;
2023-03-24 15:48:57 +01:00
if (!function_exists('remoteProcess')) {
2023-03-20 13:04:22 +01:00
/**
* Run a Remote Process, which SSH's asynchronously into a machine to run the command(s).
* @TODO Change 'root' to 'coolify' when it's able to run Docker commands without sudo
2023-03-20 13:04:22 +01:00
*
*/
function remoteProcess(
array $command,
Server $server,
string|null $deployment_uuid = null,
Model|null $model = null,
2023-03-24 15:48:57 +01:00
): Activity {
$command_string = implode("\n", $command);
// @TODO: Check if the user has access to this server
// checkTeam($server->team_id);
2023-03-30 15:52:19 +02:00
$private_key_location = savePrivateKey($server);
return resolve(DispatchRemoteProcess::class, [
'remoteProcessArgs' => new RemoteProcessArgs(
type: $deployment_uuid ? ActivityTypes::DEPLOYMENT->value : ActivityTypes::REMOTE_PROCESS->value,
model: $model,
server_ip: $server->ip,
deployment_uuid: $deployment_uuid,
private_key_location: $private_key_location,
2023-03-28 15:47:37 +02:00
command: <<<EOT
{$command_string}
2023-03-28 15:47:37 +02:00
EOT,
port: $server->port,
user: $server->user,
),
])();
2023-03-20 13:04:22 +01:00
}
2023-03-30 15:52:19 +02:00
// function checkTeam(string $team_id)
// {
// $found_team = auth()->user()->teams->pluck('id')->contains($team_id);
// if (!$found_team) {
// throw new \RuntimeException('You do not have access to this server.');
// }
// }
}
if (!function_exists('savePrivateKey')) {
function savePrivateKey(Server $server)
{
$temp_file = 'id.rsa_' . 'root' . '@' . $server->ip;
Storage::disk('local')->put($temp_file, $server->privateKey->private_key, 'private');
return '/var/www/html/storage/app/' . $temp_file;
}
}
if (!function_exists('generateSshCommand')) {
2023-03-31 12:26:56 +02:00
function generateSshCommand(string $private_key_location, string $server_ip, string $user, string $port, string $command, bool $isMux = false)
2023-03-30 15:52:19 +02:00
{
$delimiter = 'EOF-COOLIFY-SSH';
Storage::disk('local')->makeDirectory('.ssh');
2023-03-31 08:36:17 +02:00
$ssh_command = "ssh ";
if ($isMux) {
$ssh_command .= '-o ControlMaster=auto -o ControlPersist=1m -o ControlPath=/var/www/html/storage/app/.ssh/ssh_mux_%h_%p_%r ';
}
$ssh_command .= "-i {$private_key_location} "
2023-03-30 15:52:19 +02:00
. '-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null '
. '-o PasswordAuthentication=no '
. '-o RequestTTY=no '
. '-o LogLevel=ERROR '
. "-p {$port} "
. "{$user}@{$server_ip} "
. " 'bash -se' << \\$delimiter" . PHP_EOL
. $command . PHP_EOL
. $delimiter;
2023-03-31 08:36:17 +02:00
2023-03-30 15:52:19 +02:00
return $ssh_command;
}
}
if (!function_exists('formatDockerCmdOutputToJson')) {
function formatDockerCmdOutputToJson($rawOutput): Collection
{
$outputLines = explode(PHP_EOL, $rawOutput);
return collect($outputLines)
->reject(fn ($line) => empty($line))
->map(fn ($outputLine) => json_decode($outputLine, true, flags: JSON_THROW_ON_ERROR));
}
}
if (!function_exists('formatDockerLabelsToJson')) {
function formatDockerLabelsToJson($rawOutput): Collection
2023-03-28 15:47:37 +02:00
{
2023-03-30 15:52:19 +02:00
$outputLines = explode(PHP_EOL, $rawOutput);
return collect($outputLines)
->reject(fn ($line) => empty($line))
->map(function ($outputLine) {
$outputArray = explode(',', $outputLine);
return collect($outputArray)
->map(function ($outputLine) {
return explode('=', $outputLine);
})
->mapWithKeys(function ($outputLine) {
return [$outputLine[0] => $outputLine[1]];
});
})[0];
}
2023-03-20 13:04:22 +01:00
}
2023-03-31 09:42:05 +02:00
if (!function_exists('runRemoteCommandSync')) {
function runRemoteCommandSync($server, array $command) {
$command_string = implode("\n", $command);
$private_key_location = savePrivateKey($server);
$ssh_command = generateSshCommand($private_key_location, $server->ip, $server->user, $server->port, $command_string);
$process = Process::run($ssh_command);
$output = trim($process->output());
$exitCode = $process->exitCode();
if ($exitCode !== 0) {
Log::error($output);
throw new \RuntimeException('There was an error running the command.');
}
return $output;
}
}