2019-05-05 10:49:01 +10:00
|
|
|
<?php
|
2019-05-11 13:32:07 +10:00
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2023-01-29 09:21:40 +11:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
2021-06-16 16:58:16 +10:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 13:32:07 +10:00
|
|
|
*/
|
2019-05-05 10:49:01 +10:00
|
|
|
|
|
|
|
|
namespace App\Http\Requests\RecurringQuote;
|
|
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2019-12-31 08:59:12 +11:00
|
|
|
use App\Utils\Traits\ChecksEntityStatus;
|
2020-02-15 20:06:30 +11:00
|
|
|
use App\Utils\Traits\CleanLineItems;
|
2021-08-24 12:57:46 +10:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2021-03-20 09:51:52 +11:00
|
|
|
use Illuminate\Validation\Rule;
|
2019-05-05 10:49:01 +10:00
|
|
|
|
|
|
|
|
class UpdateRecurringQuoteRequest extends Request
|
|
|
|
|
{
|
2019-12-31 08:59:12 +11:00
|
|
|
use ChecksEntityStatus;
|
2020-02-15 20:06:30 +11:00
|
|
|
use CleanLineItems;
|
2021-08-24 12:57:46 +10:00
|
|
|
use MakesHash;
|
2020-09-06 19:38:10 +10:00
|
|
|
|
2019-05-05 10:49:01 +10: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 12:57:46 +10:00
|
|
|
$rules = [];
|
|
|
|
|
|
2023-02-27 20:12:59 +11:00
|
|
|
if($this->file('documents') && is_array($this->file('documents')))
|
|
|
|
|
$rules['documents.*'] = $this->file_validation;
|
|
|
|
|
elseif($this->file('documents'))
|
|
|
|
|
$rules['documents'] = $this->file_validation;
|
|
|
|
|
|
|
|
|
|
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 12:57:46 +10:00
|
|
|
}
|
2023-02-27 20:12:59 +11:00
|
|
|
|
2022-06-21 09:57:17 +00:00
|
|
|
if ($this->number) {
|
2021-08-24 12:57:46 +10:00
|
|
|
$rules['number'] = Rule::unique('recurring_quotes')->where('company_id', auth()->user()->company()->id)->ignore($this->recurring_quote->id);
|
2022-06-21 09:57:17 +00:00
|
|
|
}
|
2021-08-24 12:57:46 +10:00
|
|
|
|
|
|
|
|
return $rules;
|
2019-05-05 10:49:01 +10:00
|
|
|
}
|
2020-02-15 20:06:30 +11:00
|
|
|
|
2022-06-24 11:55:41 +10:00
|
|
|
public function prepareForValidation()
|
2020-02-15 20:06:30 +11:00
|
|
|
{
|
|
|
|
|
$input = $this->all();
|
2021-08-24 15:05:35 +10:00
|
|
|
$input = $this->decodePrimaryKeys($input);
|
2021-03-20 09:51:52 +11:00
|
|
|
|
2021-08-24 12:57:46 +10: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 09:57:17 +00:00
|
|
|
|
2020-02-15 20:06:30 +11:00
|
|
|
$this->replace($input);
|
|
|
|
|
}
|
2021-08-24 12:57:46 +10: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 09:57:17 +00:00
|
|
|
|
2021-08-24 12:57:46 +10:00
|
|
|
return false;
|
|
|
|
|
}
|
2019-12-31 08:59:12 +11:00
|
|
|
}
|