48 lines
1.1 KiB
PHP
48 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Support\Str;
|
|
|
|
class LocalPersistentVolume extends Model
|
|
{
|
|
protected $fillable = [
|
|
'name',
|
|
'mount_path',
|
|
'host_path',
|
|
'container_id',
|
|
'resource_id',
|
|
'resource_type',
|
|
];
|
|
public function application()
|
|
{
|
|
return $this->morphTo();
|
|
}
|
|
protected function name(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
set: fn (string $value) => Str::of($value)->trim()->value,
|
|
);
|
|
}
|
|
protected function mountPath(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
set: fn (string $value) => Str::of($value)->trim()->start('/')->value
|
|
);
|
|
}
|
|
protected function hostPath(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
set: function (string|null $value) {
|
|
if ($value) {
|
|
return Str::of($value)->trim()->start('/')->value;
|
|
} else {
|
|
return $value;
|
|
}
|
|
}
|
|
);
|
|
}
|
|
}
|