misc_pterodactyl-panel/app/Models/Service.php

95 lines
2.3 KiB
PHP
Raw Normal View History

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;
use Sofa\Eloquence\Eloquence;
use Sofa\Eloquence\Validable;
2015-12-08 23:33:33 +00:00
use Illuminate\Database\Eloquent\Model;
use Sofa\Eloquence\Contracts\CleansAttributes;
use Sofa\Eloquence\Contracts\Validable as ValidableContract;
2015-12-08 23:33:33 +00:00
class Service extends Model implements CleansAttributes, ValidableContract
2015-12-08 23:33:33 +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
/**
* Fields that are mass assignable.
*
* @var array
*/
protected $fillable = ['name', 'author', 'description', 'folder', 'startup', 'index_file'];
2017-02-05 22:58:17 +00: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 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()
{
return $this->hasManyThrough(
Pack::class,
ServiceOption::class,
2017-08-22 03:10:48 +00:00
'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
}