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-08-08 09:51:36 +00:00
|
|
|
|
2023-08-08 12:35:01 +00:00
|
|
|
public function portsMappings(): Attribute
|
|
|
|
{
|
|
|
|
return Attribute::make(
|
|
|
|
set: fn($value) => $value === "" ? null : $value,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Normal Deployments
|
|
|
|
|
|
|
|
public function portsMappingsArray(): Attribute
|
|
|
|
{
|
|
|
|
return Attribute::make(
|
|
|
|
get: fn() => is_null($this->ports_mappings)
|
|
|
|
? []
|
|
|
|
: 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-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-08-07 20:14:21 +00:00
|
|
|
public function destination()
|
|
|
|
{
|
|
|
|
return $this->morphTo();
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-08-08 15:28:36 +00:00
|
|
|
public function scheduled_database_backups()
|
|
|
|
{
|
|
|
|
return $this->morphMany(ScheduledDatabaseBackup::class, 'database');
|
|
|
|
}
|
|
|
|
|
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');
|
|
|
|
}
|
|
|
|
}
|