2019-04-23 06:16:41 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @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-04-23 06:16:41 +02:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Invoice;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2020-04-06 14:32:27 +02:00
|
|
|
use App\Utils\Traits\Invoice\ActionsInvoice;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
2019-04-23 06:16:41 +02:00
|
|
|
|
|
|
|
class ActionInvoiceRequest extends Request
|
|
|
|
{
|
2021-01-04 13:38:00 +01:00
|
|
|
use MakesHash;
|
|
|
|
use ActionsInvoice;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2019-04-23 06:16:41 +02:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2020-04-06 14:32:27 +02:00
|
|
|
private $error_msg;
|
|
|
|
|
2022-02-26 22:10:15 +01:00
|
|
|
// private $invoice;
|
2019-04-23 06:16:41 +02:00
|
|
|
|
|
|
|
public function authorize() : bool
|
2022-06-21 11:57:17 +02:00
|
|
|
{
|
2019-04-23 06:16:41 +02:00
|
|
|
return auth()->user()->can('edit', $this->invoice);
|
|
|
|
}
|
2020-04-06 14:32:27 +02:00
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
2021-01-04 13:38:00 +01:00
|
|
|
return [
|
2022-06-21 11:57:17 +02:00
|
|
|
'action' => 'required',
|
2021-01-04 13:38:00 +01:00
|
|
|
];
|
2020-04-06 14:32:27 +02:00
|
|
|
}
|
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public function prepareForValidation()
|
2020-04-06 14:32:27 +02:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($this->action) {
|
2022-02-26 22:10:15 +01:00
|
|
|
$input['action'] = $this->action;
|
2022-06-21 11:57:17 +02:00
|
|
|
} elseif (! array_key_exists('action', $input)) {
|
2021-01-04 13:38:00 +01:00
|
|
|
$this->error_msg = 'Action is a required field';
|
2022-06-21 11:57:17 +02:00
|
|
|
} elseif (! $this->invoiceDeletable($this->invoice)) {
|
2021-01-04 13:38:00 +01:00
|
|
|
unset($input['action']);
|
|
|
|
$this->error_msg = 'This invoice cannot be deleted';
|
2022-06-21 11:57:17 +02:00
|
|
|
} elseif (! $this->invoiceCancellable($this->invoice)) {
|
2021-01-04 13:38:00 +01:00
|
|
|
unset($input['action']);
|
|
|
|
$this->error_msg = 'This invoice cannot be cancelled';
|
2022-06-21 11:57:17 +02:00
|
|
|
} elseif (! $this->invoiceReversable($this->invoice)) {
|
2021-01-04 13:38:00 +01:00
|
|
|
unset($input['action']);
|
|
|
|
$this->error_msg = 'This invoice cannot be reversed';
|
2020-04-06 14:32:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->replace($input);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function messages()
|
|
|
|
{
|
2021-01-04 13:38:00 +01:00
|
|
|
return [
|
|
|
|
'action' => $this->error_msg,
|
|
|
|
];
|
2020-04-06 14:32:27 +02:00
|
|
|
}
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|