2017-10-25 04:35:25 +00:00
|
|
|
<?php
|
|
|
|
|
2018-01-20 01:58:57 +00:00
|
|
|
namespace Pterodactyl\Http\Controllers\Api\Remote;
|
2017-10-25 04:35:25 +00:00
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Http\JsonResponse;
|
2020-04-25 18:48:49 +00:00
|
|
|
use Pterodactyl\Models\Permission;
|
2017-10-25 04:35:25 +00:00
|
|
|
use Pterodactyl\Http\Controllers\Controller;
|
|
|
|
use Illuminate\Foundation\Auth\ThrottlesLogins;
|
2020-04-25 18:48:49 +00:00
|
|
|
use Pterodactyl\Repositories\Eloquent\UserRepository;
|
|
|
|
use Pterodactyl\Exceptions\Http\HttpForbiddenException;
|
|
|
|
use Pterodactyl\Repositories\Eloquent\ServerRepository;
|
|
|
|
use Pterodactyl\Services\Servers\GetUserPermissionsService;
|
|
|
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
2018-01-20 02:01:56 +00:00
|
|
|
use Pterodactyl\Http\Requests\Api\Remote\SftpAuthenticationFormRequest;
|
2020-09-13 20:54:41 +00:00
|
|
|
use Symfony\Component\HttpKernel\Exception\TooManyRequestsHttpException;
|
2017-10-25 04:35:25 +00:00
|
|
|
|
2019-12-08 00:14:04 +00:00
|
|
|
class SftpAuthenticationController extends Controller
|
2017-10-25 04:35:25 +00:00
|
|
|
{
|
|
|
|
use ThrottlesLogins;
|
|
|
|
|
2021-03-05 17:03:12 +00:00
|
|
|
private UserRepository $userRepository;
|
|
|
|
private ServerRepository $serverRepository;
|
|
|
|
private GetUserPermissionsService $permissionsService;
|
2017-10-25 04:35:25 +00:00
|
|
|
|
|
|
|
/**
|
2021-03-05 17:03:12 +00:00
|
|
|
* SftpAuthenticationController constructor.
|
2017-10-25 04:35:25 +00:00
|
|
|
*/
|
2020-04-25 18:48:49 +00:00
|
|
|
public function __construct(
|
|
|
|
UserRepository $userRepository,
|
2021-03-05 17:03:12 +00:00
|
|
|
ServerRepository $serverRepository,
|
|
|
|
GetUserPermissionsService $permissionsService
|
2020-04-25 18:48:49 +00:00
|
|
|
) {
|
|
|
|
$this->userRepository = $userRepository;
|
|
|
|
$this->serverRepository = $serverRepository;
|
|
|
|
$this->permissionsService = $permissionsService;
|
2017-10-25 04:35:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Authenticate a set of credentials and return the associated server details
|
|
|
|
* for a SFTP connection on the daemon.
|
|
|
|
*
|
2020-04-25 18:48:49 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
2017-10-25 04:35:25 +00:00
|
|
|
*/
|
2019-12-08 00:14:04 +00:00
|
|
|
public function __invoke(SftpAuthenticationFormRequest $request): JsonResponse
|
2017-10-25 04:35:25 +00:00
|
|
|
{
|
2019-12-08 00:14:04 +00:00
|
|
|
// Reverse the string to avoid issues with usernames that contain periods.
|
2018-02-11 22:39:50 +00:00
|
|
|
$parts = explode('.', strrev($request->input('username')), 2);
|
2019-12-08 00:14:04 +00:00
|
|
|
|
|
|
|
// Unreverse the strings after parsing them apart.
|
2018-02-11 22:39:50 +00:00
|
|
|
$connection = [
|
|
|
|
'username' => strrev(array_get($parts, 1)),
|
|
|
|
'server' => strrev(array_get($parts, 0)),
|
|
|
|
];
|
|
|
|
|
2017-10-25 04:35:25 +00:00
|
|
|
if ($this->hasTooManyLoginAttempts($request)) {
|
2020-09-13 20:54:41 +00:00
|
|
|
$seconds = $this->limiter()->availableIn($this->throttleKey($request));
|
|
|
|
|
2021-01-23 20:33:34 +00:00
|
|
|
throw new TooManyRequestsHttpException($seconds, "Too many login attempts for this account, please try again in {$seconds} seconds.");
|
2017-10-25 04:35:25 +00:00
|
|
|
}
|
|
|
|
|
2020-04-25 18:48:49 +00:00
|
|
|
/** @var \Pterodactyl\Models\Node $node */
|
|
|
|
$node = $request->attributes->get('node');
|
|
|
|
if (empty($connection['server'])) {
|
2021-01-23 20:33:34 +00:00
|
|
|
throw new NotFoundHttpException();
|
2020-04-25 18:48:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** @var \Pterodactyl\Models\User $user */
|
|
|
|
$user = $this->userRepository->findFirstWhere([
|
|
|
|
['username', '=', $connection['username']],
|
|
|
|
]);
|
|
|
|
|
|
|
|
$server = $this->serverRepository->getByUuid($connection['server'] ?? '');
|
2021-01-23 20:33:34 +00:00
|
|
|
if (!password_verify($request->input('password'), $user->password) || $server->node_id !== $node->id) {
|
2020-09-13 20:54:41 +00:00
|
|
|
$this->incrementLoginAttempts($request);
|
|
|
|
|
2021-01-23 20:33:34 +00:00
|
|
|
throw new HttpForbiddenException('Authorization credentials were not correct, please try again.');
|
2020-04-25 18:48:49 +00:00
|
|
|
}
|
2017-10-25 04:35:25 +00:00
|
|
|
|
2021-01-23 20:33:34 +00:00
|
|
|
if (!$user->root_admin && $server->owner_id !== $user->id) {
|
2020-04-25 18:48:49 +00:00
|
|
|
$permissions = $this->permissionsService->handle($server, $user);
|
|
|
|
|
2021-01-23 20:33:34 +00:00
|
|
|
if (!in_array(Permission::ACTION_FILE_SFTP, $permissions)) {
|
|
|
|
throw new HttpForbiddenException('You do not have permission to access SFTP for this server.');
|
2020-04-25 18:48:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-30 21:28:31 +00:00
|
|
|
$server->validateCurrentState();
|
2017-10-25 04:35:25 +00:00
|
|
|
|
2020-12-16 16:34:47 +00:00
|
|
|
return new JsonResponse([
|
2020-04-25 18:48:49 +00:00
|
|
|
'server' => $server->uuid,
|
|
|
|
// Deprecated, but still needed at the moment for Wings.
|
|
|
|
'token' => '',
|
|
|
|
'permissions' => $permissions ?? ['*'],
|
|
|
|
]);
|
2017-10-25 04:35:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the throttle key for the given request.
|
|
|
|
*/
|
2020-12-17 17:34:26 +00:00
|
|
|
protected function throttleKey(Request $request): string
|
2017-10-25 04:35:25 +00:00
|
|
|
{
|
2019-12-08 00:14:04 +00:00
|
|
|
$username = explode('.', strrev($request->input('username', '')));
|
|
|
|
|
|
|
|
return strtolower(strrev($username[0] ?? '') . '|' . $request->ip());
|
2017-10-25 04:35:25 +00:00
|
|
|
}
|
|
|
|
}
|