coolify/app/Models/ServiceDatabase.php

83 lines
2.2 KiB
PHP
Raw Normal View History

2023-09-20 15:42:41 +02:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
2023-12-13 12:08:12 +01:00
use Illuminate\Database\Eloquent\SoftDeletes;
2023-09-20 15:42:41 +02:00
class ServiceDatabase extends BaseModel
{
2023-12-13 12:08:12 +01:00
use HasFactory, SoftDeletes;
2023-09-20 15:42:41 +02:00
protected $guarded = [];
2023-11-06 18:04:18 +01:00
protected static function booted()
{
static::deleting(function ($service) {
$service->persistentStorages()->delete();
$service->fileStorages()->delete();
});
}
2024-03-25 11:33:38 +01:00
public function restart()
{
$container_id = $this->name . '-' . $this->service->uuid;
remote_process(["docker restart {$container_id}"], $this->service->server);
}
public function isLogDrainEnabled()
{
return data_get($this, 'is_log_drain_enabled', false);
}
public function isStripprefixEnabled()
{
return data_get($this, 'is_stripprefix_enabled', true);
}
public function isGzipEnabled()
{
return data_get($this, 'is_gzip_enabled', true);
}
2023-09-22 11:23:49 +02:00
public function type()
{
return 'service';
}
public function serviceType()
{
return null;
}
2023-11-07 12:11:47 +01:00
public function databaseType()
{
$image = str($this->image)->before(':');
if ($image->value() === 'postgres') {
$image = 'postgresql';
}
return "standalone-$image";
}
public function getServiceDatabaseUrl()
{
2023-11-09 14:59:38 +01:00
$port = $this->public_port;
2023-11-09 15:05:42 +01:00
$realIp = $this->service->server->ip;
if ($this->service->server->isLocalhost() || isDev()) {
2023-11-09 15:05:42 +01:00
$realIp = base_ip();
}
2024-03-25 12:13:43 +01:00
return "{$realIp}:{$port}";
2023-11-09 14:59:38 +01:00
}
2023-09-22 12:08:51 +02:00
public function service()
{
return $this->belongsTo(Service::class);
}
2023-09-22 11:23:49 +02:00
public function persistentStorages()
{
return $this->morphMany(LocalPersistentVolume::class, 'resource');
}
public function fileStorages()
{
return $this->morphMany(LocalFileVolume::class, 'resource');
}
2023-10-02 18:02:32 +02:00
public function getFilesFromServer(bool $isInit = false)
{
2023-10-02 18:02:32 +02:00
getFilesystemVolumesFromServer($this, $isInit);
}
2023-11-07 12:11:47 +01:00
public function scheduledBackups()
{
return $this->morphMany(ScheduledDatabaseBackup::class, 'database');
}
2023-09-20 15:42:41 +02:00
}