mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 10:23:32 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			858 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			858 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Requests;
 | 
						|
 | 
						|
use App\Models\Client;
 | 
						|
use App\Models\Project;
 | 
						|
 | 
						|
class TaskRequest extends EntityRequest
 | 
						|
{
 | 
						|
    protected $entityType = ENTITY_TASK;
 | 
						|
 | 
						|
    public function sanitize()
 | 
						|
    {
 | 
						|
        $input = $this->all();
 | 
						|
 | 
						|
        // check if we're creating a new project
 | 
						|
        if ($this->project_id == '-1') {
 | 
						|
            $project = [
 | 
						|
                'name' => trim($this->project_name),
 | 
						|
                'client_id' => Client::getPrivateId($this->client),
 | 
						|
            ];
 | 
						|
            if (Project::validate($project) === true) {
 | 
						|
                $project = app('App\Ninja\Repositories\ProjectRepository')->save($project);
 | 
						|
                $input['project_id'] = $project->public_id;
 | 
						|
            } else {
 | 
						|
                $input['project_id'] = null;
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        $this->replace($input);
 | 
						|
 | 
						|
        return $this->all();
 | 
						|
    }
 | 
						|
}
 |