2017-12-14 21:05:26 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Http\Requests\Admin\Settings;
|
|
|
|
|
|
|
|
use Pterodactyl\Http\Requests\Admin\AdminFormRequest;
|
|
|
|
|
|
|
|
class AdvancedSettingsFormRequest extends AdminFormRequest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Return all of the rules to apply to this request's data.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'recaptcha:enabled' => 'required|in:true,false',
|
2020-09-26 16:29:26 -07:00
|
|
|
'recaptcha:secret_key' => 'required|string|max:191',
|
|
|
|
'recaptcha:website_key' => 'required|string|max:191',
|
2017-12-14 21:05:26 -06:00
|
|
|
'pterodactyl:guzzle:timeout' => 'required|integer|between:1,60',
|
|
|
|
'pterodactyl:guzzle:connect_timeout' => 'required|integer|between:1,60',
|
2020-10-31 14:58:15 -07:00
|
|
|
'pterodactyl:client_features:allocations:enabled' => 'required|in:true,false',
|
2021-02-17 21:11:23 -08:00
|
|
|
'pterodactyl:client_features:allocations:range_start' => [
|
|
|
|
'nullable',
|
|
|
|
'required_if:pterodactyl:client_features:allocations:enabled,true',
|
|
|
|
'integer',
|
|
|
|
'between:1024,65535',
|
|
|
|
],
|
|
|
|
'pterodactyl:client_features:allocations:range_end' => [
|
|
|
|
'nullable',
|
|
|
|
'required_if:pterodactyl:client_features:allocations:enabled,true',
|
|
|
|
'integer',
|
|
|
|
'between:1024,65535',
|
|
|
|
'gt:pterodactyl:client_features:allocations:range_start',
|
|
|
|
],
|
2017-12-14 21:05:26 -06:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function attributes()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'recaptcha:enabled' => 'reCAPTCHA Enabled',
|
|
|
|
'recaptcha:secret_key' => 'reCAPTCHA Secret Key',
|
|
|
|
'recaptcha:website_key' => 'reCAPTCHA Website Key',
|
|
|
|
'pterodactyl:guzzle:timeout' => 'HTTP Request Timeout',
|
|
|
|
'pterodactyl:guzzle:connect_timeout' => 'HTTP Connection Timeout',
|
2020-10-31 14:58:15 -07:00
|
|
|
'pterodactyl:client_features:allocations:enabled' => 'Auto Create Allocations Enabled',
|
|
|
|
'pterodactyl:client_features:allocations:range_start' => 'Starting Port',
|
|
|
|
'pterodactyl:client_features:allocations:range_end' => 'Ending Port',
|
2017-12-14 21:05:26 -06:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|