2015-12-07 00:47:19 -05:00
|
|
|
<?php
|
2016-01-19 19:10:39 -05:00
|
|
|
/**
|
2016-01-20 16:05:16 -05:00
|
|
|
* Pterodactyl - Panel
|
2017-01-24 17:57:08 -05:00
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
2016-01-19 19:10:39 -05:00
|
|
|
*
|
2017-09-25 21:43:01 -05:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2016-01-19 19:10:39 -05:00
|
|
|
*/
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2015-12-07 00:47:19 -05:00
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
|
2017-06-24 19:49:09 -05:00
|
|
|
use Sofa\Eloquence\Eloquence;
|
|
|
|
use Sofa\Eloquence\Validable;
|
2017-06-17 20:52:32 -05:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2017-08-12 15:29:01 -05:00
|
|
|
use Sofa\Eloquence\Contracts\CleansAttributes;
|
2017-06-24 19:49:09 -05:00
|
|
|
use Sofa\Eloquence\Contracts\Validable as ValidableContract;
|
2015-12-07 00:47:19 -05:00
|
|
|
|
2017-08-12 15:29:01 -05:00
|
|
|
class Location extends Model implements CleansAttributes, ValidableContract
|
2015-12-07 00:47:19 -05:00
|
|
|
{
|
2017-06-24 19:49:09 -05:00
|
|
|
use Eloquence, Validable;
|
2017-06-14 23:53:24 -05:00
|
|
|
|
2015-12-07 00:47:19 -05:00
|
|
|
/**
|
|
|
|
* The table associated with the model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $table = 'locations';
|
|
|
|
|
2016-01-16 23:10:46 -05:00
|
|
|
/**
|
|
|
|
* Fields that are not mass assignable.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $guarded = ['id', 'created_at', 'updated_at'];
|
2017-02-10 17:09:56 -05:00
|
|
|
|
2017-06-14 23:53:24 -05:00
|
|
|
/**
|
2017-06-17 19:48:31 -05:00
|
|
|
* Validation rules to apply to this model.
|
2017-06-14 23:53:24 -05:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2017-06-24 19:49:09 -05:00
|
|
|
protected static $applicationRules = [
|
|
|
|
'short' => 'required',
|
|
|
|
'long' => 'required',
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Rules ensuring that the raw data stored in the database meets expectations.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected static $dataIntegrityRules = [
|
|
|
|
'short' => 'string|between:1,60|unique:locations,short',
|
|
|
|
'long' => 'string|between:1,255',
|
2017-06-14 23:53:24 -05:00
|
|
|
];
|
|
|
|
|
2017-02-10 17:09:56 -05:00
|
|
|
/**
|
|
|
|
* Gets the nodes in a specificed location.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function nodes()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Node::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the servers within a given location.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasManyThrough
|
|
|
|
*/
|
|
|
|
public function servers()
|
|
|
|
{
|
|
|
|
return $this->hasManyThrough(Server::class, Node::class);
|
|
|
|
}
|
2015-12-07 00:47:19 -05:00
|
|
|
}
|