*/ use HasFactory; /** * 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']; /** * Cast values to correct type. */ protected $casts = [ 'node_id' => 'integer', 'port' => 'integer', 'server_id' => 'integer', ]; 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', ]; public function getRouteKeyName(): string { return $this->getKeyName(); } /** * Return a hashid encoded string to represent the ID of the allocation. */ public function getHashidAttribute(): string { return app()->make('hashids')->encode($this->id); } /** * 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 toString(): string { return sprintf('%s:%s', $this->ip, $this->port); } /** * Gets information for the server associated with this allocation. * * @return \Illuminate\Database\Eloquent\Relations\BelongsTo<\Pterodactyl\Models\Server, $this> */ public function server(): BelongsTo { return $this->belongsTo(Server::class); } /** * Return the Node model associated with this allocation. * * @return \Illuminate\Database\Eloquent\Relations\BelongsTo<\Pterodactyl\Models\Node, $this> */ public function node(): BelongsTo { return $this->belongsTo(Node::class); } }