2021-04-12 19:31:58 +02:00
|
|
|
const { getUserPermissions } = require("../utilities/security/roles")
|
2020-11-12 18:06:55 +01:00
|
|
|
const {
|
|
|
|
PermissionTypes,
|
2021-02-08 18:52:22 +01:00
|
|
|
doesHaveResourcePermission,
|
|
|
|
doesHaveBasePermission,
|
2020-11-12 18:06:55 +01:00
|
|
|
} = require("../utilities/security/permissions")
|
2020-11-11 18:34:15 +01:00
|
|
|
|
2021-02-08 18:52:22 +01:00
|
|
|
function hasResource(ctx) {
|
|
|
|
return ctx.resourceId != null
|
|
|
|
}
|
|
|
|
|
2021-04-12 19:31:58 +02:00
|
|
|
const WEBHOOK_ENDPOINTS = new RegExp(
|
|
|
|
["webhooks/trigger", "webhooks/schema"].join("|")
|
|
|
|
)
|
2020-10-12 12:57:37 +02:00
|
|
|
|
2021-04-12 19:31:58 +02:00
|
|
|
module.exports = (permType, permLevel = null) => async (ctx, next) => {
|
|
|
|
// webhooks don't need authentication, each webhook unique
|
|
|
|
if (WEBHOOK_ENDPOINTS.test(ctx.request.url)) {
|
|
|
|
return next()
|
2020-10-12 12:57:37 +02:00
|
|
|
}
|
|
|
|
|
2020-06-18 17:59:31 +02:00
|
|
|
if (!ctx.user) {
|
2021-03-09 12:27:12 +01:00
|
|
|
return ctx.throw(403, "No user info found")
|
2020-06-18 17:59:31 +02:00
|
|
|
}
|
|
|
|
|
2021-04-11 12:35:55 +02:00
|
|
|
const isAuthed = ctx.isAuthenticated
|
2021-03-22 17:39:11 +01:00
|
|
|
|
2021-02-08 18:52:22 +01:00
|
|
|
const { basePermissions, permissions } = await getUserPermissions(
|
|
|
|
ctx.appId,
|
2021-04-12 19:31:58 +02:00
|
|
|
ctx.roleId
|
2021-02-08 18:52:22 +01:00
|
|
|
)
|
2020-05-27 18:23:01 +02:00
|
|
|
|
2021-04-13 19:12:35 +02:00
|
|
|
let isBuilder = ctx.user && ctx.user.builder && ctx.user.builder.global
|
|
|
|
if (permType === PermissionTypes.BUILDER && isBuilder) {
|
2021-04-12 12:20:01 +02:00
|
|
|
return next()
|
2021-04-13 19:12:35 +02:00
|
|
|
} else if (permType === PermissionTypes.BUILDER && !isBuilder) {
|
2021-04-12 12:20:01 +02:00
|
|
|
return ctx.throw(403, "Not Authorized")
|
|
|
|
}
|
2020-05-27 18:23:01 +02:00
|
|
|
|
2021-02-09 17:01:02 +01:00
|
|
|
if (
|
|
|
|
hasResource(ctx) &&
|
|
|
|
doesHaveResourcePermission(permissions, permLevel, ctx)
|
|
|
|
) {
|
|
|
|
return next()
|
|
|
|
}
|
2021-02-08 18:52:22 +01:00
|
|
|
|
2021-02-09 18:24:36 +01:00
|
|
|
if (!isAuthed) {
|
|
|
|
ctx.throw(403, "Session not authenticated")
|
|
|
|
}
|
|
|
|
|
2021-02-08 18:52:22 +01:00
|
|
|
if (!doesHaveBasePermission(permType, permLevel, basePermissions)) {
|
2020-11-12 18:06:55 +01:00
|
|
|
ctx.throw(403, "User does not have permission")
|
|
|
|
}
|
2020-05-27 18:23:01 +02:00
|
|
|
|
2020-11-12 18:06:55 +01:00
|
|
|
return next()
|
2020-05-27 18:23:01 +02:00
|
|
|
}
|