1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 09:51:35 +02:00
invoiceninja/app/Http/Requests/Task/StoreTaskRequest.php

134 lines
4.0 KiB
PHP
Raw Normal View History

2020-10-12 22:42:02 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. 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\Models\Task;
use App\Utils\Traits\MakesHash;
use Illuminate\Validation\Rule;
class StoreTaskRequest extends Request
{
use MakesHash;
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
2024-01-14 05:05:00 +01:00
public function authorize(): bool
2020-10-12 22:42:02 +02:00
{
/** @var \App\Models\User $user */
$user = auth()->user();
return $user->can('create', Task::class);
2020-10-12 22:42:02 +02:00
}
public function rules()
{
/** @var \App\Models\User $user */
$user = auth()->user();
2020-10-12 22:42:02 +02:00
$rules = [];
2020-11-25 15:19:52 +01:00
if (isset($this->number)) {
$rules['number'] = Rule::unique('tasks')->where('company_id', $user->company()->id);
2020-11-25 15:19:52 +01:00
}
2023-02-16 02:36:09 +01:00
if (isset($this->client_id)) {
$rules['client_id'] = 'bail|required|exists:clients,id,company_id,'.$user->company()->id.',is_deleted,0';
2023-02-16 02:36:09 +01:00
}
2022-08-18 05:29:18 +02:00
2023-02-16 02:36:09 +01:00
if (isset($this->project_id)) {
$rules['project_id'] = 'bail|required|exists:projects,id,company_id,'.$user->company()->id.',is_deleted,0';
2023-02-16 02:36:09 +01:00
}
2022-08-18 05:29:18 +02:00
2023-11-27 11:26:56 +01:00
$rules['hash'] = 'bail|sometimes|string|nullable';
2023-11-10 00:09:27 +01:00
$rules['time_log'] = ['bail',function ($attribute, $values, $fail) {
2024-01-14 05:05:00 +01:00
2023-11-26 08:41:42 +01:00
if(is_string($values)) {
2023-11-13 22:59:42 +01:00
$values = json_decode($values, true);
2023-11-26 08:41:42 +01:00
}
2023-11-10 00:09:27 +01:00
2023-11-13 22:59:42 +01:00
if(!is_array($values)) {
2023-11-10 00:09:27 +01:00
$fail('The '.$attribute.' must be a valid array.');
return;
}
2023-02-16 02:36:09 +01:00
foreach ($values as $k) {
if (!is_int($k[0]) || !is_int($k[1])) {
2023-10-25 11:44:34 +02:00
return $fail('The '.$attribute.' - '.print_r($k, 1).' is invalid. Unix timestamps only.');
2023-02-16 02:36:09 +01:00
}
2022-08-18 05:29:18 +02:00
}
2023-02-16 02:36:09 +01:00
if (!$this->checkTimeLog($values)) {
2023-10-25 11:44:34 +02:00
return $fail('Please correct overlapping values');
2023-02-16 02:36:09 +01:00
}
2022-08-18 05:29:18 +02:00
}];
2024-01-14 05:05:00 +01:00
2023-03-18 08:24:56 +01:00
if ($this->file('documents') && is_array($this->file('documents'))) {
2023-02-27 10:12:59 +01:00
$rules['documents.*'] = $this->file_validation;
2023-03-18 08:24:56 +01:00
} elseif ($this->file('documents')) {
2023-02-27 10:12:59 +01:00
$rules['documents'] = $this->file_validation;
2024-02-16 19:57:15 +01:00
}else {
$rules['documents'] = 'bail|sometimes|array';
2023-03-18 08:24:56 +01:00
}
2023-02-27 10:12:59 +01:00
if ($this->file('file') && is_array($this->file('file'))) {
$rules['file.*'] = $this->file_validation;
} elseif ($this->file('file')) {
$rules['file'] = $this->file_validation;
}
2022-08-18 05:29:18 +02:00
2020-11-25 15:19:52 +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
{
$input = $this->decodePrimaryKeys($this->all());
2024-01-14 05:05:00 +01:00
2020-10-29 10:56:37 +01:00
if (array_key_exists('status_id', $input) && is_string($input['status_id'])) {
$input['status_id'] = $this->decodePrimaryKey($input['status_id']);
}
2022-08-18 05:29:18 +02:00
/* Ensure the project is related */
if (array_key_exists('project_id', $input) && isset($input['project_id'])) {
2022-08-21 23:53:15 +02:00
$project = Project::withTrashed()->where('id', $input['project_id'])->company()->first();
2023-02-16 02:36:09 +01:00
;
if ($project) {
2022-08-18 05:29:18 +02:00
$input['client_id'] = $project->client_id;
2023-02-16 02:36:09 +01:00
} else {
2022-08-18 05:29:18 +02:00
unset($input['project_id']);
}
}
2023-06-22 03:54:11 +02:00
if (isset($input['project_id']) && isset($input['client_id'])) {
$search_project_with_client = Project::withTrashed()->where('id', $input['project_id'])->where('client_id', $input['client_id'])->company()->doesntExist();
if ($search_project_with_client) {
unset($input['project_id']);
}
}
2023-11-26 08:41:42 +01:00
if(!isset($input['time_log']) || empty($input['time_log']) || $input['time_log'] == '{}') {
2023-11-10 00:09:27 +01:00
$input['time_log'] = json_encode([]);
}
2020-10-26 01:58:08 +01:00
$this->replace($input);
2020-10-12 22:42:02 +02:00
}
}