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

56 lines
1.3 KiB
PHP
Raw Normal View History

2019-10-03 05:21:24 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @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;
use App\Http\ValidationRules\ValidCompanyGatewayFeesAndLimitsRule;
2019-10-03 05:21:24 +02:00
use App\Models\Company;
use App\Utils\Traits\CompanyGatewayFeesAndLimitsSaver;
2019-10-03 05:21:24 +02:00
class UpdateCompanyGatewayRequest extends Request
{
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 = [
'fees_and_limits' => new ValidCompanyGatewayFeesAndLimitsRule(),
2019-10-03 12:59:19 +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();
$input['config'] = encrypt($input['config']);
if (isset($input['fees_and_limits'])) {
$input['fees_and_limits'] = $this->cleanFeesAndLimits($input['fees_and_limits']);
}
2019-10-03 05:21:24 +02:00
$this->replace($input);
}
}