2019-05-02 13:07:38 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-05-02 13:07:38 +02:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Quote;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2019-12-30 22:59:12 +01:00
|
|
|
use App\Utils\Traits\ChecksEntityStatus;
|
2019-11-16 04:12:29 +01:00
|
|
|
use App\Utils\Traits\CleanLineItems;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
2019-05-02 13:07:38 +02:00
|
|
|
|
|
|
|
class UpdateQuoteRequest extends Request
|
|
|
|
{
|
2019-11-16 04:12:29 +01:00
|
|
|
use MakesHash;
|
|
|
|
use CleanLineItems;
|
2019-12-30 22:59:12 +01:00
|
|
|
use ChecksEntityStatus;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-05-02 13:07:38 +02:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->can('edit', $this->quote);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
2020-06-22 23:48:45 +02:00
|
|
|
$rules = [];
|
|
|
|
|
|
|
|
if ($this->input('documents') && is_array($this->input('documents'))) {
|
|
|
|
$documents = count($this->input('documents'));
|
|
|
|
|
|
|
|
foreach (range(0, $documents) as $index) {
|
2020-09-06 11:38:10 +02:00
|
|
|
$rules['documents.'.$index] = 'file|mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx|max:20000';
|
2020-06-22 23:48:45 +02:00
|
|
|
}
|
|
|
|
} elseif ($this->input('documents')) {
|
|
|
|
$rules['documents'] = 'file|mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx|max:20000';
|
|
|
|
}
|
2020-08-13 08:15:46 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if ($this->input('number')) {
|
|
|
|
$rules['number'] = 'unique:quotes,number,'.$this->id.',id,company_id,'.$this->quote->company_id;
|
|
|
|
}
|
2020-06-22 23:48:45 +02:00
|
|
|
|
|
|
|
return $rules;
|
2019-05-02 13:07:38 +02:00
|
|
|
}
|
2019-11-16 04:12:29 +01:00
|
|
|
|
2019-12-20 12:23:09 +01:00
|
|
|
protected function prepareForValidation()
|
2019-11-16 04:12:29 +01:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
if (array_key_exists('design_id', $input) && is_string($input['design_id'])) {
|
|
|
|
$input['design_id'] = $this->decodePrimaryKey($input['design_id']);
|
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-02-19 21:44:12 +01:00
|
|
|
if (isset($input['client_id'])) {
|
|
|
|
$input['client_id'] = $this->decodePrimaryKey($input['client_id']);
|
|
|
|
}
|
2019-11-16 04:12:29 +01:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if (isset($input['line_items'])) {
|
2019-11-16 04:12:29 +01:00
|
|
|
$input['line_items'] = isset($input['line_items']) ? $this->cleanItems($input['line_items']) : [];
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-11-16 04:12:29 +01:00
|
|
|
|
2020-06-26 00:29:24 +02:00
|
|
|
if (array_key_exists('assigned_user_id', $input) && is_string($input['assigned_user_id'])) {
|
|
|
|
$input['assigned_user_id'] = $this->decodePrimaryKey($input['assigned_user_id']);
|
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2021-01-08 11:19:26 +01:00
|
|
|
if (array_key_exists('documents', $input)) {
|
|
|
|
unset($input['documents']);
|
|
|
|
}
|
|
|
|
|
2020-08-14 14:21:46 +02:00
|
|
|
$input['id'] = $this->quote->id;
|
|
|
|
|
2019-11-16 04:12:29 +01:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|