misc_pterodactyl-panel/app/Models/Service.php

95 lines
2.3 KiB
PHP
Raw Normal View History

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