misc_pterodactyl-panel/app/Http/Requests/Admin/ServerFormRequest.php

59 lines
1.7 KiB
PHP
Raw Normal View History

<?php
namespace Pterodactyl\Http\Requests\Admin;
use Pterodactyl\Models\Server;
2017-08-05 22:26:30 +00:00
use Illuminate\Validation\Rule;
use Illuminate\Validation\Validator;
class ServerFormRequest extends AdminFormRequest
{
/**
* Rules to be applied to this request.
*/
public function rules(): array
{
$rules = Server::getRules();
2018-01-06 18:58:30 +00:00
$rules['description'][] = 'nullable';
$rules['custom_image'] = 'sometimes|nullable|string';
2018-01-06 18:58:30 +00:00
return $rules;
}
/**
* Run validation after the rules above have been applied.
*/
public function withValidator(Validator $validator): void
{
$validator->after(function ($validator) {
$validator->sometimes('node_id', 'required|numeric|bail|exists:nodes,id', function ($input) {
return !$input->auto_deploy;
});
$validator->sometimes('allocation_id', [
'required',
'numeric',
'bail',
Rule::exists('allocations', 'id')->where(function ($query) {
$query->where('node_id', $this->input('node_id'));
$query->whereNull('server_id');
}),
], function ($input) {
return !$input->auto_deploy;
});
$validator->sometimes('allocation_additional.*', [
'sometimes',
'required',
'numeric',
Rule::exists('allocations', 'id')->where(function ($query) {
$query->where('node_id', $this->input('node_id'));
$query->whereNull('server_id');
}),
], function ($input) {
return !$input->auto_deploy;
});
});
}
}