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

88 lines
2.8 KiB
PHP
Raw Normal View History

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