2021-04-20 06:26:16 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-04-20 06:26:16 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\ClientGatewayToken;
|
|
|
|
|
|
|
|
use App\DataMapper\ClientSettings;
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
use App\Http\ValidationRules\Ninja\CanStoreClientsRule;
|
|
|
|
use App\Http\ValidationRules\ValidClientGroupSettingsRule;
|
|
|
|
use App\Models\Client;
|
|
|
|
use App\Models\GroupSetting;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Support\Facades\Cache;
|
|
|
|
use Illuminate\Validation\Rule;
|
|
|
|
|
|
|
|
class StoreClientGatewayTokenRequest extends Request
|
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
2021-04-20 08:03:14 +02:00
|
|
|
return auth()->user()->isAdmin();
|
2021-04-20 06:26:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
2021-07-01 07:56:44 +02:00
|
|
|
//ensure client is present
|
2021-04-20 06:26:16 +02:00
|
|
|
$rules = [
|
2021-07-01 07:56:44 +02:00
|
|
|
'client_id' => 'required|exists:clients,id,company_id,'.auth()->user()->company()->id,
|
2021-04-20 06:26:16 +02:00
|
|
|
'company_gateway_id' => 'required',
|
2021-04-20 08:03:14 +02:00
|
|
|
'gateway_type_id' => 'required|integer',
|
|
|
|
'meta' => 'required',
|
2021-04-20 06:26:16 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
return $this->globalRules($rules);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function prepareForValidation()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
|
|
|
$input = $this->decodePrimaryKeys($input);
|
|
|
|
|
|
|
|
$this->replace($input);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function messages()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|