2020-01-30 02:27:22 +01:00
|
|
|
<?php
|
2020-10-22 08:46:02 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
2020-01-30 02:27:22 +01:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Credit;
|
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
use App\Http\Requests\Request;
|
2020-01-30 02:27:22 +01:00
|
|
|
use App\Utils\Traits\ChecksEntityStatus;
|
|
|
|
use App\Utils\Traits\CleanLineItems;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
|
2020-10-22 08:46:02 +02:00
|
|
|
class UpdateCreditRequest extends Request
|
2020-01-30 02:27:22 +01:00
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
use CleanLineItems;
|
|
|
|
use ChecksEntityStatus;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->can('edit', $this->credit);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
2020-04-15 02:30:52 +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-04-15 02:30:52 +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-09-06 11:38:10 +02:00
|
|
|
if ($this->input('number')) {
|
|
|
|
$rules['number'] = 'unique:credits,number,'.$this->id.',id,company_id,'.$this->credit->company_id;
|
|
|
|
}
|
|
|
|
|
2020-04-15 02:30:52 +02:00
|
|
|
return $rules;
|
2020-01-30 02:27:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function prepareForValidation()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2020-10-22 08:46:02 +02:00
|
|
|
$input = $this->decodePrimaryKeys($input);
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-01-30 02:27:22 +01:00
|
|
|
$input['line_items'] = isset($input['line_items']) ? $this->cleanItems($input['line_items']) : [];
|
|
|
|
|
2020-08-14 14:21:46 +02:00
|
|
|
$input['id'] = $this->credit->id;
|
|
|
|
|
2020-01-30 02:27:22 +01:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
|
|
|
}
|