235 lines
8.1 KiB
PHP
235 lines
8.1 KiB
PHP
<?php
|
|
/**
|
|
* Pterodactyl - Panel
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
namespace Pterodactyl\Http\Controllers\Server;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Pterodactyl\Models\Permission;
|
|
use Prologue\Alerts\AlertsMessageBag;
|
|
use Illuminate\Contracts\Session\Session;
|
|
use Pterodactyl\Http\Controllers\Controller;
|
|
use Pterodactyl\Services\Subusers\SubuserUpdateService;
|
|
use Pterodactyl\Traits\Controllers\JavascriptInjection;
|
|
use Pterodactyl\Services\Subusers\SubuserCreationService;
|
|
use Pterodactyl\Services\Subusers\SubuserDeletionService;
|
|
use Pterodactyl\Contracts\Repository\SubuserRepositoryInterface;
|
|
|
|
class SubuserController extends Controller
|
|
{
|
|
use JavascriptInjection;
|
|
|
|
/**
|
|
* @var \Prologue\Alerts\AlertsMessageBag
|
|
*/
|
|
protected $alert;
|
|
|
|
/**
|
|
* @var \Pterodactyl\Contracts\Repository\SubuserRepositoryInterface
|
|
*/
|
|
protected $repository;
|
|
|
|
/**
|
|
* @var \Illuminate\Contracts\Session\Session
|
|
*/
|
|
protected $session;
|
|
|
|
/**
|
|
* @var \Pterodactyl\Services\Subusers\SubuserCreationService
|
|
*/
|
|
protected $subuserCreationService;
|
|
|
|
/**
|
|
* @var \Pterodactyl\Services\Subusers\SubuserDeletionService
|
|
*/
|
|
protected $subuserDeletionService;
|
|
|
|
/**
|
|
* @var \Pterodactyl\Services\Subusers\SubuserUpdateService
|
|
*/
|
|
protected $subuserUpdateService;
|
|
|
|
/**
|
|
* SubuserController constructor.
|
|
*
|
|
* @param \Prologue\Alerts\AlertsMessageBag $alert
|
|
* @param \Illuminate\Contracts\Session\Session $session
|
|
* @param \Pterodactyl\Services\Subusers\SubuserCreationService $subuserCreationService
|
|
* @param \Pterodactyl\Services\Subusers\SubuserDeletionService $subuserDeletionService
|
|
* @param \Pterodactyl\Contracts\Repository\SubuserRepositoryInterface $repository
|
|
* @param \Pterodactyl\Services\Subusers\SubuserUpdateService $subuserUpdateService
|
|
*/
|
|
public function __construct(
|
|
AlertsMessageBag $alert,
|
|
Session $session,
|
|
SubuserCreationService $subuserCreationService,
|
|
SubuserDeletionService $subuserDeletionService,
|
|
SubuserRepositoryInterface $repository,
|
|
SubuserUpdateService $subuserUpdateService
|
|
) {
|
|
$this->alert = $alert;
|
|
$this->repository = $repository;
|
|
$this->session = $session;
|
|
$this->subuserCreationService = $subuserCreationService;
|
|
$this->subuserDeletionService = $subuserDeletionService;
|
|
$this->subuserUpdateService = $subuserUpdateService;
|
|
}
|
|
|
|
/**
|
|
* Displays the subuser overview index.
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
*/
|
|
public function index()
|
|
{
|
|
$server = $this->session->get('server_data.model');
|
|
$this->authorize('list-subusers', $server);
|
|
|
|
$this->injectJavascript();
|
|
|
|
return view('server.users.index', [
|
|
'subusers' => $this->repository->findWhere([['server_id', '=', $server->id]]),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Displays the a single subuser overview.
|
|
*
|
|
* @param string $uuid
|
|
* @param int $id
|
|
* @return \Illuminate\View\View
|
|
*
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
*/
|
|
public function view($uuid, $id)
|
|
{
|
|
$server = $this->session->get('server_data.model');
|
|
$this->authorize('view-subuser', $server);
|
|
|
|
$subuser = $this->repository->getWithPermissions($id);
|
|
$this->injectJavascript();
|
|
|
|
return view('server.users.view', [
|
|
'subuser' => $subuser,
|
|
'permlist' => Permission::getPermissions(),
|
|
'permissions' => $subuser->permissions->mapWithKeys(function ($item, $key) {
|
|
return [$item->permission => true];
|
|
}),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Handles editing a subuser.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param string $uuid
|
|
* @param int $id
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
* @throws \Pterodactyl\Exceptions\DisplayException
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
*/
|
|
public function update(Request $request, $uuid, $id)
|
|
{
|
|
$server = $this->session->get('server_data.model');
|
|
$this->authorize('edit-subuser', $server);
|
|
|
|
$this->subuserUpdateService->handle($id, $request->input('permissions', []));
|
|
$this->alert->success(trans('server.users.user_updated'))->flash();
|
|
|
|
return redirect()->route('server.subusers.view', ['uuid' => $uuid, 'id' => $id]);
|
|
}
|
|
|
|
/**
|
|
* Display new subuser creation page.
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
*/
|
|
public function create()
|
|
{
|
|
$server = $this->session->get('server_data.model');
|
|
$this->authorize('create-subuser', $server);
|
|
|
|
$this->injectJavascript();
|
|
|
|
return view('server.users.new', ['permissions' => Permission::getPermissions()]);
|
|
}
|
|
|
|
/**
|
|
* Handles creating a new subuser.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param string $uuid
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*
|
|
* @throws \Exception
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
* @throws \Pterodactyl\Exceptions\DisplayException
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
* @throws \Pterodactyl\Exceptions\Service\Subuser\ServerSubuserExistsException
|
|
* @throws \Pterodactyl\Exceptions\Service\Subuser\UserIsServerOwnerException
|
|
*/
|
|
public function store(Request $request, $uuid)
|
|
{
|
|
$server = $this->session->get('server_data.model');
|
|
$this->authorize('create-subuser', $server);
|
|
|
|
$subuser = $this->subuserCreationService->handle($server, $request->input('email'), $request->input('permissions', []));
|
|
$this->alert->success(trans('server.users.user_assigned'))->flash();
|
|
|
|
return redirect()->route('server.subusers.view', [
|
|
'uuid' => $uuid,
|
|
'id' => $subuser->id,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Handles deleting a subuser.
|
|
*
|
|
* @param string $uuid
|
|
* @param int $id
|
|
* @return \Illuminate\Http\Response
|
|
*
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
* @throws \Pterodactyl\Exceptions\DisplayException
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
*/
|
|
public function delete($uuid, $id)
|
|
{
|
|
$server = $this->session->get('server_data.model');
|
|
$this->authorize('delete-subuser', $server);
|
|
|
|
$this->subuserDeletionService->handle($id);
|
|
|
|
return response('', 204);
|
|
}
|
|
}
|