coolify/app/Jobs/ApplicationDeploymentJob.php

689 lines
30 KiB
PHP
Raw Normal View History

2023-03-31 13:32:07 +02:00
<?php
namespace App\Jobs;
2023-05-03 07:15:45 +02:00
use App\Actions\CoolifyTask\RunRemoteProcess;
use App\Data\CoolifyTaskArgs;
use App\Enums\ActivityTypes;
2023-05-23 15:48:05 +02:00
use App\Enums\ProcessStatus;
2023-03-31 13:32:07 +02:00
use App\Models\Application;
2023-05-24 14:26:50 +02:00
use App\Models\ApplicationDeploymentQueue;
2023-05-30 15:52:17 +02:00
use App\Models\ApplicationPreview;
2023-03-31 13:32:07 +02:00
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
2023-04-04 14:11:53 +02:00
use Illuminate\Support\Collection;
2023-04-14 11:10:31 +02:00
use Illuminate\Support\Facades\Storage;
use Spatie\Activitylog\Models\Activity;
2023-03-31 13:32:07 +02:00
use Symfony\Component\Yaml\Yaml;
2023-04-14 11:10:31 +02:00
use Illuminate\Support\Str;
2023-05-15 22:06:08 +02:00
use Spatie\Url\Url;
2023-05-30 15:52:17 +02:00
use Visus\Cuid2\Cuid2;
2023-03-31 13:32:07 +02:00
2023-05-24 14:26:50 +02:00
class ApplicationDeploymentJob implements ShouldQueue
2023-03-31 13:32:07 +02:00
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
2023-05-24 14:26:50 +02:00
private Application $application;
private ApplicationDeploymentQueue $application_deployment_queue;
private $destination;
private $source;
private Activity $activity;
2023-05-23 09:53:24 +02:00
2023-05-24 14:26:50 +02:00
private string|null $git_commit = null;
private string $workdir;
private string $docker_compose;
private $build_args;
private $env_args;
2023-05-30 15:52:17 +02:00
private string $build_image_name;
private string $production_image_name;
private string $container_name;
private ApplicationPreview|null $preview;
2023-05-24 14:26:50 +02:00
public static int $batch_counter = 0;
public $timeout = 10200;
2023-05-23 15:48:05 +02:00
2023-03-31 13:32:07 +02:00
public function __construct(
2023-05-24 14:26:50 +02:00
public int $application_deployment_queue_id,
2023-03-31 13:32:07 +02:00
public string $deployment_uuid,
2023-05-30 15:52:17 +02:00
public string $application_id,
2023-04-19 14:28:39 +02:00
public bool $force_rebuild = false,
2023-05-31 12:38:36 +02:00
public string $rollback_commit = 'HEAD',
public int $pull_request_id = 0,
) {
2023-05-24 14:26:50 +02:00
$this->application_deployment_queue = ApplicationDeploymentQueue::find($this->application_deployment_queue_id);
$this->application_deployment_queue->update([
'status' => ProcessStatus::IN_PROGRESS->value,
]);
2023-05-30 15:52:17 +02:00
if ($this->rollback_commit) {
$this->git_commit = $this->rollback_commit;
2023-05-24 14:26:50 +02:00
}
2023-05-30 15:52:17 +02:00
$this->application = Application::find($this->application_id);
2023-06-05 12:07:55 +02:00
if ($this->pull_request_id !== 0) {
2023-05-30 15:52:17 +02:00
$this->preview = ApplicationPreview::findPreviewByApplicationAndPullId($this->application->id, $this->pull_request_id);
}
$this->destination = $this->application->destination->getMorphClass()::where('id', $this->application->destination->id)->first();
$server = $this->destination->server;
2023-05-24 15:25:08 +02:00
$private_key_location = save_private_key_for_server($server);
2023-05-03 07:15:45 +02:00
$remoteProcessArgs = new CoolifyTaskArgs(
server_ip: $server->ip,
private_key_location: $private_key_location,
command: 'overwritten-later',
port: $server->port,
user: $server->user,
type: ActivityTypes::DEPLOYMENT->value,
2023-05-03 07:15:45 +02:00
type_uuid: $this->deployment_uuid,
);
$this->activity = activity()
->performedOn($this->application)
->withProperties($remoteProcessArgs->toArray())
->event(ActivityTypes::DEPLOYMENT->value)
2023-04-07 16:58:45 +02:00
->log("[]");
}
2023-03-31 13:32:07 +02:00
public function handle(): void
{
try {
2023-05-10 13:05:32 +02:00
if ($this->application->deploymentType() === 'source') {
$this->source = $this->application->source->getMorphClass()::where('id', $this->application->source->id)->first();
}
$this->workdir = "/artifacts/{$this->deployment_uuid}";
2023-06-05 12:07:55 +02:00
if ($this->pull_request_id !== 0) {
2023-05-30 15:52:17 +02:00
ray('Deploying pull/' . $this->pull_request_id . '/head for application: ' . $this->application->name);
$this->deploy_pull_request();
} else {
$this->deploy();
}
} catch (\Exception $e) {
2023-05-24 14:26:50 +02:00
$this->execute_now([
2023-05-30 15:52:17 +02:00
"echo '\nOops something is not okay, are you okay? 😢'",
"echo '\n\n{$e->getMessage()}'",
2023-04-14 11:24:58 +02:00
]);
2023-05-30 15:52:17 +02:00
$this->fail();
} finally {
if (isset($this->docker_compose)) {
Storage::disk('deployments')->put(Str::kebab($this->application->name) . '/docker-compose.yml', $this->docker_compose);
}
$this->execute_now(["docker rm -f {$this->deployment_uuid} >/dev/null 2>&1"], hideFromOutput: true);
}
}
2023-04-14 11:24:58 +02:00
2023-05-30 15:52:17 +02:00
private function start_builder_image()
{
$this->execute_now([
"echo -n 'Pulling latest version of the builder image (ghcr.io/coollabsio/coolify-builder)... '",
]);
$this->execute_now([
"docker run --pull=always -d --name {$this->deployment_uuid} --rm -v /var/run/docker.sock:/var/run/docker.sock ghcr.io/coollabsio/coolify-builder",
], isDebuggable: true);
$this->execute_now([
"echo 'Done.'"
]);
$this->execute_now([
$this->execute_in_builder("mkdir -p {$this->workdir}"),
]);
}
2023-04-14 11:24:58 +02:00
2023-05-30 15:52:17 +02:00
private function clone_repository()
{
$this->execute_now([
"echo -n 'Importing {$this->application->git_repository}:{$this->application->git_branch} to {$this->workdir}... '"
]);
2023-05-24 14:26:50 +02:00
2023-05-30 15:52:17 +02:00
$this->execute_now([
...$this->importing_git_repository(),
], 'importing_git_repository');
2023-05-24 14:26:50 +02:00
2023-05-30 15:52:17 +02:00
$this->execute_now([
"echo 'Done.'"
]);
// Get git commit
$this->execute_now([$this->execute_in_builder("cd {$this->workdir} && git rev-parse HEAD")], 'commit_sha', hideFromOutput: true);
$this->git_commit = $this->activity->properties->get('commit_sha');
}
2023-04-14 11:24:58 +02:00
2023-05-30 15:52:17 +02:00
private function cleanup_git()
{
$this->execute_now([
$this->execute_in_builder("rm -fr {$this->workdir}/.git")
], hideFromOutput: true);
}
private function generate_buildpack()
{
$this->execute_now([
"echo -n 'Generating nixpacks configuration... '",
]);
$this->execute_now([
$this->nixpacks_build_cmd(),
$this->execute_in_builder("cp {$this->workdir}/.nixpacks/Dockerfile {$this->workdir}/Dockerfile"),
$this->execute_in_builder("rm -f {$this->workdir}/.nixpacks/Dockerfile"),
], isDebuggable: true);
2023-05-31 15:44:12 +02:00
$this->execute_now([
"echo 'Done... '",
]);
2023-05-30 15:52:17 +02:00
}
private function build_image()
{
$this->execute_now([
"echo -n 'Building image... '",
]);
2023-04-14 11:24:58 +02:00
2023-06-05 12:07:55 +02:00
if ($this->application->settings->is_static && isset($this->application->build_command)) {
2023-05-24 14:26:50 +02:00
$this->execute_now([
2023-05-30 15:52:17 +02:00
$this->execute_in_builder("docker build -f {$this->workdir}/Dockerfile {$this->build_args} --progress plain -t { $this->build_image_name {$this->workdir}"),
2023-04-14 13:18:55 +02:00
], isDebuggable: true);
2023-05-30 15:52:17 +02:00
$dockerfile = "FROM {$this->application->static_image}
2023-04-25 15:48:45 +02:00
WORKDIR /usr/share/nginx/html/
LABEL coolify.deploymentId={$this->deployment_uuid}
2023-05-30 15:52:17 +02:00
COPY --from=$this->build_image_name /app/{$this->application->publish_directory} .";
$docker_file = base64_encode($dockerfile);
2023-05-24 14:26:50 +02:00
$this->execute_now([
2023-05-30 15:52:17 +02:00
$this->execute_in_builder("echo '{$docker_file}' | base64 -d > {$this->workdir}/Dockerfile-prod"),
$this->execute_in_builder("docker build -f {$this->workdir}/Dockerfile-prod {$this->build_args} --progress plain -t $this->production_image_name {$this->workdir}"),
], hideFromOutput: true);
} else {
2023-05-24 14:26:50 +02:00
$this->execute_now([
2023-05-30 15:52:17 +02:00
$this->execute_in_builder("docker build -f {$this->workdir}/Dockerfile {$this->build_args} --progress plain -t $this->production_image_name {$this->workdir}"),
], isDebuggable: true);
}
$this->execute_now([
"echo 'Done.'",
]);
}
private function deploy_pull_request()
{
2023-05-30 17:00:11 +02:00
$this->build_image_name = "{$this->application->uuid}:pr-{$this->pull_request_id}-build";
$this->production_image_name = "{$this->application->uuid}:pr-{$this->pull_request_id}";
2023-05-30 15:52:17 +02:00
$this->container_name = generate_container_name($this->application->uuid, $this->pull_request_id);
// Deploy pull request
$this->execute_now([
"echo 'Starting deployment of {$this->application->git_repository}:{$this->application->git_branch} PR#{$this->pull_request_id}...'",
]);
$this->start_builder_image();
$this->clone_repository();
$this->cleanup_git();
$this->generate_buildpack();
$this->generate_compose_file();
// Needs separate preview variables
// $this->generate_build_env_variables();
// $this->add_build_env_variables_to_dockerfile();
$this->build_image();
$this->stop_running_container();
$this->start_by_compose_file();
$this->next(ProcessStatus::FINISHED->value);
}
private function deploy()
{
$this->container_name = generate_container_name($this->application->uuid);
// Deploy normal commit
$this->execute_now([
"echo 'Starting deployment of {$this->application->git_repository}:{$this->application->git_branch}...'",
]);
$this->start_builder_image();
2023-05-31 12:38:36 +02:00
ray('Rollback Commit: ' . $this->rollback_commit);
2023-05-30 15:52:17 +02:00
if ($this->rollback_commit === 'HEAD') {
$this->clone_repository();
}
$this->build_image_name = "{$this->application->uuid}:{$this->git_commit}-build";
$this->production_image_name = "{$this->application->uuid}:{$this->git_commit}";
ray('Build Image Name: ' . $this->build_image_name . ' & Production Image Name:' . $this->production_image_name);
if (!$this->force_rebuild) {
$this->execute_now([
"docker images -q {$this->application->uuid}:{$this->git_commit} 2>/dev/null",
], 'local_image_found', hideFromOutput: true, ignoreErrors: true);
$image_found = Str::of($this->activity->properties->get('local_image_found'))->trim()->isNotEmpty();
if ($image_found) {
$this->execute_now([
"echo 'Docker Image found locally with the same Git Commit SHA. Build skipped...'"
]);
$this->generate_compose_file();
$this->stop_running_container();
$this->start_by_compose_file();
$this->next(ProcessStatus::FINISHED->value);
return;
2023-05-17 12:40:52 +02:00
}
}
2023-05-30 15:52:17 +02:00
$this->cleanup_git();
$this->generate_buildpack();
$this->generate_compose_file();
$this->generate_build_env_variables();
$this->add_build_env_variables_to_dockerfile();
$this->build_image();
$this->stop_running_container();
$this->start_by_compose_file();
$this->next(ProcessStatus::FINISHED->value);
2023-03-31 13:32:07 +02:00
}
2023-05-30 15:52:17 +02:00
2023-05-24 14:26:50 +02:00
public function failed(): void
2023-05-23 15:48:05 +02:00
{
2023-05-24 14:26:50 +02:00
$this->next(ProcessStatus::ERROR->value);
}
private function next(string $status)
{
2023-05-31 12:38:36 +02:00
if (!Str::of($this->application_deployment_queue->status)->startsWith('cancelled')) {
$this->application_deployment_queue->update([
'status' => $status,
]);
}
2023-06-02 15:15:12 +02:00
dispatch(new ApplicationContainerStatusJob(
2023-05-30 15:52:17 +02:00
application: $this->application,
container_name: $this->container_name,
pull_request_id: $this->pull_request_id
));
2023-05-31 12:38:36 +02:00
queue_next_deployment($this->application);
2023-05-23 15:48:05 +02:00
}
2023-03-31 13:32:07 +02:00
private function execute_in_builder(string $command)
{
return "docker exec {$this->deployment_uuid} bash -c '{$command}'";
2023-03-31 13:32:07 +02:00
}
2023-05-05 09:02:50 +02:00
private function generate_environment_variables($ports)
{
$environment_variables = collect();
2023-06-05 12:07:55 +02:00
ray('Generate Environment Variables');
if ($this->pull_request_id === 0) {
ray($this->application->runtime_environment_variables);
foreach ($this->application->runtime_environment_variables as $env) {
$environment_variables->push("$env->key=$env->value");
}
} else {
ray($this->application->runtime_environment_variables_preview);
foreach ($this->application->runtime_environment_variables_preview as $env) {
$environment_variables->push("$env->key=$env->value");
}
2023-05-05 09:02:50 +02:00
}
// Add PORT if not exists, use the first port as default
if ($environment_variables->filter(fn ($env) => Str::of($env)->contains('PORT'))->isEmpty()) {
$environment_variables->push("PORT={$ports[0]}");
}
return $environment_variables->all();
}
private function generate_env_variables()
{
$this->env_args = collect([]);
2023-06-05 12:07:55 +02:00
if ($this->pull_request_id === 0) {
foreach ($this->application->nixpacks_environment_variables as $env) {
$this->env_args->push("--env {$env->key}={$env->value}");
}
} else {
foreach ($this->application->nixpacks_environment_variables_preview as $env) {
$this->env_args->push("--env {$env->key}={$env->value}");
}
}
2023-06-05 12:07:55 +02:00
$this->env_args = $this->env_args->implode(' ');
}
private function generate_build_env_variables()
{
$this->build_args = collect(["--build-arg SOURCE_COMMIT={$this->git_commit}"]);
2023-06-05 12:07:55 +02:00
if ($this->pull_request_id === 0) {
foreach ($this->application->build_environment_variables as $env) {
$this->build_args->push("--build-arg {$env->key}={$env->value}");
}
} else {
foreach ($this->application->build_environment_variables_preview as $env) {
$this->build_args->push("--build-arg {$env->key}={$env->value}");
}
}
2023-06-05 12:07:55 +02:00
$this->build_args = $this->build_args->implode(' ');
}
private function add_build_env_variables_to_dockerfile()
2023-05-05 09:02:50 +02:00
{
2023-05-24 14:26:50 +02:00
$this->execute_now([
2023-05-05 09:02:50 +02:00
$this->execute_in_builder("cat {$this->workdir}/Dockerfile")
], propertyName: 'dockerfile', hideFromOutput: true);
$dockerfile = collect(Str::of($this->activity->properties->get('dockerfile'))->trim()->explode("\n"));
foreach ($this->application->build_environment_variables as $env) {
$dockerfile->splice(1, 0, "ARG {$env->key}={$env->value}");
}
$dockerfile_base64 = base64_encode($dockerfile->implode("\n"));
2023-05-24 14:26:50 +02:00
$this->execute_now([
2023-05-05 09:02:50 +02:00
$this->execute_in_builder("echo '{$dockerfile_base64}' | base64 -d > {$this->workdir}/Dockerfile")
], hideFromOutput: true);
}
2023-03-31 13:32:07 +02:00
private function generate_docker_compose()
{
2023-05-05 09:02:50 +02:00
$ports = $this->application->settings->is_static ? [80] : $this->application->ports_exposes_array;
2023-06-05 12:07:55 +02:00
$persistent_storages = $this->generate_local_persistent_volumes();
$volume_names = $this->generate_local_persistent_volumes_only_volume_names();
$environment_variables = $this->generate_environment_variables($ports);
2023-03-31 13:32:07 +02:00
$docker_compose = [
'version' => '3.8',
'services' => [
2023-05-30 15:52:17 +02:00
$this->container_name => [
'image' => $this->production_image_name,
'container_name' => $this->container_name,
2023-03-31 13:32:07 +02:00
'restart' => 'always',
2023-05-05 09:02:50 +02:00
'environment' => $environment_variables,
2023-03-31 13:32:07 +02:00
'labels' => $this->set_labels_for_applications(),
2023-04-26 13:01:09 +02:00
'expose' => $ports,
2023-03-31 13:32:07 +02:00
'networks' => [
$this->destination->network,
],
'healthcheck' => [
'test' => [
'CMD-SHELL',
$this->generate_healthcheck_commands()
],
'interval' => $this->application->health_check_interval . 's',
'timeout' => $this->application->health_check_timeout . 's',
'retries' => $this->application->health_check_retries,
'start_period' => $this->application->health_check_start_period . 's'
],
2023-05-17 11:59:48 +02:00
'mem_limit' => $this->application->limits_memory,
'memswap_limit' => $this->application->limits_memory_swap,
'mem_swappiness' => $this->application->limits_memory_swappiness,
'mem_reservation' => $this->application->limits_memory_reservation,
'cpus' => $this->application->limits_cpus,
'cpuset' => $this->application->limits_cpuset,
'cpu_shares' => $this->application->limits_cpu_shares,
2023-03-31 13:32:07 +02:00
]
],
'networks' => [
$this->destination->network => [
'external' => false,
'name' => $this->destination->network,
'attachable' => true,
]
]
];
2023-06-05 12:07:55 +02:00
if (count($this->application->ports_mappings_array) > 0 && $this->pull_request_id === 0) {
2023-05-30 15:52:17 +02:00
$docker_compose['services'][$this->container_name]['ports'] = $this->application->ports_mappings_array;
2023-03-31 13:32:07 +02:00
}
2023-05-30 15:52:17 +02:00
if (count($persistent_storages) > 0) {
$docker_compose['services'][$this->container_name]['volumes'] = $persistent_storages;
2023-04-04 15:25:42 +02:00
}
if (count($volume_names) > 0) {
$docker_compose['volumes'] = $volume_names;
}
2023-04-14 11:24:58 +02:00
return Yaml::dump($docker_compose, 10);
2023-03-31 13:32:07 +02:00
}
2023-04-04 15:25:42 +02:00
private function generate_local_persistent_volumes()
{
2023-06-05 21:17:44 +02:00
$local_persistent_volumes = [];
2023-04-04 15:25:42 +02:00
foreach ($this->application->persistentStorages as $persistentStorage) {
$volume_name = $persistentStorage->host_path ?? $persistentStorage->name;
2023-06-05 12:07:55 +02:00
if ($this->pull_request_id !== 0) {
$volume_name = $volume_name . '-pr-' . $this->pull_request_id;
}
2023-04-04 15:25:42 +02:00
$local_persistent_volumes[] = $volume_name . ':' . $persistentStorage->mount_path;
}
2023-06-05 12:07:55 +02:00
ray('local_persistent_volumes', $local_persistent_volumes);
2023-06-05 21:17:44 +02:00
return $local_persistent_volumes;
2023-04-04 15:25:42 +02:00
}
2023-03-31 13:32:07 +02:00
2023-04-04 15:25:42 +02:00
private function generate_local_persistent_volumes_only_volume_names()
{
2023-06-05 21:17:44 +02:00
$local_persistent_volumes_names = [];
2023-04-04 15:25:42 +02:00
foreach ($this->application->persistentStorages as $persistentStorage) {
if ($persistentStorage->host_path) {
continue;
}
2023-06-05 12:07:55 +02:00
$name = $persistentStorage->name;
if ($this->pull_request_id !== 0) {
$name = $name . '-pr-' . $this->pull_request_id;
}
$local_persistent_volumes_names[$name] = [
'name' => $name,
2023-04-04 15:25:42 +02:00
'external' => false,
];
}
2023-06-05 21:17:44 +02:00
return $local_persistent_volumes_names;
2023-04-04 15:25:42 +02:00
}
2023-03-31 13:32:07 +02:00
private function generate_healthcheck_commands()
{
if (!$this->application->health_check_port) {
2023-04-24 13:25:02 +02:00
$this->application->health_check_port = $this->application->ports_exposes_array[0];
2023-03-31 13:32:07 +02:00
}
if ($this->application->health_check_path) {
$generated_healthchecks_commands = [
2023-04-04 15:25:42 +02:00
"curl -s -X {$this->application->health_check_method} -f {$this->application->health_check_scheme}://{$this->application->health_check_host}:{$this->application->health_check_port}{$this->application->health_check_path} > /dev/null"
2023-03-31 13:32:07 +02:00
];
} else {
2023-04-04 15:25:42 +02:00
$generated_healthchecks_commands = [
"curl -s -X {$this->application->health_check_method} -f {$this->application->health_check_scheme}://{$this->application->health_check_host}:{$this->application->health_check_port}/"
];
2023-03-31 13:32:07 +02:00
}
return implode(' ', $generated_healthchecks_commands);
}
private function set_labels_for_applications()
{
$labels = [];
$labels[] = 'coolify.managed=true';
2023-05-09 14:46:22 +02:00
$labels[] = 'coolify.version=' . config('version');
2023-03-31 13:32:07 +02:00
$labels[] = 'coolify.applicationId=' . $this->application->id;
$labels[] = 'coolify.type=application';
$labels[] = 'coolify.name=' . $this->application->name;
2023-06-05 12:07:55 +02:00
if ($this->pull_request_id !== 0) {
2023-05-30 15:52:17 +02:00
$labels[] = 'coolify.pullRequestId=' . $this->pull_request_id;
}
2023-03-31 13:32:07 +02:00
if ($this->application->fqdn) {
2023-06-05 12:07:55 +02:00
if ($this->pull_request_id !== 0) {
2023-05-30 15:52:17 +02:00
$preview_fqdn = data_get($this->preview, 'fqdn');
$template = $this->application->preview_url_template;
$url = Url::fromString($this->application->fqdn);
$host = $url->getHost();
$schema = $url->getScheme();
$random = new Cuid2(7);
$preview_fqdn = str_replace('{{random}}', $random, $template);
$preview_fqdn = str_replace('{{domain}}', $host, $preview_fqdn);
$preview_fqdn = str_replace('{{pr_id}}', $this->pull_request_id, $preview_fqdn);
$preview_fqdn = "$schema://$preview_fqdn";
$this->preview->fqdn = $preview_fqdn;
$this->preview->save();
$domains = Str::of($preview_fqdn)->explode(',');
} else {
$domains = Str::of($this->application->fqdn)->explode(',');
}
2023-05-04 09:17:44 +02:00
$labels[] = 'traefik.enable=true';
2023-05-16 15:41:23 +02:00
foreach ($domains as $domain) {
$url = Url::fromString($domain);
$host = $url->getHost();
$path = $url->getPath();
2023-05-23 12:52:14 +02:00
$schema = $url->getScheme();
$slug = Str::slug($host . $path);
$http_label = "{$this->application->uuid}-{$slug}-http";
$https_label = "{$this->application->uuid}-{$slug}-https";
if ($schema === 'https') {
2023-05-26 14:37:28 +02:00
// Set labels for https
2023-05-23 12:52:14 +02:00
$labels[] = "traefik.http.routers.{$https_label}.rule=Host(`{$host}`) && PathPrefix(`{$path}`)";
2023-05-26 14:44:11 +02:00
$labels[] = "traefik.http.routers.{$https_label}.entryPoints=https";
2023-05-23 12:52:14 +02:00
$labels[] = "traefik.http.routers.{$https_label}.middlewares=gzip";
if ($path !== '/') {
$labels[] = "traefik.http.routers.{$https_label}.middlewares={$https_label}-stripprefix";
$labels[] = "traefik.http.middlewares.{$https_label}-stripprefix.stripprefix.prefixes={$path}";
}
$labels[] = "traefik.http.routers.{$https_label}.tls=true";
$labels[] = "traefik.http.routers.{$https_label}.tls.certresolver=letsencrypt";
2023-05-26 14:37:28 +02:00
// Set labels for http (redirect to https)
$labels[] = "traefik.http.routers.{$http_label}.rule=Host(`{$host}`) && PathPrefix(`{$path}`)";
2023-05-26 14:44:11 +02:00
$labels[] = "traefik.http.routers.{$http_label}.entryPoints=http";
2023-05-31 11:24:02 +02:00
if ($this->application->settings->is_force_https_enabled) {
2023-05-23 12:52:14 +02:00
$labels[] = "traefik.http.routers.{$http_label}.middlewares=redirect-to-https";
}
2023-05-26 14:13:24 +02:00
} else {
// Set labels for http
$labels[] = "traefik.http.routers.{$http_label}.rule=Host(`{$host}`) && PathPrefix(`{$path}`)";
2023-05-26 14:44:11 +02:00
$labels[] = "traefik.http.routers.{$http_label}.entryPoints=http";
2023-05-26 14:13:24 +02:00
$labels[] = "traefik.http.routers.{$http_label}.middlewares=gzip";
if ($path !== '/') {
$labels[] = "traefik.http.routers.{$http_label}.middlewares={$http_label}-stripprefix";
$labels[] = "traefik.http.middlewares.{$http_label}-stripprefix.stripprefix.prefixes={$path}";
}
2023-05-16 15:41:23 +02:00
}
2023-05-16 15:10:29 +02:00
}
2023-03-31 13:32:07 +02:00
}
return $labels;
}
2023-05-24 14:26:50 +02:00
private function execute_now(
array|Collection $command,
string $propertyName = null,
bool $isFinished = false,
bool $hideFromOutput = false,
bool $isDebuggable = false,
bool $ignoreErrors = false
) {
2023-04-12 13:09:27 +02:00
static::$batch_counter++;
2023-04-14 13:18:55 +02:00
2023-04-04 14:11:53 +02:00
if ($command instanceof Collection) {
$commandText = $command->implode("\n");
} else {
$commandText = collect($command)->implode("\n");
}
2023-05-31 14:57:42 +02:00
ray('Executing command: ' . $commandText);
$this->activity->properties = $this->activity->properties->merge([
'command' => $commandText,
]);
$this->activity->save();
2023-05-31 11:24:02 +02:00
if ($isDebuggable && !$this->application->settings->is_debug_enabled) {
2023-04-14 13:18:55 +02:00
$hideFromOutput = true;
}
2023-05-24 15:25:08 +02:00
$remote_process = resolve(RunRemoteProcess::class, [
'activity' => $this->activity,
'hideFromOutput' => $hideFromOutput,
'isFinished' => $isFinished,
'ignoreErrors' => $ignoreErrors,
]);
2023-05-24 15:25:08 +02:00
$result = $remote_process();
2023-03-31 15:51:50 +02:00
if ($propertyName) {
$this->activity->properties = $this->activity->properties->merge([
$propertyName => trim($result->output()),
]);
$this->activity->save();
}
if ($result->exitCode() != 0 && $result->errorOutput() && !$ignoreErrors) {
throw new \RuntimeException($result->errorOutput());
}
2023-03-31 15:51:50 +02:00
}
2023-05-30 15:52:17 +02:00
private function set_git_import_settings($git_clone_command)
2023-04-19 15:48:38 +02:00
{
2023-05-10 12:22:27 +02:00
if ($this->application->git_commit_sha !== 'HEAD') {
$git_clone_command = "{$git_clone_command} && cd {$this->workdir} && git -c advice.detachedHead=false checkout {$this->application->git_commit_sha} >/dev/null 2>&1";
2023-04-19 15:48:38 +02:00
}
2023-05-31 11:24:02 +02:00
if ($this->application->settings->is_git_submodules_enabled) {
2023-04-24 13:25:02 +02:00
$git_clone_command = "{$git_clone_command} && cd {$this->workdir} && git submodule update --init --recursive";
2023-04-19 15:48:38 +02:00
}
2023-05-31 11:24:02 +02:00
if ($this->application->settings->is_git_lfs_enabled) {
2023-04-24 13:25:02 +02:00
$git_clone_command = "{$git_clone_command} && cd {$this->workdir} && git lfs pull";
2023-04-19 15:48:38 +02:00
}
return $git_clone_command;
}
2023-05-30 15:52:17 +02:00
private function importing_git_repository()
2023-03-31 15:51:50 +02:00
{
2023-04-19 15:48:38 +02:00
$git_clone_command = "git clone -q -b {$this->application->git_branch}";
2023-06-05 12:07:55 +02:00
if ($this->pull_request_id !== 0) {
2023-05-30 17:00:11 +02:00
$pr_branch_name = "pr-{$this->pull_request_id}-coolify";
2023-05-30 15:52:17 +02:00
}
2023-04-19 15:48:38 +02:00
2023-05-10 13:05:32 +02:00
if ($this->application->deploymentType() === 'source') {
$source_html_url = data_get($this->application, 'source.html_url');
$url = parse_url(filter_var($source_html_url, FILTER_SANITIZE_URL));
$source_html_url_host = $url['host'];
$source_html_url_scheme = $url['scheme'];
if ($this->source->getMorphClass() == 'App\Models\GithubApp') {
if ($this->source->is_public) {
$git_clone_command = "{$git_clone_command} {$this->source->html_url}/{$this->application->git_repository} {$this->workdir}";
2023-05-30 15:52:17 +02:00
$git_clone_command = $this->set_git_import_settings($git_clone_command);
$commands = [$this->execute_in_builder($git_clone_command)];
2023-06-05 12:07:55 +02:00
if ($this->pull_request_id !== 0) {
2023-05-30 17:05:27 +02:00
$commands[] = $this->execute_in_builder("cd {$this->workdir} && git fetch origin pull/{$this->pull_request_id}/head:$pr_branch_name >/dev/null 2>&1 && git checkout $pr_branch_name >/dev/null 2>&1");
2023-05-30 15:52:17 +02:00
}
return $commands;
2023-04-04 14:11:53 +02:00
} else {
2023-05-09 14:42:10 +02:00
$github_access_token = generate_github_installation_token($this->source);
2023-05-30 15:52:17 +02:00
$commands = [
2023-04-04 14:11:53 +02:00
$this->execute_in_builder("git clone -q -b {$this->application->git_branch} $source_html_url_scheme://x-access-token:$github_access_token@$source_html_url_host/{$this->application->git_repository}.git {$this->workdir}")
];
2023-06-05 12:07:55 +02:00
if ($this->pull_request_id !== 0) {
2023-05-30 15:52:17 +02:00
$commands[] = $this->execute_in_builder("cd {$this->workdir} && git fetch origin pull/{$this->pull_request_id}/head:$pr_branch_name && git checkout $pr_branch_name");
}
return $commands;
2023-04-04 14:11:53 +02:00
}
2023-03-31 15:51:50 +02:00
}
}
2023-05-10 13:05:32 +02:00
if ($this->application->deploymentType() === 'deploy_key') {
$private_key = base64_encode($this->application->private_key->private_key);
$git_clone_command = "GIT_SSH_COMMAND=\"ssh -o LogLevel=ERROR -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i /root/.ssh/id_rsa\" {$git_clone_command} {$this->application->git_full_url} {$this->workdir}";
2023-05-30 15:52:17 +02:00
$git_clone_command = $this->set_git_import_settings($git_clone_command);
2023-05-10 13:05:32 +02:00
return [
$this->execute_in_builder("mkdir -p /root/.ssh"),
$this->execute_in_builder("echo '{$private_key}' | base64 -d > /root/.ssh/id_rsa"),
$this->execute_in_builder("chmod 600 /root/.ssh/id_rsa"),
$this->execute_in_builder($git_clone_command)
];
}
2023-03-31 15:51:50 +02:00
}
2023-03-31 16:47:27 +02:00
private function nixpacks_build_cmd()
2023-03-31 15:51:50 +02:00
{
$this->generate_env_variables();
$nixpacks_command = "nixpacks build -o {$this->workdir} {$this->env_args} --no-error-without-start";
2023-04-25 15:48:45 +02:00
if ($this->application->build_command) {
$nixpacks_command .= " --build-cmd \"{$this->application->build_command}\"";
2023-04-25 15:48:45 +02:00
}
if ($this->application->start_command) {
$nixpacks_command .= " --start-cmd \"{$this->application->start_command}\"";
}
if ($this->application->install_command) {
$nixpacks_command .= " --install-cmd \"{$this->application->install_command}\"";
2023-03-31 15:51:50 +02:00
}
2023-04-25 15:48:45 +02:00
$nixpacks_command .= " {$this->workdir}";
2023-03-31 16:47:27 +02:00
return $this->execute_in_builder($nixpacks_command);
}
2023-05-24 14:26:50 +02:00
private function stop_running_container()
{
$this->execute_now([
"echo -n 'Removing old instance... '",
2023-05-30 15:52:17 +02:00
$this->execute_in_builder("docker rm -f $this->container_name >/dev/null 2>&1"),
2023-05-24 14:26:50 +02:00
"echo 'Done.'",
]);
}
private function start_by_compose_file()
{
2023-05-30 15:52:17 +02:00
$this->execute_now([
"echo -n 'Starting your application... '",
]);
2023-05-24 14:26:50 +02:00
$this->execute_now([
$this->execute_in_builder("docker compose --project-directory {$this->workdir} up -d >/dev/null"),
], isDebuggable: true);
$this->execute_now([
"echo 'Done. 🎉'",
], isFinished: true);
}
private function generate_compose_file()
{
$this->docker_compose = $this->generate_docker_compose();
$docker_compose_base64 = base64_encode($this->docker_compose);
$this->execute_now([
2023-05-30 15:52:17 +02:00
$this->execute_in_builder("echo '{$docker_compose_base64}' | base64 -d > {$this->workdir}/docker-compose.yml")
2023-05-24 14:26:50 +02:00
], hideFromOutput: true);
}
2023-03-31 13:32:07 +02:00
}