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

50 lines
1.1 KiB
PHP
Raw Normal View History

<?php
2017-09-25 21:43:01 -05:00
/**
2016-01-20 16:05:16 -05:00
* Pterodactyl - Panel
2017-01-24 17:57:08 -05:00
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
2016-01-19 19:10:39 -05:00
*
2017-09-25 21:43:01 -05:00
* This software is licensed under the terms of the MIT license.
* https://opensource.org/licenses/MIT
2016-01-19 19:10:39 -05:00
*/
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-08-21 22:10:48 -05:00
* @param array $only
2017-03-19 19:36:50 -04:00
* @return array
*/
2017-10-03 23:57:13 -05:00
public function normalize($only = [])
{
2017-12-17 13:07:38 -06:00
return $this->all(empty($only) ? array_keys($this->rules()) : $only);
}
}