36 lines
1 KiB
PHP
36 lines
1 KiB
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Requests\Api\Application\Servers;
|
|
|
|
use Pterodactyl\Models\Server;
|
|
use Pterodactyl\Services\Acl\Api\AdminAcl;
|
|
use Pterodactyl\Http\Requests\Api\Application\ApplicationApiRequest;
|
|
|
|
class UpdateServerStartupRequest extends ApplicationApiRequest
|
|
{
|
|
protected string $resource = AdminAcl::RESOURCE_SERVERS;
|
|
protected int $permission = AdminAcl::WRITE;
|
|
|
|
public function rules(): array
|
|
{
|
|
$data = Server::getRulesForUpdate($this->route()->parameter('server')->id);
|
|
|
|
return [
|
|
'startup' => $data['startup'],
|
|
'environment' => 'present|array',
|
|
'egg' => $data['egg_id'],
|
|
'image' => $data['image'],
|
|
'skip_scripts' => 'present|boolean',
|
|
];
|
|
}
|
|
|
|
public function validated(): array
|
|
{
|
|
$data = parent::validated();
|
|
|
|
return collect($data)->only(['startup', 'environment', 'skip_scripts'])->merge([
|
|
'egg_id' => array_get($data, 'egg'),
|
|
'docker_image' => array_get($data, 'image'),
|
|
])->toArray();
|
|
}
|
|
}
|