2015-12-08 18:33:33 -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-08 18:33:33 -05:00
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
|
2017-08-15 22:21:47 -05:00
|
|
|
use Sofa\Eloquence\Eloquence;
|
|
|
|
use Sofa\Eloquence\Validable;
|
2015-12-08 18:33:33 -05:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2017-08-15 22:21:47 -05:00
|
|
|
use Sofa\Eloquence\Contracts\CleansAttributes;
|
|
|
|
use Sofa\Eloquence\Contracts\Validable as ValidableContract;
|
2015-12-08 18:33:33 -05:00
|
|
|
|
2017-10-06 23:57:53 -05:00
|
|
|
class Nest extends Model implements CleansAttributes, ValidableContract
|
2015-12-08 18:33:33 -05:00
|
|
|
{
|
2017-08-15 22:21:47 -05:00
|
|
|
use Eloquence, Validable;
|
|
|
|
|
2015-12-08 18:33:33 -05:00
|
|
|
/**
|
|
|
|
* The table associated with the model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2017-10-06 23:57:53 -05:00
|
|
|
protected $table = 'nests';
|
2016-01-19 19:10:39 -05:00
|
|
|
|
2016-02-15 15:21:28 -05:00
|
|
|
/**
|
2017-02-17 20:40:50 -05:00
|
|
|
* Fields that are mass assignable.
|
2016-02-15 15:21:28 -05:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2017-10-02 22:51:13 -05:00
|
|
|
protected $fillable = [
|
|
|
|
'name',
|
|
|
|
'description',
|
|
|
|
];
|
2017-02-05 17:58:17 -05:00
|
|
|
|
2017-03-12 15:59:17 -04:00
|
|
|
/**
|
2017-08-15 22:21:47 -05:00
|
|
|
* @var array
|
2017-03-12 15:59:17 -04:00
|
|
|
*/
|
2017-08-15 22:21:47 -05:00
|
|
|
protected static $applicationRules = [
|
|
|
|
'author' => 'required',
|
|
|
|
'name' => 'required',
|
|
|
|
'description' => 'sometimes',
|
|
|
|
];
|
2017-03-12 15:59:17 -04:00
|
|
|
|
2017-08-15 22:21:47 -05:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected static $dataIntegrityRules = [
|
2017-10-08 21:36:22 -05:00
|
|
|
'author' => 'string|email',
|
2017-08-15 22:21:47 -05:00
|
|
|
'name' => 'string|max:255',
|
|
|
|
'description' => 'nullable|string',
|
|
|
|
];
|
2017-03-12 15:59:17 -04:00
|
|
|
|
2017-02-05 17:58:17 -05:00
|
|
|
/**
|
2017-10-06 23:57:53 -05:00
|
|
|
* Gets all eggs associated with this service.
|
2017-02-05 17:58:17 -05:00
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
2017-10-06 23:57:53 -05:00
|
|
|
public function eggs()
|
2017-02-05 17:58:17 -05:00
|
|
|
{
|
2017-10-06 23:57:53 -05:00
|
|
|
return $this->hasMany(Egg::class);
|
2017-02-05 17:58:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-10-06 23:57:53 -05:00
|
|
|
* Returns all of the packs associated with a nest, regardless of the egg.
|
2017-02-05 17:58:17 -05:00
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasManyThrough
|
|
|
|
*/
|
|
|
|
public function packs()
|
|
|
|
{
|
2017-10-06 23:57:53 -05:00
|
|
|
return $this->hasManyThrough(Pack::class, Egg::class, 'nest_id', 'egg_id');
|
2017-02-05 17:58:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-10-06 23:57:53 -05:00
|
|
|
* Gets all servers associated with this nest.
|
2017-02-05 17:58:17 -05:00
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function servers()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Server::class);
|
|
|
|
}
|
2015-12-08 18:33:33 -05:00
|
|
|
}
|