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

41 lines
961 B
PHP
Raw Normal View History

<?php
namespace Pterodactyl\Http\Requests\Admin;
use Pterodactyl\Models\User;
class UserFormRequest extends AdminFormRequest
{
/**
* {@inheritdoc}
*/
public function rules()
{
if ($this->method() === 'PATCH') {
$rules = User::getUpdateRulesForId($this->route()->parameter('user')->id);
return array_merge($rules, [
'ignore_connection_error' => 'sometimes|nullable|boolean',
]);
}
return User::getCreateRules();
}
2017-12-31 02:25:04 +00:00
/**
* @param array|null $only
* @return array
*/
public function normalize(array $only = null)
{
if ($this->method === 'PATCH') {
return array_merge(
2017-12-17 19:07:38 +00:00
$this->all(['password']),
2017-12-31 02:25:04 +00:00
$this->only(['email', 'username', 'name_first', 'name_last', 'root_admin', 'language', 'ignore_connection_error'])
);
}
return parent::normalize();
}
}