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

36 lines
858 B
PHP
Raw Normal View History

<?php
namespace Pterodactyl\Http\Requests\Admin;
use Illuminate\Foundation\Http\FormRequest;
abstract class AdminFormRequest extends FormRequest
{
2017-10-03 03:51:13 +00:00
/**
* The rules to apply to the incoming form request.
*/
abstract public function rules(): array;
/**
* Determine if the user is an admin and has permission to access this
* form controller in the first place.
*/
public function authorize(): bool
{
if (is_null($this->user())) {
return false;
}
return (bool) $this->user()->root_admin;
}
2017-03-19 23:36:50 +00:00
/**
* Return only the fields that we are interested in from the request.
* This will include empty fields as a null value.
2017-03-19 23:36:50 +00:00
*/
public function normalize(array $only = null): array
{
2017-12-31 02:25:04 +00:00
return $this->only($only ?? array_keys($this->rules()));
}
}