misc_pterodactyl-panel/app/Http/Controllers/Api/Remote/Servers/ServerInstallController.php

82 lines
2.5 KiB
PHP
Raw Normal View History

2020-01-18 23:26:15 +00:00
<?php
namespace Pterodactyl\Http\Controllers\Api\Remote\Servers;
use Illuminate\Http\Request;
2020-01-19 21:50:38 +00:00
use Illuminate\Http\Response;
2021-01-17 23:55:46 +00:00
use Pterodactyl\Models\Server;
2020-01-18 23:26:15 +00:00
use Illuminate\Http\JsonResponse;
use Pterodactyl\Http\Controllers\Controller;
use Pterodactyl\Repositories\Eloquent\ServerRepository;
2021-03-06 07:52:24 +00:00
use Pterodactyl\Events\Server\Installed as ServerInstalled;
use Illuminate\Contracts\Events\Dispatcher as EventDispatcher;
2021-08-16 00:20:36 +00:00
use Pterodactyl\Http\Requests\Api\Remote\InstallationDataRequest;
2020-01-18 23:26:15 +00:00
class ServerInstallController extends Controller
{
/**
* @var \Pterodactyl\Repositories\Eloquent\ServerRepository
*/
private $repository;
2021-03-06 07:52:24 +00:00
/**
* @var \Illuminate\Contracts\Events\Dispatcher
*/
private $eventDispatcher;
2020-01-18 23:26:15 +00:00
/**
* ServerInstallController constructor.
*/
2021-03-06 07:52:24 +00:00
public function __construct(ServerRepository $repository, EventDispatcher $eventDispatcher)
2020-01-18 23:26:15 +00:00
{
$this->repository = $repository;
2021-03-06 07:52:24 +00:00
$this->eventDispatcher = $eventDispatcher;
2020-01-18 23:26:15 +00:00
}
/**
* Returns installation information for a server.
*
* @return \Illuminate\Http\JsonResponse
*
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
*/
2020-01-19 21:50:38 +00:00
public function index(Request $request, string $uuid)
2020-01-18 23:26:15 +00:00
{
$server = $this->repository->getByUuid($uuid);
$egg = $server->egg;
return new JsonResponse([
2020-01-18 23:26:15 +00:00
'container_image' => $egg->copy_script_container,
'entrypoint' => $egg->copy_script_entry,
'script' => $egg->copy_script_install,
]);
}
2020-01-19 21:50:38 +00:00
/**
* Updates the installation state of a server.
*
* @return \Illuminate\Http\JsonResponse
*
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
*/
public function store(InstallationDataRequest $request, string $uuid)
{
$server = $this->repository->getByUuid($uuid);
$status = $request->boolean('successful') ? null : Server::STATUS_INSTALL_FAILED;
2021-01-17 23:55:46 +00:00
if ($server->status === Server::STATUS_SUSPENDED) {
2021-01-18 00:08:41 +00:00
$status = Server::STATUS_SUSPENDED;
2021-01-17 23:55:46 +00:00
}
2020-01-19 21:50:38 +00:00
2021-01-17 23:55:46 +00:00
$this->repository->update($server->id, ['status' => $status], true, true);
2021-03-06 07:52:24 +00:00
// If the server successfully installed, fire installed event.
if ($status === null) {
$this->eventDispatcher->dispatch(new ServerInstalled($server));
}
2021-01-17 23:55:46 +00:00
return new JsonResponse([], Response::HTTP_NO_CONTENT);
2020-01-19 21:50:38 +00:00
}
2020-01-18 23:26:15 +00:00
}