mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 03:26:52 +01:00 
			
		
		
		
	* Not found property rule * Make these “better” * Day 1 * Day 2 * Day 3 * Dat 4 * Remove disabled check * Day 4 continued * Run pint * Final changes hopefully * Pint fixes * Fix again * Reset these * Update app/Filament/Admin/Pages/Health.php Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com> * Update app/Traits/CheckMigrationsTrait.php Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com> --------- Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com>
		
			
				
	
	
		
			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|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');
 | 
						|
    }
 | 
						|
}
 |