2021-04-09 16:11:49 +02:00
|
|
|
const fetch = require("node-fetch")
|
|
|
|
const env = require("../environment")
|
|
|
|
const { checkSlashesInUrl } = require("./index")
|
2021-05-14 16:43:41 +02:00
|
|
|
const { BUILTIN_ROLE_IDS } = require("@budibase/auth/roles")
|
2021-05-17 15:20:19 +02:00
|
|
|
const { getDeployedAppID } = require("@budibase/auth/db")
|
2021-05-19 16:55:00 +02:00
|
|
|
const { getGlobalIDFromUserMetadataID } = require("../db/utils")
|
2021-04-09 16:11:49 +02:00
|
|
|
|
|
|
|
function getAppRole(appId, user) {
|
|
|
|
if (!user.roles) {
|
|
|
|
return user
|
|
|
|
}
|
2021-05-28 19:54:30 +02:00
|
|
|
// always use the deployed app
|
|
|
|
user.roleId = user.roles[getDeployedAppID(appId)]
|
2021-04-09 16:11:49 +02:00
|
|
|
if (!user.roleId) {
|
|
|
|
user.roleId = BUILTIN_ROLE_IDS.PUBLIC
|
|
|
|
}
|
2021-04-15 16:57:55 +02:00
|
|
|
delete user.roles
|
2021-04-09 16:11:49 +02:00
|
|
|
return user
|
|
|
|
}
|
|
|
|
|
2021-04-15 16:57:55 +02:00
|
|
|
function request(ctx, request) {
|
2021-04-09 16:11:49 +02:00
|
|
|
if (!request.headers) {
|
|
|
|
request.headers = {}
|
|
|
|
}
|
2021-05-10 14:18:05 +02:00
|
|
|
if (request.body && Object.keys(request.body).length > 0) {
|
2021-04-09 16:11:49 +02:00
|
|
|
request.headers["Content-Type"] = "application/json"
|
|
|
|
request.body =
|
|
|
|
typeof request.body === "object"
|
|
|
|
? JSON.stringify(request.body)
|
|
|
|
: request.body
|
2021-05-10 14:18:05 +02:00
|
|
|
} else {
|
|
|
|
delete request.body
|
2021-04-09 16:11:49 +02:00
|
|
|
}
|
2021-05-11 13:02:29 +02:00
|
|
|
if (ctx && ctx.headers) {
|
2021-04-09 18:33:21 +02:00
|
|
|
request.headers.cookie = ctx.headers.cookie
|
|
|
|
}
|
2021-04-09 16:11:49 +02:00
|
|
|
return request
|
|
|
|
}
|
|
|
|
|
2021-04-15 16:57:55 +02:00
|
|
|
exports.request = request
|
|
|
|
|
2021-05-11 16:08:59 +02:00
|
|
|
exports.sendSmtpEmail = async (to, from, subject, contents) => {
|
2021-05-11 13:02:29 +02:00
|
|
|
const response = await fetch(
|
2021-05-11 16:08:59 +02:00
|
|
|
checkSlashesInUrl(env.WORKER_URL + `/api/admin/email/send`),
|
2021-05-11 13:02:29 +02:00
|
|
|
request(null, {
|
|
|
|
method: "POST",
|
|
|
|
headers: {
|
2021-05-11 16:23:03 +02:00
|
|
|
"x-budibase-api-key": env.INTERNAL_API_KEY,
|
2021-05-11 13:02:29 +02:00
|
|
|
},
|
2021-05-11 16:08:59 +02:00
|
|
|
body: {
|
|
|
|
email: to,
|
|
|
|
from,
|
|
|
|
contents,
|
|
|
|
subject,
|
|
|
|
purpose: "custom",
|
|
|
|
},
|
2021-05-11 13:02:29 +02:00
|
|
|
})
|
|
|
|
)
|
2021-05-11 16:08:59 +02:00
|
|
|
|
2021-06-01 16:58:40 +02:00
|
|
|
if (response.status !== 200) {
|
2021-05-11 16:08:59 +02:00
|
|
|
throw "Unable to send email."
|
|
|
|
}
|
2021-06-01 16:58:40 +02:00
|
|
|
return response.json()
|
2021-05-11 13:02:29 +02:00
|
|
|
}
|
|
|
|
|
2021-05-04 12:32:22 +02:00
|
|
|
exports.getDeployedApps = async ctx => {
|
2021-04-09 16:11:49 +02:00
|
|
|
try {
|
|
|
|
const response = await fetch(
|
|
|
|
checkSlashesInUrl(env.WORKER_URL + `/api/apps`),
|
2021-04-15 16:57:55 +02:00
|
|
|
request(ctx, {
|
2021-04-09 16:11:49 +02:00
|
|
|
method: "GET",
|
|
|
|
})
|
|
|
|
)
|
|
|
|
const json = await response.json()
|
|
|
|
const apps = {}
|
|
|
|
for (let [key, value] of Object.entries(json)) {
|
|
|
|
if (value.url) {
|
|
|
|
value.url = value.url.toLowerCase()
|
|
|
|
apps[key] = value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return apps
|
|
|
|
} catch (err) {
|
|
|
|
// error, cannot determine deployed apps, don't stop app creation - sort this later
|
|
|
|
return {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-19 17:26:33 +02:00
|
|
|
exports.deleteGlobalUser = async (ctx, globalId) => {
|
|
|
|
const endpoint = `/api/admin/users/${globalId}`
|
2021-04-09 16:11:49 +02:00
|
|
|
const reqCfg = { method: "DELETE" }
|
|
|
|
const response = await fetch(
|
|
|
|
checkSlashesInUrl(env.WORKER_URL + endpoint),
|
2021-04-15 16:57:55 +02:00
|
|
|
request(ctx, reqCfg)
|
2021-04-09 16:11:49 +02:00
|
|
|
)
|
|
|
|
return response.json()
|
|
|
|
}
|
|
|
|
|
2021-04-19 17:26:33 +02:00
|
|
|
exports.getGlobalUsers = async (ctx, appId = null, globalId = null) => {
|
|
|
|
const endpoint = globalId
|
|
|
|
? `/api/admin/users/${globalId}`
|
|
|
|
: `/api/admin/users`
|
2021-04-09 16:11:49 +02:00
|
|
|
const reqCfg = { method: "GET" }
|
|
|
|
const response = await fetch(
|
|
|
|
checkSlashesInUrl(env.WORKER_URL + endpoint),
|
2021-04-15 16:57:55 +02:00
|
|
|
request(ctx, reqCfg)
|
2021-04-09 16:11:49 +02:00
|
|
|
)
|
|
|
|
let users = await response.json()
|
2021-04-15 16:57:55 +02:00
|
|
|
if (!appId) {
|
|
|
|
return users
|
|
|
|
}
|
2021-04-09 16:11:49 +02:00
|
|
|
if (Array.isArray(users)) {
|
2021-05-04 12:32:22 +02:00
|
|
|
users = users.map(user => getAppRole(appId, user))
|
2021-04-09 16:11:49 +02:00
|
|
|
} else {
|
|
|
|
users = getAppRole(appId, users)
|
|
|
|
}
|
|
|
|
return users
|
|
|
|
}
|
|
|
|
|
2021-05-27 15:53:41 +02:00
|
|
|
exports.getGlobalSelf = async (ctx, appId = null) => {
|
2021-05-19 16:09:57 +02:00
|
|
|
const endpoint = `/api/admin/users/self`
|
|
|
|
const response = await fetch(
|
|
|
|
checkSlashesInUrl(env.WORKER_URL + endpoint),
|
|
|
|
request(ctx, { method: "GET" })
|
|
|
|
)
|
2021-06-01 16:58:40 +02:00
|
|
|
if (response.status !== 200) {
|
2021-05-19 16:09:57 +02:00
|
|
|
ctx.throw(400, "Unable to get self globally.")
|
2021-04-09 16:11:49 +02:00
|
|
|
}
|
2021-06-01 16:58:40 +02:00
|
|
|
let json = await response.json()
|
2021-05-27 15:53:41 +02:00
|
|
|
if (appId) {
|
|
|
|
json = getAppRole(appId, json)
|
|
|
|
}
|
2021-05-19 16:09:57 +02:00
|
|
|
return json
|
|
|
|
}
|
|
|
|
|
2021-05-19 16:55:00 +02:00
|
|
|
exports.addAppRoleToUser = async (ctx, appId, roleId, userId = null) => {
|
|
|
|
let user,
|
|
|
|
endpoint,
|
|
|
|
body = {}
|
|
|
|
if (!userId) {
|
|
|
|
user = await exports.getGlobalSelf(ctx)
|
|
|
|
endpoint = `/api/admin/users/self`
|
|
|
|
} else {
|
|
|
|
userId = getGlobalIDFromUserMetadataID(userId)
|
|
|
|
user = await exports.getGlobalUsers(ctx, appId, userId)
|
|
|
|
body._id = userId
|
|
|
|
endpoint = `/api/admin/users`
|
|
|
|
}
|
|
|
|
body = {
|
|
|
|
...body,
|
|
|
|
roles: {
|
|
|
|
...user.roles,
|
2021-06-01 16:58:40 +02:00
|
|
|
[getDeployedAppID(appId)]: roleId,
|
2021-04-09 16:11:49 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
const response = await fetch(
|
|
|
|
checkSlashesInUrl(env.WORKER_URL + endpoint),
|
2021-05-19 16:55:00 +02:00
|
|
|
request(ctx, {
|
|
|
|
method: "POST",
|
|
|
|
body,
|
|
|
|
})
|
2021-04-09 16:11:49 +02:00
|
|
|
)
|
2021-06-01 16:58:40 +02:00
|
|
|
if (response.status !== 200) {
|
2021-05-19 16:09:57 +02:00
|
|
|
ctx.throw(400, "Unable to save self globally.")
|
2021-04-19 17:26:33 +02:00
|
|
|
}
|
2021-06-01 16:58:40 +02:00
|
|
|
return response.json()
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.removeAppFromUserRoles = async appId => {
|
|
|
|
const deployedAppId = getDeployedAppID(appId)
|
|
|
|
const response = await fetch(
|
|
|
|
checkSlashesInUrl(env.WORKER_URL + `/api/admin/roles/${deployedAppId}`),
|
|
|
|
request(null, {
|
|
|
|
method: "DELETE",
|
|
|
|
headers: {
|
|
|
|
"x-budibase-api-key": env.INTERNAL_API_KEY,
|
2021-06-01 17:02:20 +02:00
|
|
|
},
|
2021-06-01 16:58:40 +02:00
|
|
|
})
|
|
|
|
)
|
|
|
|
if (response.status !== 200) {
|
|
|
|
throw "Unable to remove app role"
|
|
|
|
}
|
|
|
|
return response.json()
|
2021-04-09 16:11:49 +02:00
|
|
|
}
|