1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-27 20:32:28 +01:00
Pterodactyl-Panel/app/Http/Controllers/Server/SubuserController.php

236 lines
8.1 KiB
PHP
Raw Normal View History

2016-01-18 07:24:33 +01:00
<?php
2016-01-20 01:10:39 +01:00
/**
2016-01-20 22:05:16 +01:00
* Pterodactyl - Panel
2017-01-24 23:57:08 +01:00
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
2016-01-20 01:10:39 +01:00
*
* 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:
2016-01-20 01:10:39 +01:00
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
2016-01-20 01:10:39 +01:00
*
* 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.
2016-01-20 01:10:39 +01:00
*/
2016-12-07 23:46:38 +01:00
2016-01-18 07:24:33 +01:00
namespace Pterodactyl\Http\Controllers\Server;
use Illuminate\Http\Request;
2017-09-05 01:12:13 +02:00
use Pterodactyl\Models\Permission;
use Prologue\Alerts\AlertsMessageBag;
use Illuminate\Contracts\Session\Session;
use Pterodactyl\Http\Controllers\Controller;
2017-09-05 01:12:13 +02:00
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;
2016-01-18 07:24:33 +01:00
class SubuserController extends Controller
{
2017-09-05 01:12:13 +02:00
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;
}
2016-01-18 07:24:33 +01:00
/**
2017-03-20 00:36:50 +01:00
* Displays the subuser overview index.
2016-01-18 07:24:33 +01:00
*
2017-03-20 00:36:50 +01:00
* @return \Illuminate\View\View
2017-09-05 01:12:13 +02:00
*
* @throws \Illuminate\Auth\Access\AuthorizationException
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
2016-01-18 07:24:33 +01:00
*/
2017-09-05 01:12:13 +02:00
public function index()
2016-01-18 07:24:33 +01:00
{
2017-09-05 01:12:13 +02:00
$server = $this->session->get('server_data.model');
2016-01-18 07:24:33 +01:00
$this->authorize('list-subusers', $server);
2017-09-05 01:12:13 +02:00
$this->injectJavascript();
2016-01-18 07:24:33 +01:00
return view('server.users.index', [
2017-09-05 01:12:13 +02:00
'subusers' => $this->repository->findWhere([['server_id', '=', $server->id]]),
2016-01-18 07:24:33 +01:00
]);
}
2017-03-20 00:36:50 +01:00
/**
* Displays the a single subuser overview.
*
2017-09-05 01:12:13 +02:00
* @param string $uuid
* @param int $id
2017-03-20 00:36:50 +01:00
* @return \Illuminate\View\View
2017-09-05 01:12:13 +02:00
*
* @throws \Illuminate\Auth\Access\AuthorizationException
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
2017-03-20 00:36:50 +01:00
*/
2017-09-05 01:12:13 +02:00
public function view($uuid, $id)
2016-01-18 07:24:33 +01:00
{
2017-09-05 01:12:13 +02:00
$server = $this->session->get('server_data.model');
2016-01-18 07:24:33 +01:00
$this->authorize('view-subuser', $server);
2017-09-05 01:12:13 +02:00
$subuser = $this->repository->getWithPermissions($id);
$this->injectJavascript();
2016-01-18 07:24:33 +01:00
return view('server.users.view', [
'subuser' => $subuser,
2017-09-05 01:12:13 +02:00
'permlist' => Permission::getPermissions(),
2017-02-10 01:38:54 +01:00
'permissions' => $subuser->permissions->mapWithKeys(function ($item, $key) {
return [$item->permission => true];
}),
2016-01-18 07:24:33 +01:00
]);
}
2017-03-20 00:36:50 +01:00
/**
* Handles editing a subuser.
*
2017-08-22 05:10:48 +02:00
* @param \Illuminate\Http\Request $request
* @param string $uuid
* @param int $id
2017-03-20 00:36:50 +01:00
* @return \Illuminate\Http\RedirectResponse
2017-09-05 01:12:13 +02:00
*
* @throws \Illuminate\Auth\Access\AuthorizationException
* @throws \Pterodactyl\Exceptions\DisplayException
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
2017-03-20 00:36:50 +01:00
*/
2017-04-10 01:13:22 +02:00
public function update(Request $request, $uuid, $id)
2016-01-18 07:24:33 +01:00
{
2017-09-05 01:12:13 +02:00
$server = $this->session->get('server_data.model');
2016-01-19 01:57:10 +01:00
$this->authorize('edit-subuser', $server);
2017-09-05 01:12:13 +02:00
$this->subuserUpdateService->handle($id, $request->input('permissions', []));
$this->alert->success(trans('server.users.user_updated'))->flash();
2016-12-07 23:46:38 +01:00
2017-09-05 01:12:13 +02:00
return redirect()->route('server.subusers.view', ['uuid' => $uuid, 'id' => $id]);
2016-01-19 01:57:10 +01:00
}
2017-03-20 00:36:50 +01:00
/**
* Display new subuser creation page.
*
* @return \Illuminate\View\View
2017-09-05 01:12:13 +02:00
*
* @throws \Illuminate\Auth\Access\AuthorizationException
2017-03-20 00:36:50 +01:00
*/
2017-09-05 01:12:13 +02:00
public function create()
2016-01-19 01:57:10 +01:00
{
2017-09-05 01:12:13 +02:00
$server = $this->session->get('server_data.model');
2016-01-19 01:57:10 +01:00
$this->authorize('create-subuser', $server);
2017-09-05 01:12:13 +02:00
$this->injectJavascript();
return view('server.users.new', ['permissions' => Permission::getPermissions()]);
2016-01-19 01:57:10 +01:00
}
2017-03-20 00:36:50 +01:00
/**
* Handles creating a new subuser.
*
2017-08-22 05:10:48 +02:00
* @param \Illuminate\Http\Request $request
* @param string $uuid
2017-03-20 00:36:50 +01:00
* @return \Illuminate\Http\RedirectResponse
2017-09-05 01:12:13 +02:00
*
* @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
2017-03-20 00:36:50 +01:00
*/
2017-04-10 01:13:22 +02:00
public function store(Request $request, $uuid)
2016-01-19 01:57:10 +01:00
{
2017-09-05 01:12:13 +02:00
$server = $this->session->get('server_data.model');
2016-01-19 01:57:10 +01:00
$this->authorize('create-subuser', $server);
2017-09-05 01:12:13 +02:00
$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,
]);
2016-01-19 01:57:10 +01:00
}
2017-03-20 00:36:50 +01:00
/**
* Handles deleting a subuser.
*
2017-09-05 01:12:13 +02:00
* @param string $uuid
* @param int $id
* @return \Illuminate\Http\Response
*
* @throws \Illuminate\Auth\Access\AuthorizationException
* @throws \Pterodactyl\Exceptions\DisplayException
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
2017-03-20 00:36:50 +01:00
*/
2017-09-05 01:12:13 +02:00
public function delete($uuid, $id)
2016-01-19 01:57:10 +01:00
{
2017-09-05 01:12:13 +02:00
$server = $this->session->get('server_data.model');
2016-01-19 01:57:10 +01:00
$this->authorize('delete-subuser', $server);
2017-09-05 01:12:13 +02:00
$this->subuserDeletionService->handle($id);
return response('', 204);
2016-01-18 07:24:33 +01:00
}
}