2020-10-12 22:42:02 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-10-12 22:42:02 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-10-12 22:42:02 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Task;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2022-08-18 05:29:18 +02:00
|
|
|
use App\Models\Project;
|
2020-10-12 22:42:02 +02:00
|
|
|
use App\Utils\Traits\ChecksEntityStatus;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Validation\Rule;
|
|
|
|
|
|
|
|
class UpdateTaskRequest extends Request
|
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
use ChecksEntityStatus;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->can('edit', $this->task);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
$rules = [];
|
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
if (isset($this->number)) {
|
2020-11-01 08:53:43 +01:00
|
|
|
$rules['number'] = Rule::unique('tasks')->where('company_id', auth()->user()->company()->id)->ignore($this->task->id);
|
2020-11-25 15:19:52 +01:00
|
|
|
}
|
2020-10-12 22:42:02 +02:00
|
|
|
|
2022-08-18 05:29:18 +02:00
|
|
|
if(isset($this->client_id))
|
|
|
|
$rules['client_id'] = 'bail|required|exists:clients,id,company_id,'.auth()->user()->company()->id.',is_deleted,0';
|
|
|
|
|
|
|
|
if(isset($this->project_id))
|
|
|
|
$rules['project_id'] = 'bail|required|exists:projects,id,company_id,'.auth()->user()->company()->id.',is_deleted,0';
|
|
|
|
|
|
|
|
$rules['timelog'] = ['bail','array',function ($attribute, $values, $fail) {
|
|
|
|
|
|
|
|
foreach($values as $k)
|
|
|
|
{
|
|
|
|
if(!is_int($k[0]) || !is_int($k[1]))
|
|
|
|
$fail('The '.$attribute.' - '.print_r($k,1).' is invalid. Unix timestamps only.');
|
|
|
|
}
|
|
|
|
|
|
|
|
}];
|
|
|
|
|
2020-10-26 01:58:08 +01:00
|
|
|
return $this->globalRules($rules);
|
2020-10-12 22:42:02 +02:00
|
|
|
}
|
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public function prepareForValidation()
|
2020-10-12 22:42:02 +02:00
|
|
|
{
|
2020-11-25 15:19:52 +01:00
|
|
|
$input = $this->decodePrimaryKeys($this->all());
|
2020-10-12 22:42:02 +02:00
|
|
|
|
2020-10-29 22:00:35 +01:00
|
|
|
if (array_key_exists('status_id', $input) && is_string($input['status_id'])) {
|
|
|
|
$input['status_id'] = $this->decodePrimaryKey($input['status_id']);
|
|
|
|
}
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-08-18 05:29:18 +02:00
|
|
|
/* Ensure the project is related */
|
|
|
|
if (array_key_exists('project_id', $input) && isset($input['project_id'])) {
|
|
|
|
$project = Project::withTrashed()->find($input['project_id'])->company()->first();
|
|
|
|
|
|
|
|
if($project){
|
|
|
|
$input['client_id'] = $project->client_id;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unset($input['project_id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (array_key_exists('color', $input) && is_null($input['color'])) {
|
2021-07-11 02:16:27 +02:00
|
|
|
$input['color'] = '';
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-01-07 23:25:00 +01:00
|
|
|
|
2020-10-26 01:58:08 +01:00
|
|
|
$this->replace($input);
|
2020-10-12 22:42:02 +02:00
|
|
|
}
|
|
|
|
}
|