1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-28 04:42:29 +01:00
Pterodactyl-Panel/app/Http/Controllers/Api/Application/Servers/ServerController.php

85 lines
3.0 KiB
PHP
Raw Normal View History

2018-01-20 02:58:57 +01:00
<?php
namespace Pterodactyl\Http\Controllers\Api\Application\Servers;
2018-01-20 02:58:57 +01:00
2018-01-20 20:48:02 +01:00
use Illuminate\Http\Response;
use Pterodactyl\Models\Server;
2018-01-20 20:48:02 +01:00
use Pterodactyl\Services\Servers\ServerDeletionService;
2018-01-20 02:58:57 +01:00
use Pterodactyl\Contracts\Repository\ServerRepositoryInterface;
use Pterodactyl\Transformers\Api\Application\ServerTransformer;
use Pterodactyl\Http\Requests\Api\Application\Servers\GetServersRequest;
2018-01-20 20:48:02 +01:00
use Pterodactyl\Http\Requests\Api\Application\Servers\ServerWriteRequest;
use Pterodactyl\Http\Controllers\Api\Application\ApplicationApiController;
2018-01-20 02:58:57 +01:00
class ServerController extends ApplicationApiController
2018-01-20 02:58:57 +01:00
{
2018-01-20 20:48:02 +01:00
/**
* @var \Pterodactyl\Services\Servers\ServerDeletionService
*/
private $deletionService;
2018-01-20 02:58:57 +01:00
/**
* @var \Pterodactyl\Contracts\Repository\ServerRepositoryInterface
*/
private $repository;
/**
* ServerController constructor.
*
2018-01-20 20:48:02 +01:00
* @param \Pterodactyl\Services\Servers\ServerDeletionService $deletionService
2018-01-20 02:58:57 +01:00
* @param \Pterodactyl\Contracts\Repository\ServerRepositoryInterface $repository
*/
2018-01-20 20:48:02 +01:00
public function __construct(ServerDeletionService $deletionService, ServerRepositoryInterface $repository)
2018-01-20 02:58:57 +01:00
{
2018-01-20 20:48:02 +01:00
parent::__construct();
2018-01-20 20:48:02 +01:00
$this->deletionService = $deletionService;
2018-01-20 02:58:57 +01:00
$this->repository = $repository;
}
/**
* Return all of the servers that currently exist on the Panel.
*
* @param \Pterodactyl\Http\Requests\Api\Application\Servers\GetServersRequest $request
* @return array
*/
public function index(GetServersRequest $request): array
2018-01-20 02:58:57 +01:00
{
$servers = $this->repository->setSearchTerm($request->input('search'))->paginated(50);
2018-01-20 02:58:57 +01:00
return $this->fractal->collection($servers)
->transformWith($this->getTransformer(ServerTransformer::class))
->toArray();
}
/**
* Show a single server transformed for the application API.
*
2018-01-20 20:48:02 +01:00
* @param \Pterodactyl\Http\Requests\Api\Application\Servers\ServerWriteRequest $request
* @param \Pterodactyl\Models\Server $server
* @return array
*/
2018-01-20 20:48:02 +01:00
public function view(ServerWriteRequest $request, Server $server): array
{
return $this->fractal->item($server)
->transformWith($this->getTransformer(ServerTransformer::class))
2018-01-20 02:58:57 +01:00
->toArray();
}
2018-01-20 20:48:02 +01:00
/**
* @param \Pterodactyl\Http\Requests\Api\Application\Servers\ServerWriteRequest $request
* @param \Pterodactyl\Models\Server $server
* @param string $force
* @return \Illuminate\Http\Response
*
* @throws \Pterodactyl\Exceptions\DisplayException
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
*/
public function delete(ServerWriteRequest $request, Server $server, string $force = ''): Response
{
$this->deletionService->withForce($force === 'force')->handle($server);
return $this->returnNoContent();
}
2018-01-20 02:58:57 +01:00
}