2019-10-03 05:21:24 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-10-03 05:21:24 +02:00
|
|
|
*
|
|
|
|
* @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-10-03 05:21:24 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-10-03 05:21:24 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\CompanyGateway;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2019-11-11 13:21:19 +01:00
|
|
|
use App\Http\ValidationRules\ValidCompanyGatewayFeesAndLimitsRule;
|
2020-09-02 00:11:59 +02:00
|
|
|
use App\Models\Gateway;
|
2019-11-11 13:21:19 +01:00
|
|
|
use App\Utils\Traits\CompanyGatewayFeesAndLimitsSaver;
|
2022-11-29 06:19:05 +01:00
|
|
|
use Illuminate\Validation\Rule;
|
2019-10-03 05:21:24 +02:00
|
|
|
|
|
|
|
class StoreCompanyGatewayRequest extends Request
|
|
|
|
{
|
2019-11-11 13:21:19 +01:00
|
|
|
use CompanyGatewayFeesAndLimitsSaver;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-10-03 05:21:24 +02:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
2023-10-16 03:05:19 +02:00
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
|
|
|
return $user->isAdmin();
|
2019-10-03 05:21:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
2019-10-03 13:50:50 +02:00
|
|
|
$rules = [
|
2023-02-16 02:36:09 +01:00
|
|
|
'gateway_key' => ['bail', 'required','alpha_num',Rule::exists('gateways', 'key')],
|
2019-11-11 13:21:19 +01:00
|
|
|
'fees_and_limits' => new ValidCompanyGatewayFeesAndLimitsRule(),
|
2019-10-03 13:50:50 +02:00
|
|
|
];
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-10-03 05:21:24 +02:00
|
|
|
return $rules;
|
|
|
|
}
|
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public function prepareForValidation()
|
2019-10-03 05:21:24 +02:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
2021-01-21 21:45:00 +01:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($gateway = Gateway::where('key', $input['gateway_key'])->first()) {
|
2021-07-15 03:06:14 +02:00
|
|
|
$default_gateway_fields = json_decode($gateway->fields);
|
2021-01-21 21:45:00 +01:00
|
|
|
|
2021-07-15 03:06:14 +02:00
|
|
|
/*Force gateway properties */
|
|
|
|
if (isset($input['config']) && is_object(json_decode($input['config']))) {
|
|
|
|
foreach (json_decode($input['config']) as $key => $value) {
|
|
|
|
$default_gateway_fields->{$key} = $value;
|
|
|
|
}
|
2020-09-02 00:11:59 +02:00
|
|
|
|
2021-07-15 03:06:14 +02:00
|
|
|
$input['config'] = json_encode($default_gateway_fields);
|
|
|
|
}
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (isset($input['config'])) {
|
2021-07-15 03:06:14 +02:00
|
|
|
$input['config'] = encrypt($input['config']);
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($input['fees_and_limits'])) {
|
2021-07-15 03:06:14 +02:00
|
|
|
$input['fees_and_limits'] = $this->cleanFeesAndLimits($input['fees_and_limits']);
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2023-10-16 03:05:19 +02:00
|
|
|
|
2021-07-15 03:06:14 +02:00
|
|
|
}
|
|
|
|
|
2019-10-03 05:21:24 +02:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
2019-11-11 13:21:19 +01:00
|
|
|
}
|