304 lines
9.1 KiB
TypeScript
304 lines
9.1 KiB
TypeScript
import * as linkRows from "../../db/linkedRows"
|
|
import { fixAutoColumnSubType, processFormulas } from "./utils"
|
|
import { objectStore, utils } from "@budibase/backend-core"
|
|
import { InternalTables } from "../../db/utils"
|
|
import { TYPE_TRANSFORM_MAP } from "./map"
|
|
import {
|
|
AutoFieldSubType,
|
|
FieldType,
|
|
Row,
|
|
RowAttachment,
|
|
Table,
|
|
} from "@budibase/types"
|
|
import { cloneDeep } from "lodash/fp"
|
|
import {
|
|
processInputBBReference,
|
|
processInputBBReferences,
|
|
processOutputBBReference,
|
|
processOutputBBReferences,
|
|
} from "./bbReferenceProcessor"
|
|
import { isExternalTableID } from "../../integrations/utils"
|
|
import { helpers } from "@budibase/shared-core"
|
|
|
|
export * from "./utils"
|
|
export * from "./attachments"
|
|
|
|
type AutoColumnProcessingOpts = {
|
|
reprocessing?: boolean
|
|
noAutoRelationships?: boolean
|
|
}
|
|
|
|
/**
|
|
* This will update any auto columns that are found on the row/table with the correct information based on
|
|
* time now and the current logged in user making the request.
|
|
* @param userId The user to be used for an appId as well as the createdBy and createdAt fields.
|
|
* @param table The table which is to be used for the schema, as well as handling auto IDs incrementing.
|
|
* @param row The row which is to be updated with information for the auto columns.
|
|
* @param opts specific options for function to carry out optional features.
|
|
* @returns The updated row and table, the table may need to be updated
|
|
* for automatic ID purposes.
|
|
*/
|
|
export async function processAutoColumn(
|
|
userId: string | null | undefined,
|
|
table: Table,
|
|
row: Row,
|
|
opts?: AutoColumnProcessingOpts
|
|
) {
|
|
let noUser = !userId
|
|
let isUserTable = table._id === InternalTables.USER_METADATA
|
|
let now = new Date().toISOString()
|
|
// if a row doesn't have a revision then it doesn't exist yet
|
|
const creating = !row._rev
|
|
// check its not user table, or whether any of the processing options have been disabled
|
|
const shouldUpdateUserFields =
|
|
!isUserTable && !opts?.reprocessing && !opts?.noAutoRelationships && !noUser
|
|
for (let [key, schema] of Object.entries(table.schema)) {
|
|
if (!schema.autocolumn) {
|
|
continue
|
|
}
|
|
if (!schema.subtype) {
|
|
schema = fixAutoColumnSubType(schema)
|
|
}
|
|
switch (schema.subtype) {
|
|
case AutoFieldSubType.CREATED_BY:
|
|
if (creating && shouldUpdateUserFields && userId) {
|
|
row[key] = [userId]
|
|
}
|
|
break
|
|
case AutoFieldSubType.CREATED_AT:
|
|
if (creating) {
|
|
row[key] = now
|
|
}
|
|
break
|
|
case AutoFieldSubType.UPDATED_BY:
|
|
if (shouldUpdateUserFields && userId) {
|
|
row[key] = [userId]
|
|
}
|
|
break
|
|
case AutoFieldSubType.UPDATED_AT:
|
|
row[key] = now
|
|
break
|
|
case AutoFieldSubType.AUTO_ID:
|
|
if (creating) {
|
|
schema.lastID = schema.lastID || 0
|
|
row[key] = schema.lastID + 1
|
|
schema.lastID++
|
|
table.schema[key] = schema
|
|
}
|
|
break
|
|
}
|
|
}
|
|
return { table, row }
|
|
}
|
|
|
|
/**
|
|
* This will coerce a value to the correct types based on the type transform map
|
|
* @param row The value to coerce
|
|
* @param type The type fo coerce to
|
|
* @returns The coerced value
|
|
*/
|
|
export function coerce(row: any, type: string) {
|
|
// no coercion specified for type, skip it
|
|
if (!TYPE_TRANSFORM_MAP[type]) {
|
|
return row
|
|
}
|
|
// eslint-disable-next-line no-prototype-builtins
|
|
if (TYPE_TRANSFORM_MAP[type].hasOwnProperty(row)) {
|
|
// @ts-ignore
|
|
return TYPE_TRANSFORM_MAP[type][row]
|
|
} else if (TYPE_TRANSFORM_MAP[type].parse) {
|
|
// @ts-ignore
|
|
return TYPE_TRANSFORM_MAP[type].parse(row)
|
|
}
|
|
|
|
return row
|
|
}
|
|
|
|
/**
|
|
* Given an input route this function will apply all the necessary pre-processing to it, such as coercion
|
|
* of column values or adding auto-column values.
|
|
* @param user the user which is performing the input.
|
|
* @param row the row which is being created/updated.
|
|
* @param table the table which the row is being saved to.
|
|
* @param opts some input processing options (like disabling auto-column relationships).
|
|
* @returns the row which has been prepared to be written to the DB.
|
|
*/
|
|
export async function inputProcessing(
|
|
userId: string | null | undefined,
|
|
table: Table,
|
|
row: Row,
|
|
opts?: AutoColumnProcessingOpts
|
|
) {
|
|
let clonedRow = cloneDeep(row)
|
|
|
|
const dontCleanseKeys = ["type", "_id", "_rev", "tableId"]
|
|
for (let [key, value] of Object.entries(clonedRow)) {
|
|
const field = table.schema[key]
|
|
// cleanse fields that aren't in the schema
|
|
if (!field) {
|
|
if (dontCleanseKeys.indexOf(key) === -1) {
|
|
delete clonedRow[key]
|
|
}
|
|
continue
|
|
}
|
|
// remove any formula values, they are to be generated
|
|
if (field.type === FieldType.FORMULA) {
|
|
delete clonedRow[key]
|
|
}
|
|
// otherwise coerce what is there to correct types
|
|
else {
|
|
clonedRow[key] = coerce(value, field.type)
|
|
}
|
|
|
|
// remove any attachment urls, they are generated on read
|
|
if (field.type === FieldType.ATTACHMENTS) {
|
|
const attachments = clonedRow[key]
|
|
if (attachments?.length) {
|
|
attachments.forEach((attachment: RowAttachment) => {
|
|
delete attachment.url
|
|
})
|
|
}
|
|
} else if (
|
|
field.type === FieldType.ATTACHMENT_SINGLE ||
|
|
field.type === FieldType.SIGNATURE_SINGLE
|
|
) {
|
|
const attachment = clonedRow[key]
|
|
if (attachment?.url) {
|
|
delete clonedRow[key].url
|
|
}
|
|
} else if (
|
|
value &&
|
|
(field.type === FieldType.BB_REFERENCE_SINGLE ||
|
|
helpers.schema.isDeprecatedSingleUserColumn(field))
|
|
) {
|
|
clonedRow[key] = await processInputBBReference(value, field.subtype)
|
|
} else if (value && field.type === FieldType.BB_REFERENCE) {
|
|
clonedRow[key] = await processInputBBReferences(value, field.subtype)
|
|
}
|
|
}
|
|
|
|
if (!clonedRow._id || !clonedRow._rev) {
|
|
clonedRow._id = row._id
|
|
clonedRow._rev = row._rev
|
|
}
|
|
|
|
// handle auto columns - this returns an object like {table, row}
|
|
return processAutoColumn(userId, table, clonedRow, opts)
|
|
}
|
|
|
|
/**
|
|
* This function enriches the input rows with anything they are supposed to contain, for example
|
|
* link records or attachment links.
|
|
* @param table the table from which these rows came from originally, this is used to determine
|
|
* the schema of the rows and then enrich.
|
|
* @param rows the rows which are to be enriched.
|
|
* @param opts used to set some options for the output, such as disabling relationship squashing.
|
|
* @returns the enriched rows will be returned.
|
|
*/
|
|
export async function outputProcessing<T extends Row[] | Row>(
|
|
table: Table,
|
|
rows: T,
|
|
opts: {
|
|
squash?: boolean
|
|
preserveLinks?: boolean
|
|
fromRow?: Row
|
|
skipBBReferences?: boolean
|
|
} = {
|
|
squash: true,
|
|
preserveLinks: false,
|
|
skipBBReferences: false,
|
|
}
|
|
): Promise<T> {
|
|
let safeRows: Row[]
|
|
let wasArray = true
|
|
if (!(rows instanceof Array)) {
|
|
safeRows = [rows]
|
|
wasArray = false
|
|
} else {
|
|
safeRows = rows
|
|
}
|
|
// attach any linked row information
|
|
let enriched = !opts.preserveLinks
|
|
? await linkRows.attachFullLinkedDocs(table, safeRows, {
|
|
fromRow: opts?.fromRow,
|
|
})
|
|
: safeRows
|
|
|
|
// make sure squash is enabled if needed
|
|
if (!opts.squash && utils.hasCircularStructure(rows)) {
|
|
opts.squash = true
|
|
}
|
|
|
|
// process complex types: attachments, bb references...
|
|
for (let [property, column] of Object.entries(table.schema)) {
|
|
if (
|
|
column.type === FieldType.ATTACHMENTS ||
|
|
column.type === FieldType.ATTACHMENT_SINGLE ||
|
|
column.type === FieldType.SIGNATURE_SINGLE
|
|
) {
|
|
for (let row of enriched) {
|
|
if (row[property] == null) {
|
|
continue
|
|
}
|
|
const process = (attachment: RowAttachment) => {
|
|
if (!attachment.url && attachment.key) {
|
|
attachment.url = objectStore.getAppFileUrl(attachment.key)
|
|
}
|
|
return attachment
|
|
}
|
|
if (typeof row[property] === "string" && row[property].length) {
|
|
row[property] = JSON.parse(row[property])
|
|
}
|
|
if (Array.isArray(row[property])) {
|
|
row[property].forEach((attachment: RowAttachment) => {
|
|
process(attachment)
|
|
})
|
|
} else {
|
|
process(row[property])
|
|
}
|
|
}
|
|
} else if (
|
|
!opts.skipBBReferences &&
|
|
column.type == FieldType.BB_REFERENCE
|
|
) {
|
|
for (let row of enriched) {
|
|
row[property] = await processOutputBBReferences(
|
|
row[property],
|
|
column.subtype
|
|
)
|
|
}
|
|
} else if (
|
|
!opts.skipBBReferences &&
|
|
column.type == FieldType.BB_REFERENCE_SINGLE
|
|
) {
|
|
for (let row of enriched) {
|
|
row[property] = await processOutputBBReference(
|
|
row[property],
|
|
column.subtype
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
// process formulas after the complex types had been processed
|
|
enriched = await processFormulas(table, enriched, { dynamic: true })
|
|
|
|
if (opts.squash) {
|
|
enriched = (await linkRows.squashLinksToPrimaryDisplay(
|
|
table,
|
|
enriched
|
|
)) as Row[]
|
|
}
|
|
// remove null properties to match internal API
|
|
if (isExternalTableID(table._id!)) {
|
|
for (let row of enriched) {
|
|
for (let key of Object.keys(row)) {
|
|
if (row[key] === null) {
|
|
delete row[key]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return (wasArray ? enriched : enriched[0]) as T
|
|
}
|