2023-03-27 10:44:31 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2023-04-25 14:43:35 +02:00
|
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Environment extends Model
|
2023-03-27 10:44:31 +02:00
|
|
|
{
|
2023-04-25 14:43:35 +02:00
|
|
|
protected $fillable = [
|
|
|
|
'name',
|
|
|
|
'project_id',
|
|
|
|
];
|
2023-08-08 11:51:36 +02:00
|
|
|
|
|
|
|
public function can_delete_environment()
|
2023-04-25 14:43:35 +02:00
|
|
|
{
|
2023-10-12 17:18:33 +02:00
|
|
|
return $this->applications()->count() == 0 && $this->redis()->count() == 0 && $this->postgresqls()->count() == 0 && $this->services()->count() == 0;
|
2023-08-07 18:46:40 +02:00
|
|
|
}
|
2023-08-08 11:51:36 +02:00
|
|
|
|
2023-03-27 10:44:31 +02:00
|
|
|
public function applications()
|
|
|
|
{
|
2023-03-27 18:14:33 +02:00
|
|
|
return $this->hasMany(Application::class);
|
2023-03-27 10:44:31 +02:00
|
|
|
}
|
2023-08-08 11:51:36 +02:00
|
|
|
|
2023-08-07 18:46:40 +02:00
|
|
|
public function postgresqls()
|
2023-03-27 10:44:31 +02:00
|
|
|
{
|
2023-08-07 22:14:21 +02:00
|
|
|
return $this->hasMany(StandalonePostgresql::class);
|
2023-03-27 10:44:31 +02:00
|
|
|
}
|
2023-10-12 17:18:33 +02:00
|
|
|
public function redis()
|
|
|
|
{
|
|
|
|
return $this->hasMany(StandaloneRedis::class);
|
|
|
|
}
|
2023-08-08 11:51:36 +02:00
|
|
|
|
|
|
|
public function databases()
|
|
|
|
{
|
2023-10-12 17:18:33 +02:00
|
|
|
$postgresqls = $this->postgresqls;
|
|
|
|
$redis = $this->redis;
|
|
|
|
return $postgresqls->concat($redis);
|
2023-08-08 11:51:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function project()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Project::class);
|
|
|
|
}
|
|
|
|
|
2023-03-28 08:28:03 +02:00
|
|
|
public function services()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Service::class);
|
|
|
|
}
|
2023-08-08 11:51:36 +02:00
|
|
|
|
|
|
|
protected function name(): Attribute
|
|
|
|
{
|
|
|
|
return Attribute::make(
|
2023-08-11 20:48:52 +02:00
|
|
|
set: fn (string $value) => strtolower($value),
|
2023-08-08 11:51:36 +02:00
|
|
|
);
|
|
|
|
}
|
2023-08-07 22:14:21 +02:00
|
|
|
}
|