Input processing

This commit is contained in:
Adria Navarro 2024-04-22 17:27:26 +02:00
parent d63c5830e5
commit 808aba0c34
2 changed files with 130 additions and 33 deletions

View File

@ -1,13 +1,43 @@
import { cache, db as dbCore } from "@budibase/backend-core"
import { utils } from "@budibase/shared-core"
import { FieldSubtype, DocumentType, SEPARATOR } from "@budibase/types"
import {
FieldType,
FieldSubtype,
DocumentType,
SEPARATOR,
User,
} from "@budibase/types"
import { InvalidBBRefError } from "./errors"
const ROW_PREFIX = DocumentType.ROW + SEPARATOR
export async function processInputBBReferences(
export async function processInputBBReferences<
T = FieldType.BB_REFERENCE_SINGLE
>(value: string, type: T): Promise<string | null>
export async function processInputBBReferences<
T = FieldType.BB_REFERENCE,
TS = FieldSubtype.USER
>(
value: string | string[] | { _id: string } | { _id: string }[],
subtype: FieldSubtype.USER | FieldSubtype.USERS
type: T,
subtype: TS
): Promise<string | null>
export async function processInputBBReferences<
T = FieldType.BB_REFERENCE,
TS = FieldSubtype.USERS
>(
value: string | string[] | { _id: string } | { _id: string }[],
type: T,
subtype: TS
): Promise<string[] | null>
export async function processInputBBReferences<
T extends FieldType.BB_REFERENCE | FieldType.BB_REFERENCE_SINGLE,
TS extends FieldSubtype.USER | FieldSubtype.USERS
>(
value: string | string[] | { _id: string } | { _id: string }[],
type: T,
subtype?: TS
): Promise<string | string[] | null> {
let referenceIds: string[] = []
@ -39,9 +69,13 @@ export async function processInputBBReferences(
}
})
switch (type) {
case FieldType.BB_REFERENCE:
switch (subtype) {
case undefined:
throw "Subtype must be defined"
case FieldSubtype.USER:
case FieldSubtype.USERS: {
case FieldSubtype.USERS:
const { notFoundIds } = await cache.user.getUsers(referenceIds)
if (notFoundIds?.length) {
@ -53,27 +87,64 @@ export async function processInputBBReferences(
}
return referenceIds.join(",") || null
}
default:
throw utils.unreachable(subtype)
}
case FieldType.BB_REFERENCE_SINGLE:
const user = await cache.user.getUser(referenceIds[0])
if (!user) {
throw new InvalidBBRefError(referenceIds[0], FieldSubtype.USER)
}
return referenceIds[0] || null
default:
throw utils.unreachable(type)
}
}
interface UserReferenceInfo {
_id: string
primaryDisplay: string
email: string
firstName: string
lastName: string
}
export async function processOutputBBReferences<
T = FieldType.BB_REFERENCE_SINGLE
>(value: string, type: T): Promise<UserReferenceInfo>
export async function processOutputBBReferences<
T = FieldType.BB_REFERENCE,
TS = FieldSubtype.USER
>(value: string, type: T, subtype: TS): Promise<UserReferenceInfo[]>
export async function processOutputBBReferences<
T = FieldType.BB_REFERENCE,
TS = FieldSubtype.USERS
>(value: string[], type: T, subtype: TS): Promise<UserReferenceInfo[]>
export async function processOutputBBReferences(
value: string | string[],
subtype: FieldSubtype.USER | FieldSubtype.USERS
type: FieldType.BB_REFERENCE | FieldType.BB_REFERENCE_SINGLE,
subtype?: FieldSubtype.USER | FieldSubtype.USERS
) {
if (value === null || value === undefined) {
// Already processed or nothing to process
return value || undefined
}
switch (type) {
case FieldType.BB_REFERENCE:
const ids =
typeof value === "string" ? value.split(",").filter(id => !!id) : value
switch (subtype) {
case undefined:
throw "Subtype must be defined"
case FieldSubtype.USER:
case FieldSubtype.USERS: {
case FieldSubtype.USERS:
const { users } = await cache.user.getUsers(ids)
if (!users.length) {
return undefined
@ -86,8 +157,25 @@ export async function processOutputBBReferences(
firstName: u.firstName,
lastName: u.lastName,
}))
}
default:
throw utils.unreachable(subtype)
}
case FieldType.BB_REFERENCE_SINGLE:
const user = await cache.user.getUser(value as string)
if (!user) {
return undefined
}
return {
_id: user._id,
primaryDisplay: user.email,
email: user.email,
firstName: user.firstName,
lastName: user.lastName,
}
default:
throw utils.unreachable(type)
}
}

View File

@ -162,8 +162,16 @@ export async function inputProcessing(
}
}
if (field.type === FieldType.BB_REFERENCE && value) {
clonedRow[key] = await processInputBBReferences(value, field.subtype)
if (
(field.type === FieldType.BB_REFERENCE ||
field.type === FieldType.BB_REFERENCE_SINGLE) &&
value
) {
clonedRow[key] = await processInputBBReferences(
value,
field.type,
field.subtype
)
}
}
@ -250,6 +258,7 @@ export async function outputProcessing<T extends Row[] | Row>(
for (let row of enriched) {
row[property] = await processOutputBBReferences(
row[property],
column.type,
column.subtype
)
}