2015-12-07 05:47:19 +00:00
|
|
|
<?php
|
2016-01-20 00:10:39 +00:00
|
|
|
/**
|
2016-01-20 21:05:16 +00:00
|
|
|
* Pterodactyl - Panel
|
2017-01-24 22:57:08 +00:00
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
2016-01-20 00:10:39 +00:00
|
|
|
*
|
2017-09-26 02:43:01 +00:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2016-01-20 00:10:39 +00:00
|
|
|
*/
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2015-12-07 05:47:19 +00:00
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
|
2017-08-06 02:10:32 +00:00
|
|
|
use Sofa\Eloquence\Eloquence;
|
|
|
|
use Sofa\Eloquence\Validable;
|
2015-12-07 05:47:19 +00:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2017-08-12 20:29:01 +00:00
|
|
|
use Sofa\Eloquence\Contracts\CleansAttributes;
|
2017-08-06 02:10:32 +00:00
|
|
|
use Sofa\Eloquence\Contracts\Validable as ValidableContract;
|
2015-12-07 05:47:19 +00:00
|
|
|
|
2017-08-12 20:29:01 +00:00
|
|
|
class Allocation extends Model implements CleansAttributes, ValidableContract
|
2015-12-07 05:47:19 +00:00
|
|
|
{
|
2017-08-06 02:10:32 +00:00
|
|
|
use Eloquence, Validable;
|
|
|
|
|
2015-12-07 05:47:19 +00:00
|
|
|
/**
|
|
|
|
* The table associated with the model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $table = 'allocations';
|
|
|
|
|
2016-01-10 05:38:16 +00:00
|
|
|
/**
|
|
|
|
* Fields that are not mass assignable.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $guarded = ['id', 'created_at', 'updated_at'];
|
|
|
|
|
2017-08-06 02:10:32 +00:00
|
|
|
/**
|
|
|
|
* Cast values to correct type.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $casts = [
|
|
|
|
'node_id' => 'integer',
|
|
|
|
'port' => 'integer',
|
|
|
|
'server_id' => 'integer',
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected static $applicationRules = [
|
|
|
|
'node_id' => 'required',
|
|
|
|
'ip' => 'required',
|
|
|
|
'port' => 'required',
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected static $dataIntegrityRules = [
|
|
|
|
'node_id' => 'exists:nodes,id',
|
|
|
|
'ip' => 'ip',
|
|
|
|
'port' => 'numeric|between:1024,65553',
|
|
|
|
'alias' => 'string',
|
|
|
|
'server_id' => 'nullable|exists:servers,id',
|
|
|
|
];
|
2017-02-06 00:19:46 +00:00
|
|
|
|
2017-08-06 02:10:32 +00:00
|
|
|
/**
|
|
|
|
* Accessor to automatically provide the IP alias if defined.
|
|
|
|
*
|
2017-08-22 03:10:48 +00:00
|
|
|
* @param null|string $value
|
2017-08-06 02:10:32 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getAliasAttribute($value)
|
|
|
|
{
|
|
|
|
return (is_null($this->ip_alias)) ? $this->ip : $this->ip_alias;
|
|
|
|
}
|
2017-02-09 22:43:54 +00:00
|
|
|
|
2017-08-06 02:10:32 +00:00
|
|
|
/**
|
|
|
|
* Accessor to quickly determine if this allocation has an alias.
|
|
|
|
*
|
2017-08-22 03:10:48 +00:00
|
|
|
* @param null|string $value
|
2017-08-06 02:10:32 +00:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function getHasAliasAttribute($value)
|
|
|
|
{
|
|
|
|
return ! is_null($this->ip_alias);
|
|
|
|
}
|
2017-02-18 00:59:40 +00:00
|
|
|
|
2017-08-06 02:10:32 +00:00
|
|
|
/**
|
|
|
|
* Gets information for the server associated with this allocation.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function server()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Server::class);
|
|
|
|
}
|
2015-12-07 05:47:19 +00:00
|
|
|
}
|