currentapp being set correctly for user
This commit is contained in:
parent
3226ee90e2
commit
d72a6dc8df
|
@ -6,6 +6,7 @@ exports.StaticDatabases = {
|
||||||
|
|
||||||
const DocumentTypes = {
|
const DocumentTypes = {
|
||||||
USER: "us",
|
USER: "us",
|
||||||
|
APP: "app",
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.DocumentTypes = DocumentTypes
|
exports.DocumentTypes = DocumentTypes
|
||||||
|
@ -13,6 +14,8 @@ exports.DocumentTypes = DocumentTypes
|
||||||
const UNICODE_MAX = "\ufff0"
|
const UNICODE_MAX = "\ufff0"
|
||||||
const SEPARATOR = "_"
|
const SEPARATOR = "_"
|
||||||
|
|
||||||
|
exports.SEPARATOR = SEPARATOR
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generates a new user ID based on the passed in email.
|
* Generates a new user ID based on the passed in email.
|
||||||
* @param {string} email The email which the ID is going to be built up of.
|
* @param {string} email The email which the ID is going to be built up of.
|
||||||
|
|
|
@ -16,6 +16,6 @@ module.exports = async (ctx, next) => {
|
||||||
|
|
||||||
await next()
|
await next()
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
ctx.throw(err.status || 403, err.text)
|
ctx.throw(err.status || 403, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,13 +3,18 @@ import api from "../../builderStore/api"
|
||||||
|
|
||||||
async function checkAuth() {
|
async function checkAuth() {
|
||||||
const response = await api.get("/api/self")
|
const response = await api.get("/api/self")
|
||||||
return await response.json()
|
const user = await response.json()
|
||||||
|
if (response.status === 200) return user
|
||||||
|
|
||||||
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
export function createAuthStore() {
|
export function createAuthStore() {
|
||||||
const { subscribe, set } = writable({})
|
const { subscribe, set } = writable({})
|
||||||
|
|
||||||
checkAuth().then(user => set({ user }))
|
checkAuth()
|
||||||
|
.then(user => set({ user }))
|
||||||
|
.catch(err => set({ user: null }))
|
||||||
|
|
||||||
return {
|
return {
|
||||||
subscribe,
|
subscribe,
|
||||||
|
|
|
@ -1,73 +0,0 @@
|
||||||
// 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
|
|
||||||
// }
|
|
||||||
|
|
||||||
// // 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) {
|
|
||||||
// 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)
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// await next()
|
|
||||||
// }
|
|
|
@ -2,11 +2,6 @@ const { getAppId, setCookie, getCookie, Cookies } = require("@budibase/auth")
|
||||||
const { getGlobalUsers } = require("../utilities/workerRequests")
|
const { getGlobalUsers } = require("../utilities/workerRequests")
|
||||||
const { BUILTIN_ROLE_IDS } = require("../utilities/security/roles")
|
const { BUILTIN_ROLE_IDS } = require("../utilities/security/roles")
|
||||||
|
|
||||||
function CurrentAppCookie(appId, roleId) {
|
|
||||||
this.appId = appId
|
|
||||||
this.roleId = roleId
|
|
||||||
}
|
|
||||||
|
|
||||||
function finish(ctx, next, { appId, roleId, cookie = false }) {
|
function finish(ctx, next, { appId, roleId, cookie = false }) {
|
||||||
if (appId) {
|
if (appId) {
|
||||||
ctx.appId = appId
|
ctx.appId = appId
|
||||||
|
@ -15,7 +10,7 @@ function finish(ctx, next, { appId, roleId, cookie = false }) {
|
||||||
ctx.roleId = roleId
|
ctx.roleId = roleId
|
||||||
}
|
}
|
||||||
if (cookie && appId) {
|
if (cookie && appId) {
|
||||||
setCookie(ctx, new CurrentAppCookie(appId, roleId), Cookies.CurrentApp)
|
setCookie(ctx, { appId, roleId }, Cookies.CurrentApp)
|
||||||
}
|
}
|
||||||
return next()
|
return next()
|
||||||
}
|
}
|
||||||
|
@ -37,10 +32,7 @@ module.exports = async (ctx, next) => {
|
||||||
updateCookie = true
|
updateCookie = true
|
||||||
appId = requestAppId
|
appId = requestAppId
|
||||||
roleId = BUILTIN_ROLE_IDS.PUBLIC
|
roleId = BUILTIN_ROLE_IDS.PUBLIC
|
||||||
} else if (
|
} else if (requestAppId != null) {
|
||||||
requestAppId != null &&
|
|
||||||
(appCookie == null || requestAppId === appCookie.appId)
|
|
||||||
) {
|
|
||||||
const globalUser = await getGlobalUsers(ctx, requestAppId, ctx.user.email)
|
const globalUser = await getGlobalUsers(ctx, requestAppId, ctx.user.email)
|
||||||
updateCookie = true
|
updateCookie = true
|
||||||
appId = requestAppId
|
appId = requestAppId
|
||||||
|
|
|
@ -66,7 +66,7 @@ describe("Authenticated middleware", () => {
|
||||||
await config.executeMiddleware()
|
await config.executeMiddleware()
|
||||||
|
|
||||||
expect(config.ctx.cookies.set).toHaveBeenCalledWith(
|
expect(config.ctx.cookies.set).toHaveBeenCalledWith(
|
||||||
"budibase:currentapp:local",
|
"budibase:currentapp",
|
||||||
appId,
|
appId,
|
||||||
expect.any(Object)
|
expect.any(Object)
|
||||||
)
|
)
|
||||||
|
|
|
@ -22,7 +22,7 @@ module.exports = async (ctx, appId, version) => {
|
||||||
|
|
||||||
// set the builder token
|
// set the builder token
|
||||||
// setCookie(ctx, token, "builder")
|
// setCookie(ctx, token, "builder")
|
||||||
setCookie(ctx, appId, "currentapp")
|
// setCookie(ctx, appId, "currentapp")
|
||||||
// need to clear all app tokens or else unable to use the app in the builder
|
// need to clear all app tokens or else unable to use the app in the builder
|
||||||
// let allDbNames = await CouchDB.allDbs()
|
// let allDbNames = await CouchDB.allDbs()
|
||||||
// allDbNames.map(dbName => {
|
// allDbNames.map(dbName => {
|
||||||
|
|
|
@ -11,7 +11,7 @@ function getAppRole(appId, user) {
|
||||||
if (!user.roleId) {
|
if (!user.roleId) {
|
||||||
user.roleId = BUILTIN_ROLE_IDS.PUBLIC
|
user.roleId = BUILTIN_ROLE_IDS.PUBLIC
|
||||||
}
|
}
|
||||||
delete user.roles
|
// delete user.roles
|
||||||
return user
|
return user
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue