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
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-04-23 06:16:41 +02:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Invoice;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
use App\Models\Invoice;
|
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;
|
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;
|
|
|
|
|
|
|
|
private $invoice;
|
2019-04-23 06:16:41 +02:00
|
|
|
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
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 [
|
|
|
|
'action' => 'required'
|
|
|
|
];
|
2020-04-06 14:32:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function prepareForValidation()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2021-01-04 13:38:00 +01:00
|
|
|
$this->invoice = Invoice::find($this->decodePrimary($invoice_id));
|
|
|
|
|
|
|
|
if (!array_key_exists('action', $input)) {
|
|
|
|
$this->error_msg = 'Action is a required field';
|
|
|
|
} elseif (!$this->invoiceDeletable($this->invoice)) {
|
|
|
|
unset($input['action']);
|
|
|
|
$this->error_msg = 'This invoice cannot be deleted';
|
|
|
|
} elseif (!$this->invoiceCancellable($this->invoice)) {
|
|
|
|
unset($input['action']);
|
|
|
|
$this->error_msg = 'This invoice cannot be cancelled';
|
|
|
|
} elseif (!$this->invoiceReversable($this->invoice)) {
|
|
|
|
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
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|