1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-22 02:31:36 +02:00

Merge branch 'fosscord:master' into master

This commit is contained in:
Diego Magdaleno 2021-05-22 22:21:25 -05:00
commit 05b4e4af35
4 changed files with 7 additions and 8 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@fosscord/server-util",
"version": "1.2.7",
"version": "1.2.8",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@fosscord/server-util",
"version": "1.2.7",
"version": "1.2.8",
"license": "ISC",
"dependencies": {
"@types/jsonwebtoken": "^8.5.0",

View File

@ -1,6 +1,6 @@
{
"name": "@fosscord/server-util",
"version": "1.2.7",
"version": "1.2.8",
"description": "Utility functions for the all server repositories",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@ -4,7 +4,7 @@ export * as Constants from "./util/Constants";
export * from "./models/index";
export * from "./util/index";
import Config, { DefaultOptions } from "./util/Config";
import Config from "./util/Config";
import db, { MongooseCache, toObject } from "./util/Database";
export { Config, db, DefaultOptions, MongooseCache, toObject };
export { Config, db, MongooseCache, toObject };

View File

@ -1,10 +1,9 @@
import { JWTOptions } from "./Constants";
import jwt from "jsonwebtoken";
import Config from "./Config";
export function checkToken(token: string): Promise<any> {
export function checkToken(token: string, jwtSecret: string): Promise<any> {
return new Promise((res, rej) => {
jwt.verify(token, Config.getAll()?.api?.security?.jwtSecret, JWTOptions, (err, decoded: any) => {
jwt.verify(token, jwtSecret, JWTOptions, (err, decoded: any) => {
if (err || !decoded) return rej("Invalid Token");
return res(decoded);