90 lines
2.8 KiB
JavaScript
90 lines
2.8 KiB
JavaScript
const validateJs = require("validate.js")
|
|
const { cloneDeep } = require("lodash/fp")
|
|
const { InternalTables } = require("../../../db/utils")
|
|
const userController = require("../user")
|
|
const { FieldTypes } = require("../../../constants")
|
|
const { makeExternalQuery } = require("../../../integrations/base/utils")
|
|
const { getAppDB } = require("@budibase/backend-core/context")
|
|
|
|
validateJs.extend(validateJs.validators.datetime, {
|
|
parse: function (value) {
|
|
return new Date(value).getTime()
|
|
},
|
|
// Input is a unix timestamp
|
|
format: function (value) {
|
|
return new Date(value).toISOString()
|
|
},
|
|
})
|
|
|
|
exports.getDatasourceAndQuery = async json => {
|
|
const datasourceId = json.endpoint.datasourceId
|
|
const db = getAppDB()
|
|
const datasource = await db.get(datasourceId)
|
|
return makeExternalQuery(datasource, json)
|
|
}
|
|
|
|
exports.findRow = async (ctx, tableId, rowId) => {
|
|
const db = getAppDB()
|
|
let row
|
|
// TODO remove special user case in future
|
|
if (tableId === InternalTables.USER_METADATA) {
|
|
ctx.params = {
|
|
id: rowId,
|
|
}
|
|
await userController.findMetadata(ctx)
|
|
row = ctx.body
|
|
} else {
|
|
row = await db.get(rowId)
|
|
}
|
|
if (row.tableId !== tableId) {
|
|
throw "Supplied tableId does not match the rows tableId"
|
|
}
|
|
return row
|
|
}
|
|
|
|
exports.validate = async ({ tableId, row, table }) => {
|
|
if (!table) {
|
|
const db = getAppDB()
|
|
table = await db.get(tableId)
|
|
}
|
|
const errors = {}
|
|
for (let fieldName of Object.keys(table.schema)) {
|
|
const constraints = cloneDeep(table.schema[fieldName].constraints)
|
|
const type = table.schema[fieldName].type
|
|
// formulas shouldn't validated, data will be deleted anyway
|
|
if (type === FieldTypes.FORMULA) {
|
|
continue
|
|
}
|
|
// special case for options, need to always allow unselected (null)
|
|
if (type === FieldTypes.OPTIONS && constraints.inclusion) {
|
|
constraints.inclusion.push(null)
|
|
}
|
|
let res
|
|
|
|
// Validate.js doesn't seem to handle array
|
|
if (type === FieldTypes.ARRAY && row[fieldName]) {
|
|
if (row[fieldName].length) {
|
|
row[fieldName].map(val => {
|
|
if (!constraints.inclusion.includes(val)) {
|
|
errors[fieldName] = "Field not in list"
|
|
}
|
|
})
|
|
} else if (constraints.presence && row[fieldName].length === 0) {
|
|
// non required MultiSelect creates an empty array, which should not throw errors
|
|
errors[fieldName] = [`${fieldName} is required`]
|
|
}
|
|
} else if (type === FieldTypes.JSON && typeof row[fieldName] === "string") {
|
|
// this should only happen if there is an error
|
|
try {
|
|
JSON.parse(row[fieldName])
|
|
} catch (err) {
|
|
errors[fieldName] = [`Contains invalid JSON`]
|
|
}
|
|
} else {
|
|
res = validateJs.single(row[fieldName], constraints)
|
|
}
|
|
if (res) errors[fieldName] = res
|
|
}
|
|
return { valid: Object.keys(errors).length === 0, errors }
|
|
}
|