mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 12:36:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Pterodactyl\Http\Requests\Admin\Settings;
 | |
| 
 | |
| use Illuminate\Validation\Rule;
 | |
| use Pterodactyl\Http\Requests\Admin\AdminFormRequest;
 | |
| 
 | |
| class MailSettingsFormRequest extends AdminFormRequest
 | |
| {
 | |
|     /**
 | |
|      * Return rules to validate mail settings POST data aganist.
 | |
|      *
 | |
|      * @return array
 | |
|      */
 | |
|     public function rules()
 | |
|     {
 | |
|         return [
 | |
|             'mail:host' => 'required|string',
 | |
|             'mail:port' => 'required|integer|between:1,65535',
 | |
|             'mail:encryption' => ['present', Rule::in([null, 'tls', 'ssl'])],
 | |
|             'mail:username' => 'nullable|string|max:255',
 | |
|             'mail:password' => 'nullable|string|max:255',
 | |
|             'mail:from:address' => 'required|string|email',
 | |
|             'mail:from:name' => 'nullable|string|max:255',
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Override the default normalization function for this type of request
 | |
|      * as we need to accept empty values on the keys.
 | |
|      *
 | |
|      * @param array $only
 | |
|      * @return array
 | |
|      */
 | |
|     public function normalize(array $only = null)
 | |
|     {
 | |
|         $keys = array_flip(array_keys($this->rules()));
 | |
| 
 | |
|         if (empty($this->input('mail:password'))) {
 | |
|             unset($keys['mail:password']);
 | |
|         }
 | |
| 
 | |
|         return $this->only(array_flip($keys));
 | |
|     }
 | |
| }
 | 
