mirror of
https://github.com/pelican-dev/panel.git
synced 2025-06-12 07:18:59 +02:00
101 lines
2.5 KiB
PHP
101 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Exceptions\Service\Allocation\ServerUsingAllocationException;
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class Allocation extends Model
|
|
{
|
|
/**
|
|
* The resource name for this model when it is transformed into an
|
|
* API representation using fractal.
|
|
*/
|
|
public const RESOURCE_NAME = 'allocation';
|
|
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected $table = 'allocations';
|
|
|
|
/**
|
|
* Fields that are not mass assignable.
|
|
*/
|
|
protected $guarded = ['id', 'created_at', 'updated_at'];
|
|
|
|
public static array $validationRules = [
|
|
'node_id' => 'required|exists:nodes,id',
|
|
'ip' => 'required|ip',
|
|
'port' => 'required|numeric|between:1024,65535',
|
|
'ip_alias' => 'nullable|string',
|
|
'server_id' => 'nullable|exists:servers,id',
|
|
'notes' => 'nullable|string|max:256',
|
|
];
|
|
|
|
protected static function booted(): void
|
|
{
|
|
static::deleting(function (self $allocation) {
|
|
throw_if($allocation->server_id, new ServerUsingAllocationException(trans('exceptions.allocations.server_using')));
|
|
});
|
|
}
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'node_id' => 'integer',
|
|
'port' => 'integer',
|
|
'server_id' => 'integer',
|
|
];
|
|
}
|
|
|
|
public function getRouteKeyName(): string
|
|
{
|
|
return $this->getKeyName();
|
|
}
|
|
|
|
/**
|
|
* Accessor to automatically provide the IP alias if defined.
|
|
*/
|
|
public function getAliasAttribute(?string $value): string
|
|
{
|
|
return (is_null($this->ip_alias)) ? $this->ip : $this->ip_alias;
|
|
}
|
|
|
|
/**
|
|
* Accessor to quickly determine if this allocation has an alias.
|
|
*/
|
|
public function getHasAliasAttribute(?string $value): bool
|
|
{
|
|
return !is_null($this->ip_alias);
|
|
}
|
|
|
|
public function address(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
get: fn () => "$this->ip:$this->port",
|
|
);
|
|
}
|
|
|
|
public function toString(): string
|
|
{
|
|
return $this->address;
|
|
}
|
|
|
|
/**
|
|
* Gets information for the server associated with this allocation.
|
|
*/
|
|
public function server(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Server::class);
|
|
}
|
|
|
|
/**
|
|
* Return the Node model associated with this allocation.
|
|
*/
|
|
public function node(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Node::class);
|
|
}
|
|
}
|