mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 09:46:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			859 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			859 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\Http\Requests\Admin;
 | 
						|
 | 
						|
use Pterodactyl\Models\DatabaseHost;
 | 
						|
 | 
						|
class DatabaseHostFormRequest extends AdminFormRequest
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @return mixed
 | 
						|
     */
 | 
						|
    public function rules()
 | 
						|
    {
 | 
						|
        if ($this->method() !== 'POST') {
 | 
						|
            return DatabaseHost::getRulesForUpdate($this->route()->parameter('host'));
 | 
						|
        }
 | 
						|
 | 
						|
        return DatabaseHost::getRules();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Modify submitted data before it is passed off to the validator.
 | 
						|
     *
 | 
						|
     * @return \Illuminate\Contracts\Validation\Validator
 | 
						|
     */
 | 
						|
    protected function getValidatorInstance()
 | 
						|
    {
 | 
						|
        if (! $this->filled('node_id')) {
 | 
						|
            $this->merge(['node_id' => null]);
 | 
						|
        }
 | 
						|
 | 
						|
        $this->merge([
 | 
						|
            'host' => gethostbyname($this->input('host')),
 | 
						|
        ]);
 | 
						|
 | 
						|
        return parent::getValidatorInstance();
 | 
						|
    }
 | 
						|
}
 |