2017-08-24 02:34:11 +00:00
|
|
|
<?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\Services\Subusers;
|
|
|
|
|
2017-08-27 19:55:25 +00:00
|
|
|
use Illuminate\Log\Writer;
|
|
|
|
use Pterodactyl\Models\Server;
|
2017-08-24 02:34:11 +00:00
|
|
|
use GuzzleHttp\Exception\RequestException;
|
|
|
|
use Illuminate\Database\ConnectionInterface;
|
2017-08-27 19:55:25 +00:00
|
|
|
use Pterodactyl\Exceptions\DisplayException;
|
2017-09-14 04:07:02 +00:00
|
|
|
use Pterodactyl\Services\Nodes\NodeCreationService;
|
2017-08-27 20:10:51 +00:00
|
|
|
use Pterodactyl\Services\Users\UserCreationService;
|
2017-08-27 19:55:25 +00:00
|
|
|
use Pterodactyl\Contracts\Repository\UserRepositoryInterface;
|
2017-09-05 00:07:00 +00:00
|
|
|
use Pterodactyl\Exceptions\Repository\RecordNotFoundException;
|
2017-08-24 02:34:11 +00:00
|
|
|
use Pterodactyl\Contracts\Repository\ServerRepositoryInterface;
|
|
|
|
use Pterodactyl\Contracts\Repository\SubuserRepositoryInterface;
|
|
|
|
use Pterodactyl\Exceptions\Service\Subuser\UserIsServerOwnerException;
|
2017-08-27 19:55:25 +00:00
|
|
|
use Pterodactyl\Exceptions\Service\Subuser\ServerSubuserExistsException;
|
|
|
|
use Pterodactyl\Contracts\Repository\Daemon\ServerRepositoryInterface as DaemonServerRepositoryInterface;
|
2017-08-24 02:34:11 +00:00
|
|
|
|
|
|
|
class SubuserCreationService
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \Illuminate\Database\ConnectionInterface
|
|
|
|
*/
|
|
|
|
protected $connection;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\Daemon\ServerRepositoryInterface
|
|
|
|
*/
|
|
|
|
protected $daemonRepository;
|
|
|
|
|
|
|
|
/**
|
2017-08-26 23:08:11 +00:00
|
|
|
* @var \Pterodactyl\Services\Subusers\PermissionCreationService
|
2017-08-24 02:34:11 +00:00
|
|
|
*/
|
2017-08-26 23:08:11 +00:00
|
|
|
protected $permissionService;
|
2017-08-24 02:34:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\SubuserRepositoryInterface
|
|
|
|
*/
|
|
|
|
protected $subuserRepository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\ServerRepositoryInterface
|
|
|
|
*/
|
|
|
|
protected $serverRepository;
|
|
|
|
|
|
|
|
/**
|
2017-08-27 20:10:51 +00:00
|
|
|
* @var \Pterodactyl\Services\Users\UserCreationService
|
2017-08-24 02:34:11 +00:00
|
|
|
*/
|
|
|
|
protected $userCreationService;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\UserRepositoryInterface
|
|
|
|
*/
|
|
|
|
protected $userRepository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Illuminate\Log\Writer
|
|
|
|
*/
|
|
|
|
protected $writer;
|
|
|
|
|
2017-09-04 23:12:13 +00:00
|
|
|
/**
|
|
|
|
* SubuserCreationService constructor.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Database\ConnectionInterface $connection
|
|
|
|
* @param \Pterodactyl\Services\Users\UserCreationService $userCreationService
|
|
|
|
* @param \Pterodactyl\Contracts\Repository\Daemon\ServerRepositoryInterface $daemonRepository
|
|
|
|
* @param \Pterodactyl\Services\Subusers\PermissionCreationService $permissionService
|
|
|
|
* @param \Pterodactyl\Contracts\Repository\ServerRepositoryInterface $serverRepository
|
|
|
|
* @param \Pterodactyl\Contracts\Repository\SubuserRepositoryInterface $subuserRepository
|
|
|
|
* @param \Pterodactyl\Contracts\Repository\UserRepositoryInterface $userRepository
|
|
|
|
* @param \Illuminate\Log\Writer $writer
|
|
|
|
*/
|
2017-08-24 02:34:11 +00:00
|
|
|
public function __construct(
|
|
|
|
ConnectionInterface $connection,
|
2017-08-27 20:10:51 +00:00
|
|
|
UserCreationService $userCreationService,
|
2017-08-24 02:34:11 +00:00
|
|
|
DaemonServerRepositoryInterface $daemonRepository,
|
2017-08-26 23:08:11 +00:00
|
|
|
PermissionCreationService $permissionService,
|
2017-08-24 02:34:11 +00:00
|
|
|
ServerRepositoryInterface $serverRepository,
|
|
|
|
SubuserRepositoryInterface $subuserRepository,
|
|
|
|
UserRepositoryInterface $userRepository,
|
|
|
|
Writer $writer
|
|
|
|
) {
|
|
|
|
$this->connection = $connection;
|
|
|
|
$this->daemonRepository = $daemonRepository;
|
2017-08-26 23:08:11 +00:00
|
|
|
$this->permissionService = $permissionService;
|
2017-08-24 02:34:11 +00:00
|
|
|
$this->subuserRepository = $subuserRepository;
|
|
|
|
$this->serverRepository = $serverRepository;
|
|
|
|
$this->userRepository = $userRepository;
|
|
|
|
$this->userCreationService = $userCreationService;
|
|
|
|
$this->writer = $writer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int|\Pterodactyl\Models\Server $server
|
|
|
|
* @param string $email
|
|
|
|
* @param array $permissions
|
|
|
|
* @return \Pterodactyl\Models\Subuser
|
|
|
|
*
|
|
|
|
* @throws \Exception
|
|
|
|
* @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 handle($server, $email, array $permissions)
|
|
|
|
{
|
|
|
|
if (! $server instanceof Server) {
|
|
|
|
$server = $this->serverRepository->find($server);
|
|
|
|
}
|
|
|
|
|
2017-09-04 23:12:13 +00:00
|
|
|
$this->connection->beginTransaction();
|
|
|
|
try {
|
|
|
|
$user = $this->userRepository->findFirstWhere([['email', '=', $email]]);
|
|
|
|
|
2017-08-24 02:34:11 +00:00
|
|
|
if ($server->owner_id === $user->id) {
|
2017-09-03 21:32:52 +00:00
|
|
|
throw new UserIsServerOwnerException(trans('exceptions.subusers.user_is_owner'));
|
2017-08-24 02:34:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$subuserCount = $this->subuserRepository->findCountWhere([['user_id', '=', $user->id], ['server_id', '=', $server->id]]);
|
|
|
|
if ($subuserCount !== 0) {
|
2017-09-03 21:32:52 +00:00
|
|
|
throw new ServerSubuserExistsException(trans('exceptions.subusers.subuser_exists'));
|
2017-08-24 02:34:11 +00:00
|
|
|
}
|
2017-09-04 23:12:13 +00:00
|
|
|
} catch (RecordNotFoundException $exception) {
|
|
|
|
$user = $this->userCreationService->handle([
|
|
|
|
'email' => $email,
|
|
|
|
'username' => substr(strtok($email, '@'), 0, 8) . '_' . str_random(6),
|
|
|
|
'name_first' => 'Server',
|
|
|
|
'name_last' => 'Subuser',
|
|
|
|
'root_admin' => false,
|
|
|
|
]);
|
2017-08-24 02:34:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$subuser = $this->subuserRepository->create([
|
|
|
|
'user_id' => $user->id,
|
|
|
|
'server_id' => $server->id,
|
2017-09-14 04:07:02 +00:00
|
|
|
'daemonSecret' => str_random(NodeCreationService::DAEMON_SECRET_LENGTH),
|
2017-08-24 02:34:11 +00:00
|
|
|
]);
|
|
|
|
|
2017-08-26 23:08:11 +00:00
|
|
|
$daemonPermissions = $this->permissionService->handle($subuser->id, $permissions);
|
2017-08-24 02:34:11 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
$this->daemonRepository->setNode($server->node_id)->setAccessServer($server->uuid)
|
|
|
|
->setSubuserKey($subuser->daemonSecret, $daemonPermissions);
|
|
|
|
$this->connection->commit();
|
|
|
|
|
|
|
|
return $subuser;
|
|
|
|
} catch (RequestException $exception) {
|
2017-08-26 18:31:18 +00:00
|
|
|
$this->connection->rollBack();
|
2017-08-24 02:34:11 +00:00
|
|
|
$this->writer->warning($exception);
|
|
|
|
|
2017-08-26 23:08:11 +00:00
|
|
|
$response = $exception->getResponse();
|
2017-09-03 21:32:52 +00:00
|
|
|
throw new DisplayException(trans('exceptions.daemon_connection_failed', [
|
2017-08-24 02:34:11 +00:00
|
|
|
'code' => is_null($response) ? 'E_CONN_REFUSED' : $response->getStatusCode(),
|
|
|
|
]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|