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

57 lines
1.3 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
*
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;
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
*/
public function authorize() : bool
{
return auth()->user()->can('create', Task::class);
}
public function rules()
{
$rules = [];
2020-10-26 01:58:08 +01:00
2020-11-25 15:19:52 +01:00
if (isset($this->number)) {
$rules['number'] = Rule::unique('tasks')->where('company_id', auth()->user()->company()->id);
2020-11-25 15:19:52 +01:00
}
2020-10-30 12:47:12 +01:00
2020-11-25 15:19:52 +01:00
return $this->globalRules($rules);
2020-10-12 22:42:02 +02:00
}
protected function prepareForValidation()
{
2020-10-26 01:58:08 +01:00
$input = $this->all();
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 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']);
}
2020-10-26 01:58:08 +01:00
$this->replace($input);
2020-10-12 22:42:02 +02:00
}
}