2019-05-05 02:49:01 +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
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 05:32:07 +02:00
|
|
|
*/
|
2019-05-05 02:49:01 +02:00
|
|
|
|
|
|
|
namespace App\Http\Requests\RecurringQuote;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2019-12-30 22:59:12 +01:00
|
|
|
use App\Utils\Traits\ChecksEntityStatus;
|
2020-02-15 10:06:30 +01:00
|
|
|
use App\Utils\Traits\CleanLineItems;
|
2021-08-24 04:57:46 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2021-03-19 23:51:52 +01:00
|
|
|
use Illuminate\Validation\Rule;
|
2019-05-05 02:49:01 +02:00
|
|
|
|
|
|
|
class UpdateRecurringQuoteRequest extends Request
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
use ChecksEntityStatus;
|
2020-02-15 10:06:30 +01:00
|
|
|
use CleanLineItems;
|
2021-08-24 04:57:46 +02:00
|
|
|
use MakesHash;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-05-05 02:49:01 +02:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->can('edit', $this->recurring_quote);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
2021-08-24 04:57:46 +02:00
|
|
|
$rules = [];
|
|
|
|
|
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;
|
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;
|
2021-08-24 04:57:46 +02:00
|
|
|
}
|
2023-02-27 10:12:59 +01:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($this->number) {
|
2021-08-24 04:57:46 +02:00
|
|
|
$rules['number'] = Rule::unique('recurring_quotes')->where('company_id', auth()->user()->company()->id)->ignore($this->recurring_quote->id);
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-08-24 04:57:46 +02:00
|
|
|
|
|
|
|
return $rules;
|
2019-05-05 02:49:01 +02:00
|
|
|
}
|
2020-02-15 10:06:30 +01:00
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public function prepareForValidation()
|
2020-02-15 10:06:30 +01:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
2021-08-24 07:05:35 +02:00
|
|
|
$input = $this->decodePrimaryKeys($input);
|
2021-03-19 23:51:52 +01:00
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
if (isset($input['line_items'])) {
|
|
|
|
$input['line_items'] = isset($input['line_items']) ? $this->cleanItems($input['line_items']) : [];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($input['auto_bill'])) {
|
|
|
|
$input['auto_bill_enabled'] = $this->setAutoBillFlag($input['auto_bill']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_key_exists('documents', $input)) {
|
|
|
|
unset($input['documents']);
|
|
|
|
}
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-02-15 10:06:30 +01:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
2021-08-24 04:57:46 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* if($auto_bill == '')
|
|
|
|
* off / optin / optout will reset the status of this field to off to allow
|
|
|
|
* the client to choose whether to auto_bill or not.
|
|
|
|
*
|
|
|
|
* @param enum $auto_bill off/always/optin/optout
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function setAutoBillFlag($auto_bill) :bool
|
|
|
|
{
|
|
|
|
if ($auto_bill == 'always') {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if($auto_bill == '')
|
|
|
|
// off / optin / optout will reset the status of this field to off to allow
|
|
|
|
// the client to choose whether to auto_bill or not.
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
return false;
|
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|