coolify/app/Livewire/Project/Application/General.php

371 lines
18 KiB
PHP
Raw Normal View History

2023-04-19 12:42:15 +02:00
<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Project\Application;
2023-04-19 12:42:15 +02:00
use App\Models\Application;
use App\Models\LocalFileVolume;
2023-09-20 15:42:41 +02:00
use Illuminate\Support\Collection;
2023-05-16 15:41:23 +02:00
use Illuminate\Support\Str;
2023-11-13 09:04:19 +01:00
use Livewire\Component;
2023-11-24 15:48:23 +01:00
use Visus\Cuid2\Cuid2;
2023-04-19 12:42:15 +02:00
class General extends Component
{
public string $applicationId;
public Application $application;
2023-09-20 15:42:41 +02:00
public Collection $services;
2023-04-19 12:42:15 +02:00
public string $name;
2023-10-09 11:10:04 +02:00
public ?string $fqdn = null;
2023-04-19 12:42:15 +02:00
public string $git_repository;
public string $git_branch;
2023-10-09 11:10:04 +02:00
public ?string $git_commit_sha = null;
2023-04-19 12:42:15 +02:00
public string $build_pack;
public ?string $ports_exposes = null;
2024-05-15 17:52:14 +02:00
public bool $is_container_label_escape_enabled = true;
2023-04-19 12:42:15 +02:00
public $customLabels;
public bool $labelsChanged = false;
public bool $initLoadingCompose = false;
public ?string $initialDockerComposeLocation = null;
2023-11-27 15:50:22 +01:00
public ?string $initialDockerComposePrLocation = null;
public null|Collection $parsedServices;
2023-11-24 15:48:23 +01:00
public $parsedServiceDomains = [];
protected $listeners = [
'resetDefaultLabels',
'configurationChanged' => '$refresh'
];
2023-04-19 12:42:15 +02:00
protected $rules = [
2023-07-06 14:37:14 +02:00
'application.name' => 'required',
2023-08-07 18:46:40 +02:00
'application.description' => 'nullable',
2023-04-19 12:42:15 +02:00
'application.fqdn' => 'nullable',
'application.git_repository' => 'required',
'application.git_branch' => 'required',
'application.git_commit_sha' => 'nullable',
2023-05-05 09:02:50 +02:00
'application.install_command' => 'nullable',
'application.build_command' => 'nullable',
'application.start_command' => 'nullable',
2023-04-19 12:42:15 +02:00
'application.build_pack' => 'required',
2023-04-25 15:48:45 +02:00
'application.static_image' => 'required',
2023-04-19 12:42:15 +02:00
'application.base_directory' => 'required',
'application.publish_directory' => 'nullable',
2023-04-25 14:43:35 +02:00
'application.ports_exposes' => 'required',
'application.ports_mappings' => 'nullable',
2023-08-11 22:41:47 +02:00
'application.dockerfile' => 'nullable',
2023-10-10 11:16:38 +02:00
'application.docker_registry_image_name' => 'nullable',
'application.docker_registry_image_tag' => 'nullable',
2023-10-10 14:02:43 +02:00
'application.dockerfile_location' => 'nullable',
2023-11-24 15:48:23 +01:00
'application.docker_compose_location' => 'nullable',
2023-11-27 15:50:22 +01:00
'application.docker_compose_pr_location' => 'nullable',
2023-11-24 15:48:23 +01:00
'application.docker_compose' => 'nullable',
'application.docker_compose_pr' => 'nullable',
2023-11-24 15:48:23 +01:00
'application.docker_compose_raw' => 'nullable',
'application.docker_compose_pr_raw' => 'nullable',
'application.dockerfile_target_build' => 'nullable',
2023-12-17 20:56:12 +01:00
'application.docker_compose_custom_start_command' => 'nullable',
'application.docker_compose_custom_build_command' => 'nullable',
'application.custom_labels' => 'nullable',
'application.custom_docker_run_options' => 'nullable',
2024-02-08 11:02:30 +01:00
'application.pre_deployment_command' => 'nullable',
'application.pre_deployment_command_container' => 'nullable',
'application.post_deployment_command' => 'nullable',
'application.post_deployment_command_container' => 'nullable',
'application.settings.is_static' => 'boolean|required',
2024-01-18 11:40:13 +01:00
'application.settings.is_build_server_enabled' => 'boolean|required',
2024-05-15 17:52:14 +02:00
'application.settings.is_container_label_escape_enabled' => 'boolean|required',
2024-03-28 15:05:12 +01:00
'application.watch_paths' => 'nullable',
2023-04-19 12:42:15 +02:00
];
2023-06-16 12:35:40 +02:00
protected $validationAttributes = [
'application.name' => 'name',
2023-08-07 18:46:40 +02:00
'application.description' => 'description',
2023-06-16 12:35:40 +02:00
'application.fqdn' => 'FQDN',
'application.git_repository' => 'Git repository',
'application.git_branch' => 'Git branch',
'application.git_commit_sha' => 'Git commit SHA',
'application.install_command' => 'Install command',
'application.build_command' => 'Build command',
'application.start_command' => 'Start command',
'application.build_pack' => 'Build pack',
'application.static_image' => 'Static image',
'application.base_directory' => 'Base directory',
'application.publish_directory' => 'Publish directory',
'application.ports_exposes' => 'Ports exposes',
'application.ports_mappings' => 'Ports mappings',
2023-08-11 22:41:47 +02:00
'application.dockerfile' => 'Dockerfile',
2023-10-10 11:16:38 +02:00
'application.docker_registry_image_name' => 'Docker registry image name',
'application.docker_registry_image_tag' => 'Docker registry image tag',
2023-10-10 14:02:43 +02:00
'application.dockerfile_location' => 'Dockerfile location',
2023-11-24 15:48:23 +01:00
'application.docker_compose_location' => 'Docker compose location',
2023-11-27 15:50:22 +01:00
'application.docker_compose_pr_location' => 'Docker compose location',
2023-11-24 15:48:23 +01:00
'application.docker_compose' => 'Docker compose',
'application.docker_compose_pr' => 'Docker compose',
2023-11-24 15:48:23 +01:00
'application.docker_compose_raw' => 'Docker compose raw',
'application.docker_compose_pr_raw' => 'Docker compose raw',
'application.custom_labels' => 'Custom labels',
'application.dockerfile_target_build' => 'Dockerfile target build',
'application.custom_docker_run_options' => 'Custom docker run commands',
2023-12-17 20:56:12 +01:00
'application.docker_compose_custom_start_command' => 'Docker compose custom start command',
'application.docker_compose_custom_build_command' => 'Docker compose custom build command',
'application.settings.is_static' => 'Is static',
2024-01-18 11:40:13 +01:00
'application.settings.is_build_server_enabled' => 'Is build server enabled',
2024-05-15 17:52:14 +02:00
'application.settings.is_container_label_escape_enabled' => 'Is container label escape enabled',
2024-03-28 15:05:12 +01:00
'application.watch_paths' => 'Watch paths',
2023-06-16 12:35:40 +02:00
];
public function mount()
{
2023-11-24 15:48:23 +01:00
try {
$this->parsedServices = $this->application->parseCompose();
if (is_null($this->parsedServices) || empty($this->parsedServices)) {
$this->dispatch('error', "Failed to parse your docker-compose file. Please check the syntax and try again.");
return;
}
2023-11-24 15:48:23 +01:00
} catch (\Throwable $e) {
2023-12-07 19:06:32 +01:00
$this->dispatch('error', $e->getMessage());
2023-11-24 15:48:23 +01:00
}
if ($this->application->build_pack === 'dockercompose') {
$this->application->fqdn = null;
$this->application->settings->save();
}
2023-11-24 15:48:23 +01:00
$this->parsedServiceDomains = $this->application->docker_compose_domains ? json_decode($this->application->docker_compose_domains, true) : [];
$this->ports_exposes = $this->application->ports_exposes;
2024-05-15 17:52:14 +02:00
$this->is_container_label_escape_enabled = $this->application->settings->is_container_label_escape_enabled;
$this->customLabels = $this->application->parseContainerLabels();
2024-03-11 15:08:05 +01:00
if (!$this->customLabels && $this->application->destination->server->proxyType() !== 'NONE') {
$this->customLabels = str(implode("|", generateLabelsApplication($this->application)))->replace("|", "\n");
$this->application->custom_labels = base64_encode($this->customLabels);
$this->application->save();
2024-01-02 16:44:41 +01:00
}
$this->initialDockerComposeLocation = $this->application->docker_compose_location;
if ($this->application->build_pack === 'dockercompose' && !$this->application->docker_compose_raw) {
$this->initLoadingCompose = true;
$this->dispatch('info', 'Loading docker compose file.');
}
if (str($this->application->status)->startsWith('running') && is_null($this->application->config_hash)) {
$this->dispatch('configurationChanged');
}
}
public function instantSave()
{
$this->application->settings->save();
2023-12-07 19:06:32 +01:00
$this->dispatch('success', 'Settings saved.');
2023-12-06 21:32:23 +01:00
$this->application->refresh();
2024-05-15 17:52:14 +02:00
if ($this->ports_exposes !== $this->application->ports_exposes || $this->is_container_label_escape_enabled !== $this->application->settings->is_container_label_escape_enabled) {
2023-12-06 21:32:23 +01:00
$this->resetDefaultLabels(false);
}
}
2023-11-24 15:48:23 +01:00
public function loadComposeFile($isInit = false)
{
try {
if ($isInit && $this->application->docker_compose_raw) {
return;
}
2023-11-27 15:50:22 +01:00
['parsedServices' => $this->parsedServices, 'initialDockerComposeLocation' => $this->initialDockerComposeLocation, 'initialDockerComposePrLocation' => $this->initialDockerComposePrLocation] = $this->application->loadComposeFile($isInit);
if (is_null($this->parsedServices)) {
$this->dispatch('error', "Failed to parse your docker-compose file. Please check the syntax and try again.");
return;
}
$compose = $this->application->parseCompose();
$services = data_get($compose, 'services');
if ($services) {
$volumes = collect($services)->map(function ($service) {
return data_get($service, 'volumes');
})->flatten()->filter(function ($volume) {
return str($volume)->startsWith('/data/coolify');
})->unique()->values();
foreach ($volumes as $volume) {
$source = Str::of($volume)->before(':');
$target = Str::of($volume)->after(':')->beforeLast(':');
LocalFileVolume::updateOrCreate(
[
'mount_path' => $target,
'resource_id' => $this->application->id,
'resource_type' => get_class($this->application)
],
[
'fs_path' => $source,
'mount_path' => $target,
'resource_id' => $this->application->id,
'resource_type' => get_class($this->application)
]
);
}
}
2023-12-07 19:06:32 +01:00
$this->dispatch('success', 'Docker compose file loaded.');
$this->dispatch('compose_loaded');
$this->dispatch('refresh_storages');
$this->dispatch('refreshEnvs');
} catch (\Throwable $e) {
$this->application->docker_compose_location = $this->initialDockerComposeLocation;
2023-11-27 15:50:22 +01:00
$this->application->docker_compose_pr_location = $this->initialDockerComposePrLocation;
$this->application->save();
return handleError($e, $this);
} finally {
$this->initLoadingCompose = false;
2023-11-24 15:48:23 +01:00
}
}
public function generateDomain(string $serviceName)
{
$uuid = new Cuid2(7);
$domain = generateFqdn($this->application->destination->server, $uuid);
$this->parsedServiceDomains[$serviceName]['domain'] = $domain;
$this->application->docker_compose_domains = json_encode($this->parsedServiceDomains);
$this->application->save();
$this->dispatch('success', 'Domain generated.');
2024-05-15 17:52:14 +02:00
if ($this->application->build_pack === 'dockercompose') {
$this->loadComposeFile();
}
return $domain;
2023-11-24 15:48:23 +01:00
}
public function updatedApplicationBaseDirectory()
{
if ($this->application->build_pack === 'dockercompose') {
$this->loadComposeFile();
}
}
public function updatedApplicationFqdn()
{
$this->application->fqdn = str($this->application->fqdn)->replaceEnd(',', '')->trim();
$this->application->fqdn = str($this->application->fqdn)->replaceStart(',', '')->trim();
$this->application->fqdn = str($this->application->fqdn)->trim()->explode(',')->map(function ($domain) {
return str($domain)->trim()->lower();
});
$this->application->fqdn = $this->application->fqdn->unique()->implode(',');
$this->resetDefaultLabels();
}
public function updatedApplicationBuildPack()
{
if ($this->application->build_pack !== 'nixpacks') {
2023-12-06 21:32:23 +01:00
$this->application->settings->is_static = false;
$this->application->settings->save();
2024-01-10 11:00:06 +01:00
} else {
$this->application->ports_exposes = $this->ports_exposes = 3000;
$this->resetDefaultLabels(false);
}
2023-11-27 15:25:15 +01:00
if ($this->application->build_pack === 'dockercompose') {
$this->application->fqdn = null;
$this->application->settings->save();
}
if ($this->application->build_pack === 'static') {
$this->application->ports_exposes = $this->ports_exposes = 80;
$this->resetDefaultLabels(false);
}
2023-10-11 12:12:25 +02:00
$this->submit();
2024-03-01 10:36:32 +01:00
$this->dispatch('buildPackUpdated');
2023-10-11 12:12:25 +02:00
}
public function getWildcardDomain()
{
2023-09-30 15:39:40 +02:00
$server = data_get($this->application, 'destination.server');
if ($server) {
$fqdn = generateFqdn($server, $this->application->uuid);
$this->application->fqdn = $fqdn;
$this->application->save();
$this->resetDefaultLabels();
$this->dispatch('success', 'Wildcard domain generated.');
2023-09-30 15:39:40 +02:00
}
}
public function resetDefaultLabels()
2023-04-19 12:42:15 +02:00
{
$this->customLabels = str(implode("|", generateLabelsApplication($this->application)))->replace("|", "\n");
$this->ports_exposes = $this->application->ports_exposes;
2024-05-15 17:52:14 +02:00
$this->is_container_label_escape_enabled = $this->application->settings->is_container_label_escape_enabled;
$this->application->custom_labels = base64_encode($this->customLabels);
$this->application->save();
2024-05-15 17:52:14 +02:00
if ($this->application->build_pack === 'dockercompose') {
$this->loadComposeFile();
}
2023-04-19 12:42:15 +02:00
}
public function checkFqdns($showToaster = true)
{
if (data_get($this->application, 'fqdn')) {
$domains = str($this->application->fqdn)->trim()->explode(',');
if ($this->application->additional_servers->count() === 0) {
foreach ($domains as $domain) {
if (!validate_dns_entry($domain, $this->application->destination->server)) {
$showToaster && $this->dispatch('error', "Validating DNS failed.", "Make sure you have added the DNS records correctly.<br><br>$domain->{$this->application->destination->server->ip}<br><br>Check this <a target='_blank' class='underline dark:text-white' href='https://coolify.io/docs/knowledge-base/dns-configuration'>documentation</a> for further help.");
}
}
}
check_domain_usage(resource: $this->application);
$this->application->fqdn = $domains->implode(',');
}
}
public function submit($showToaster = true)
2023-04-19 12:42:15 +02:00
{
2023-05-16 15:27:47 +02:00
try {
$this->application->fqdn = str($this->application->fqdn)->replaceEnd(',', '')->trim();
$this->application->fqdn = str($this->application->fqdn)->replaceStart(',', '')->trim();
$this->application->fqdn = str($this->application->fqdn)->trim()->explode(',')->map(function ($domain) {
return str($domain)->trim()->lower();
});
$this->application->fqdn = $this->application->fqdn->unique()->implode(',');
$this->checkFqdns();
$this->application->save();
2024-03-11 15:08:05 +01:00
if (!$this->customLabels && $this->application->destination->server->proxyType() !== 'NONE') {
$this->customLabels = str(implode("|", generateLabelsApplication($this->application)))->replace("|", "\n");
$this->application->custom_labels = base64_encode($this->customLabels);
$this->application->save();
}
2023-12-17 20:56:12 +01:00
if ($this->application->build_pack === 'dockercompose' && $this->initialDockerComposeLocation !== $this->application->docker_compose_location) {
$compose_return = $this->loadComposeFile();
if ($compose_return instanceof \Livewire\Features\SupportEvents\Event) {
2024-05-15 17:52:14 +02:00
return;
}
}
2023-09-20 15:42:41 +02:00
$this->validate();
2024-05-15 17:52:14 +02:00
if ($this->ports_exposes !== $this->application->ports_exposes || $this->is_container_label_escape_enabled !== $this->application->settings->is_container_label_escape_enabled) {
$this->resetDefaultLabels();
}
if (data_get($this->application, 'build_pack') === 'dockerimage') {
$this->validate([
'application.docker_registry_image_name' => 'required',
]);
}
if (data_get($this->application, 'custom_docker_run_options')) {
$this->application->custom_docker_run_options = str($this->application->custom_docker_run_options)->trim();
}
2023-09-19 15:51:13 +02:00
if (data_get($this->application, 'dockerfile')) {
2023-08-21 18:00:12 +02:00
$port = get_port_from_dockerfile($this->application->dockerfile);
if ($port && !$this->application->ports_exposes) {
2023-08-21 18:00:12 +02:00
$this->application->ports_exposes = $port;
}
2023-08-11 22:41:47 +02:00
}
2023-07-07 14:56:20 +02:00
if ($this->application->base_directory && $this->application->base_directory !== '/') {
$this->application->base_directory = rtrim($this->application->base_directory, '/');
}
if ($this->application->publish_directory && $this->application->publish_directory !== '/') {
$this->application->publish_directory = rtrim($this->application->publish_directory, '/');
}
if ($this->application->build_pack === 'dockercompose') {
$this->application->docker_compose_domains = json_encode($this->parsedServiceDomains);
foreach ($this->parsedServiceDomains as $serviceName => $service) {
$domain = data_get($service, 'domain');
if ($domain) {
if (!validate_dns_entry($domain, $this->application->destination->server)) {
$showToaster && $this->dispatch('error', "Validating DNS failed.", "Make sure you have added the DNS records correctly.<br><br>$domain->{$this->application->destination->server->ip}<br><br>Check this <a target='_blank' class='underline dark:text-white' href='https://coolify.io/docs/knowledge-base/dns-configuration'>documentation</a> for further help.");
}
check_domain_usage(resource: $this->application);
}
}
}
2023-12-12 16:34:05 +01:00
$this->application->custom_labels = base64_encode($this->customLabels);
2023-05-16 15:27:47 +02:00
$this->application->save();
2023-12-07 19:06:32 +01:00
$showToaster && $this->dispatch('success', 'Application settings updated!');
2023-09-11 17:36:30 +02:00
} catch (\Throwable $e) {
return handleError($e, $this);
} finally {
$this->dispatch('configurationChanged');
2023-05-16 15:27:47 +02:00
}
2023-04-19 12:42:15 +02:00
}
}