mirror of https://github.com/Budibase/budibase.git
5 changed files with 93 additions and 89 deletions
@ -1,73 +1,73 @@ |
|||
const jwt = require("jsonwebtoken") |
|||
const STATUS_CODES = require("../utilities/statusCodes") |
|||
const { getRole, getBuiltinRoles } = require("../utilities/security/roles") |
|||
const { AuthTypes } = require("../constants") |
|||
const { |
|||
getAppId, |
|||
getCookieName, |
|||
clearCookie, |
|||
setCookie, |
|||
isClient, |
|||
} = require("../utilities") |
|||
// const jwt = require("jsonwebtoken")
|
|||
// const STATUS_CODES = require("../utilities/statusCodes")
|
|||
// const { getRole, getBuiltinRoles } = require("../utilities/security/roles")
|
|||
// const { AuthTypes } = require("../constants")
|
|||
// const {
|
|||
// getAppId,
|
|||
// getCookieName,
|
|||
// clearCookie,
|
|||
// setCookie,
|
|||
// isClient,
|
|||
// } = require("../utilities")
|
|||
|
|||
module.exports = async (ctx, next) => { |
|||
if (ctx.path === "/builder") { |
|||
await next() |
|||
return |
|||
} |
|||
// module.exports = async (ctx, next) => {
|
|||
// if (ctx.path === "/builder") {
|
|||
// await next()
|
|||
// return
|
|||
// }
|
|||
|
|||
// do everything we can to make sure the appId is held correctly
|
|||
// we hold it in state as a
|
|||
let appId = getAppId(ctx) |
|||
const cookieAppId = ctx.cookies.get(getCookieName("currentapp")) |
|||
const builtinRoles = getBuiltinRoles() |
|||
if (appId && cookieAppId !== appId) { |
|||
setCookie(ctx, appId, "currentapp") |
|||
} else if (cookieAppId) { |
|||
appId = cookieAppId |
|||
} |
|||
let token, authType |
|||
if (!isClient(ctx)) { |
|||
token = ctx.cookies.get(getCookieName()) |
|||
authType = AuthTypes.BUILDER |
|||
} |
|||
// // do everything we can to make sure the appId is held correctly
|
|||
// // we hold it in state as a
|
|||
// let appId = getAppId(ctx)
|
|||
// const cookieAppId = ctx.cookies.get(getCookieName("currentapp"))
|
|||
// const builtinRoles = getBuiltinRoles()
|
|||
// if (appId && cookieAppId !== appId) {
|
|||
// setCookie(ctx, appId, "currentapp")
|
|||
// } else if (cookieAppId) {
|
|||
// appId = cookieAppId
|
|||
// }
|
|||
// let token, authType
|
|||
// if (!isClient(ctx)) {
|
|||
// token = ctx.cookies.get(getCookieName())
|
|||
// authType = AuthTypes.BUILDER
|
|||
// }
|
|||
|
|||
if (!token && appId) { |
|||
token = ctx.cookies.get(getCookieName(appId)) |
|||
authType = AuthTypes.APP |
|||
} |
|||
// if (!token && appId) {
|
|||
// token = ctx.cookies.get(getCookieName(appId))
|
|||
// authType = AuthTypes.APP
|
|||
// }
|
|||
|
|||
if (!token) { |
|||
ctx.auth.authenticated = false |
|||
ctx.appId = appId |
|||
ctx.user = { |
|||
role: builtinRoles.PUBLIC, |
|||
} |
|||
await next() |
|||
return |
|||
} |
|||
// if (!token) {
|
|||
// ctx.auth.authenticated = false
|
|||
// ctx.appId = appId
|
|||
// ctx.user = {
|
|||
// role: builtinRoles.PUBLIC,
|
|||
// }
|
|||
// await next()
|
|||
// return
|
|||
// }
|
|||
|
|||
try { |
|||
ctx.auth.authenticated = authType |
|||
const jwtPayload = jwt.verify(token, ctx.config.jwtSecret) |
|||
ctx.appId = appId |
|||
ctx.auth.apiKey = jwtPayload.apiKey |
|||
ctx.user = { |
|||
...jwtPayload, |
|||
role: await getRole(appId, jwtPayload.roleId), |
|||
} |
|||
// appId no longer carried in user, make sure
|
|||
delete ctx.user.appId |
|||
} catch (err) { |
|||
console.log(err) |
|||
if (authType === AuthTypes.BUILDER) { |
|||
clearCookie(ctx) |
|||
ctx.status = 200 |
|||
return |
|||
} else { |
|||
ctx.throw(err.status || STATUS_CODES.FORBIDDEN, err.text) |
|||
} |
|||
} |
|||
// try {
|
|||
// ctx.auth.authenticated = authType
|
|||
// const jwtPayload = jwt.verify(token, ctx.config.jwtSecret)
|
|||
// ctx.appId = appId
|
|||
// ctx.auth.apiKey = jwtPayload.apiKey
|
|||
// ctx.user = {
|
|||
// ...jwtPayload,
|
|||
// role: await getRole(appId, jwtPayload.roleId),
|
|||
// }
|
|||
// // appId no longer carried in user, make sure
|
|||
// delete ctx.user.appId
|
|||
// } catch (err) {
|
|||
// console.log(err)
|
|||
// if (authType === AuthTypes.BUILDER) {
|
|||
// clearCookie(ctx)
|
|||
// ctx.status = 200
|
|||
// return
|
|||
// } else {
|
|||
// ctx.throw(err.status || STATUS_CODES.FORBIDDEN, err.text)
|
|||
// }
|
|||
// }
|
|||
|
|||
await next() |
|||
} |
|||
// await next()
|
|||
// }
|
|||
|
|||
Loading…
Reference in new issue