2023-08-07 20:14:21 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2023-08-08 12:35:01 +00:00
|
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
2023-08-07 20:14:21 +00:00
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
|
|
|
|
class StandalonePostgresql extends BaseModel
|
|
|
|
{
|
|
|
|
use HasFactory;
|
2023-08-08 09:51:36 +00:00
|
|
|
|
|
|
|
protected $guarded = [];
|
|
|
|
protected $casts = [
|
2023-08-08 12:35:01 +00:00
|
|
|
'init_scripts' => 'array',
|
2023-08-08 09:51:36 +00:00
|
|
|
'postgres_password' => 'encrypted',
|
|
|
|
];
|
|
|
|
|
2023-08-07 20:14:21 +00: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 06:46:26 +00:00
|
|
|
static::deleting(function ($database) {
|
2023-10-14 12:22:07 +00:00
|
|
|
$storages = $database->persistentStorages()->get();
|
2023-11-06 17:04:18 +00: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 09:56:56 +00:00
|
|
|
}
|
2023-09-09 11:18:49 +00:00
|
|
|
$database->scheduledBackups()->delete();
|
|
|
|
$database->persistentStorages()->delete();
|
2023-09-19 12:08:20 +00:00
|
|
|
$database->environment_variables()->delete();
|
2023-09-09 11:18:49 +00:00
|
|
|
});
|
2023-08-07 20:14:21 +00:00
|
|
|
}
|
2023-11-27 08:39:43 +00:00
|
|
|
public function link()
|
|
|
|
{
|
2023-11-30 11:21:53 +00: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;
|
2023-11-27 08:39:43 +00:00
|
|
|
}
|
2023-11-17 19:08:21 +00:00
|
|
|
public function isLogDrainEnabled()
|
|
|
|
{
|
|
|
|
return data_get($this, 'is_log_drain_enabled', false);
|
|
|
|
}
|
|
|
|
|
2023-08-08 12:35:01 +00:00
|
|
|
public function portsMappings(): Attribute
|
|
|
|
{
|
|
|
|
return Attribute::make(
|
2023-08-11 18:48:52 +00:00
|
|
|
set: fn ($value) => $value === "" ? null : $value,
|
2023-08-08 12:35:01 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function portsMappingsArray(): Attribute
|
|
|
|
{
|
|
|
|
return Attribute::make(
|
2023-08-11 18:48:52 +00:00
|
|
|
get: fn () => is_null($this->ports_mappings)
|
2023-08-08 12:35:01 +00:00
|
|
|
? []
|
|
|
|
: explode(',', $this->ports_mappings),
|
|
|
|
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-08-09 12:44:36 +00:00
|
|
|
public function type(): string
|
2023-08-08 09:51:36 +00:00
|
|
|
{
|
2023-08-07 20:14:21 +00:00
|
|
|
return 'standalone-postgresql';
|
|
|
|
}
|
2023-10-24 07:34:35 +00:00
|
|
|
public function getDbUrl(bool $useInternal = false): string
|
2023-10-19 15:17:38 +00:00
|
|
|
{
|
2023-10-24 07:34:35 +00:00
|
|
|
if ($this->is_public && !$useInternal) {
|
2023-10-19 15:17:38 +00: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-08 09:51:36 +00:00
|
|
|
|
2023-08-07 20:14:21 +00:00
|
|
|
public function environment()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Environment::class);
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-10-04 07:58:39 +00:00
|
|
|
public function fileStorages()
|
|
|
|
{
|
|
|
|
return $this->morphMany(LocalFileVolume::class, 'resource');
|
|
|
|
}
|
|
|
|
|
2023-08-07 20:14:21 +00:00
|
|
|
public function destination()
|
|
|
|
{
|
|
|
|
return $this->morphTo();
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
|
|
|
public function environment_variables(): HasMany
|
2023-08-07 20:14:21 +00:00
|
|
|
{
|
|
|
|
return $this->hasMany(EnvironmentVariable::class);
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-08-07 20:27:20 +00:00
|
|
|
public function runtime_environment_variables(): HasMany
|
|
|
|
{
|
|
|
|
return $this->hasMany(EnvironmentVariable::class);
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-08-07 20:14:21 +00:00
|
|
|
public function persistentStorages()
|
|
|
|
{
|
|
|
|
return $this->morphMany(LocalPersistentVolume::class, 'resource');
|
|
|
|
}
|
2023-08-09 14:47:24 +00:00
|
|
|
|
|
|
|
public function scheduledBackups()
|
|
|
|
{
|
|
|
|
return $this->morphMany(ScheduledDatabaseBackup::class, 'database');
|
|
|
|
}
|
2023-08-07 20:14:21 +00:00
|
|
|
}
|