2017-06-11 03:28:44 +00:00
|
|
|
<?php
|
2017-09-26 02:43:01 +00:00
|
|
|
/**
|
2017-06-11 03:28:44 +00:00
|
|
|
* Pterodactyl - Panel
|
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
|
|
*
|
2017-09-26 02:43:01 +00:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2017-06-11 03:28:44 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Pterodactyl\Http\Requests\Admin;
|
|
|
|
|
|
|
|
use Pterodactyl\Models\User;
|
|
|
|
|
|
|
|
class UserFormRequest extends AdminFormRequest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
if ($this->method() === 'PATCH') {
|
2017-12-03 20:00:47 +00:00
|
|
|
$rules = User::getUpdateRulesForId($this->route()->parameter('user')->id);
|
|
|
|
|
|
|
|
return array_merge($rules, [
|
|
|
|
'ignore_connection_error' => 'sometimes|nullable|boolean',
|
|
|
|
]);
|
2017-06-11 03:28:44 +00:00
|
|
|
}
|
|
|
|
|
2017-06-25 00:49:09 +00:00
|
|
|
return User::getCreateRules();
|
2017-06-11 03:28:44 +00:00
|
|
|
}
|
|
|
|
|
2017-07-01 20:29:49 +00:00
|
|
|
public function normalize($only = [])
|
2017-06-11 03:28:44 +00:00
|
|
|
{
|
2017-06-14 04:25:37 +00:00
|
|
|
if ($this->method === 'PATCH') {
|
|
|
|
return array_merge(
|
|
|
|
$this->intersect('password'),
|
2017-12-03 20:00:47 +00:00
|
|
|
$this->only(['email', 'username', 'name_first', 'name_last', 'root_admin', 'ignore_connection_error'])
|
2017-06-14 04:25:37 +00:00
|
|
|
);
|
2017-06-11 03:28:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return parent::normalize();
|
|
|
|
}
|
|
|
|
}
|