2015-12-08 18:33:33 -05:00
|
|
|
<?php
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2015-12-08 18:33:33 -05:00
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
|
2020-04-03 23:22:35 -07:00
|
|
|
class EggVariable extends Model
|
2015-12-08 18:33:33 -05:00
|
|
|
{
|
2018-01-25 21:26:06 -06:00
|
|
|
/**
|
|
|
|
* The resource name for this model when it is transformed into an
|
|
|
|
* API representation using fractal.
|
|
|
|
*/
|
|
|
|
const RESOURCE_NAME = 'egg_variable';
|
|
|
|
|
2017-08-08 23:24:55 -05:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2017-10-06 23:57:53 -05:00
|
|
|
protected $table = 'egg_variables';
|
2015-12-08 18:33:33 -05:00
|
|
|
|
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 = [
|
2017-10-06 23:57:53 -05:00
|
|
|
'egg_id' => 'integer',
|
2017-03-12 19:34:06 -04:00
|
|
|
'user_viewable' => 'integer',
|
|
|
|
'user_editable' => 'integer',
|
|
|
|
];
|
2017-02-05 17:58:17 -05:00
|
|
|
|
2017-05-01 17:01:46 -04:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
2019-09-04 22:19:57 -07:00
|
|
|
public static $validationRules = [
|
2017-10-06 23:57:53 -05:00
|
|
|
'egg_id' => 'exists:eggs,id',
|
2019-09-04 22:19:57 -07:00
|
|
|
'name' => 'required|string|between:1,255',
|
2018-02-17 13:37:53 -06:00
|
|
|
'description' => 'string',
|
2019-09-04 22:19:57 -07:00
|
|
|
'env_variable' => 'required|regex:/^[\w]{1,255}$/|notIn:' . self::RESERVED_ENV_NAMES,
|
2017-08-08 23:24:55 -05:00
|
|
|
'default_value' => 'string',
|
|
|
|
'user_viewable' => 'boolean',
|
|
|
|
'user_editable' => 'boolean',
|
2019-09-04 22:19:57 -07:00
|
|
|
'rules' => 'required|string',
|
2017-08-08 23:24:55 -05:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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
|
|
|
/**
|
2018-05-13 12:19:35 -04:00
|
|
|
* @param $value
|
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
|
|
|
}
|