coolify/app/Livewire/Project/Database/Heading.php

99 lines
3.4 KiB
PHP
Raw Normal View History

2023-08-07 18:46:40 +02:00
<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Project\Database;
2023-08-07 18:46:40 +02:00
2024-04-10 15:00:46 +02:00
use App\Actions\Database\StartClickhouse;
use App\Actions\Database\StartDragonfly;
use App\Actions\Database\StartKeydb;
2023-10-24 14:31:28 +02:00
use App\Actions\Database\StartMariadb;
2023-10-19 13:32:03 +02:00
use App\Actions\Database\StartMongodb;
2023-10-24 14:31:28 +02:00
use App\Actions\Database\StartMysql;
2023-08-07 18:46:40 +02:00
use App\Actions\Database\StartPostgresql;
2023-10-12 17:18:33 +02:00
use App\Actions\Database\StartRedis;
use App\Actions\Database\StopDatabase;
2024-05-07 15:41:50 +02:00
use App\Actions\Docker\GetContainersStatus;
use Livewire\Component;
2023-08-07 18:46:40 +02:00
class Heading extends Component
{
public $database;
2024-06-10 22:43:34 +02:00
2023-08-07 18:46:40 +02:00
public array $parameters;
2023-12-11 09:02:53 +01:00
public function getListeners()
{
$userId = auth()->user()->id;
2024-06-10 22:43:34 +02:00
2023-12-11 09:02:53 +01:00
return [
"echo-private:user.{$userId},DatabaseStatusChanged" => 'activityFinished',
2023-12-11 09:02:53 +01:00
];
}
public function activityFinished()
{
2023-08-07 22:14:21 +02:00
$this->database->update([
'started_at' => now(),
]);
2023-12-07 19:06:32 +01:00
$this->dispatch('refresh');
2023-08-07 22:14:21 +02:00
$this->check_status();
if (is_null($this->database->config_hash) || $this->database->isConfigurationChanged()) {
$this->database->isConfigurationChanged(true);
$this->dispatch('configurationChanged');
} else {
$this->dispatch('configurationChanged');
}
2023-08-07 22:14:21 +02:00
}
public function check_status($showNotification = false)
2023-08-07 22:14:21 +02:00
{
GetContainersStatus::run($this->database->destination->server);
2024-05-07 15:41:50 +02:00
// dispatch_sync(new ContainerStatusJob($this->database->destination->server));
2023-08-07 22:14:21 +02:00
$this->database->refresh();
2024-06-10 22:43:34 +02:00
if ($showNotification) {
$this->dispatch('success', 'Database status updated.');
}
2023-08-07 22:14:21 +02:00
}
2023-08-07 18:46:40 +02:00
public function mount()
{
$this->parameters = get_route_parameters();
2023-08-07 18:46:40 +02:00
}
public function stop()
{
StopDatabase::run($this->database);
2023-09-18 12:38:11 +02:00
$this->database->status = 'exited';
2023-08-07 22:14:21 +02:00
$this->database->save();
$this->check_status();
2023-08-07 22:14:21 +02:00
}
public function start()
{
2023-08-07 22:14:21 +02:00
if ($this->database->type() === 'standalone-postgresql') {
2023-10-20 14:51:01 +02:00
$activity = StartPostgresql::run($this->database);
$this->dispatch('activityMonitor', $activity->id);
2024-06-10 22:43:34 +02:00
} elseif ($this->database->type() === 'standalone-redis') {
2023-10-20 14:51:01 +02:00
$activity = StartRedis::run($this->database);
$this->dispatch('activityMonitor', $activity->id);
2024-06-10 22:43:34 +02:00
} elseif ($this->database->type() === 'standalone-mongodb') {
2023-10-20 14:51:01 +02:00
$activity = StartMongodb::run($this->database);
$this->dispatch('activityMonitor', $activity->id);
2024-06-10 22:43:34 +02:00
} elseif ($this->database->type() === 'standalone-mysql') {
2023-10-24 14:31:28 +02:00
$activity = StartMysql::run($this->database);
$this->dispatch('activityMonitor', $activity->id);
2024-06-10 22:43:34 +02:00
} elseif ($this->database->type() === 'standalone-mariadb') {
2023-10-24 14:31:28 +02:00
$activity = StartMariadb::run($this->database);
$this->dispatch('activityMonitor', $activity->id);
2024-06-10 22:43:34 +02:00
} elseif ($this->database->type() === 'standalone-keydb') {
2024-04-10 15:00:46 +02:00
$activity = StartKeydb::run($this->database);
$this->dispatch('activityMonitor', $activity->id);
2024-06-10 22:43:34 +02:00
} elseif ($this->database->type() === 'standalone-dragonfly') {
2024-04-10 15:00:46 +02:00
$activity = StartDragonfly::run($this->database);
$this->dispatch('activityMonitor', $activity->id);
2024-06-10 22:43:34 +02:00
} elseif ($this->database->type() === 'standalone-clickhouse') {
2024-04-10 15:00:46 +02:00
$activity = StartClickhouse::run($this->database);
$this->dispatch('activityMonitor', $activity->id);
2023-10-19 13:32:03 +02:00
}
2023-08-07 18:46:40 +02:00
}
2023-08-07 22:14:21 +02:00
}