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
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-10-03 05:21:24 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\CompanyGateway;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2019-11-11 13:21:19 +01:00
|
|
|
use App\Http\ValidationRules\ValidCompanyGatewayFeesAndLimitsRule;
|
2019-10-03 05:21:24 +02:00
|
|
|
use App\Models\Company;
|
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;
|
2019-10-03 05:21:24 +02:00
|
|
|
|
|
|
|
class UpdateCompanyGatewayRequest extends Request
|
|
|
|
{
|
2019-11-11 13:21:19 +01:00
|
|
|
use CompanyGatewayFeesAndLimitsSaver;
|
|
|
|
|
2019-10-03 05:21:24 +02:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
2019-10-03 13:18:12 +02:00
|
|
|
return auth()->user()->isAdmin();
|
2019-10-03 05:21:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
2019-10-03 12:59:19 +02:00
|
|
|
$rules = [
|
2019-11-11 13:21:19 +01:00
|
|
|
'fees_and_limits' => new ValidCompanyGatewayFeesAndLimitsRule(),
|
2019-10-03 12:59:19 +02:00
|
|
|
];
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-10-03 05:21:24 +02:00
|
|
|
return $rules;
|
|
|
|
}
|
|
|
|
|
2019-12-20 12:23:09 +01:00
|
|
|
protected function prepareForValidation()
|
2019-10-03 05:21:24 +02:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2020-09-02 00:11:59 +02:00
|
|
|
/*Force gateway properties */
|
2020-09-06 11:38:10 +02:00
|
|
|
if (isset($input['config']) && is_object(json_decode($input['config'])) && array_key_exists('gateway_key', $input)) {
|
2020-09-02 00:11:59 +02:00
|
|
|
$gateway = Gateway::where('key', $input['gateway_key'])->first();
|
|
|
|
$default_gateway_fields = json_decode($gateway->fields);
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
foreach (json_decode($input['config']) as $key => $value) {
|
2020-09-02 00:11:59 +02:00
|
|
|
$default_gateway_fields->{$key} = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
$input['config'] = json_encode($default_gateway_fields);
|
|
|
|
}
|
|
|
|
|
2019-10-03 05:21:24 +02:00
|
|
|
$input['config'] = encrypt($input['config']);
|
2019-11-11 13:21:19 +01:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if (isset($input['fees_and_limits'])) {
|
2019-11-11 13:21:19 +01:00
|
|
|
$input['fees_and_limits'] = $this->cleanFeesAndLimits($input['fees_and_limits']);
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-11-11 13:21:19 +01:00
|
|
|
|
2019-10-03 05:21:24 +02:00
|
|
|
$this->replace($input);
|
|
|
|
}
|
2019-11-10 13:06:30 +01:00
|
|
|
}
|