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

74 lines
2.3 KiB
PHP
Raw Normal View History

2023-04-25 10:47:13 +02:00
<?php
namespace App\Http\Livewire\Server;
use App\Enums\ActivityTypes;
2023-04-25 10:47:13 +02:00
use App\Models\Server;
use Illuminate\Support\Facades\Validator;
use Livewire\Component;
class Form extends Component
{
public $server_id;
public Server $server;
public $uptime;
2023-05-02 19:25:47 +02:00
public $dockerVersion;
public $dockerComposeVersion;
2023-04-25 10:47:13 +02:00
protected $rules = [
'server.name' => 'required|min:6',
'server.description' => 'nullable',
'server.ip' => 'required',
'server.user' => 'required',
'server.port' => 'required',
];
public function mount()
{
$this->server = Server::find($this->server_id);
}
2023-05-02 15:20:45 +02:00
public function installDocker()
{
$config = base64_encode('{ "live-restore": true }');
remoteProcess([
"curl https://releases.rancher.com/install-docker/23.0.sh | sh",
"echo '{$config}' | base64 -d > /etc/docker/daemon.json",
"systemctl restart docker"
], $this->server, ActivityTypes::INLINE->value);
2023-05-02 15:20:45 +02:00
}
2023-05-02 19:25:47 +02:00
public function checkServer()
{
try {
2023-05-03 09:43:01 +02:00
$this->uptime = instantRemoteProcess(['uptime'], $this->server, false);
if (!$this->uptime) {
$this->uptime = 'Server not reachable.';
throw new \Exception('Server not reachable.');
}
$this->dockerVersion = instantRemoteProcess(['docker version|head -2|grep -i version'], $this->server, false);
2023-05-03 09:43:01 +02:00
if (!$this->dockerVersion) {
$this->dockerVersion = 'Not installed.';
}
$this->dockerComposeVersion = instantRemoteProcess(['docker compose version|head -2|grep -i version'], $this->server, false);
2023-05-03 09:43:01 +02:00
if (!$this->dockerComposeVersion) {
$this->dockerComposeVersion = 'Not installed.';
}
} catch (\Exception $e) {
}
}
2023-04-25 10:47:13 +02:00
public function submit()
{
$this->validate();
// $validation = Validator::make($this->server->toArray(), [
// 'ip' => [
// 'ip'
// ],
// ]);
// if ($validation->fails()) {
// foreach ($validation->errors()->getMessages() as $key => $value) {
// $this->addError("server.{$key}", $value[0]);
// }
// return;
// }
$this->server->save();
}
}