2021-11-15 14:48:26 +01:00
|
|
|
const {
|
|
|
|
getUserRoleHierarchy,
|
|
|
|
getRequiredResourceRole,
|
|
|
|
BUILTIN_ROLE_IDS,
|
2022-01-10 20:33:00 +01:00
|
|
|
} = require("@budibase/backend-core/roles")
|
2020-11-12 18:06:55 +01:00
|
|
|
const {
|
|
|
|
PermissionTypes,
|
2021-02-08 18:52:22 +01:00
|
|
|
doesHaveBasePermission,
|
2022-01-10 20:33:00 +01:00
|
|
|
} = require("@budibase/backend-core/permissions")
|
2021-05-21 14:07:10 +02:00
|
|
|
const builderMiddleware = require("./builder")
|
2021-11-03 15:08:47 +01:00
|
|
|
const { isWebhookEndpoint } = require("./utils")
|
2020-11-11 18:34:15 +01:00
|
|
|
|
2021-02-08 18:52:22 +01:00
|
|
|
function hasResource(ctx) {
|
|
|
|
return ctx.resourceId != null
|
|
|
|
}
|
|
|
|
|
2021-06-15 20:39:40 +02:00
|
|
|
module.exports =
|
|
|
|
(permType, permLevel = null) =>
|
|
|
|
async (ctx, next) => {
|
|
|
|
// webhooks don't need authentication, each webhook unique
|
2021-11-04 15:53:03 +01:00
|
|
|
// also internal requests (between services) don't need authorized
|
2021-11-08 18:28:32 +01:00
|
|
|
if (isWebhookEndpoint(ctx) || ctx.internal) {
|
2021-06-15 20:39:40 +02:00
|
|
|
return next()
|
|
|
|
}
|
2020-10-12 12:57:37 +02:00
|
|
|
|
2021-06-15 20:39:40 +02:00
|
|
|
if (!ctx.user) {
|
|
|
|
return ctx.throw(403, "No user info found")
|
|
|
|
}
|
2020-06-18 17:59:31 +02:00
|
|
|
|
2021-06-15 20:39:40 +02:00
|
|
|
// check general builder stuff, this middleware is a good way
|
|
|
|
// to find API endpoints which are builder focused
|
|
|
|
await builderMiddleware(ctx, permType)
|
2020-05-27 18:23:01 +02:00
|
|
|
|
2021-06-15 20:39:40 +02:00
|
|
|
const isAuthed = ctx.isAuthenticated
|
|
|
|
// builders for now have permission to do anything
|
|
|
|
let isBuilder = ctx.user && ctx.user.builder && ctx.user.builder.global
|
|
|
|
const isBuilderApi = permType === PermissionTypes.BUILDER
|
|
|
|
if (isBuilder) {
|
|
|
|
return next()
|
|
|
|
} else if (isBuilderApi && !isBuilder) {
|
|
|
|
return ctx.throw(403, "Not Authorized")
|
|
|
|
}
|
2021-02-09 18:24:36 +01:00
|
|
|
|
2021-11-15 14:48:26 +01:00
|
|
|
// need to check this first, in-case public access, don't check authed until last
|
|
|
|
const roleId = ctx.roleId || BUILTIN_ROLE_IDS.PUBLIC
|
2022-01-27 19:18:31 +01:00
|
|
|
const hierarchy = await getUserRoleHierarchy(roleId, {
|
2021-11-15 14:48:26 +01:00
|
|
|
idOnly: false,
|
|
|
|
})
|
|
|
|
const permError = "User does not have permission"
|
2021-11-15 16:26:09 +01:00
|
|
|
let possibleRoleIds = []
|
2021-11-15 14:48:26 +01:00
|
|
|
if (hasResource(ctx)) {
|
2022-01-27 19:18:31 +01:00
|
|
|
possibleRoleIds = await getRequiredResourceRole(permLevel, ctx)
|
2021-11-15 14:48:26 +01:00
|
|
|
}
|
|
|
|
// check if we found a role, if not fallback to base permissions
|
2021-11-15 16:26:09 +01:00
|
|
|
if (possibleRoleIds.length > 0) {
|
|
|
|
const found = hierarchy.find(
|
|
|
|
role => possibleRoleIds.indexOf(role._id) !== -1
|
|
|
|
)
|
2021-11-15 14:48:26 +01:00
|
|
|
return found ? next() : ctx.throw(403, permError)
|
|
|
|
} else if (!doesHaveBasePermission(permType, permLevel, hierarchy)) {
|
|
|
|
ctx.throw(403, permError)
|
2021-06-15 20:39:40 +02:00
|
|
|
}
|
2020-05-27 18:23:01 +02:00
|
|
|
|
2021-11-15 14:48:26 +01:00
|
|
|
// if they are not authed, then anything using the authorized middleware will fail
|
2021-06-15 20:39:40 +02:00
|
|
|
if (!isAuthed) {
|
|
|
|
ctx.throw(403, "Session not authenticated")
|
|
|
|
}
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|