2015-12-09 00:33:33 +01:00
|
|
|
<?php
|
2016-12-07 23:46:38 +01:00
|
|
|
|
2015-12-09 00:33:33 +01:00
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
|
2022-10-14 18:59:20 +02:00
|
|
|
use Illuminate\Database\Eloquent\Relations\HasOne;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
|
2020-08-23 00:43:28 +02:00
|
|
|
/**
|
2021-01-28 05:52:11 +01:00
|
|
|
* @property int $id
|
|
|
|
* @property int $egg_id
|
|
|
|
* @property string $name
|
|
|
|
* @property string $description
|
|
|
|
* @property string $env_variable
|
|
|
|
* @property string $default_value
|
|
|
|
* @property bool $user_viewable
|
|
|
|
* @property bool $user_editable
|
|
|
|
* @property string $rules
|
|
|
|
* @property \Carbon\CarbonImmutable $created_at
|
|
|
|
* @property \Carbon\CarbonImmutable $updated_at
|
|
|
|
* @property bool $required
|
|
|
|
* @property \Pterodactyl\Models\Egg $egg
|
2020-08-23 00:43:28 +02:00
|
|
|
* @property \Pterodactyl\Models\ServerVariable $serverVariable
|
|
|
|
*
|
|
|
|
* The "server_value" variable is only present on the object if you've loaded this model
|
|
|
|
* using the server relationship.
|
|
|
|
* @property string|null $server_value
|
|
|
|
*/
|
2020-04-04 08:22:35 +02:00
|
|
|
class EggVariable extends Model
|
2015-12-09 00:33:33 +01:00
|
|
|
{
|
2018-01-26 04:26:06 +01:00
|
|
|
/**
|
|
|
|
* The resource name for this model when it is transformed into an
|
|
|
|
* API representation using fractal.
|
|
|
|
*/
|
2021-01-23 21:33:34 +01:00
|
|
|
public const RESOURCE_NAME = 'egg_variable';
|
2018-01-26 04:26:06 +01:00
|
|
|
|
2017-08-09 06:24:55 +02:00
|
|
|
/**
|
|
|
|
* Reserved environment variable names.
|
|
|
|
*/
|
2021-01-23 21:33:34 +01:00
|
|
|
public const RESERVED_ENV_NAMES = 'SERVER_MEMORY,SERVER_IP,SERVER_PORT,ENV,HOME,USER,STARTUP,SERVER_UUID,UUID';
|
2017-08-09 06:24:55 +02:00
|
|
|
|
2022-10-14 18:59:20 +02:00
|
|
|
protected bool $immutableDates = true;
|
2020-08-23 00:43:28 +02:00
|
|
|
|
2015-12-09 00:33:33 +01:00
|
|
|
/**
|
|
|
|
* The table associated with the model.
|
|
|
|
*/
|
2017-10-07 06:57:53 +02:00
|
|
|
protected $table = 'egg_variables';
|
2015-12-09 00:33:33 +01:00
|
|
|
|
2016-02-15 21:21:28 +01:00
|
|
|
/**
|
|
|
|
* Fields that are not mass assignable.
|
|
|
|
*/
|
|
|
|
protected $guarded = ['id', 'created_at', 'updated_at'];
|
|
|
|
|
2017-03-13 00:38:50 +01:00
|
|
|
/**
|
2017-03-16 01:53:49 +01:00
|
|
|
* Cast values to correct type.
|
|
|
|
*/
|
2017-03-13 00:34:06 +01:00
|
|
|
protected $casts = [
|
2017-10-07 06:57:53 +02:00
|
|
|
'egg_id' => 'integer',
|
2020-08-23 00:43:28 +02:00
|
|
|
'user_viewable' => 'bool',
|
|
|
|
'user_editable' => 'bool',
|
2017-03-13 00:34:06 +01:00
|
|
|
];
|
2017-02-05 23:58:17 +01:00
|
|
|
|
2022-10-14 18:59:20 +02:00
|
|
|
public static array $validationRules = [
|
2017-10-07 06:57:53 +02:00
|
|
|
'egg_id' => 'exists:eggs,id',
|
2020-09-27 01:29:26 +02:00
|
|
|
'name' => 'required|string|between:1,191',
|
2018-02-17 20:37:53 +01:00
|
|
|
'description' => 'string',
|
2020-09-27 01:29:26 +02:00
|
|
|
'env_variable' => 'required|regex:/^[\w]{1,191}$/|notIn:' . self::RESERVED_ENV_NAMES,
|
2017-08-09 06:24:55 +02:00
|
|
|
'default_value' => 'string',
|
|
|
|
'user_viewable' => 'boolean',
|
|
|
|
'user_editable' => 'boolean',
|
2019-09-05 07:19:57 +02:00
|
|
|
'rules' => 'required|string',
|
2017-08-09 06:24:55 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
protected $attributes = [
|
|
|
|
'user_editable' => 0,
|
|
|
|
'user_viewable' => 0,
|
|
|
|
];
|
2017-05-01 23:01:46 +02:00
|
|
|
|
2022-10-14 18:59:20 +02:00
|
|
|
public function getRequiredAttribute(): bool
|
2020-08-23 00:43:28 +02:00
|
|
|
{
|
|
|
|
return in_array('required', explode('|', $this->rules));
|
|
|
|
}
|
|
|
|
|
2022-10-14 18:59:20 +02:00
|
|
|
public function egg(): HasOne
|
2017-03-13 00:34:06 +01:00
|
|
|
{
|
2020-08-23 00:43:28 +02:00
|
|
|
return $this->hasOne(Egg::class);
|
2017-03-13 00:34:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return server variables associated with this variable.
|
|
|
|
*/
|
2022-10-14 18:59:20 +02:00
|
|
|
public function serverVariable(): HasMany
|
2017-02-12 21:10:39 +01:00
|
|
|
{
|
2017-02-12 22:03:17 +01:00
|
|
|
return $this->hasMany(ServerVariable::class, 'variable_id');
|
2017-02-12 21:10:39 +01:00
|
|
|
}
|
2015-12-09 00:33:33 +01:00
|
|
|
}
|