mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-28 03:13:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Requests;
 | |
| 
 | |
| use HTMLUtils;
 | |
| use Utils;
 | |
| 
 | |
| class SaveClientPortalSettings extends Request
 | |
| {
 | |
|     /**
 | |
|      * Determine if the user is authorized to make this request.
 | |
|      *
 | |
|      * @return bool
 | |
|      */
 | |
|     public function authorize()
 | |
|     {
 | |
|         return $this->user()->is_admin && $this->user()->isPro();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Get the validation rules that apply to the request.
 | |
|      *
 | |
|      * @return array
 | |
|      */
 | |
|     public function rules()
 | |
|     {
 | |
|         $rules = [];
 | |
| 
 | |
|         if ($this->custom_link == 'subdomain' && Utils::isNinja()) {
 | |
|             $rules['subdomain'] = "unique:accounts,subdomain,{$this->user()->account_id},id|valid_subdomain";
 | |
|         }
 | |
| 
 | |
|         return $rules;
 | |
|     }
 | |
| 
 | |
|     public function sanitize()
 | |
|     {
 | |
|         $input = $this->all();
 | |
| 
 | |
|         if ($this->client_view_css && Utils::isNinja()) {
 | |
|             $input['client_view_css'] = HTMLUtils::sanitize($this->client_view_css);
 | |
|         }
 | |
| 
 | |
|         if (Utils::isNinja()) {
 | |
|             if ($this->custom_link == 'subdomain') {
 | |
|                 $subdomain = substr(strtolower($input['subdomain']), 0, MAX_SUBDOMAIN_LENGTH);
 | |
|                 $input['subdomain'] = preg_replace('/[^a-zA-Z0-9_\-\.]/', '', $subdomain);
 | |
|                 $input['iframe_url'] = null;
 | |
|             } else {
 | |
|                 $iframeURL = substr(strtolower($input['iframe_url']), 0, MAX_IFRAME_URL_LENGTH);
 | |
|                 $iframeURL = preg_replace('/[^a-zA-Z0-9_\-\:\/\.]/', '', $iframeURL);
 | |
|                 $input['iframe_url'] = rtrim($iframeURL, '/');
 | |
|                 $input['subdomain'] = null;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         $this->replace($input);
 | |
| 
 | |
|         return $this->all();
 | |
|     }
 | |
| }
 |