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

108 lines
4.5 KiB
PHP
Raw Normal View History

<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Project\Application;
use App\Models\Application;
use Livewire\Component;
class Advanced extends Component
{
public Application $application;
2024-06-10 22:43:34 +02:00
public bool $is_force_https_enabled;
2024-06-10 22:43:34 +02:00
public bool $is_gzip_enabled;
2024-06-10 22:43:34 +02:00
public bool $is_stripprefix_enabled;
2024-06-10 22:43:34 +02:00
protected $rules = [
'application.settings.is_git_submodules_enabled' => 'boolean|required',
'application.settings.is_git_lfs_enabled' => 'boolean|required',
'application.settings.is_preview_deployments_enabled' => 'boolean|required',
'application.settings.is_auto_deploy_enabled' => 'boolean|required',
'is_force_https_enabled' => 'boolean|required',
'application.settings.is_log_drain_enabled' => 'boolean|required',
'application.settings.is_gpu_enabled' => 'boolean|required',
'application.settings.is_build_server_enabled' => 'boolean|required',
'application.settings.is_consistent_container_name_enabled' => 'boolean|required',
'application.settings.custom_internal_name' => 'string|nullable',
'application.settings.is_gzip_enabled' => 'boolean|required',
'application.settings.is_stripprefix_enabled' => 'boolean|required',
'application.settings.gpu_driver' => 'string|required',
'application.settings.gpu_count' => 'string|required',
'application.settings.gpu_device_ids' => 'string|required',
'application.settings.gpu_options' => 'string|required',
'application.settings.is_raw_compose_deployment_enabled' => 'boolean|required',
'application.settings.connect_to_docker_network' => 'boolean|required',
];
2024-06-10 22:43:34 +02:00
public function mount()
{
$this->is_force_https_enabled = $this->application->isForceHttpsEnabled();
$this->is_gzip_enabled = $this->application->isGzipEnabled();
$this->is_stripprefix_enabled = $this->application->isStripprefixEnabled();
}
2024-06-10 22:43:34 +02:00
public function instantSave()
{
if ($this->application->isLogDrainEnabled()) {
2024-06-10 22:43:34 +02:00
if (! $this->application->destination->server->isLogDrainEnabled()) {
$this->application->settings->is_log_drain_enabled = false;
2023-12-07 19:06:32 +01:00
$this->dispatch('error', 'Log drain is not enabled on this server.');
2024-06-10 22:43:34 +02:00
return;
}
}
if ($this->application->settings->is_force_https_enabled !== $this->is_force_https_enabled) {
$this->application->settings->is_force_https_enabled = $this->is_force_https_enabled;
2023-12-07 19:06:32 +01:00
$this->dispatch('resetDefaultLabels', false);
}
if ($this->application->settings->is_gzip_enabled !== $this->is_gzip_enabled) {
$this->application->settings->is_gzip_enabled = $this->is_gzip_enabled;
$this->dispatch('resetDefaultLabels', false);
}
if ($this->application->settings->is_stripprefix_enabled !== $this->is_stripprefix_enabled) {
$this->application->settings->is_stripprefix_enabled = $this->is_stripprefix_enabled;
$this->dispatch('resetDefaultLabels', false);
}
if ($this->application->settings->is_raw_compose_deployment_enabled) {
$this->application->parseRawCompose();
} else {
$this->application->parseCompose();
}
$this->application->settings->save();
2023-12-07 19:06:32 +01:00
$this->dispatch('success', 'Settings saved.');
$this->dispatch('configurationChanged');
}
2024-06-10 22:43:34 +02:00
public function submit()
{
if ($this->application->settings->gpu_count && $this->application->settings->gpu_device_ids) {
2023-12-07 19:06:32 +01:00
$this->dispatch('error', 'You cannot set both GPU count and GPU device IDs.');
$this->application->settings->gpu_count = null;
$this->application->settings->gpu_device_ids = null;
$this->application->settings->save();
2024-06-10 22:43:34 +02:00
return;
}
$this->application->settings->save();
2023-12-07 19:06:32 +01:00
$this->dispatch('success', 'Settings saved.');
}
2024-06-10 22:43:34 +02:00
public function saveCustomName()
{
if (isset($this->application->settings->custom_internal_name)) {
$this->application->settings->custom_internal_name = str($this->application->settings->custom_internal_name)->slug()->value();
} else {
$this->application->settings->custom_internal_name = null;
}
$this->application->settings->save();
$this->dispatch('success', 'Custom name saved.');
}
2024-06-10 22:43:34 +02:00
public function render()
{
return view('livewire.project.application.advanced');
}
}