diff options
Diffstat (limited to 'dist/util/checkToken.js')
-rw-r--r-- | dist/util/checkToken.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/dist/util/checkToken.js b/dist/util/checkToken.js new file mode 100644 index 00000000..17d88178 --- /dev/null +++ b/dist/util/checkToken.js @@ -0,0 +1,20 @@ +"use strict"; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.checkToken = void 0; +const Constants_1 = require("./Constants"); +const jsonwebtoken_1 = __importDefault(require("jsonwebtoken")); +const Config_1 = __importDefault(require("./Config")); +function checkToken(token) { + return new Promise((res, rej) => { + jsonwebtoken_1.default.verify(token, Config_1.default.getAll().api.security.jwtSecret, Constants_1.JWTOptions, (err, decoded) => { + if (err || !decoded) + return rej("Invalid Token"); + return res(decoded); + }); + }); +} +exports.checkToken = checkToken; +//# sourceMappingURL=checkToken.js.map \ No newline at end of file |