mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 02:47:34 -05:00 
			
		
		
		
	- Removed unused uses - Type hinting for method parameters - Removed commented code - Introduced comments for classes and methods - Short array syntax
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php namespace App\Http\Requests;
 | 
						|
 | 
						|
use Illuminate\Foundation\Http\FormRequest;
 | 
						|
 | 
						|
// https://laracasts.com/discuss/channels/general-discussion/laravel-5-modify-input-before-validation/replies/34366
 | 
						|
abstract class Request extends FormRequest {
 | 
						|
 | 
						|
    // populate in subclass to auto load record
 | 
						|
    protected $autoload = [];
 | 
						|
 | 
						|
    /**
 | 
						|
     * Validate the input.
 | 
						|
     *
 | 
						|
     * @param  \Illuminate\Validation\Factory  $factory
 | 
						|
     * @return \Illuminate\Validation\Validator
 | 
						|
     */
 | 
						|
    public function validator($factory)
 | 
						|
    {
 | 
						|
        return $factory->make(
 | 
						|
            $this->sanitizeInput(), $this->container->call([$this, 'rules']), $this->messages()
 | 
						|
        );
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Sanitize the input.
 | 
						|
     *
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    protected function sanitizeInput()
 | 
						|
    {
 | 
						|
        if (method_exists($this, 'sanitize')) {
 | 
						|
            $input = $this->container->call([$this, 'sanitize']);
 | 
						|
        } else {
 | 
						|
            $input = $this->all();
 | 
						|
        }
 | 
						|
 | 
						|
        // autoload referenced entities
 | 
						|
        foreach ($this->autoload as $entityType) {
 | 
						|
            if ($id = $this->input("{$entityType}_public_id") ?: $this->input("{$entityType}_id")) {
 | 
						|
                $class = 'App\\Models\\' . ucwords($entityType);
 | 
						|
                $entity = $class::scope($id)->firstOrFail();
 | 
						|
                $input[$entityType] = $entity;
 | 
						|
                $input[$entityType . '_id'] = $entity->id;
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        $this->replace($input);
 | 
						|
 | 
						|
        return $this->all();
 | 
						|
    }
 | 
						|
}
 |