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

43 lines
952 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.
*
* @return array
*/
2017-10-04 04:36:39 +00:00
abstract public function rules();
/**
* Determine if the user is an admin and has permission to access this
* form controller in the first place.
*
* @return bool
*/
2017-10-04 04:57:13 +00:00
public function authorize()
{
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
*
2017-12-31 02:25:04 +00:00
* @param array|null $only
2017-03-19 23:36:50 +00:00
* @return array
*/
2017-12-31 02:25:04 +00:00
public function normalize(array $only = null)
{
2017-12-31 02:25:04 +00:00
return $this->only($only ?? array_keys($this->rules()));
}
}