forked from Alex/Pterodactyl-Panel
api(remote): update sftp auth controller
This commit is contained in:
parent
f9114e2de0
commit
790f109e66
@ -70,8 +70,14 @@ class SftpAuthenticationController extends Controller
|
||||
['username', '=', $connection['username']],
|
||||
]);
|
||||
|
||||
if ($request->input('type') === 'publicKey') {
|
||||
$verified = true;
|
||||
} else {
|
||||
$verified = password_verify($request->input('password'), $user->password);
|
||||
}
|
||||
|
||||
$server = $this->serverRepository->getByUuid($connection['server'] ?? '');
|
||||
if (!password_verify($request->input('password'), $user->password) || $server->node_id !== $node->id) {
|
||||
if (!$verified || $server->node_id !== $node->id) {
|
||||
$this->incrementLoginAttempts($request);
|
||||
|
||||
throw new HttpForbiddenException('Authorization credentials were not correct, please try again.');
|
||||
@ -88,9 +94,8 @@ class SftpAuthenticationController extends Controller
|
||||
$server->validateCurrentState();
|
||||
|
||||
return new JsonResponse([
|
||||
'ssh_keys' => $user->sshKeys->pluck('public_key')->toArray(),
|
||||
'server' => $server->uuid,
|
||||
// Deprecated, but still needed at the moment for Wings.
|
||||
'token' => '',
|
||||
'permissions' => $permissions ?? ['*'],
|
||||
]);
|
||||
}
|
||||
|
@ -26,6 +26,7 @@ class SftpAuthenticationFormRequest extends FormRequest
|
||||
return [
|
||||
'username' => 'required|string',
|
||||
'password' => 'required|string',
|
||||
'type' => 'required|in:password,publicKey'
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -11,6 +11,7 @@ use Illuminate\Support\Facades\Route;
|
||||
|
|
||||
*/
|
||||
Route::post('/sftp/auth', 'SftpAuthenticationController');
|
||||
Route::put('/sftp/auth', 'SftpAuthenticationController@getSSHKeys');
|
||||
|
||||
Route::get('/servers', 'Servers\ServerDetailsController@list');
|
||||
Route::post('/servers/reset', 'Servers\ServerDetailsController@resetState');
|
||||
|
Loading…
Reference in New Issue
Block a user