mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 12:46:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			121 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			121 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Requests\Api\Application\Servers;
 | 
						|
 | 
						|
use App\Models\Server;
 | 
						|
use Illuminate\Support\Collection;
 | 
						|
 | 
						|
class UpdateServerBuildConfigurationRequest extends ServerWriteRequest
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Return the rules to validate this request against.
 | 
						|
     */
 | 
						|
    public function rules(): array
 | 
						|
    {
 | 
						|
        $rules = $this->route() ? Server::getRulesForUpdate($this->parameter('server', Server::class)) : Server::getRules();
 | 
						|
 | 
						|
        return [
 | 
						|
            'allocation' => $rules['allocation_id'],
 | 
						|
            'oom_killer' => $rules['oom_killer'],
 | 
						|
 | 
						|
            'limits' => 'sometimes|array',
 | 
						|
            'limits.memory' => $this->requiredToOptional('memory', $rules['memory'], true),
 | 
						|
            'limits.swap' => $this->requiredToOptional('swap', $rules['swap'], true),
 | 
						|
            'limits.io' => $this->requiredToOptional('io', $rules['io'], true),
 | 
						|
            'limits.cpu' => $this->requiredToOptional('cpu', $rules['cpu'], true),
 | 
						|
            'limits.threads' => $this->requiredToOptional('threads', $rules['threads'], true),
 | 
						|
            'limits.disk' => $this->requiredToOptional('disk', $rules['disk'], true),
 | 
						|
 | 
						|
            // Deprecated - use limits.memory
 | 
						|
            'memory' => $this->requiredToOptional('memory', $rules['memory']),
 | 
						|
            // Deprecated - use limits.swap
 | 
						|
            'swap' => $this->requiredToOptional('swap', $rules['swap']),
 | 
						|
            // Deprecated - use limits.io
 | 
						|
            'io' => $this->requiredToOptional('io', $rules['io']),
 | 
						|
            // Deprecated - use limits.cpu
 | 
						|
            'cpu' => $this->requiredToOptional('cpu', $rules['cpu']),
 | 
						|
            // Deprecated - use limits.threads
 | 
						|
            'threads' => $this->requiredToOptional('threads', $rules['threads']),
 | 
						|
            // Deprecated - use limits.disk
 | 
						|
            'disk' => $this->requiredToOptional('disk', $rules['disk']),
 | 
						|
 | 
						|
            'add_allocations' => 'bail|array',
 | 
						|
            'add_allocations.*' => 'integer',
 | 
						|
            'remove_allocations' => 'bail|array',
 | 
						|
            'remove_allocations.*' => 'integer',
 | 
						|
 | 
						|
            'feature_limits' => 'required|array',
 | 
						|
            'feature_limits.databases' => $rules['database_limit'],
 | 
						|
            'feature_limits.allocations' => $rules['allocation_limit'],
 | 
						|
            'feature_limits.backups' => $rules['backup_limit'],
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Convert the allocation field into the expected format for the service handler.
 | 
						|
     *
 | 
						|
     * @return array<array-key, string>
 | 
						|
     */
 | 
						|
    public function validated($key = null, $default = null): array
 | 
						|
    {
 | 
						|
        $data = parent::validated();
 | 
						|
 | 
						|
        $data['allocation_id'] = $data['allocation'];
 | 
						|
        $data['database_limit'] = $data['feature_limits']['databases'] ?? null;
 | 
						|
        $data['allocation_limit'] = $data['feature_limits']['allocations'] ?? null;
 | 
						|
        $data['backup_limit'] = $data['feature_limits']['backups'] ?? null;
 | 
						|
        unset($data['allocation'], $data['feature_limits']);
 | 
						|
 | 
						|
        // Adjust the limits field to match what is expected by the model.
 | 
						|
        if (!empty($data['limits'])) {
 | 
						|
            foreach ($data['limits'] as $key => $value) {
 | 
						|
                $data[$key] = $value;
 | 
						|
            }
 | 
						|
 | 
						|
            unset($data['limits']);
 | 
						|
        }
 | 
						|
 | 
						|
        return $data;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Custom attributes to use in error message responses.
 | 
						|
     *
 | 
						|
     * @return array<array-key, string>
 | 
						|
     */
 | 
						|
    public function attributes(): array
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'add_allocations' => 'allocations to add',
 | 
						|
            'remove_allocations' => 'allocations to remove',
 | 
						|
            'add_allocations.*' => 'allocation to add',
 | 
						|
            'remove_allocations.*' => 'allocation to remove',
 | 
						|
            'feature_limits.databases' => 'Database Limit',
 | 
						|
            'feature_limits.allocations' => 'Allocation Limit',
 | 
						|
            'feature_limits.backups' => 'Backup Limit',
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Converts existing rules for certain limits into a format that maintains backwards
 | 
						|
     * compatability with the old API endpoint while also supporting a more correct API
 | 
						|
     * call.
 | 
						|
     *
 | 
						|
     * @param  array<array-key, mixed>  $rules
 | 
						|
     * @return array<array-key, string>
 | 
						|
     */
 | 
						|
    protected function requiredToOptional(string $field, array $rules, bool $limits = false): array
 | 
						|
    {
 | 
						|
        if (!in_array('required', $rules)) {
 | 
						|
            return $rules;
 | 
						|
        }
 | 
						|
 | 
						|
        return (new Collection($rules))
 | 
						|
            ->filter(function ($value) {
 | 
						|
                return $value !== 'required';
 | 
						|
            })
 | 
						|
            ->prepend($limits ? 'required_with:limits' : 'required_without:limits')
 | 
						|
            ->toArray();
 | 
						|
    }
 | 
						|
}
 |