2019-10-03 05:21:24 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* 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-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;
|
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
|
|
|
];
|
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();
|
|
|
|
|
|
|
|
$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
|
|
|
}
|