Spaces:
Build error
Build error
File size: 5,381 Bytes
d9494a5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 | import {
type ArrayTypeNode,
type ArrowFunction,
createSourceFile,
type FunctionDeclaration,
type FunctionLikeDeclaration,
type Identifier,
type LiteralTypeNode,
type Node,
type PropertySignature,
ScriptTarget,
type StringLiteral,
SyntaxKind,
type TypeNode,
type TypeReferenceNode,
type UnionTypeNode,
type VariableStatement,
} from 'typescript';
import { type InputJsonSchema } from '@/logic-function';
import { isDefined } from '@/utils/validation/isDefined';
const TWENTY_RECORD_TYPE_NAME = 'TwentyRecord';
const getObjectUniversalIdentifierFromTypeArgument = (
typeReferenceNode: TypeReferenceNode,
): string | undefined => {
const typeArgument = typeReferenceNode.typeArguments?.[0];
if (
isDefined(typeArgument) &&
typeArgument.kind === SyntaxKind.LiteralType &&
(typeArgument as LiteralTypeNode).literal.kind === SyntaxKind.StringLiteral
) {
return ((typeArgument as LiteralTypeNode).literal as StringLiteral).text;
}
return undefined;
};
const buildArraySchemaFromItems = (items: InputJsonSchema): InputJsonSchema =>
items.type === 'record'
? {
type: 'records',
objectUniversalIdentifier: items.objectUniversalIdentifier,
}
: { type: 'array', items };
const getTypeString = (typeNode: TypeNode): InputJsonSchema => {
switch (typeNode.kind) {
case SyntaxKind.NumberKeyword:
return { type: 'number' };
case SyntaxKind.StringKeyword:
return { type: 'string' };
case SyntaxKind.BooleanKeyword:
return { type: 'boolean' };
case SyntaxKind.ArrayType:
return buildArraySchemaFromItems(
getTypeString((typeNode as ArrayTypeNode).elementType),
);
case SyntaxKind.TypeReference: {
const typeReferenceNode = typeNode as TypeReferenceNode;
const typeName =
typeReferenceNode.typeName.kind === SyntaxKind.Identifier
? (typeReferenceNode.typeName as Identifier).text
: undefined;
if (typeName === 'Array' || typeName === 'ReadonlyArray') {
const elementType = typeReferenceNode.typeArguments?.[0];
return buildArraySchemaFromItems(
isDefined(elementType) ? getTypeString(elementType) : {},
);
}
if (typeName === TWENTY_RECORD_TYPE_NAME) {
const objectUniversalIdentifier =
getObjectUniversalIdentifierFromTypeArgument(typeReferenceNode);
if (isDefined(objectUniversalIdentifier)) {
return { type: 'record', objectUniversalIdentifier };
}
}
return {};
}
case SyntaxKind.ObjectKeyword:
return { type: 'object' };
case SyntaxKind.TypeLiteral: {
const properties: InputJsonSchema['properties'] = {};
(typeNode as any).members.forEach((member: PropertySignature) => {
if (isDefined(member.name) && isDefined(member.type)) {
const memberName = (member.name as any).text;
properties[memberName] = getTypeString(member.type);
}
});
return { type: 'object', properties };
}
case SyntaxKind.UnionType: {
const unionNode = typeNode as UnionTypeNode;
const enumValues: string[] = [];
let isEnum = true;
unionNode.types.forEach((subType) => {
if (subType.kind === SyntaxKind.LiteralType) {
const literal = (subType as LiteralTypeNode).literal;
if (literal.kind === SyntaxKind.StringLiteral) {
enumValues.push((literal as StringLiteral).text);
} else {
isEnum = false;
}
} else {
isEnum = false;
}
});
if (isEnum) {
return { type: 'string', enum: enumValues };
}
return {};
}
default:
return {};
}
};
const computeFunctionParameters = (
funcNode: FunctionDeclaration | FunctionLikeDeclaration | ArrowFunction,
schema: InputJsonSchema[],
): InputJsonSchema[] => {
const params = funcNode.parameters;
return params.reduce((updatedSchema, param) => {
const typeNode = param.type;
if (isDefined(typeNode)) {
return [...updatedSchema, getTypeString(typeNode)];
} else {
return [...updatedSchema, {}];
}
}, schema);
};
const extractFunctions = (node: Node): FunctionLikeDeclaration[] => {
if (node.kind === SyntaxKind.FunctionDeclaration) {
return [node as FunctionDeclaration];
}
if (node.kind === SyntaxKind.VariableStatement) {
const varStatement = node as VariableStatement;
return varStatement.declarationList.declarations
.filter(
(declaration) =>
isDefined(declaration.initializer) &&
declaration.initializer.kind === SyntaxKind.ArrowFunction,
)
.map((declaration) => declaration.initializer as ArrowFunction);
}
return [];
};
export const getFunctionInputSchema = (
fileContent: string,
): InputJsonSchema[] => {
const sourceFile = createSourceFile(
'temp.ts',
fileContent,
ScriptTarget.ESNext,
true,
);
let schema: InputJsonSchema[] = [];
sourceFile.forEachChild((node) => {
if (
node.kind === SyntaxKind.FunctionDeclaration ||
node.kind === SyntaxKind.VariableStatement
) {
const functions = extractFunctions(node);
functions.forEach((func) => {
schema = computeFunctionParameters(func, schema);
});
}
});
return schema;
};
|