1
0
Fork 0
mirror of synced 2024-06-14 16:35:02 +12:00
budibase/packages/server/src/api/controllers/query/index.js

203 lines
4.9 KiB
JavaScript
Raw Normal View History

const { processString } = require("@budibase/string-templates")
2021-12-03 04:20:03 +13:00
const CouchDB = require("../../../db")
const {
generateQueryID,
getQueryParams,
isProdAppID,
2021-12-03 04:20:03 +13:00
} = require("../../../db/utils")
const { BaseQueryVerbs } = require("../../../constants")
const { Thread, ThreadType } = require("../../../threads")
const { save: saveDatasource } = require("../datasource")
2021-12-01 22:48:52 +13:00
const { RestImporter } = require("./import")
const Runner = new Thread(ThreadType.QUERY, { timeoutMs: 10000 })
// simple function to append "readable" to all read queries
function enrichQueries(input) {
const wasArray = Array.isArray(input)
const queries = wasArray ? input : [input]
for (let query of queries) {
if (query.queryVerb === BaseQueryVerbs.READ) {
query.readable = true
}
}
return wasArray ? queries : queries[0]
}
2020-12-19 07:19:43 +13:00
2021-05-03 19:31:09 +12:00
exports.fetch = async function (ctx) {
const db = new CouchDB(ctx.appId)
2020-12-19 07:19:43 +13:00
2021-01-07 01:28:51 +13:00
const body = await db.allDocs(
getQueryParams(null, {
include_docs: true,
})
)
2021-11-26 06:14:07 +13:00
2021-05-04 22:32:22 +12:00
ctx.body = enrichQueries(body.rows.map(row => row.doc))
2021-01-07 01:28:51 +13:00
}
2020-12-19 07:19:43 +13:00
exports.import = async ctx => {
const body = ctx.request.body
const data = body.data
2021-12-01 22:48:52 +13:00
const importer = new RestImporter(data)
await importer.init()
let datasourceId
if (!body.datasourceId) {
// construct new datasource
2021-12-01 22:48:52 +13:00
const info = await importer.getInfo()
let datasource = {
type: "datasource",
source: "REST",
config: {
url: info.url,
2021-12-01 22:48:52 +13:00
defaultHeaders: [],
},
name: info.name,
}
// save the datasource
const datasourceCtx = { ...ctx }
datasourceCtx.request.body.datasource = datasource
await saveDatasource(datasourceCtx)
datasourceId = datasourceCtx.body.datasource._id
2021-11-26 22:51:56 +13:00
} else {
// use existing datasource
datasourceId = body.datasourceId
2021-11-26 06:14:07 +13:00
}
2021-12-01 22:48:52 +13:00
const importResult = await importer.importQueries(ctx.appId, datasourceId)
2021-11-26 06:14:07 +13:00
ctx.body = {
...importResult,
datasourceId,
2021-11-26 06:14:07 +13:00
}
ctx.status = 200
}
2021-05-03 19:31:09 +12:00
exports.save = async function (ctx) {
const db = new CouchDB(ctx.appId)
2021-01-07 01:28:51 +13:00
const query = ctx.request.body
2020-12-19 07:19:43 +13:00
2021-01-07 01:28:51 +13:00
if (!query._id) {
query._id = generateQueryID(query.datasourceId)
}
2020-12-19 07:19:43 +13:00
2021-01-07 01:28:51 +13:00
const response = await db.put(query)
query._rev = response.rev
2020-12-19 07:19:43 +13:00
2021-01-07 01:28:51 +13:00
ctx.body = query
ctx.message = `Query ${query.name} saved successfully.`
}
2020-12-19 07:19:43 +13:00
async function enrichQueryFields(fields, parameters = {}) {
2021-01-14 03:11:53 +13:00
const enrichedQuery = {}
2021-01-14 03:11:53 +13:00
// enrich the fields with dynamic parameters
for (let key of Object.keys(fields)) {
if (fields[key] == null) {
continue
}
2021-02-16 06:05:53 +13:00
if (typeof fields[key] === "object") {
// enrich nested fields object
enrichedQuery[key] = await enrichQueryFields(fields[key], parameters)
} else if (typeof fields[key] === "string") {
2021-02-16 06:05:53 +13:00
// enrich string value as normal
enrichedQuery[key] = await processString(fields[key], parameters, {
noHelpers: true,
})
} else {
enrichedQuery[key] = fields[key]
2021-02-16 06:05:53 +13:00
}
2021-01-12 06:18:22 +13:00
}
2021-02-16 08:57:49 +13:00
if (
enrichedQuery.json ||
enrichedQuery.customData ||
enrichedQuery.requestBody
) {
try {
enrichedQuery.json = JSON.parse(
2021-02-16 08:57:49 +13:00
enrichedQuery.json ||
enrichedQuery.customData ||
enrichedQuery.requestBody
)
} catch (err) {
// no json found, ignore
}
delete enrichedQuery.customData
}
2021-01-14 03:11:53 +13:00
return enrichedQuery
}
2020-12-19 07:19:43 +13:00
2021-05-03 19:31:09 +12:00
exports.find = async function (ctx) {
const db = new CouchDB(ctx.appId)
const query = enrichQueries(await db.get(ctx.params.queryId))
// remove properties that could be dangerous in real app
if (isProdAppID(ctx.appId)) {
delete query.fields
delete query.parameters
}
ctx.body = query
}
2021-05-03 19:31:09 +12:00
exports.preview = async function (ctx) {
const db = new CouchDB(ctx.appId)
2020-12-19 07:19:43 +13:00
2021-01-14 03:11:53 +13:00
const datasource = await db.get(ctx.request.body.datasourceId)
2020-12-19 07:19:43 +13:00
const { fields, parameters, queryVerb, transformer } = ctx.request.body
const enrichedQuery = await enrichQueryFields(fields, parameters)
try {
2021-12-07 07:35:44 +13:00
const { rows, keys, info, raw } = await Runner.run({
datasource,
queryVerb,
query: enrichedQuery,
transformer,
})
ctx.body = {
rows,
schemaFields: [...new Set(keys)],
info,
2021-12-07 07:35:44 +13:00
raw,
}
} catch (err) {
ctx.throw(400, err)
}
2021-01-07 01:28:51 +13:00
}
2021-05-03 19:31:09 +12:00
exports.execute = async function (ctx) {
const db = new CouchDB(ctx.appId)
2021-01-07 01:28:51 +13:00
const query = await db.get(ctx.params.queryId)
const datasource = await db.get(query.datasourceId)
2021-01-07 01:28:51 +13:00
const enrichedQuery = await enrichQueryFields(
2021-01-14 03:11:53 +13:00
query.fields,
ctx.request.body.parameters
)
2021-01-13 05:49:11 +13:00
// call the relevant CRUD method on the integration class
try {
const { rows } = await Runner.run({
datasource,
queryVerb: query.queryVerb,
query: enrichedQuery,
transformer: query.transformer,
})
ctx.body = rows
} catch (err) {
ctx.throw(400, err)
}
2021-01-07 01:28:51 +13:00
}
2021-05-03 19:31:09 +12:00
exports.destroy = async function (ctx) {
const db = new CouchDB(ctx.appId)
await db.remove(ctx.params.queryId, ctx.params.revId)
2021-01-07 01:28:51 +13:00
ctx.message = `Query deleted.`
ctx.status = 200
}