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

* update scramble * cleanup application api endpoints * cleanup client api endpoints * fix security schema and make docs homepage nicer * remove duplicate myclabs/deep-copy * style(api-docs): use Blade template and Tailwind for styling * Publish scramble view * Use localStorage theme instead of config * Update routes/docs.php Co-authored-by: Lance Pioch <git@lance.sh> --------- Co-authored-by: Quinten <67589015+QuintenQVD0@users.noreply.github.com> Co-authored-by: RMartinOscar <40749467+RMartinOscar@users.noreply.github.com> Co-authored-by: Lance Pioch <git@lance.sh>
47 lines
1.4 KiB
PHP
47 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Api\Application\Servers;
|
|
|
|
use App\Exceptions\Model\DataValidationException;
|
|
use App\Models\User;
|
|
use App\Models\Server;
|
|
use App\Services\Servers\StartupModificationService;
|
|
use App\Transformers\Api\Application\ServerTransformer;
|
|
use App\Http\Controllers\Api\Application\ApplicationApiController;
|
|
use App\Http\Requests\Api\Application\Servers\UpdateServerStartupRequest;
|
|
use Dedoc\Scramble\Attributes\Group;
|
|
use Illuminate\Http\Client\ConnectionException;
|
|
use Illuminate\Validation\ValidationException;
|
|
|
|
#[Group('Server', weight: 3)]
|
|
class StartupController extends ApplicationApiController
|
|
{
|
|
/**
|
|
* StartupController constructor.
|
|
*/
|
|
public function __construct(private StartupModificationService $modificationService)
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Update startup
|
|
*
|
|
* Update the startup and environment settings for a specific server.
|
|
*
|
|
* @throws ValidationException
|
|
* @throws ConnectionException
|
|
* @throws DataValidationException
|
|
*/
|
|
public function index(UpdateServerStartupRequest $request, Server $server): array
|
|
{
|
|
$server = $this->modificationService
|
|
->setUserLevel(User::USER_LEVEL_ADMIN)
|
|
->handle($server, $request->validated());
|
|
|
|
return $this->fractal->item($server)
|
|
->transformWith($this->getTransformer(ServerTransformer::class))
|
|
->toArray();
|
|
}
|
|
}
|