1
0
Fork 0
mirror of synced 2024-09-28 15:21:28 +12:00

Another quick fix for apps to work again.

This commit is contained in:
Michael Drury 2020-11-19 20:42:49 +00:00
parent 7f3f11c68b
commit b75bf13edc

View file

@ -23,12 +23,10 @@ module.exports = async (ctx, next) => {
appId = cookieAppId
}
let token
if (isClient(ctx)) {
ctx.auth.authenticated = AuthTypes.APP
token = ctx.cookies.get(getCookieName(appId))
} else {
ctx.auth.authenticated = AuthTypes.BUILDER
let token = ctx.cookies.get(getCookieName(appId))
let authType = AuthTypes.APP
if (!token && !isClient(ctx)) {
authType = AuthTypes.BUILDER
token = ctx.cookies.get(getCookieName())
}
@ -44,6 +42,7 @@ module.exports = async (ctx, next) => {
}
try {
ctx.auth.authenticated = authType
const jwtPayload = jwt.verify(token, ctx.config.jwtSecret)
ctx.appId = appId
ctx.auth.apiKey = jwtPayload.apiKey