2019-05-03 09:57:55 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2024-04-12 06:15:41 +02:00
|
|
|
* @copyright Copyright (c) 2024. 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-03 09:57:55 +02:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Payment;
|
|
|
|
|
2024-06-18 03:24:55 +02:00
|
|
|
use App\Exceptions\DuplicatePaymentException;
|
2019-05-03 09:57:55 +02:00
|
|
|
use App\Http\Requests\Request;
|
2020-11-02 02:11:49 +01:00
|
|
|
use App\Http\ValidationRules\Credit\CreditsSumRule;
|
2020-11-25 15:19:52 +01:00
|
|
|
use App\Http\ValidationRules\Credit\ValidCreditsRules;
|
2020-02-28 02:58:49 +01:00
|
|
|
use App\Http\ValidationRules\Payment\ValidInvoicesRules;
|
2020-09-06 11:38:10 +02:00
|
|
|
use App\Http\ValidationRules\PaymentAmountsBalanceRule;
|
2020-02-28 02:58:49 +01:00
|
|
|
use App\Http\ValidationRules\ValidPayableInvoicesRule;
|
2019-05-03 09:57:55 +02:00
|
|
|
use App\Models\Payment;
|
2019-11-16 04:12:29 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2021-12-10 11:50:46 +01:00
|
|
|
use Illuminate\Validation\Rule;
|
2019-05-03 09:57:55 +02:00
|
|
|
|
|
|
|
class StorePaymentRequest extends Request
|
|
|
|
{
|
2019-11-16 04:12:29 +01:00
|
|
|
use MakesHash;
|
2019-11-18 11:46:01 +01:00
|
|
|
|
2019-05-03 09:57:55 +02:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2024-01-14 05:05:00 +01:00
|
|
|
public function authorize(): bool
|
2019-05-03 09:57:55 +02:00
|
|
|
{
|
2023-10-03 15:17:32 +02:00
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
|
|
|
return $user->can('create', Payment::class);
|
2019-05-03 09:57:55 +02:00
|
|
|
}
|
|
|
|
|
2024-03-20 12:10:06 +01:00
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
|
|
|
$rules = [
|
2024-06-14 09:09:44 +02:00
|
|
|
'client_id' => ['bail','required',Rule::exists('clients', 'id')->where('company_id', $user->company()->id)->where('is_deleted', 0)],
|
2024-04-24 08:39:54 +02:00
|
|
|
'invoices' => ['bail','sometimes', 'nullable', 'array', new ValidPayableInvoicesRule()],
|
2024-03-20 12:10:06 +01:00
|
|
|
'invoices.*.amount' => ['bail','required'],
|
2024-06-14 09:09:44 +02:00
|
|
|
'invoices.*.invoice_id' => ['bail','required','distinct', new ValidInvoicesRules($this->all()),Rule::exists('invoices', 'id')->where('company_id', $user->company()->id)->where('client_id', $this->client_id)],
|
|
|
|
'credits.*.credit_id' => ['bail','required','distinct', new ValidCreditsRules($this->all()),Rule::exists('credits', 'id')->where('company_id', $user->company()->id)->where('client_id', $this->client_id)],
|
2024-03-20 12:10:06 +01:00
|
|
|
'credits.*.amount' => ['bail','required', new CreditsSumRule($this->all())],
|
2024-05-06 03:47:20 +02:00
|
|
|
'amount' => ['bail', 'numeric', new PaymentAmountsBalanceRule(), 'max:99999999999999'],
|
2024-03-20 12:10:06 +01:00
|
|
|
'number' => ['bail', 'nullable', Rule::unique('payments')->where('company_id', $user->company()->id)],
|
|
|
|
'idempotency_key' => ['nullable', 'bail', 'string','max:64', Rule::unique('payments')->where('company_id', $user->company()->id)],
|
|
|
|
];
|
|
|
|
|
|
|
|
if ($this->file('documents') && is_array($this->file('documents'))) {
|
|
|
|
$rules['documents.*'] = $this->fileValidation();
|
|
|
|
} elseif ($this->file('documents')) {
|
|
|
|
$rules['documents'] = $this->fileValidation();
|
2024-06-14 09:09:44 +02:00
|
|
|
} else {
|
2024-03-20 12:10:06 +01:00
|
|
|
$rules['documents'] = 'bail|sometimes|array';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->file('file') && is_array($this->file('file'))) {
|
|
|
|
$rules['file.*'] = $this->fileValidation();
|
|
|
|
} elseif ($this->file('file')) {
|
|
|
|
$rules['file'] = $this->fileValidation();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $rules;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public function prepareForValidation()
|
2019-05-03 09:57:55 +02:00
|
|
|
{
|
2023-10-03 15:17:32 +02:00
|
|
|
|
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
2024-06-18 03:24:55 +02:00
|
|
|
if(\Illuminate\Support\Facades\Cache::has($this->ip()."|".$this->input('amount', 0)."|".$this->input('client_id', '')."|".$user->company()->company_key))
|
|
|
|
throw new DuplicatePaymentException('Duplicate request.', 429);
|
|
|
|
|
|
|
|
\Illuminate\Support\Facades\Cache::put(($this->ip()."|".$this->input('amount', 0)."|".$this->input('client_id', '')."|".$user->company()->company_key), true, 1);
|
|
|
|
|
2019-11-16 04:12:29 +01:00
|
|
|
$input = $this->all();
|
|
|
|
|
2020-01-19 04:02:02 +01:00
|
|
|
$invoices_total = 0;
|
|
|
|
$credits_total = 0;
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if (isset($input['client_id']) && is_string($input['client_id'])) {
|
2023-10-14 20:49:14 +02:00
|
|
|
$input['client_id'] = $this->decodePrimaryKey($input['client_id'], true);
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-11-18 11:46:01 +01:00
|
|
|
|
2020-06-26 00:29:24 +02:00
|
|
|
if (array_key_exists('assigned_user_id', $input) && is_string($input['assigned_user_id'])) {
|
|
|
|
$input['assigned_user_id'] = $this->decodePrimaryKey($input['assigned_user_id']);
|
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-01-04 03:27:51 +01:00
|
|
|
if (isset($input['invoices']) && is_array($input['invoices']) !== false) {
|
2019-12-30 22:59:12 +01:00
|
|
|
foreach ($input['invoices'] as $key => $value) {
|
2024-04-24 08:39:54 +02:00
|
|
|
if (isset($value['invoice_id']) && is_string($value['invoice_id'])) {
|
2022-09-06 05:38:54 +02:00
|
|
|
$input['invoices'][$key]['invoice_id'] = $this->decodePrimaryKey($value['invoice_id']);
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2022-01-12 04:40:05 +01:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (array_key_exists('amount', $value)) {
|
2022-01-12 04:40:05 +01:00
|
|
|
$invoices_total += $value['amount'];
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2019-12-01 12:23:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if (isset($input['invoices']) && is_array($input['invoices']) === false) {
|
2019-11-18 11:46:01 +01:00
|
|
|
$input['invoices'] = null;
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-11-16 04:12:29 +01:00
|
|
|
|
2020-01-09 21:15:10 +01:00
|
|
|
if (isset($input['credits']) && is_array($input['credits']) !== false) {
|
|
|
|
foreach ($input['credits'] as $key => $value) {
|
2024-04-24 08:39:54 +02:00
|
|
|
if (isset($value['credit_id']) && is_string($value['credit_id'])) {
|
2022-08-22 05:24:33 +02:00
|
|
|
$input['credits'][$key]['credit_id'] = $this->decodePrimaryKey($value['credit_id']);
|
2020-02-01 21:45:23 +01:00
|
|
|
$credits_total += $value['amount'];
|
|
|
|
}
|
2020-01-09 21:15:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($input['credits']) && is_array($input['credits']) === false) {
|
|
|
|
$input['credits'] = null;
|
|
|
|
}
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! isset($input['amount']) || $input['amount'] == 0) {
|
2020-11-25 15:19:52 +01:00
|
|
|
$input['amount'] = $invoices_total - $credits_total;
|
2020-01-19 04:02:02 +01:00
|
|
|
}
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! isset($input['date'])) {
|
2023-11-15 05:36:24 +01:00
|
|
|
$input['date'] = now()->addSeconds($user->company()->utc_offset())->format('Y-m-d');
|
2020-07-02 12:22:40 +02:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2024-06-17 13:29:31 +02:00
|
|
|
if (! isset($input['idempotency_key'])) {
|
2024-06-17 12:38:33 +02:00
|
|
|
$input['idempotency_key'] = substr(time()."{$input['date']}{$input['amount']}{$credits_total}{$this->client_id}{$user->company()->company_key}", 0, 64);
|
2024-06-17 13:29:31 +02:00
|
|
|
}
|
2023-11-07 07:15:50 +01:00
|
|
|
|
2019-12-01 12:23:24 +01:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
2019-05-03 09:57:55 +02:00
|
|
|
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|