1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 18:01:35 +02:00
invoiceninja/app/Http/Requests/RecurringQuote/UpdateRecurringQuoteRequest.php

101 lines
2.7 KiB
PHP
Raw Normal View History

2019-05-05 02:49:01 +02:00
<?php
2019-05-11 05:32:07 +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;
use App\Utils\Traits\ChecksEntityStatus;
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
{
use ChecksEntityStatus;
use CleanLineItems;
2021-08-24 04:57:46 +02:00
use MakesHash;
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
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);
}
2021-08-24 04:57:46 +02:00
return $rules;
2019-05-05 02:49:01 +02:00
}
2022-06-24 03:55:41 +02:00
public function prepareForValidation()
{
$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']);
}
$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.
*
2023-05-17 02:36:41 +02:00
* @param string $auto_bill off/always/optin/optout
2021-08-24 04:57:46 +02:00
*
* @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.
2021-08-24 04:57:46 +02:00
return false;
}
}