2015-12-09 00:33:33 +01:00
|
|
|
<?php
|
2016-01-20 01:10:39 +01:00
|
|
|
/**
|
2016-01-20 22:05:16 +01:00
|
|
|
* Pterodactyl - Panel
|
2017-01-24 23:57:08 +01:00
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
2016-01-20 01:10:39 +01:00
|
|
|
*
|
2017-09-26 04:43:01 +02:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2016-01-20 01:10:39 +01:00
|
|
|
*/
|
2016-12-07 23:46:38 +01:00
|
|
|
|
2015-12-09 00:33:33 +01:00
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
|
2017-08-16 05:21:47 +02:00
|
|
|
use Sofa\Eloquence\Eloquence;
|
|
|
|
use Sofa\Eloquence\Validable;
|
2015-12-09 00:33:33 +01:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2017-08-16 05:21:47 +02:00
|
|
|
use Sofa\Eloquence\Contracts\CleansAttributes;
|
|
|
|
use Sofa\Eloquence\Contracts\Validable as ValidableContract;
|
2015-12-09 00:33:33 +01:00
|
|
|
|
2017-10-07 06:57:53 +02:00
|
|
|
class Nest extends Model implements CleansAttributes, ValidableContract
|
2015-12-09 00:33:33 +01:00
|
|
|
{
|
2017-08-16 05:21:47 +02:00
|
|
|
use Eloquence, Validable;
|
|
|
|
|
2015-12-09 00:33:33 +01:00
|
|
|
/**
|
|
|
|
* The table associated with the model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2017-10-07 06:57:53 +02:00
|
|
|
protected $table = 'nests';
|
2016-01-20 01:10:39 +01:00
|
|
|
|
2016-02-15 21:21:28 +01:00
|
|
|
/**
|
2017-02-18 02:40:50 +01:00
|
|
|
* Fields that are mass assignable.
|
2016-02-15 21:21:28 +01:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2017-10-03 05:51:13 +02:00
|
|
|
protected $fillable = [
|
|
|
|
'name',
|
|
|
|
'description',
|
|
|
|
];
|
2017-02-05 23:58:17 +01:00
|
|
|
|
2017-03-12 20:59:17 +01:00
|
|
|
/**
|
2017-08-16 05:21:47 +02:00
|
|
|
* @var array
|
2017-03-12 20:59:17 +01:00
|
|
|
*/
|
2017-08-16 05:21:47 +02:00
|
|
|
protected static $applicationRules = [
|
|
|
|
'author' => 'required',
|
|
|
|
'name' => 'required',
|
|
|
|
'description' => 'sometimes',
|
|
|
|
];
|
2017-03-12 20:59:17 +01:00
|
|
|
|
2017-08-16 05:21:47 +02:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected static $dataIntegrityRules = [
|
2017-10-03 05:51:13 +02:00
|
|
|
'author' => 'email',
|
2017-08-16 05:21:47 +02:00
|
|
|
'name' => 'string|max:255',
|
|
|
|
'description' => 'nullable|string',
|
|
|
|
];
|
2017-03-12 20:59:17 +01:00
|
|
|
|
2017-02-05 23:58:17 +01:00
|
|
|
/**
|
2017-10-07 06:57:53 +02:00
|
|
|
* Gets all eggs associated with this service.
|
2017-02-05 23:58:17 +01:00
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
2017-10-07 06:57:53 +02:00
|
|
|
public function eggs()
|
2017-02-05 23:58:17 +01:00
|
|
|
{
|
2017-10-07 06:57:53 +02:00
|
|
|
return $this->hasMany(Egg::class);
|
2017-02-05 23:58:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-10-07 06:57:53 +02:00
|
|
|
* Returns all of the packs associated with a nest, regardless of the egg.
|
2017-02-05 23:58:17 +01:00
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasManyThrough
|
|
|
|
*/
|
|
|
|
public function packs()
|
|
|
|
{
|
2017-10-07 06:57:53 +02:00
|
|
|
return $this->hasManyThrough(Pack::class, Egg::class, 'nest_id', 'egg_id');
|
2017-02-05 23:58:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-10-07 06:57:53 +02:00
|
|
|
* Gets all servers associated with this nest.
|
2017-02-05 23:58:17 +01:00
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function servers()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Server::class);
|
|
|
|
}
|
2015-12-09 00:33:33 +01:00
|
|
|
}
|