coolify/app/Models/StandalonePostgresql.php

231 lines
6.8 KiB
PHP
Raw Normal View History

2023-08-07 22:14:21 +02:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Casts\Attribute;
2023-08-07 22:14:21 +02:00
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Relations\HasMany;
2023-12-13 12:08:12 +01:00
use Illuminate\Database\Eloquent\SoftDeletes;
2023-08-07 22:14:21 +02:00
class StandalonePostgresql extends BaseModel
{
2023-12-13 12:08:12 +01:00
use HasFactory, SoftDeletes;
protected $guarded = [];
2024-06-10 22:43:34 +02:00
protected $casts = [
'init_scripts' => 'array',
'postgres_password' => 'encrypted',
];
2023-08-07 22:14:21 +02:00
protected static function booted()
{
static::created(function ($database) {
LocalPersistentVolume::create([
2024-06-10 22:43:34 +02:00
'name' => 'postgres-data-'.$database->uuid,
2023-08-07 22:14:21 +02:00
'mount_path' => '/var/lib/postgresql/data',
'host_path' => null,
'resource_id' => $database->id,
'resource_type' => $database->getMorphClass(),
2024-06-10 22:43:34 +02:00
'is_readonly' => true,
2023-08-07 22:14:21 +02:00
]);
});
2023-10-05 08:46:26 +02:00
static::deleting(function ($database) {
$storages = $database->persistentStorages()->get();
2023-11-06 18:04:18 +01:00
$server = data_get($database, 'destination.server');
if ($server) {
foreach ($storages as $storage) {
instant_remote_process(["docker volume rm -f $storage->name"], $server, false);
}
2023-10-03 11:56:56 +02:00
}
$database->scheduledBackups()->delete();
$database->persistentStorages()->delete();
$database->environment_variables()->delete();
2024-02-02 11:50:28 +01:00
$database->tags()->detach();
});
2023-08-07 22:14:21 +02:00
}
2024-06-10 22:43:34 +02:00
public function workdir()
{
2024-06-10 22:43:34 +02:00
return database_configuration_dir()."/{$this->uuid}";
}
2024-06-10 22:43:34 +02:00
public function delete_configurations()
{
$server = data_get($this, 'destination.server');
$workdir = $this->workdir();
if (str($workdir)->endsWith($this->uuid)) {
2024-06-10 22:43:34 +02:00
instant_remote_process(['rm -rf '.$this->workdir()], $server, false);
}
}
2024-06-10 22:43:34 +02:00
public function isConfigurationChanged(bool $save = false)
{
2024-06-10 22:43:34 +02:00
$newConfigHash = $this->image.$this->ports_mappings.$this->postgres_initdb_args.$this->postgres_host_auth_method;
$newConfigHash .= json_encode($this->environment_variables()->get('value')->sort());
$newConfigHash = md5($newConfigHash);
$oldConfigHash = data_get($this, 'config_hash');
if ($oldConfigHash === null) {
if ($save) {
$this->config_hash = $newConfigHash;
$this->save();
}
2024-06-10 22:43:34 +02:00
return true;
}
if ($oldConfigHash === $newConfigHash) {
return false;
} else {
if ($save) {
$this->config_hash = $newConfigHash;
$this->save();
}
2024-06-10 22:43:34 +02:00
return true;
}
}
2024-06-10 22:43:34 +02:00
public function isExited()
{
return (bool) str($this->status)->startsWith('exited');
}
2024-06-10 22:43:34 +02:00
2024-02-07 14:55:06 +01:00
public function realStatus()
{
return $this->getRawOriginal('status');
}
2024-06-10 22:43:34 +02:00
2024-02-07 14:55:06 +01:00
public function status(): Attribute
{
return Attribute::make(
set: function ($value) {
if (str($value)->contains('(')) {
$status = str($value)->before('(')->trim()->value();
$health = str($value)->after('(')->before(')')->trim()->value() ?? 'unhealthy';
2024-06-10 22:43:34 +02:00
} elseif (str($value)->contains(':')) {
2024-02-07 14:55:06 +01:00
$status = str($value)->before(':')->trim()->value();
$health = str($value)->after(':')->trim()->value() ?? 'unhealthy';
} else {
$status = $value;
$health = 'unhealthy';
}
2024-06-10 22:43:34 +02:00
2024-02-07 14:55:06 +01:00
return "$status:$health";
},
get: function ($value) {
if (str($value)->contains('(')) {
$status = str($value)->before('(')->trim()->value();
$health = str($value)->after('(')->before(')')->trim()->value() ?? 'unhealthy';
2024-06-10 22:43:34 +02:00
} elseif (str($value)->contains(':')) {
2024-02-07 14:55:06 +01:00
$status = str($value)->before(':')->trim()->value();
$health = str($value)->after(':')->trim()->value() ?? 'unhealthy';
} else {
$status = $value;
$health = 'unhealthy';
}
2024-06-10 22:43:34 +02:00
2024-02-07 14:55:06 +01:00
return "$status:$health";
},
);
}
2024-06-10 22:43:34 +02:00
2024-02-02 11:50:28 +01:00
public function tags()
{
return $this->morphToMany(Tag::class, 'taggable');
}
2024-06-10 22:43:34 +02:00
public function project()
{
return data_get($this, 'environment.project');
}
2024-06-10 22:43:34 +02:00
public function link()
{
2023-11-30 12:21:53 +01:00
if (data_get($this, 'environment.project.uuid')) {
return route('project.database.configuration', [
'project_uuid' => data_get($this, 'environment.project.uuid'),
'environment_name' => data_get($this, 'environment.name'),
2024-06-10 22:43:34 +02:00
'database_uuid' => data_get($this, 'uuid'),
2023-11-30 12:21:53 +01:00
]);
}
2024-06-10 22:43:34 +02:00
2023-11-30 12:21:53 +01:00
return null;
}
2024-06-10 22:43:34 +02:00
public function isLogDrainEnabled()
{
return data_get($this, 'is_log_drain_enabled', false);
}
public function portsMappings(): Attribute
{
return Attribute::make(
2024-06-10 22:43:34 +02:00
set: fn ($value) => $value === '' ? null : $value,
);
}
public function portsMappingsArray(): Attribute
{
return Attribute::make(
2023-08-11 20:48:52 +02:00
get: fn () => is_null($this->ports_mappings)
? []
: explode(',', $this->ports_mappings),
);
}
2024-06-10 22:43:34 +02:00
2024-01-23 17:13:23 +01:00
public function team()
{
return data_get($this, 'environment.project.team');
}
2024-06-10 22:43:34 +02:00
public function type(): string
{
2023-08-07 22:14:21 +02:00
return 'standalone-postgresql';
}
2024-06-10 22:43:34 +02:00
public function get_db_url(bool $useInternal = false): string
2023-10-19 17:17:38 +02:00
{
2024-06-10 22:43:34 +02:00
if ($this->is_public && ! $useInternal) {
2023-10-19 17:17:38 +02:00
return "postgres://{$this->postgres_user}:{$this->postgres_password}@{$this->destination->server->getIp}:{$this->public_port}/{$this->postgres_db}";
} else {
return "postgres://{$this->postgres_user}:{$this->postgres_password}@{$this->uuid}:5432/{$this->postgres_db}";
}
}
2023-08-07 22:14:21 +02:00
public function environment()
{
return $this->belongsTo(Environment::class);
}
public function fileStorages()
{
return $this->morphMany(LocalFileVolume::class, 'resource');
}
2023-08-07 22:14:21 +02:00
public function destination()
{
return $this->morphTo();
}
public function environment_variables(): HasMany
2023-08-07 22:14:21 +02:00
{
return $this->hasMany(EnvironmentVariable::class);
}
public function runtime_environment_variables(): HasMany
{
return $this->hasMany(EnvironmentVariable::class);
}
2023-08-07 22:14:21 +02:00
public function persistentStorages()
{
return $this->morphMany(LocalPersistentVolume::class, 'resource');
}
2023-08-09 16:47:24 +02:00
public function scheduledBackups()
{
return $this->morphMany(ScheduledDatabaseBackup::class, 'database');
}
2023-08-07 22:14:21 +02:00
}