Improved consistency and fixed veriFyToken function
This commit is contained in:
@@ -1,8 +1,7 @@
|
||||
/* eslint-disable no-undef */
|
||||
import jwt from 'jsonwebtoken';
|
||||
import { Level } from 'level';
|
||||
import { pool } from './databaseManager';
|
||||
import { respondWithStatus } from './requestHandler';
|
||||
import { userExists } from './permissionManager';
|
||||
|
||||
const db = new Level('tokens', { valueEncoding: 'json' });
|
||||
|
||||
@@ -21,8 +20,10 @@ export async function verifyToken(req, res, next) {
|
||||
const decoded = jwt.verify(token, process.env.JWT_SECRET);
|
||||
req.userId = decoded.userId;
|
||||
|
||||
if (!userExists(userId)) return await respondWithStatus(res, 404, 'User not found');
|
||||
const passwordMatch = await Bun.password.verify(decoded.password, rows[0].password);
|
||||
const [user] = await pool.execute('SELECT * FROM users WHERE id = ? LIMIT 1', [req.userId]);
|
||||
if (user.length === 0) return await respondWithStatus(res, 404, 'User not found');
|
||||
|
||||
const passwordMatch = await Bun.password.verify(decoded.password, user[0].password);
|
||||
if (!passwordMatch) return await respondWithStatus(res, 401, 'Token is invalid');
|
||||
const tokenStatus = await db.get(token);
|
||||
if (tokenStatus != 'valid') {
|
||||
|
||||
Reference in New Issue
Block a user