summary refs log tree commit diff
path: root/src/util/util/Token.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/util/Token.ts')
-rw-r--r--src/util/util/Token.ts11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/util/util/Token.ts b/src/util/util/Token.ts
index 5a3922d1..d192a13a 100644
--- a/src/util/util/Token.ts
+++ b/src/util/util/Token.ts
@@ -1,6 +1,6 @@
 import jwt, { VerifyOptions } from "jsonwebtoken";
-import { Config } from "./Config";
 import { User } from "../entities";
+import { Config } from "./Config";
 
 export const JWTOptions: VerifyOptions = { algorithms: ["HS256"] };
 
@@ -11,18 +11,17 @@ export function checkToken(token: string, jwtSecret: string): Promise<any> {
 		in fosscord, even with instances that have bot distinction; we won't enforce "Bot" prefix,
 		as we don't really have separate pathways for bots 
 		**/
-		
+
 		jwt.verify(token, jwtSecret, JWTOptions, async (err, decoded: any) => {
 			if (err || !decoded) return rej("Invalid Token");
 
 			const user = await User.findOne({
 				where: { id: decoded.id },
-				select: ["data", "bot", "disabled", "deleted", "rights"] 
+				select: ["data", "bot", "disabled", "deleted", "rights"]
 			});
 			if (!user) return rej("Invalid Token");
 			// we need to round it to seconds as it saved as seconds in jwt iat and valid_tokens_since is stored in milliseconds
-			if (decoded.iat * 1000 < new Date(user.data.valid_tokens_since).setSeconds(0, 0))
-				return rej("Invalid Token");
+			if (decoded.iat * 1000 < new Date(user.data.valid_tokens_since).setSeconds(0, 0)) return rej("Invalid Token");
 			if (user.disabled) return rej("User disabled");
 			if (user.deleted) return rej("User not found");
 
@@ -40,7 +39,7 @@ export async function generateToken(id: string) {
 			{ id: id, iat },
 			Config.get().security.jwtSecret,
 			{
-				algorithm,
+				algorithm
 			},
 			(err, token) => {
 				if (err) return rej(err);