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-06-25 00:49:09 +00:00
|
|
|
use Sofa\Eloquence\Eloquence;
|
|
|
|
use Sofa\Eloquence\Validable;
|
2017-06-18 01:52:32 +00:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2017-08-12 20:29:01 +00:00
|
|
|
use Sofa\Eloquence\Contracts\CleansAttributes;
|
2017-06-25 00:49:09 +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 Location extends Model implements CleansAttributes, ValidableContract
|
2015-12-07 05:47:19 +00:00
|
|
|
{
|
2017-06-25 00:49:09 +00:00
|
|
|
use Eloquence, Validable;
|
2017-06-15 04:53:24 +00:00
|
|
|
|
2015-12-07 05:47:19 +00:00
|
|
|
/**
|
|
|
|
* The table associated with the model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $table = 'locations';
|
|
|
|
|
2016-01-17 04:10:46 +00:00
|
|
|
/**
|
|
|
|
* Fields that are not mass assignable.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $guarded = ['id', 'created_at', 'updated_at'];
|
2017-02-10 22:09:56 +00:00
|
|
|
|
2017-06-15 04:53:24 +00:00
|
|
|
/**
|
2017-06-18 00:48:31 +00:00
|
|
|
* Validation rules to apply to this model.
|
2017-06-15 04:53:24 +00:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2017-06-25 00:49:09 +00: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-15 04:53:24 +00:00
|
|
|
];
|
|
|
|
|
2017-02-10 22:09:56 +00: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 05:47:19 +00:00
|
|
|
}
|