Browse Source

refactor: arg validation logic

pull/7268/head
Pranav C 10 months ago
parent
commit
c3b5db43df
  1. 19
      packages/nocodb-sdk/src/lib/formulaHelpers.ts

19
packages/nocodb-sdk/src/lib/formulaHelpers.ts

@ -17,6 +17,7 @@ export const dateFormats = [
'MM DD YYYY',
'YYYY MM DD',
];
function validateDateWithUnknownFormat(v: string) {
for (const format of dateFormats) {
if (dayjs(v, format, true).isValid() as any) {
@ -1256,6 +1257,24 @@ export function validateFormulaAndExtractTreeWithType(
if (formulas[calleeName].validation?.custom) {
formulas[calleeName].validation?.custom(argTypes, parsedTree);
}
// validate against expected arg types if present
else if (formulas[calleeName].validation?.args?.type) {
const expectedArgType = formulas[calleeName].validation.args.type;
if (
argTypes.some(
(argType) =>
argType !== expectedArgType && argType !== FormulaDataTypes.NULL
)
)
throw new FormulaError(
FormulaErrorType.INVALID_ARG,
{
key: 'msg.formula.invalidArgumentType',
calleeName,
},
'Invalid argument type'
);
}
if (typeof formulas[calleeName].returnType === 'function') {
res.dataType = (formulas[calleeName].returnType as any)?.(

Loading…
Cancel
Save