2017-11-19 22:30:00 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Http\Controllers\API\Admin\Users;
|
|
|
|
|
|
|
|
use Spatie\Fractal\Fractal;
|
|
|
|
use Illuminate\Http\Request;
|
2017-12-16 17:31:18 +00:00
|
|
|
use Pterodactyl\Models\User;
|
|
|
|
use Illuminate\Http\Response;
|
|
|
|
use Illuminate\Http\JsonResponse;
|
2017-11-19 22:30:00 +00:00
|
|
|
use Pterodactyl\Http\Controllers\Controller;
|
2017-12-16 17:31:18 +00:00
|
|
|
use Pterodactyl\Services\Users\UserUpdateService;
|
|
|
|
use Pterodactyl\Services\Users\UserCreationService;
|
|
|
|
use Pterodactyl\Services\Users\UserDeletionService;
|
2017-11-19 22:30:00 +00:00
|
|
|
use Pterodactyl\Transformers\Admin\UserTransformer;
|
2017-12-16 17:31:18 +00:00
|
|
|
use Pterodactyl\Http\Requests\Admin\UserFormRequest;
|
2017-11-19 22:30:00 +00:00
|
|
|
use League\Fractal\Pagination\IlluminatePaginatorAdapter;
|
|
|
|
use Pterodactyl\Contracts\Repository\UserRepositoryInterface;
|
2017-12-16 17:31:18 +00:00
|
|
|
|
2017-11-19 22:30:00 +00:00
|
|
|
class UserController extends Controller
|
|
|
|
{
|
2017-12-16 17:31:18 +00:00
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Services\Users\UserCreationService
|
|
|
|
*/
|
|
|
|
private $creationService;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Services\Users\UserDeletionService
|
|
|
|
*/
|
|
|
|
private $deletionService;
|
|
|
|
|
2017-11-19 22:30:00 +00:00
|
|
|
/**
|
|
|
|
* @var \Spatie\Fractal\Fractal
|
|
|
|
*/
|
|
|
|
private $fractal;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\UserRepositoryInterface
|
|
|
|
*/
|
|
|
|
private $repository;
|
2017-12-16 17:31:18 +00:00
|
|
|
|
2017-11-19 22:30:00 +00:00
|
|
|
/**
|
2017-12-16 17:31:18 +00:00
|
|
|
* @var \Pterodactyl\Services\Users\UserUpdateService
|
2017-11-19 22:30:00 +00:00
|
|
|
*/
|
2017-12-16 17:31:18 +00:00
|
|
|
private $updateService;
|
2017-11-19 22:30:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* UserController constructor.
|
|
|
|
*
|
|
|
|
* @param \Spatie\Fractal\Fractal $fractal
|
|
|
|
* @param \Pterodactyl\Contracts\Repository\UserRepositoryInterface $repository
|
2017-12-16 17:31:18 +00:00
|
|
|
* @param \Pterodactyl\Services\Users\UserCreationService $creationService
|
|
|
|
* @param \Pterodactyl\Services\Users\UserDeletionService $deletionService
|
|
|
|
* @param \Pterodactyl\Services\Users\UserUpdateService $updateService
|
2017-11-19 22:30:00 +00:00
|
|
|
*/
|
|
|
|
public function __construct(
|
|
|
|
Fractal $fractal,
|
2017-12-16 17:31:18 +00:00
|
|
|
UserRepositoryInterface $repository,
|
|
|
|
UserCreationService $creationService,
|
|
|
|
UserDeletionService $deletionService,
|
|
|
|
UserUpdateService $updateService
|
2017-11-19 22:30:00 +00:00
|
|
|
) {
|
2017-12-16 17:31:18 +00:00
|
|
|
$this->creationService = $creationService;
|
|
|
|
$this->deletionService = $deletionService;
|
2017-11-19 22:30:00 +00:00
|
|
|
$this->fractal = $fractal;
|
|
|
|
$this->repository = $repository;
|
2017-12-16 17:31:18 +00:00
|
|
|
$this->updateService = $updateService;
|
2017-11-19 22:30:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-12-16 17:31:18 +00:00
|
|
|
* Handle request to list all users on the panel. Returns a JSONAPI representation
|
|
|
|
* of a collection of users including any defined relations passed in
|
|
|
|
* the request.
|
2017-11-19 22:30:00 +00:00
|
|
|
*
|
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @return array
|
|
|
|
*/
|
2017-12-16 17:31:18 +00:00
|
|
|
public function index(Request $request): array
|
2017-11-19 22:30:00 +00:00
|
|
|
{
|
2017-12-16 17:31:18 +00:00
|
|
|
$users = $this->repository->all(config('pterodactyl.paginate.api.users'));
|
2017-11-19 22:30:00 +00:00
|
|
|
|
|
|
|
$fractal = $this->fractal->collection($users)
|
|
|
|
->transformWith(new UserTransformer($request))
|
|
|
|
->withResourceName('user')
|
|
|
|
->paginateWith(new IlluminatePaginatorAdapter($users));
|
|
|
|
|
2017-12-16 17:31:18 +00:00
|
|
|
if (config('pterodactyl.api.include_on_list') && $request->has('include')) {
|
|
|
|
$fractal->parseIncludes(explode(',', $request->input('include')));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $fractal->toArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle a request to view a single user. Includes any relations that
|
|
|
|
* were defined in the request.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Http\Request $request
|
|
|
|
* @param \Pterodactyl\Models\User $user
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function view(Request $request, User $user): array
|
|
|
|
{
|
|
|
|
$fractal = $this->fractal->item($user)
|
|
|
|
->transformWith(new UserTransformer($request))
|
|
|
|
->withResourceName('user');
|
|
|
|
|
|
|
|
if ($request->has('include')) {
|
2017-11-19 22:30:00 +00:00
|
|
|
$fractal->parseIncludes(explode(',', $request->input('include')));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $fractal->toArray();
|
|
|
|
}
|
2017-12-16 17:31:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Update an existing user on the system and return the response. Returns the
|
|
|
|
* updated user model response on success. Supports handling of token revocation
|
|
|
|
* errors when switching a user from an admin to a normal user.
|
|
|
|
*
|
|
|
|
* Revocation errors are returned under the 'revocation_errors' key in the response
|
|
|
|
* meta. If there are no errors this is an empty array.
|
|
|
|
*
|
|
|
|
* @param \Pterodactyl\Http\Requests\Admin\UserFormRequest $request
|
|
|
|
* @param \Pterodactyl\Models\User $user
|
|
|
|
* @return array
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
|
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
|
|
*/
|
|
|
|
public function update(UserFormRequest $request, User $user): array
|
|
|
|
{
|
|
|
|
$this->updateService->setUserLevel(User::USER_LEVEL_ADMIN);
|
|
|
|
$collection = $this->updateService->handle($user, $request->normalize());
|
|
|
|
|
|
|
|
$errors = [];
|
|
|
|
if (! empty($collection->get('exceptions'))) {
|
|
|
|
foreach ($collection->get('exceptions') as $node => $exception) {
|
|
|
|
/** @var \GuzzleHttp\Exception\RequestException $exception */
|
|
|
|
/** @var \GuzzleHttp\Psr7\Response|null $response */
|
|
|
|
$response = method_exists($exception, 'getResponse') ? $exception->getResponse() : null;
|
|
|
|
$message = trans('admin/server.exceptions.daemon_exception', [
|
|
|
|
'code' => is_null($response) ? 'E_CONN_REFUSED' : $response->getStatusCode(),
|
|
|
|
]);
|
|
|
|
|
|
|
|
$errors[] = ['message' => $message, 'node' => $node];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->fractal->item($collection->get('user'))
|
|
|
|
->transformWith(new UserTransformer($request))
|
|
|
|
->withResourceName('user')
|
|
|
|
->addMeta([
|
|
|
|
'revocation_errors' => $errors,
|
|
|
|
])
|
|
|
|
->toArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store a new user on the system. Returns the created user and a HTTP/201
|
|
|
|
* header on successful creation.
|
|
|
|
*
|
|
|
|
* @param \Pterodactyl\Http\Requests\Admin\UserFormRequest $request
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
|
|
|
*
|
|
|
|
* @throws \Exception
|
|
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
|
|
*/
|
|
|
|
public function store(UserFormRequest $request): JsonResponse
|
|
|
|
{
|
|
|
|
$user = $this->creationService->handle($request->normalize());
|
|
|
|
|
|
|
|
return $this->fractal->item($user)
|
|
|
|
->transformWith(new UserTransformer($request))
|
|
|
|
->withResourceName('user')
|
|
|
|
->addMeta([
|
|
|
|
'link' => route('api.admin.user.view', ['user' => $user->id]),
|
|
|
|
])
|
|
|
|
->respond(201);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle a request to delete a user from the Panel. Returns a HTTP/204 response
|
|
|
|
* on successful deletion.
|
|
|
|
*
|
|
|
|
* @param \Pterodactyl\Models\User $user
|
|
|
|
* @return \Illuminate\Http\Response
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\DisplayException
|
|
|
|
*/
|
|
|
|
public function delete(User $user): Response
|
|
|
|
{
|
|
|
|
$this->deletionService->handle($user);
|
|
|
|
|
|
|
|
return response('', 204);
|
|
|
|
}
|
2017-11-19 22:30:00 +00:00
|
|
|
}
|