2019-05-03 09:57:55 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-05-03 09:57:55 +02:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Payment;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2019-11-18 11:46:01 +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;
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->can('create', Payment::class);
|
|
|
|
}
|
|
|
|
|
2019-12-01 12:23:24 +01:00
|
|
|
protected function prepareForValidation()
|
2019-05-03 09:57:55 +02:00
|
|
|
{
|
2019-11-16 04:12:29 +01:00
|
|
|
$input = $this->all();
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if (isset($input['client_id'])) {
|
2019-11-18 11:46:01 +01:00
|
|
|
$input['client_id'] = $this->decodePrimaryKey($input['client_id']);
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-11-18 11:46:01 +01: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) {
|
|
|
|
$input['invoices'][$key]['id'] = $this->decodePrimaryKey($value['id']);
|
2019-12-01 12:23:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-16 04:12:29 +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
|
|
|
|
2019-12-01 12:23:24 +01:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
2019-05-03 09:57:55 +02:00
|
|
|
|
2019-12-01 12:23:24 +01:00
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
$rules = [
|
|
|
|
'amount' => 'numeric|required',
|
2019-12-16 12:34:38 +01:00
|
|
|
'date' => 'required',
|
2019-12-01 12:23:24 +01:00
|
|
|
'client_id' => 'required',
|
|
|
|
'invoices' => new ValidPayableInvoicesRule(),
|
2019-12-17 11:50:45 +01:00
|
|
|
'number' => 'nullable|unique',
|
2019-12-01 12:23:24 +01:00
|
|
|
];
|
2019-05-03 09:57:55 +02:00
|
|
|
|
2019-12-01 12:23:24 +01:00
|
|
|
return $rules;
|
2019-11-18 11:46:01 +01:00
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|