lasthourcloud/app/Http/Livewire/Server/Form.php

127 lines
4.4 KiB
PHP
Raw Normal View History

2023-04-25 08:47:13 +00:00
<?php
namespace App\Http\Livewire\Server;
2023-05-04 07:11:11 +00:00
use App\Actions\Server\InstallDocker;
2023-04-25 08:47:13 +00:00
use App\Models\Server;
2023-08-29 13:51:30 +00:00
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
2023-04-25 08:47:13 +00:00
use Livewire\Component;
class Form extends Component
{
2023-08-29 13:51:30 +00:00
use AuthorizesRequests;
2023-04-25 08:47:13 +00:00
public Server $server;
2023-10-09 09:00:18 +00:00
public bool $isValidConnection = false;
public bool $isValidDocker = false;
public ?string $wildcard_domain = null;
2023-07-07 19:07:42 +00:00
public int $cleanup_after_percentage;
2023-09-18 09:49:26 +00:00
public bool $dockerInstallationStarted = false;
2023-10-09 09:00:18 +00:00
protected $listeners = ['serverRefresh'];
2023-04-25 08:47:13 +00:00
protected $rules = [
'server.name' => 'required|min:6',
'server.description' => 'nullable',
'server.ip' => 'required',
'server.user' => 'required',
'server.port' => 'required',
2023-09-23 11:34:40 +00:00
'server.settings.is_cloudflare_tunnel' => 'required',
2023-06-15 11:51:31 +00:00
'server.settings.is_reachable' => 'required',
2023-06-22 13:25:57 +00:00
'server.settings.is_part_of_swarm' => 'required',
2023-06-23 12:20:47 +00:00
'wildcard_domain' => 'nullable|url',
2023-04-25 08:47:13 +00:00
];
2023-06-16 10:35:40 +00:00
protected $validationAttributes = [
'server.name' => 'name',
'server.description' => 'description',
'server.ip' => 'ip',
'server.user' => 'user',
'server.port' => 'port',
2023-09-23 11:34:40 +00:00
'server.settings.is_cloudflare_tunnel' => 'Cloudflare Tunnel',
2023-06-16 10:35:40 +00:00
'server.settings.is_reachable' => 'is reachable',
'server.settings.is_part_of_swarm' => 'is part of swarm'
];
2023-06-22 13:25:57 +00:00
public function mount()
{
$this->wildcard_domain = $this->server->settings->wildcard_domain;
2023-07-07 19:07:42 +00:00
$this->cleanup_after_percentage = $this->server->settings->cleanup_after_percentage;
2023-06-22 13:25:57 +00:00
}
2023-10-09 09:00:18 +00:00
public function serverRefresh() {
$this->validateServer();
}
public function instantSave()
{
2023-09-24 08:48:54 +00:00
refresh_server_connection($this->server->privateKey);
$this->validateServer();
2023-09-23 11:34:40 +00:00
$this->server->settings->save();
}
2023-05-02 13:20:45 +00:00
public function installDocker()
{
2023-10-09 09:00:18 +00:00
$this->emit('installDocker');
2023-09-18 09:49:26 +00:00
$this->dockerInstallationStarted = true;
2023-10-09 09:00:18 +00:00
$activity = InstallDocker::run($this->server);
2023-05-04 07:11:11 +00:00
$this->emit('newMonitorActivity', $activity->id);
2023-05-02 13:20:45 +00:00
}
2023-10-09 09:00:18 +00:00
public function validateServer($install = true)
{
try {
2023-10-09 09:00:18 +00:00
$uptime = $this->server->validateConnection();
if ($uptime) {
2023-10-09 09:00:18 +00:00
$install && $this->emit('success', 'Server is reachable.');
} else {
2023-10-09 09:00:18 +00:00
$install &&$this->emit('error', 'Server is not reachable. Please check your connection and private key configuration.');
2023-09-11 15:19:30 +00:00
return;
2023-05-03 07:43:01 +00:00
}
2023-10-09 09:00:18 +00:00
$dockerInstalled = $this->server->validateDockerEngine();
if ($dockerInstalled) {
$install && $this->emit('success', 'Docker Engine is installed.<br> Checking version.');
} else {
$install && $this->installDocker();
return;
}
$dockerVersion = $this->server->validateDockerEngineVersion();
if ($dockerVersion) {
2023-10-09 09:00:18 +00:00
$install && $this->emit('success', 'Docker Engine version is 23+.');
} else {
2023-10-09 09:00:18 +00:00
$install && $this->installDocker();
return;
2023-05-03 07:43:01 +00:00
}
2023-09-11 15:36:30 +00:00
} catch (\Throwable $e) {
2023-10-09 09:00:18 +00:00
return handleError($e, $this);
2023-09-24 08:48:54 +00:00
} finally {
$this->emit('proxyStatusUpdated');
}
}
2023-05-03 08:25:44 +00:00
public function delete()
{
2023-08-29 13:51:30 +00:00
try {
$this->authorize('delete', $this->server);
if (!$this->server->isEmpty()) {
$this->emit('error', 'Server has defined resources. Please delete them first.');
return;
}
$this->server->delete();
return redirect()->route('server.all');
2023-09-11 15:36:30 +00:00
} catch (\Throwable $e) {
return handleError($e, $this);
2023-06-15 13:15:27 +00:00
}
2023-08-29 13:51:30 +00:00
}
2023-04-25 08:47:13 +00:00
public function submit()
{
$this->validate();
2023-09-14 16:10:13 +00:00
$uniqueIPs = Server::all()->reject(function (Server $server) {
return $server->id === $this->server->id;
})->pluck('ip')->toArray();
if (in_array($this->server->ip, $uniqueIPs)) {
$this->emit('error', 'IP address is already in use by another team.');
return;
}
2023-06-22 13:25:57 +00:00
$this->server->settings->wildcard_domain = $this->wildcard_domain;
2023-07-07 19:07:42 +00:00
$this->server->settings->cleanup_after_percentage = $this->cleanup_after_percentage;
2023-06-22 13:25:57 +00:00
$this->server->settings->save();
2023-04-25 08:47:13 +00:00
$this->server->save();
2023-06-22 08:04:39 +00:00
$this->emit('success', 'Server updated successfully.');
2023-04-25 08:47:13 +00:00
}
}