lasthourcloud/bootstrap/helpers.php

161 lines
5.4 KiB
PHP
Raw Normal View History

2023-03-20 12:04:22 +00:00
<?php
2023-05-03 06:15:45 +01:00
use App\Actions\CoolifyTask\PrepareCoolifyTask;
use App\Data\CoolifyTaskArgs;
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;
2023-04-28 15:22:36 +02:00
use Illuminate\Support\Facades\Http;
2023-03-30 15:52:19 +02:00
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 12:04:22 +00:00
use Spatie\Activitylog\Contracts\Activity;
2023-03-24 15:48:57 +01:00
if (!function_exists('remoteProcess')) {
2023-03-20 12:04:22 +00: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 12:04:22 +00:00
*
*/
function remoteProcess(
2023-05-03 06:15:45 +01:00
array $command,
Server $server,
2023-05-03 07:24:34 +01:00
string $type,
2023-05-03 06:15:45 +01:00
?string $type_uuid = null,
?Model $model = null,
2023-03-24 15:48:57 +01:00
): Activity {
2023-03-31 17:54:55 +01:00
$command_string = implode("\n", $command);
2023-03-31 17:54:55 +01:00
// @TODO: Check if the user has access to this server
// checkTeam($server->team_id);
2023-04-04 14:11:53 +02:00
$private_key_location = savePrivateKeyForServer($server);
2023-05-03 06:15:45 +01:00
return resolve(PrepareCoolifyTask::class, [
'remoteProcessArgs' => new CoolifyTaskArgs(
server_ip: $server->ip,
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-05-03 07:24:34 +01:00
type: $type,
2023-05-03 06:15:45 +01:00
type_uuid: $type_uuid,
2023-03-31 17:54:55 +01:00
model: $model,
),
])();
2023-03-20 12:04:22 +00:00
}
2023-03-30 15:52:19 +02:00
}
2023-03-31 12:32:07 +01: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.');
// }
// }
2023-04-04 14:11:53 +02:00
if (!function_exists('savePrivateKeyForServer')) {
function savePrivateKeyForServer(Server $server)
2023-03-30 15:52:19 +02:00
{
$temp_file = "id.root@{$server->ip}";
Storage::disk('ssh-keys')->put($temp_file, $server->privateKey->private_key, 'private');
return '/var/www/html/storage/app/ssh-keys/' . $temp_file;
2023-03-30 15:52:19 +02:00
}
}
if (!function_exists('generateSshCommand')) {
2023-03-31 11:26:56 +01: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 '
2023-05-02 19:15:17 +02:00
. '-o ConnectTimeout=3600 '
2023-03-30 15:52:19 +02:00
. '-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 12:04:22 +00:00
}
2023-05-03 06:15:45 +01:00
if (!function_exists('instantRemoteProcess')) {
function instantRemoteProcess(Server $server, array $command, $throwError = true)
2023-04-04 14:11:53 +02:00
{
2023-03-31 09:42:05 +02:00
$command_string = implode("\n", $command);
2023-04-04 14:11:53 +02:00
$private_key_location = savePrivateKeyForServer($server);
2023-03-31 09:42:05 +02:00
$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) {
2023-05-02 12:47:52 +02:00
if (!$throwError) {
return false;
}
2023-05-02 15:20:45 +02:00
Log::error($process->errorOutput());
2023-04-27 14:32:39 +02:00
throw new \RuntimeException('There was an error running the command.');
2023-03-31 09:42:05 +02:00
}
return $output;
}
}
2023-04-28 15:22:36 +02:00
if (!function_exists('getLatestVersionOfCoolify')) {
function getLatestVersionOfCoolify()
{
$response = Http::get('https://get.coollabs.io/versions.json');
$versions = $response->json();
return data_get($versions, 'coolify.v4.version');
}
}
2023-05-02 09:11:22 +02:00
if (!function_exists('generateRandomName')) {
function generateRandomName()
{
$generator = new \Nubs\RandomNameGenerator\All(
[
2023-05-02 14:13:13 +02:00
new \Nubs\RandomNameGenerator\Alliteration()
2023-05-02 09:11:22 +02:00
]
);
return $generator->getName();
}
}