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

80 lines
1.9 KiB
PHP
Raw Normal View History

2019-10-03 05:21:24 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2019-10-03 05:21:24 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. 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;
use App\Http\ValidationRules\ValidCompanyGatewayFeesAndLimitsRule;
use App\Models\Gateway;
use App\Utils\Traits\CompanyGatewayFeesAndLimitsSaver;
2019-10-03 05:21:24 +02:00
class StoreCompanyGatewayRequest extends Request
{
use CompanyGatewayFeesAndLimitsSaver;
2019-10-03 05:21:24 +02:00
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
2021-01-21 21:45:00 +01:00
2019-10-03 05:21:24 +02:00
public function authorize() : bool
{
return auth()->user()->isAdmin();
}
public function rules()
{
2019-10-03 13:50:50 +02:00
$rules = [
2021-07-24 02:25:48 +02:00
'gateway_key' => 'required|alpha_num',
'fees_and_limits' => new ValidCompanyGatewayFeesAndLimitsRule(),
2019-10-03 13:50:50 +02:00
];
2019-10-03 05:21:24 +02:00
return $rules;
}
protected function prepareForValidation()
2019-10-03 05:21:24 +02:00
{
$input = $this->all();
2021-01-21 21:45:00 +01:00
2021-07-24 02:25:48 +02:00
if($gateway = Gateway::where('key', $input['gateway_key'])->first())
2021-07-15 03:06:14 +02:00
{
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']))) {
2021-01-21 21:45:00 +01:00
2021-07-15 03:06:14 +02:00
foreach (json_decode($input['config']) as $key => $value) {
2021-01-21 21:45:00 +01:00
2021-07-15 03:06:14 +02:00
$default_gateway_fields->{$key} = $value;
2021-07-15 03:06:14 +02:00
}
2021-07-15 03:06:14 +02:00
$input['config'] = json_encode($default_gateway_fields);
2021-07-15 03:06:14 +02:00
}
if (isset($input['config']))
$input['config'] = encrypt($input['config']);
if (isset($input['fees_and_limits']))
$input['fees_and_limits'] = $this->cleanFeesAndLimits($input['fees_and_limits']);
2021-01-21 21:45:00 +01:00
2021-07-15 03:06:14 +02:00
}
2019-10-03 05:21:24 +02:00
$this->replace($input);
}
2021-01-21 21:45:00 +01:00
}