1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Http/Requests/TaskRequest.php

35 lines
858 B
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Http\Requests;
2016-05-01 14:04:55 +02:00
use App\Models\Client;
use App\Models\Project;
2017-01-30 17:05:31 +01:00
class TaskRequest extends EntityRequest
{
2016-05-01 14:04:55 +02:00
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();
}
2017-01-30 17:05:31 +01:00
}