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