coolify/app/Models/StandalonePostgresql.php

185 lines
5.9 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 = [];
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([
'name' => 'postgres-data-' . $database->uuid,
'mount_path' => '/var/lib/postgresql/data',
'host_path' => null,
'resource_id' => $database->id,
'resource_type' => $database->getMorphClass(),
'is_readonly' => true
]);
});
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
}
public function workdir()
{
return database_configuration_dir() . "/{$this->uuid}";
}
public function delete_configurations()
{
$server = data_get($this, 'destination.server');
$workdir = $this->workdir();
if (str($workdir)->endsWith($this->uuid)) {
instant_remote_process(["rm -rf " . $this->workdir()], $server, false);
}
}
2024-02-07 14:55:06 +01:00
public function realStatus()
{
return $this->getRawOriginal('status');
}
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';
} else if (str($value)->contains(':')) {
$status = str($value)->before(':')->trim()->value();
$health = str($value)->after(':')->trim()->value() ?? 'unhealthy';
} else {
$status = $value;
$health = 'unhealthy';
}
return "$status:$health";
},
get: function ($value) {
if (str($value)->contains('(')) {
$status = str($value)->before('(')->trim()->value();
$health = str($value)->after('(')->before(')')->trim()->value() ?? 'unhealthy';
} else if (str($value)->contains(':')) {
$status = str($value)->before(':')->trim()->value();
$health = str($value)->after(':')->trim()->value() ?? 'unhealthy';
} else {
$status = $value;
$health = 'unhealthy';
}
return "$status:$health";
},
);
}
2024-02-02 11:50:28 +01:00
public function tags()
{
return $this->morphToMany(Tag::class, 'taggable');
}
public function project()
{
return data_get($this, 'environment.project');
}
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'),
'database_uuid' => data_get($this, 'uuid')
]);
}
return null;
}
public function isLogDrainEnabled()
{
return data_get($this, 'is_log_drain_enabled', false);
}
public function portsMappings(): Attribute
{
return Attribute::make(
2023-08-11 20:48:52 +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-01-23 17:13:23 +01:00
public function team()
{
return data_get($this, 'environment.project.team');
}
public function type(): string
{
2023-08-07 22:14:21 +02:00
return 'standalone-postgresql';
}
public function get_db_url(bool $useInternal = false): string
2023-10-19 17:17:38 +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
}