[#1500] Add support for limits array or base level values
This commit is contained in:
parent
a4d7985e51
commit
50c5ab92aa
2 changed files with 61 additions and 5 deletions
|
@ -7,6 +7,12 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
|
||||||
### Fixed
|
### Fixed
|
||||||
* Fixes a bug with the location update API endpoint throwing an error due to an unexected response value.
|
* Fixes a bug with the location update API endpoint throwing an error due to an unexected response value.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
* `allocation_limit` for servers now defaults to a null value, and is not required in PATCH/POST requests when adding
|
||||||
|
a server through the API.
|
||||||
|
* The `PATCH` endpoint for `/api/applications/servers/{server}/build` now accepts an array called `limits` to match
|
||||||
|
the response from the server `GET` endpoint.
|
||||||
|
|
||||||
## v0.7.12 (Derelict Dermodactylus)
|
## v0.7.12 (Derelict Dermodactylus)
|
||||||
### Fixed
|
### Fixed
|
||||||
* Fixes an issue with the locations API endpoint referencing an invalid namespace.
|
* Fixes an issue with the locations API endpoint referencing an invalid namespace.
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
namespace Pterodactyl\Http\Requests\Api\Application\Servers;
|
namespace Pterodactyl\Http\Requests\Api\Application\Servers;
|
||||||
|
|
||||||
use Pterodactyl\Models\Server;
|
use Pterodactyl\Models\Server;
|
||||||
|
use Illuminate\Support\Collection;
|
||||||
|
|
||||||
class UpdateServerBuildConfigurationRequest extends ServerWriteRequest
|
class UpdateServerBuildConfigurationRequest extends ServerWriteRequest
|
||||||
{
|
{
|
||||||
|
@ -17,15 +18,29 @@ class UpdateServerBuildConfigurationRequest extends ServerWriteRequest
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'allocation' => $rules['allocation_id'],
|
'allocation' => $rules['allocation_id'],
|
||||||
'memory' => $rules['memory'],
|
|
||||||
'swap' => $rules['swap'],
|
'limits' => 'sometimes|array',
|
||||||
'io' => $rules['io'],
|
'limits.memory' => $this->requiredToOptional('memory', $rules['memory'], true),
|
||||||
'cpu' => $rules['cpu'],
|
'limits.swap' => $this->requiredToOptional('swap', $rules['swap'], true),
|
||||||
'disk' => $rules['disk'],
|
'limits.io' => $this->requiredToOptional('io', $rules['io'], true),
|
||||||
|
'limits.cpu' => $this->requiredToOptional('cpu', $rules['cpu'], true),
|
||||||
|
'limits.disk' => $this->requiredToOptional('disk', $rules['disk'], true),
|
||||||
|
|
||||||
|
// Legacy rules to maintain backwards compatable API support without requiring
|
||||||
|
// a major version bump.
|
||||||
|
//
|
||||||
|
// @see https://github.com/pterodactyl/panel/issues/1500
|
||||||
|
'memory' => $this->requiredToOptional('memory', $rules['memory']),
|
||||||
|
'swap' => $this->requiredToOptional('swap', $rules['swap']),
|
||||||
|
'io' => $this->requiredToOptional('io', $rules['io']),
|
||||||
|
'cpu' => $this->requiredToOptional('cpu', $rules['cpu']),
|
||||||
|
'disk' => $this->requiredToOptional('disk', $rules['disk']),
|
||||||
|
|
||||||
'add_allocations' => 'bail|array',
|
'add_allocations' => 'bail|array',
|
||||||
'add_allocations.*' => 'integer',
|
'add_allocations.*' => 'integer',
|
||||||
'remove_allocations' => 'bail|array',
|
'remove_allocations' => 'bail|array',
|
||||||
'remove_allocations.*' => 'integer',
|
'remove_allocations.*' => 'integer',
|
||||||
|
|
||||||
'feature_limits' => 'required|array',
|
'feature_limits' => 'required|array',
|
||||||
'feature_limits.databases' => $rules['database_limit'],
|
'feature_limits.databases' => $rules['database_limit'],
|
||||||
'feature_limits.allocations' => $rules['allocation_limit'],
|
'feature_limits.allocations' => $rules['allocation_limit'],
|
||||||
|
@ -46,6 +61,15 @@ class UpdateServerBuildConfigurationRequest extends ServerWriteRequest
|
||||||
$data['allocation_limit'] = $data['feature_limits']['allocations'];
|
$data['allocation_limit'] = $data['feature_limits']['allocations'];
|
||||||
unset($data['allocation'], $data['feature_limits']);
|
unset($data['allocation'], $data['feature_limits']);
|
||||||
|
|
||||||
|
// Adjust the limits field to match what is expected by the model.
|
||||||
|
if (! empty($data['limits'])) {
|
||||||
|
foreach ($data['limits'] as $key => $value) {
|
||||||
|
$data[$key] = $value;
|
||||||
|
}
|
||||||
|
|
||||||
|
unset($data['limits']);
|
||||||
|
}
|
||||||
|
|
||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -65,4 +89,30 @@ class UpdateServerBuildConfigurationRequest extends ServerWriteRequest
|
||||||
'feature_limits.allocations' => 'Allocation Limit',
|
'feature_limits.allocations' => 'Allocation Limit',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Converts existing rules for certain limits into a format that maintains backwards
|
||||||
|
* compatability with the old API endpoint while also supporting a more correct API
|
||||||
|
* call.
|
||||||
|
*
|
||||||
|
* @param string $field
|
||||||
|
* @param array $rules
|
||||||
|
* @param bool $limits
|
||||||
|
* @return array
|
||||||
|
*
|
||||||
|
* @see https://github.com/pterodactyl/panel/issues/1500
|
||||||
|
*/
|
||||||
|
protected function requiredToOptional(string $field, array $rules, bool $limits = false)
|
||||||
|
{
|
||||||
|
if (! in_array('required', $rules)) {
|
||||||
|
return $rules;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (new Collection($rules))
|
||||||
|
->filter(function ($value) {
|
||||||
|
return $value !== 'required';
|
||||||
|
})
|
||||||
|
->prepend($limits ? 'required_with:limits' : 'required_without:limits')
|
||||||
|
->toArray();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue