2020-10-28 21:35:06 +01:00
|
|
|
const env = require("../environment")
|
2020-11-03 14:45:49 +01:00
|
|
|
const { DocumentTypes, SEPARATOR } = require("../db/utils")
|
2021-01-14 18:01:31 +01:00
|
|
|
const CouchDB = require("../db")
|
2020-11-03 14:45:49 +01:00
|
|
|
|
|
|
|
const APP_PREFIX = DocumentTypes.APP + SEPARATOR
|
2020-10-28 21:35:06 +01:00
|
|
|
|
2020-11-09 15:38:29 +01:00
|
|
|
function confirmAppId(possibleAppId) {
|
|
|
|
return possibleAppId && possibleAppId.startsWith(APP_PREFIX)
|
|
|
|
? possibleAppId
|
|
|
|
: undefined
|
|
|
|
}
|
|
|
|
|
2020-10-19 16:33:26 +02:00
|
|
|
exports.wait = ms => new Promise(resolve => setTimeout(resolve, ms))
|
2020-10-26 18:49:33 +01:00
|
|
|
|
2021-03-23 16:37:11 +01:00
|
|
|
exports.isDev = env.isDev
|
2020-11-02 16:46:08 +01:00
|
|
|
|
2020-11-02 21:14:10 +01:00
|
|
|
/**
|
|
|
|
* Given a request tries to find the appId, which can be located in various places
|
|
|
|
* @param {object} ctx The main request body to look through.
|
|
|
|
* @returns {string|undefined} If an appId was found it will be returned.
|
|
|
|
*/
|
2020-11-02 16:46:08 +01:00
|
|
|
exports.getAppId = ctx => {
|
2021-03-24 19:21:23 +01:00
|
|
|
const options = [ctx.headers["x-budibase-app-id"], ctx.params.appId]
|
|
|
|
if (ctx.subdomains) {
|
|
|
|
options.push(ctx.subdomains[1])
|
2020-11-03 14:45:49 +01:00
|
|
|
}
|
2021-03-24 19:21:23 +01:00
|
|
|
let appId
|
|
|
|
for (let option of options) {
|
|
|
|
appId = confirmAppId(option)
|
|
|
|
if (appId) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-02 21:14:10 +01:00
|
|
|
// look in body if can't find it in subdomain
|
|
|
|
if (!appId && ctx.request.body && ctx.request.body.appId) {
|
2020-11-09 15:38:29 +01:00
|
|
|
appId = confirmAppId(ctx.request.body.appId)
|
2020-11-02 21:14:10 +01:00
|
|
|
}
|
2020-11-03 14:45:49 +01:00
|
|
|
let appPath =
|
|
|
|
ctx.request.headers.referrer ||
|
|
|
|
ctx.path.split("/").filter(subPath => subPath.startsWith(APP_PREFIX))
|
|
|
|
if (!appId && appPath.length !== 0) {
|
2020-11-09 15:38:29 +01:00
|
|
|
appId = confirmAppId(appPath[0])
|
2020-11-02 21:14:10 +01:00
|
|
|
}
|
|
|
|
return appId
|
|
|
|
}
|
2020-11-02 16:46:08 +01:00
|
|
|
|
2020-11-02 21:14:10 +01:00
|
|
|
/**
|
|
|
|
* Get the name of the cookie which is to be updated/retrieved
|
2020-11-03 14:45:49 +01:00
|
|
|
* @param {string|undefined|null} name OPTIONAL can specify the specific app if previewing etc
|
2020-11-02 21:14:10 +01:00
|
|
|
* @returns {string} The name of the token trying to find
|
|
|
|
*/
|
2020-11-03 14:45:49 +01:00
|
|
|
exports.getCookieName = (name = "builder") => {
|
2021-03-24 19:21:23 +01:00
|
|
|
let environment = env.isProd() ? "cloud" : "local"
|
2020-11-03 14:45:49 +01:00
|
|
|
return `budibase:${name}:${environment}`
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store a cookie for the request, has a hardcoded expiry.
|
|
|
|
* @param {object} ctx The request which is to be manipulated.
|
|
|
|
* @param {string} name The name of the cookie to set.
|
|
|
|
* @param {string|object} value The value of cookie which will be set.
|
|
|
|
*/
|
2021-01-28 19:30:59 +01:00
|
|
|
exports.setCookie = (ctx, value, name = "builder") => {
|
2020-11-03 14:45:49 +01:00
|
|
|
const expires = new Date()
|
|
|
|
expires.setDate(expires.getDate() + 1)
|
|
|
|
|
2021-01-28 19:30:59 +01:00
|
|
|
const cookieName = exports.getCookieName(name)
|
|
|
|
if (!value) {
|
|
|
|
ctx.cookies.set(cookieName)
|
|
|
|
} else {
|
|
|
|
ctx.cookies.set(cookieName, value, {
|
|
|
|
expires,
|
|
|
|
path: "/",
|
|
|
|
httpOnly: false,
|
|
|
|
overwrite: true,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Utility function, simply calls setCookie with an empty string for value
|
|
|
|
*/
|
|
|
|
exports.clearCookie = (ctx, name) => {
|
|
|
|
exports.setCookie(ctx, "", name)
|
2020-11-02 16:46:08 +01:00
|
|
|
}
|
2020-11-19 21:16:37 +01:00
|
|
|
|
|
|
|
exports.isClient = ctx => {
|
|
|
|
return ctx.headers["x-budibase-type"] === "client"
|
|
|
|
}
|
2020-12-01 14:39:34 +01:00
|
|
|
|
2020-12-14 16:56:33 +01:00
|
|
|
exports.getLogoUrl = () => {
|
2021-01-11 19:09:43 +01:00
|
|
|
return "https://d33wubrfki0l68.cloudfront.net/aac32159d7207b5085e74a7ef67afbb7027786c5/2b1fd/img/logo/bb-emblem.svg"
|
2020-12-14 16:56:33 +01:00
|
|
|
}
|
2021-01-14 18:01:31 +01:00
|
|
|
|
|
|
|
exports.getAllApps = async () => {
|
|
|
|
let allDbs = await CouchDB.allDbs()
|
|
|
|
const appDbNames = allDbs.filter(dbName => dbName.startsWith(APP_PREFIX))
|
|
|
|
const appPromises = appDbNames.map(db => new CouchDB(db).get(db))
|
|
|
|
if (appPromises.length === 0) {
|
|
|
|
return []
|
|
|
|
} else {
|
|
|
|
const response = await Promise.allSettled(appPromises)
|
|
|
|
return response
|
|
|
|
.filter(result => result.status === "fulfilled")
|
|
|
|
.map(({ value }) => value)
|
|
|
|
}
|
|
|
|
}
|