mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 22:14:45 +02:00

* Simplify * Update these * Add Laravel Data * Remove unused imports * Quick fix * Fix double array * Update app/Console/Commands/Egg/CheckEggUpdatesCommand.php
104 lines
3.0 KiB
PHP
104 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Contracts\Validatable;
|
|
use App\Traits\HasValidation;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\HasOne;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property int $egg_id
|
|
* @property null $sort
|
|
* @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 \App\Models\Egg $egg
|
|
* @property \App\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
|
|
*/
|
|
class EggVariable extends Model implements Validatable
|
|
{
|
|
use HasFactory;
|
|
use HasValidation;
|
|
|
|
/**
|
|
* The resource name for this model when it is transformed into an
|
|
* API representation using fractal.
|
|
*/
|
|
public const RESOURCE_NAME = 'egg_variable';
|
|
|
|
/**
|
|
* Reserved environment variable names.
|
|
*/
|
|
public const RESERVED_ENV_NAMES = 'P_SERVER_UUID,P_SERVER_ALLOCATION_LIMIT,SERVER_MEMORY,SERVER_IP,SERVER_PORT,ENV,HOME,USER,STARTUP,MODIFIED_STARTUP,SERVER_UUID,UUID,INTERNAL_IP,HOSTNAME,TERM,LANG,PWD,TZ,TIMEZONE';
|
|
|
|
/**
|
|
* Fields that are not mass assignable.
|
|
*/
|
|
protected $guarded = ['id', 'created_at', 'updated_at'];
|
|
|
|
/** @var array<string, string[]> */
|
|
public static array $validationRules = [
|
|
'egg_id' => ['exists:eggs,id'],
|
|
'sort' => ['nullable'],
|
|
'name' => ['required', 'string', 'between:1,255'],
|
|
'description' => ['string'],
|
|
'env_variable' => ['required', 'alphaDash', 'between:1,255', 'notIn:' . self::RESERVED_ENV_NAMES],
|
|
'default_value' => ['string'],
|
|
'user_viewable' => ['boolean'],
|
|
'user_editable' => ['boolean'],
|
|
'rules' => ['array'],
|
|
'rules.*' => ['string'],
|
|
];
|
|
|
|
protected $attributes = [
|
|
'user_editable' => 0,
|
|
'user_viewable' => 0,
|
|
'rules' => '[]',
|
|
];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'egg_id' => 'integer',
|
|
'user_viewable' => 'bool',
|
|
'user_editable' => 'bool',
|
|
'rules' => 'array',
|
|
'created_at' => 'immutable_datetime',
|
|
'updated_at' => 'immutable_datetime',
|
|
];
|
|
}
|
|
|
|
public function getRequiredAttribute(): bool
|
|
{
|
|
return in_array('required', $this->rules);
|
|
}
|
|
|
|
public function egg(): HasOne
|
|
{
|
|
return $this->hasOne(Egg::class);
|
|
}
|
|
|
|
/**
|
|
* Return server variables associated with this variable.
|
|
*/
|
|
public function serverVariable(): HasMany
|
|
{
|
|
return $this->hasMany(ServerVariable::class, 'variable_id');
|
|
}
|
|
}
|