coolify/app/Http/Livewire/Project/Service/Index.php

65 lines
1.9 KiB
PHP
Raw Normal View History

2023-09-20 15:42:41 +02:00
<?php
namespace App\Http\Livewire\Project\Service;
2023-09-26 15:07:33 +02:00
use App\Jobs\ContainerStatusJob;
2023-09-20 15:42:41 +02:00
use App\Models\Service;
2023-09-26 14:45:52 +02:00
use DanHarrin\LivewireRateLimiting\WithRateLimiting;
2023-09-20 15:42:41 +02:00
use Livewire\Component;
class Index extends Component
{
public Service $service;
2023-09-25 15:48:43 +02:00
public $applications;
public $databases;
2023-09-20 15:42:41 +02:00
public array $parameters;
public array $query;
2023-09-21 17:48:31 +02:00
protected $rules = [
2023-09-22 11:23:49 +02:00
'service.docker_compose_raw' => 'required',
'service.docker_compose' => 'required',
'service.name' => 'required',
'service.description' => 'nullable',
2023-09-21 17:48:31 +02:00
];
2023-09-27 21:14:13 +02:00
public function checkStatus() {
dispatch_sync(new ContainerStatusJob($this->service->server));
$this->refreshStack();
2023-09-26 14:45:52 +02:00
}
public function refreshStack()
{
$this->applications = $this->service->applications->sort();
$this->applications->each(function ($application) {
2023-09-27 21:14:13 +02:00
$application->refresh();
2023-09-26 14:45:52 +02:00
});
$this->databases = $this->service->databases->sort();
$this->databases->each(function ($database) {
2023-09-27 21:14:13 +02:00
$database->refresh();
2023-09-26 14:45:52 +02:00
});
}
2023-09-21 17:48:31 +02:00
public function mount()
{
2023-09-20 15:42:41 +02:00
$this->parameters = get_route_parameters();
$this->query = request()->query();
$this->service = Service::whereUuid($this->parameters['service_uuid'])->firstOrFail();
2023-09-26 14:45:52 +02:00
$this->refreshStack();
2023-09-20 15:42:41 +02:00
}
public function render()
{
2023-09-22 11:23:49 +02:00
return view('livewire.project.service.index');
2023-09-20 15:42:41 +02:00
}
2023-09-27 12:45:53 +02:00
public function submit()
{
2023-09-25 15:48:43 +02:00
try {
2023-09-27 12:45:53 +02:00
$this->validate();
2023-09-25 15:48:43 +02:00
$this->service->save();
$this->service->parse();
$this->service->refresh();
$this->service->saveComposeConfigs();
2023-09-27 12:45:53 +02:00
$this->refreshStack();
$this->emit('refreshEnvs');
$this->emit('success', 'Service saved successfully.');
} catch (\Throwable $e) {
return handleError($e, $this);
}
}
2023-09-20 15:42:41 +02:00
}