1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Http/Requests/Invoice/ActionInvoiceRequest.php

73 lines
1.8 KiB
PHP
Raw Normal View History

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;
use App\Models\Invoice;
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
*/
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
{
2019-04-23 06:16:41 +02:00
return auth()->user()->can('edit', $this->invoice);
}
public function rules()
{
2021-01-04 13:38:00 +01:00
return [
'action' => 'required',
2021-01-04 13:38:00 +01:00
];
}
2022-06-24 03:55:41 +02:00
public function prepareForValidation()
{
$input = $this->all();
if ($this->action) {
2022-02-26 22:10:15 +01:00
$input['action'] = $this->action;
} elseif (! array_key_exists('action', $input)) {
2021-01-04 13:38:00 +01:00
$this->error_msg = 'Action is a required field';
} elseif (! $this->invoiceDeletable($this->invoice)) {
2021-01-04 13:38:00 +01:00
unset($input['action']);
$this->error_msg = 'This invoice cannot be deleted';
} elseif (! $this->invoiceCancellable($this->invoice)) {
2021-01-04 13:38:00 +01:00
unset($input['action']);
$this->error_msg = 'This invoice cannot be cancelled';
} elseif (! $this->invoiceReversable($this->invoice)) {
2021-01-04 13:38:00 +01:00
unset($input['action']);
$this->error_msg = 'This invoice cannot be reversed';
}
$this->replace($input);
}
public function messages()
{
2021-01-04 13:38:00 +01:00
return [
'action' => $this->error_msg,
];
}
2022-11-05 05:13:08 +01:00
}