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-08 23:24:55 -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-12 15:29:01 -05:00
|
|
|
use Sofa\Eloquence\Contracts\CleansAttributes;
|
2017-08-08 23:24:55 -05:00
|
|
|
use Sofa\Eloquence\Contracts\Validable as ValidableContract;
|
2015-12-08 18:33:33 -05:00
|
|
|
|
2017-08-12 15:29:01 -05:00
|
|
|
class ServiceVariable extends Model implements CleansAttributes, ValidableContract
|
2015-12-08 18:33:33 -05:00
|
|
|
{
|
2017-08-08 23:24:55 -05:00
|
|
|
use Eloquence, Validable;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reserved environment variable names.
|
|
|
|
*
|
2017-08-12 15:29:01 -05:00
|
|
|
* @var string
|
2017-08-08 23:24:55 -05:00
|
|
|
*/
|
|
|
|
const RESERVED_ENV_NAMES = 'SERVER_MEMORY,SERVER_IP,SERVER_PORT,ENV,HOME,USER,STARTUP,SERVER_UUID,UUID';
|
|
|
|
|
2015-12-08 18:33:33 -05:00
|
|
|
/**
|
|
|
|
* The table associated with the model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $table = 'service_variables';
|
|
|
|
|
2016-02-15 15:21:28 -05:00
|
|
|
/**
|
|
|
|
* Fields that are not mass assignable.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $guarded = ['id', 'created_at', 'updated_at'];
|
|
|
|
|
2017-03-12 19:38:50 -04:00
|
|
|
/**
|
2017-03-15 20:53:49 -04:00
|
|
|
* Cast values to correct type.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2017-03-12 19:34:06 -04:00
|
|
|
protected $casts = [
|
|
|
|
'option_id' => 'integer',
|
|
|
|
'user_viewable' => 'integer',
|
|
|
|
'user_editable' => 'integer',
|
|
|
|
];
|
2017-02-05 17:58:17 -05:00
|
|
|
|
2017-05-01 17:01:46 -04:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
2017-08-08 23:24:55 -05:00
|
|
|
protected static $applicationRules = [
|
|
|
|
'name' => 'required',
|
|
|
|
'env_variable' => 'required',
|
|
|
|
'rules' => 'required',
|
2017-05-01 17:01:46 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
2017-08-08 23:24:55 -05:00
|
|
|
* @var array
|
2017-05-01 17:01:46 -04:00
|
|
|
*/
|
2017-08-08 23:24:55 -05:00
|
|
|
protected static $dataIntegrityRules = [
|
|
|
|
'option_id' => 'exists:service_options,id',
|
|
|
|
'name' => 'string|between:1,255',
|
|
|
|
'description' => 'nullable|string',
|
|
|
|
'env_variable' => 'regex:/^[\w]{1,255}$/|notIn:' . self::RESERVED_ENV_NAMES,
|
|
|
|
'default_value' => 'string',
|
|
|
|
'user_viewable' => 'boolean',
|
|
|
|
'user_editable' => 'boolean',
|
|
|
|
'rules' => 'string',
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $attributes = [
|
|
|
|
'user_editable' => 0,
|
|
|
|
'user_viewable' => 0,
|
|
|
|
];
|
2017-05-01 17:01:46 -04:00
|
|
|
|
2017-03-12 19:34:06 -04:00
|
|
|
/**
|
|
|
|
* Returns the display executable for the option and will use the parent
|
|
|
|
* service one if the option does not have one defined.
|
|
|
|
*
|
2017-03-19 19:36:50 -04:00
|
|
|
* @return bool
|
2017-03-12 19:34:06 -04:00
|
|
|
*/
|
|
|
|
public function getRequiredAttribute($value)
|
|
|
|
{
|
2017-03-12 19:38:50 -04:00
|
|
|
return $this->rules === 'required' || str_contains($this->rules, ['required|', '|required']);
|
2017-03-12 19:34:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return server variables associated with this variable.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
2017-02-15 16:57:45 -05:00
|
|
|
public function serverVariable()
|
2017-02-12 15:10:39 -05:00
|
|
|
{
|
2017-02-12 16:03:17 -05:00
|
|
|
return $this->hasMany(ServerVariable::class, 'variable_id');
|
2017-02-12 15:10:39 -05:00
|
|
|
}
|
2015-12-08 18:33:33 -05:00
|
|
|
}
|