2015-12-08 23:33:33 +00:00
|
|
|
<?php
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2015-12-08 23:33:33 +00:00
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
|
2019-09-05 04:00:34 +00:00
|
|
|
class EggVariable extends Validable
|
2015-12-08 23:33:33 +00:00
|
|
|
{
|
2018-01-26 03:26:06 +00:00
|
|
|
/**
|
|
|
|
* The resource name for this model when it is transformed into an
|
|
|
|
* API representation using fractal.
|
|
|
|
*/
|
|
|
|
const RESOURCE_NAME = 'egg_variable';
|
|
|
|
|
2017-08-09 04:24:55 +00:00
|
|
|
/**
|
|
|
|
* Reserved environment variable names.
|
|
|
|
*
|
2017-08-12 20:29:01 +00:00
|
|
|
* @var string
|
2017-08-09 04:24:55 +00:00
|
|
|
*/
|
|
|
|
const RESERVED_ENV_NAMES = 'SERVER_MEMORY,SERVER_IP,SERVER_PORT,ENV,HOME,USER,STARTUP,SERVER_UUID,UUID';
|
|
|
|
|
2015-12-08 23:33:33 +00:00
|
|
|
/**
|
|
|
|
* The table associated with the model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2017-10-07 04:57:53 +00:00
|
|
|
protected $table = 'egg_variables';
|
2015-12-08 23:33:33 +00:00
|
|
|
|
2016-02-15 20:21:28 +00:00
|
|
|
/**
|
|
|
|
* Fields that are not mass assignable.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $guarded = ['id', 'created_at', 'updated_at'];
|
|
|
|
|
2017-03-12 23:38:50 +00:00
|
|
|
/**
|
2017-03-16 00:53:49 +00:00
|
|
|
* Cast values to correct type.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2017-03-12 23:34:06 +00:00
|
|
|
protected $casts = [
|
2017-10-07 04:57:53 +00:00
|
|
|
'egg_id' => 'integer',
|
2017-03-12 23:34:06 +00:00
|
|
|
'user_viewable' => 'integer',
|
|
|
|
'user_editable' => 'integer',
|
|
|
|
];
|
2017-02-05 22:58:17 +00:00
|
|
|
|
2017-05-01 21:01:46 +00:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
2019-09-05 05:19:57 +00:00
|
|
|
public static $validationRules = [
|
2017-10-07 04:57:53 +00:00
|
|
|
'egg_id' => 'exists:eggs,id',
|
2019-09-05 05:19:57 +00:00
|
|
|
'name' => 'required|string|between:1,255',
|
2018-02-17 19:37:53 +00:00
|
|
|
'description' => 'string',
|
2019-09-05 05:19:57 +00:00
|
|
|
'env_variable' => 'required|regex:/^[\w]{1,255}$/|notIn:' . self::RESERVED_ENV_NAMES,
|
2017-08-09 04:24:55 +00:00
|
|
|
'default_value' => 'string',
|
|
|
|
'user_viewable' => 'boolean',
|
|
|
|
'user_editable' => 'boolean',
|
2019-09-05 05:19:57 +00:00
|
|
|
'rules' => 'required|string',
|
2017-08-09 04:24:55 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $attributes = [
|
|
|
|
'user_editable' => 0,
|
|
|
|
'user_viewable' => 0,
|
|
|
|
];
|
2017-05-01 21:01:46 +00:00
|
|
|
|
2017-03-12 23:34:06 +00:00
|
|
|
/**
|
2018-05-13 16:19:35 +00:00
|
|
|
* @param $value
|
2017-03-19 23:36:50 +00:00
|
|
|
* @return bool
|
2017-03-12 23:34:06 +00:00
|
|
|
*/
|
|
|
|
public function getRequiredAttribute($value)
|
|
|
|
{
|
2017-03-12 23:38:50 +00:00
|
|
|
return $this->rules === 'required' || str_contains($this->rules, ['required|', '|required']);
|
2017-03-12 23:34:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return server variables associated with this variable.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
2017-02-15 21:57:45 +00:00
|
|
|
public function serverVariable()
|
2017-02-12 20:10:39 +00:00
|
|
|
{
|
2017-02-12 21:03:17 +00:00
|
|
|
return $this->hasMany(ServerVariable::class, 'variable_id');
|
2017-02-12 20:10:39 +00:00
|
|
|
}
|
2015-12-08 23:33:33 +00:00
|
|
|
}
|