2017-08-31 02:11:14 +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\Servers;
|
|
|
|
|
2017-08-31 02:14:20 +00:00
|
|
|
use Pterodactyl\Models\User;
|
2017-09-03 21:41:03 +00:00
|
|
|
use Pterodactyl\Models\Server;
|
2017-08-31 02:11:14 +00:00
|
|
|
use Illuminate\Cache\Repository as CacheRepository;
|
2017-08-31 02:14:20 +00:00
|
|
|
use Pterodactyl\Contracts\Repository\UserRepositoryInterface;
|
2017-08-31 02:11:14 +00:00
|
|
|
use Pterodactyl\Contracts\Repository\ServerRepositoryInterface;
|
|
|
|
use Pterodactyl\Contracts\Repository\SubuserRepositoryInterface;
|
2017-09-03 21:41:03 +00:00
|
|
|
use Pterodactyl\Exceptions\Service\Server\UserNotLinkedToServerException;
|
2017-08-31 02:11:14 +00:00
|
|
|
|
|
|
|
class ServerAccessHelperService
|
|
|
|
{
|
|
|
|
public function __construct(
|
|
|
|
CacheRepository $cache,
|
|
|
|
ServerRepositoryInterface $repository,
|
|
|
|
SubuserRepositoryInterface $subuserRepository,
|
|
|
|
UserRepositoryInterface $userRepository
|
|
|
|
) {
|
|
|
|
$this->cache = $cache;
|
|
|
|
$this->repository = $repository;
|
|
|
|
$this->subuserRepository = $subuserRepository;
|
|
|
|
$this->userRepository = $userRepository;
|
|
|
|
}
|
|
|
|
|
2017-09-03 02:35:33 +00:00
|
|
|
/**
|
|
|
|
* @param int|\Pterodactyl\Models\Server $server
|
|
|
|
* @param int|\Pterodactyl\Models\User $user
|
|
|
|
* @return string
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
|
|
* @throws \Pterodactyl\Exceptions\Service\Server\UserNotLinkedToServerException
|
|
|
|
*/
|
|
|
|
public function handle($server, $user)
|
2017-08-31 02:11:14 +00:00
|
|
|
{
|
2017-09-03 02:35:33 +00:00
|
|
|
if (! $server instanceof Server) {
|
|
|
|
$server = $this->repository->find($server);
|
|
|
|
}
|
|
|
|
|
2017-08-31 02:11:14 +00:00
|
|
|
if (! $user instanceof User) {
|
|
|
|
$user = $this->userRepository->find($user);
|
|
|
|
}
|
|
|
|
|
2017-09-03 02:35:33 +00:00
|
|
|
if ($user->root_admin || $server->owner_id === $user->id) {
|
|
|
|
return $server->daemonSecret;
|
|
|
|
}
|
2017-08-31 02:11:14 +00:00
|
|
|
|
2017-09-03 02:35:33 +00:00
|
|
|
if (! in_array($server->id, $this->repository->getUserAccessServers($user->id))) {
|
|
|
|
throw new UserNotLinkedToServerException;
|
2017-08-31 02:11:14 +00:00
|
|
|
}
|
|
|
|
|
2017-09-03 02:35:33 +00:00
|
|
|
$subuser = $this->subuserRepository->withColumns('daemonSecret')->findWhere([
|
|
|
|
['user_id', '=', $user->id],
|
|
|
|
['server_id', '=', $server->id],
|
|
|
|
]);
|
|
|
|
|
|
|
|
return $subuser->daemonSecret;
|
2017-08-31 02:11:14 +00:00
|
|
|
}
|
|
|
|
}
|