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-02 22:51:13 -05:00
/**
* The rules to apply to the incoming form request.
*
* @return array
*/
2017-10-03 23:36:39 -05: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-03 23:57:13 -05:00
public function authorize()
{
if (is_null($this->user())) {
return false;
}
return (bool) $this->user()->root_admin;
}
2017-03-19 19:36:50 -04: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 19:36:50 -04:00
*
2017-12-30 20:25:04 -06:00
* @param array|null $only
2017-03-19 19:36:50 -04:00
* @return array
*/
2017-12-30 20:25:04 -06:00
public function normalize(array $only = null)
{
2017-12-30 20:25:04 -06:00
return $this->only($only ?? array_keys($this->rules()));
}
}