1
0
Fork 0
mirror of synced 2024-07-06 15:00:49 +12:00
budibase/packages/server/middleware/authenticated.js
2020-05-04 17:13:57 +01:00

21 lines
511 B
JavaScript

const jwt = require("jsonwebtoken");
module.exports = async (ctx, next) => {
if (!ctx.headers.authorization) {
ctx.isAuthenticated = false
await next();
return;
};
// if (!ctx.headers.authorization) ctx.throw(403, "No token provided");
const [_, token] = ctx.headers.authorization.split(" ");
try {
ctx.request.jwtPayload = jwt.verify(token, ctx.config.jwtSecret);
ctx.isAuthenticated = true;
} catch (err) {
ctx.throw(err.status || 403, err.text);
}
await next();
};