mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 00:34:44 +02:00

* Not found property rule * Make these “better” * Day 1 * Day 2 * Day 3 * Dat 4 * Remove disabled check * Day 4 continued * Run pint * Final changes hopefully * Pint fixes * Fix again * Reset these * Update app/Filament/Admin/Pages/Health.php Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com> * Update app/Traits/CheckMigrationsTrait.php Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com> --------- Co-authored-by: MartinOscar <40749467+rmartinoscar@users.noreply.github.com>
53 lines
1.3 KiB
PHP
53 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Api\Application\Servers;
|
|
|
|
use App\Models\Server;
|
|
|
|
class UpdateServerDetailsRequest extends ServerWriteRequest
|
|
{
|
|
/**
|
|
* Rules to apply to a server details update request.
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
$rules = Server::getRulesForUpdate($this->parameter('server', Server::class));
|
|
|
|
return [
|
|
'external_id' => $rules['external_id'],
|
|
'name' => $rules['name'],
|
|
'user' => $rules['owner_id'],
|
|
'description' => array_merge(['nullable'], $rules['description']),
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Convert the posted data into the correct format that is expected by the application.
|
|
*
|
|
* @return array<array-key, string>
|
|
*/
|
|
public function validated($key = null, $default = null): array
|
|
{
|
|
return [
|
|
'external_id' => $this->input('external_id'),
|
|
'name' => $this->input('name'),
|
|
'owner_id' => $this->input('user'),
|
|
'description' => $this->input('description'),
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Rename some attributes in error messages to clarify the field
|
|
* being discussed.
|
|
*
|
|
* @return array<array-key, string>
|
|
*/
|
|
public function attributes(): array
|
|
{
|
|
return [
|
|
'user' => 'User ID',
|
|
'name' => 'Server Name',
|
|
];
|
|
}
|
|
}
|