2019-10-03 13:21:24 +10:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
|
|
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
|
*
|
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace App\Http\Requests\CompanyGateway;
|
|
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2019-11-11 23:21:19 +11:00
|
|
|
use App\Http\ValidationRules\ValidCompanyGatewayFeesAndLimitsRule;
|
2019-10-03 13:21:24 +10:00
|
|
|
use App\Models\Company;
|
2019-11-11 23:21:19 +11:00
|
|
|
use App\Utils\Traits\CompanyGatewayFeesAndLimitsSaver;
|
2019-10-03 13:21:24 +10:00
|
|
|
|
|
|
|
|
class UpdateCompanyGatewayRequest extends Request
|
|
|
|
|
{
|
2019-11-11 23:21:19 +11:00
|
|
|
use CompanyGatewayFeesAndLimitsSaver;
|
|
|
|
|
|
2019-10-03 13:21:24 +10:00
|
|
|
/**
|
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
|
*
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
public function authorize()
|
|
|
|
|
{
|
2019-10-03 21:18:12 +10:00
|
|
|
return auth()->user()->isAdmin();
|
2019-10-03 13:21:24 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
|
{
|
2019-11-11 23:21:19 +11:00
|
|
|
|
2019-10-03 13:21:24 +10:00
|
|
|
$this->sanitize();
|
|
|
|
|
|
2019-10-03 20:59:19 +10:00
|
|
|
$rules = [
|
2019-11-11 23:21:19 +11:00
|
|
|
'fees_and_limits' => new ValidCompanyGatewayFeesAndLimitsRule(),
|
2019-10-03 20:59:19 +10:00
|
|
|
];
|
2019-10-03 13:21:24 +10:00
|
|
|
|
|
|
|
|
return $rules;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function sanitize()
|
|
|
|
|
{
|
|
|
|
|
$input = $this->all();
|
|
|
|
|
|
|
|
|
|
$input['config'] = encrypt($input['config']);
|
2019-11-11 23:21:19 +11:00
|
|
|
|
|
|
|
|
if(isset($input['fees_and_limits']))
|
|
|
|
|
$input['fees_and_limits'] = $this->cleanFeesAndLimits($input['fees_and_limits']);
|
|
|
|
|
|
2019-10-03 13:21:24 +10:00
|
|
|
$this->replace($input);
|
|
|
|
|
|
|
|
|
|
return $this->all();
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-10 23:06:30 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|