2023-03-27 10:44:31 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2023-03-30 09:47:04 +02:00
|
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
2023-03-29 12:27:02 +02:00
|
|
|
use Spatie\Activitylog\Models\Activity;
|
|
|
|
|
2023-03-27 10:44:31 +02:00
|
|
|
class Application extends BaseModel
|
|
|
|
{
|
2023-03-30 11:09:39 +02:00
|
|
|
protected static function booted()
|
|
|
|
{
|
|
|
|
static::created(function ($application) {
|
|
|
|
ApplicationSetting::create([
|
|
|
|
'application_id' => $application->id,
|
|
|
|
]);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-03-27 18:14:33 +02:00
|
|
|
public function environment()
|
2023-03-27 10:44:31 +02:00
|
|
|
{
|
2023-03-27 18:14:33 +02:00
|
|
|
return $this->belongsTo(Environment::class);
|
2023-03-27 10:44:31 +02:00
|
|
|
}
|
2023-03-28 15:47:37 +02:00
|
|
|
public function settings()
|
|
|
|
{
|
|
|
|
return $this->hasOne(ApplicationSetting::class);
|
|
|
|
}
|
2023-03-27 14:31:42 +02:00
|
|
|
public function destination()
|
|
|
|
{
|
|
|
|
return $this->morphTo();
|
|
|
|
}
|
2023-03-28 12:09:34 +02:00
|
|
|
public function source()
|
|
|
|
{
|
|
|
|
return $this->morphTo();
|
|
|
|
}
|
2023-03-30 09:47:04 +02:00
|
|
|
|
|
|
|
public function portsMappings(): Attribute
|
|
|
|
{
|
|
|
|
return Attribute::make(
|
|
|
|
get: fn (string|null $portsMappings) =>
|
|
|
|
is_null($portsMappings)
|
|
|
|
? []
|
|
|
|
: explode(',', $portsMappings)
|
|
|
|
|
|
|
|
);
|
|
|
|
}
|
|
|
|
public function portsExposes(): Attribute
|
|
|
|
{
|
|
|
|
return Attribute::make(
|
|
|
|
get: fn (string|null $portsExposes) =>
|
|
|
|
is_null($portsExposes)
|
|
|
|
? []
|
|
|
|
: explode(',', $portsExposes)
|
|
|
|
|
|
|
|
);
|
|
|
|
}
|
2023-03-29 12:52:22 +02:00
|
|
|
public function deployments()
|
|
|
|
{
|
|
|
|
return Activity::where('subject_id', $this->id)->where('properties->deployment_uuid', '!=', null)->orderBy('created_at', 'desc')->get();
|
|
|
|
}
|
2023-03-29 12:27:02 +02:00
|
|
|
public function get_deployment(string $deployment_uuid)
|
2023-03-28 15:47:37 +02:00
|
|
|
{
|
2023-03-29 12:27:02 +02:00
|
|
|
return Activity::where('subject_id', $this->id)->where('properties->deployment_uuid', '=', $deployment_uuid)->first();
|
2023-03-28 15:47:37 +02:00
|
|
|
}
|
2023-03-27 10:44:31 +02:00
|
|
|
}
|