moonflower 1.6.0 → 1.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/openapi/analyzerModule/analyzerModule.cjs +1 -1
- package/dist/openapi/analyzerModule/analyzerModule.cjs.map +1 -1
- package/dist/openapi/analyzerModule/analyzerModule.d.ts.map +1 -1
- package/dist/openapi/analyzerModule/analyzerModule.mjs +21 -21
- package/dist/openapi/analyzerModule/analyzerModule.mjs.map +1 -1
- package/dist/openapi/analyzerModule/getSourceFileTimestamp.cjs +1 -1
- package/dist/openapi/analyzerModule/getSourceFileTimestamp.cjs.map +1 -1
- package/dist/openapi/analyzerModule/getSourceFileTimestamp.d.ts +1 -1
- package/dist/openapi/analyzerModule/getSourceFileTimestamp.d.ts.map +1 -1
- package/dist/openapi/analyzerModule/getSourceFileTimestamp.mjs +43 -32
- package/dist/openapi/analyzerModule/getSourceFileTimestamp.mjs.map +1 -1
- package/dist/openapi/analyzerModule/nodeParsers.cjs +1 -1
- package/dist/openapi/analyzerModule/nodeParsers.cjs.map +1 -1
- package/dist/openapi/analyzerModule/nodeParsers.d.ts.map +1 -1
- package/dist/openapi/analyzerModule/nodeParsers.mjs +241 -222
- package/dist/openapi/analyzerModule/nodeParsers.mjs.map +1 -1
- package/dist/openapi/discoveryModule/discoverRouterFiles/discoverRouterFiles.cjs +1 -1
- package/dist/openapi/discoveryModule/discoverRouterFiles/discoverRouterFiles.cjs.map +1 -1
- package/dist/openapi/discoveryModule/discoverRouterFiles/discoverRouterFiles.d.ts +4 -2
- package/dist/openapi/discoveryModule/discoverRouterFiles/discoverRouterFiles.d.ts.map +1 -1
- package/dist/openapi/discoveryModule/discoverRouterFiles/discoverRouterFiles.mjs +10 -14
- package/dist/openapi/discoveryModule/discoverRouterFiles/discoverRouterFiles.mjs.map +1 -1
- package/package.json +1 -1
- package/src/openapi/analyzerModule/analyzerModule.ts +1 -3
- package/src/openapi/analyzerModule/getSourceFileTimestamp.ts +52 -37
- package/src/openapi/analyzerModule/nodeParsers.ts +57 -22
- package/src/openapi/discoveryModule/discoverRouterFiles/discoverRouterFiles.spec.ts +12 -3
- package/src/openapi/discoveryModule/discoverRouterFiles/discoverRouterFiles.ts +2 -7
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nodeParsers.mjs","sources":["../../../src/openapi/analyzerModule/nodeParsers.ts"],"sourcesContent":["import {\n\tNode,\n\tPropertyAccessExpression,\n\tPropertyAssignment,\n\tPropertySignature,\n\tShorthandPropertyAssignment,\n\tSyntaxKind,\n\tts,\n\tType,\n\tTypeReferenceNode,\n} from 'ts-morph'\n\nimport { Logger } from '../../utils/logger'\nimport { OpenApiManager } from '../manager/OpenApiManager'\nimport { ShapeOfProperty, ShapeOfType, ShapeOfUnionEntry } from './types'\n\nconst implementationCache = new WeakMap<Node, Node>()\nconst nodeShapeCache = new WeakMap<Node, ShapeOfType['shape']>()\nconst typeShapeCache = new WeakMap<object, ShapeOfType['shape']>()\n\nexport const findNodeImplementation = (node: Node): Node => {\n\tconst cached = implementationCache.get(node)\n\tif (cached) {\n\t\treturn cached\n\t}\n\n\tif (node.getKind() === SyntaxKind.Identifier) {\n\t\tconst implementationNode = node.asKind(SyntaxKind.Identifier)!.getImplementations()[0]?.getNode()\n\t\tif (implementationNode) {\n\t\t\tconst implementationParentNode = implementationNode.getParent()!\n\t\t\tconst assignmentValueNode = implementationParentNode.getLastChild()!\n\t\t\tif (assignmentValueNode === node) {\n\t\t\t\tthrow new Error('Recursive implementation found')\n\t\t\t}\n\t\t\tconst result = findNodeImplementation(assignmentValueNode)\n\t\t\timplementationCache.set(node, result)\n\t\t\treturn result\n\t\t}\n\n\t\tconst definitionNode = node.asKind(SyntaxKind.Identifier)!.getDefinitions()[0]?.getNode()\n\t\tif (definitionNode) {\n\t\t\tconst definitionParentNode = definitionNode.getParent()!\n\t\t\tconst assignmentValueNode = definitionParentNode.getLastChild()!\n\t\t\tif (assignmentValueNode === node) {\n\t\t\t\tthrow new Error('Recursive implementation found')\n\t\t\t}\n\t\t\tconst result = findNodeImplementation(assignmentValueNode)\n\t\t\timplementationCache.set(node, result)\n\t\t\treturn result\n\t\t}\n\t\tthrow new Error('No implementation nor definition available')\n\t}\n\n\timplementationCache.set(node, node)\n\treturn node\n}\n\nexport const findPropertyAssignmentValueNode = (\n\tnode:\n\t\t| PropertyAssignment\n\t\t| TypeReferenceNode\n\t\t| PropertySignature\n\t\t| PropertyAccessExpression\n\t\t| ShorthandPropertyAssignment,\n): Node => {\n\tconst identifierChildren = node.getChildrenOfKind(SyntaxKind.Identifier)\n\tif (identifierChildren.length === 2) {\n\t\treturn findNodeImplementation(identifierChildren[1])\n\t}\n\tconst lastMatchingChild = node.getChildren().reverse()\n\treturn lastMatchingChild.find(\n\t\t(child) =>\n\t\t\tchild.getKind() !== SyntaxKind.GreaterThanToken &&\n\t\t\tchild.getKind() !== SyntaxKind.CommaToken &&\n\t\t\tchild.getKind() !== SyntaxKind.SemicolonToken,\n\t)!\n}\n\nexport const getTypeReferenceShape = (node: TypeReferenceNode): ShapeOfType['shape'] => {\n\tconst firstChild = node.getFirstChildByKind(SyntaxKind.SyntaxList)!\n\tif (firstChild.isKind(SyntaxKind.SyntaxList)) {\n\t\treturn getRecursiveNodeShape(firstChild.getFirstChild()!)\n\t} else {\n\t\treturn getRecursiveNodeShape(firstChild)\n\t}\n}\n\nexport const getRecursiveNodeShape = (nodeOrReference: Node): ShapeOfType['shape'] => {\n\tconst cached = nodeShapeCache.get(nodeOrReference)\n\tif (cached !== undefined) {\n\t\treturn cached\n\t}\n\tconst result = computeRecursiveNodeShape(nodeOrReference)\n\tnodeShapeCache.set(nodeOrReference, result)\n\treturn result\n}\n\nconst computeRecursiveNodeShape = (nodeOrReference: Node): ShapeOfType['shape'] => {\n\tconst typeName = nodeOrReference.getSymbol()?.getName()\n\tif (typeName && OpenApiManager.getInstance().hasExposedModel(typeName)) {\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'ref',\n\t\t\t\tshape: typeName,\n\t\t\t\toptional: false,\n\t\t\t},\n\t\t]\n\t}\n\n\tconst node = findNodeImplementation(nodeOrReference)\n\n\t// Undefined\n\tconst undefinedNode = node.asKind(SyntaxKind.UndefinedKeyword)\n\tif (undefinedNode) {\n\t\treturn 'undefined'\n\t}\n\n\t// Literal type\n\tconst literalNode = node.asKind(SyntaxKind.LiteralType)\n\tif (literalNode) {\n\t\tif (literalNode.getFirstChildByKind(SyntaxKind.TrueKeyword)) {\n\t\t\treturn 'true'\n\t\t}\n\t\tif (literalNode.getFirstChildByKind(SyntaxKind.FalseKeyword)) {\n\t\t\treturn 'false'\n\t\t}\n\t}\n\n\t// Boolean literal\n\tconst booleanLiteralNode =\n\t\tnode.asKind(SyntaxKind.BooleanKeyword) ||\n\t\tnode.asKind(SyntaxKind.TrueKeyword) ||\n\t\tnode.asKind(SyntaxKind.FalseKeyword)\n\tif (booleanLiteralNode) {\n\t\treturn 'boolean'\n\t}\n\n\t// String literal\n\tconst stringLiteralNode = node.asKind(SyntaxKind.StringKeyword) || node.asKind(SyntaxKind.StringLiteral)\n\tif (stringLiteralNode) {\n\t\treturn 'string'\n\t}\n\n\t// Number literal\n\tconst numberLiteralNode = node.asKind(SyntaxKind.NumberKeyword) || node.asKind(SyntaxKind.NumericLiteral)\n\tif (numberLiteralNode) {\n\t\treturn 'number'\n\t}\n\n\t// BigInt literal\n\tconst bigIntNode = node.asKind(SyntaxKind.BigIntKeyword) || node.asKind(SyntaxKind.BigIntLiteral)\n\tif (bigIntNode) {\n\t\treturn 'bigint'\n\t}\n\n\t// Type literal\n\tconst typeLiteralNode = node.asKind(SyntaxKind.TypeLiteral)\n\tif (typeLiteralNode) {\n\t\tconst properties = typeLiteralNode\n\t\t\t.getFirstChildByKind(SyntaxKind.SyntaxList)!\n\t\t\t.getChildrenOfKind(SyntaxKind.PropertySignature)\n\n\t\tconst propertyShapes = properties.map((propNode) => {\n\t\t\tconst identifier = propNode.getFirstChildByKind(SyntaxKind.Identifier)!\n\t\t\tconst valueNode = findPropertyAssignmentValueNode(propNode)\n\t\t\tconst questionMarkToken = identifier.getNextSiblingIfKind(SyntaxKind.QuestionToken)\n\t\t\treturn {\n\t\t\t\trole: 'property' as const,\n\t\t\t\tidentifier: identifier.getText(),\n\t\t\t\tshape: getRecursiveNodeShape(valueNode),\n\t\t\t\toptional: valueNode.getType().isNullable() || !!questionMarkToken,\n\t\t\t}\n\t\t})\n\t\treturn propertyShapes\n\t}\n\n\t// Type reference\n\tconst typeReferenceNode = node.asKind(SyntaxKind.TypeReference)\n\tif (typeReferenceNode) {\n\t\treturn getRecursiveNodeShape(typeReferenceNode.getFirstChild()!)\n\t}\n\n\t// Property access expression\n\tconst propertyAccessNode = node.asKind(SyntaxKind.PropertyAccessExpression)\n\tif (propertyAccessNode) {\n\t\tconst lastChild = findNodeImplementation(node.getLastChild()!)\n\t\treturn getProperTypeShape(lastChild.asKind(SyntaxKind.CallExpression)!.getReturnType(), lastChild)\n\t}\n\n\t// Union type\n\tconst unionTypeNode = node.asKind(SyntaxKind.UnionType)\n\tif (unionTypeNode) {\n\t\treturn getProperTypeShape(unionTypeNode.getType(), node)\n\t}\n\n\t// Typeof query\n\tconst typeQueryNode = node.asKind(SyntaxKind.TypeQuery)\n\tif (typeQueryNode) {\n\t\treturn getRecursiveNodeShape(typeQueryNode.getLastChild()!)\n\t}\n\n\t// Qualified name\n\tconst qualifiedNameNode = node.asKind(SyntaxKind.QualifiedName)\n\tif (qualifiedNameNode) {\n\t\treturn getRecursiveNodeShape(qualifiedNameNode.getLastChild()!)\n\t}\n\n\t// Call expression\n\tconst callExpressionNode = node.asKind(SyntaxKind.CallExpression)\n\tif (callExpressionNode) {\n\t\treturn getProperTypeShape(callExpressionNode.getReturnType(), callExpressionNode)\n\t}\n\n\t// Await expression\n\tconst awaitExpressionNode = node.asKind(SyntaxKind.AwaitExpression)\n\tif (awaitExpressionNode) {\n\t\treturn getRecursiveNodeShape(awaitExpressionNode.getChildAtIndex(1)!)\n\t}\n\n\t// 'As' Expression\n\tconst asExpressionNode = node.asKind(SyntaxKind.AsExpression)\n\tif (asExpressionNode) {\n\t\treturn getRecursiveNodeShape(asExpressionNode.getChildAtIndex(2)!)\n\t}\n\n\t// TODO\n\tconst fileName = node.getSourceFile().getFilePath().split('/').pop()\n\tLogger.warn(`[${fileName}] Unknown node type: ${node.getKindName()}`)\n\treturn 'unknown_1'\n}\n\nexport const getShapeOfValidatorLiteral = (\n\tobjectLiteralNode: Node<ts.ObjectLiteralExpression>,\n): (ShapeOfProperty & { description: string; errorMessage: string })[] => {\n\tconst syntaxListNode = objectLiteralNode.getFirstDescendantByKind(SyntaxKind.SyntaxList)!\n\tconst assignmentNodes = syntaxListNode.getChildrenOfKind(SyntaxKind.PropertyAssignment)!\n\n\tconst properties = assignmentNodes.map((node) => {\n\t\tconst identifierNode = node.getFirstChild()!\n\t\tconst identifierName = (() => {\n\t\t\tif (identifierNode.isKind(SyntaxKind.Identifier)) {\n\t\t\t\treturn identifierNode.getText()\n\t\t\t}\n\t\t\tif (identifierNode.isKind(SyntaxKind.StringLiteral)) {\n\t\t\t\treturn identifierNode.getLiteralText()\n\t\t\t}\n\t\t\tconst fileName = node.getSourceFile().getFilePath().split('/').pop()\n\t\t\tLogger.warn(`[${fileName}] Unknown identifier name: ${identifierNode.getText()}`)\n\t\t\treturn 'unknown_30'\n\t\t})()\n\n\t\tconst assignmentValueNode = node.getLastChild()!\n\t\tconst innerLiteralNode = findNodeImplementation(assignmentValueNode)\n\n\t\treturn {\n\t\t\trole: 'property' as const,\n\t\t\tidentifier: identifierName,\n\t\t\tshape: getValidatorPropertyShape(innerLiteralNode),\n\t\t\toptional: getValidatorPropertyOptionality(innerLiteralNode),\n\t\t\tdescription: getValidatorPropertyStringValue(innerLiteralNode, 'description'),\n\t\t\terrorMessage: getValidatorPropertyStringValue(innerLiteralNode, 'errorMessage'),\n\t\t}\n\t})\n\n\treturn properties || []\n}\n\nconst isZodCallExpression = (node: Node): boolean => {\n\tconst callExpression = node.asKind(SyntaxKind.CallExpression)\n\tif (!callExpression) {\n\t\treturn false\n\t}\n\tconst returnType = callExpression.getReturnType()\n\tconst typeName = returnType.getSymbol()?.getName() ?? ''\n\treturn typeName.startsWith('Zod')\n}\n\nconst getZodCallShape = (node: Node): ShapeOfType['shape'] => {\n\tconst callExpression = node.asKind(SyntaxKind.CallExpression)!\n\tconst returnType = callExpression.getReturnType()\n\tconst outputProp = returnType.getProperty('_output')\n\tif (outputProp) {\n\t\treturn getProperTypeShape(outputProp.getTypeAtLocation(callExpression), callExpression)\n\t}\n\tconst fileName = node.getSourceFile().getFilePath().split('/').pop()\n\tconst typeName = returnType.getSymbol()?.getName() ?? ''\n\tLogger.warn(`[${fileName}] Unknown zod type: ${typeName}`)\n\treturn 'unknown_zod'\n}\n\nexport const getValidatorPropertyShape = (innerLiteralNode: Node): ShapeOfType['shape'] => {\n\t// Zod validator (e.g. z.number(), z.string(), z.object({...}), z.array(...))\n\tif (isZodCallExpression(innerLiteralNode)) {\n\t\treturn getZodCallShape(innerLiteralNode)\n\t}\n\n\t// Inline definition with `as Validator<...>` clause\n\tconst inlineValidatorAsExpression = innerLiteralNode\n\t\t.getParent()!\n\t\t.getFirstChildByKind(SyntaxKind.AsExpression)\n\tif (inlineValidatorAsExpression) {\n\t\tconst typeReference = inlineValidatorAsExpression.getLastChildByKind(SyntaxKind.TypeReference)!\n\t\treturn getTypeReferenceShape(typeReference)\n\t}\n\n\t// Variable with `: Validator<...>` clause\n\tconst childTypeReferenceNode = innerLiteralNode.getParent()!.getFirstChildByKind(SyntaxKind.TypeReference)\n\tif (childTypeReferenceNode) {\n\t\treturn getTypeReferenceShape(childTypeReferenceNode)\n\t}\n\n\t// `RequiredParam<...>` inline call expression\n\tif (innerLiteralNode.getParent()!.getChildrenOfKind(SyntaxKind.SyntaxList).length >= 2) {\n\t\tconst typeNode = innerLiteralNode\n\t\t\t.getParent()!\n\t\t\t.getFirstChildByKind(SyntaxKind.SyntaxList)!\n\t\t\t.getFirstChild()!\n\t\treturn getRecursiveNodeShape(typeNode)\n\t}\n\n\t// `RequestParam | RequiredParam | OptionalParam` call expression\n\tconst childCallExpressionNode = innerLiteralNode.getParent()!.getFirstChildByKind(SyntaxKind.CallExpression)\n\tif (childCallExpressionNode) {\n\t\tconst callExpressionArgument = findNodeImplementation(\n\t\t\tchildCallExpressionNode.getFirstChildByKind(SyntaxKind.SyntaxList)!.getFirstChild()!,\n\t\t)\n\n\t\t// Param is a type reference\n\t\tconst typeReferenceNode = callExpressionArgument\n\t\t\t.getParent()!\n\t\t\t.getFirstChildByKind(SyntaxKind.TypeReference)!\n\t\tif (typeReferenceNode) {\n\t\t\treturn getProperTypeShape(typeReferenceNode.getType(), typeReferenceNode, [])\n\t\t}\n\n\t\tconst thingyNode = callExpressionArgument\n\t\t\t.getParent()!\n\t\t\t.getFirstChildByKind(SyntaxKind.ObjectLiteralExpression)!\n\t\tif (thingyNode) {\n\t\t\treturn getValidatorPropertyShape(thingyNode)\n\t\t}\n\n\t\tif (callExpressionArgument.getKind() === SyntaxKind.CallExpression) {\n\t\t\treturn getValidatorPropertyShape(callExpressionArgument)\n\t\t}\n\n\t\tif (callExpressionArgument.getKind() === SyntaxKind.IntersectionType) {\n\t\t\treturn getValidatorPropertyShape(callExpressionArgument)\n\t\t}\n\n\t\tconst fileName = innerLiteralNode.getSourceFile().getFilePath().split('/').pop()\n\t\tLogger.warn(`[${fileName}] Unknown call expression argument: ${callExpressionArgument.getKindName()}`)\n\t\treturn 'unknown_3'\n\t}\n\n\t// Attempting to infer type from `parse` function\n\tconst innerNodePropertyAssignments = innerLiteralNode\n\t\t.getFirstChildByKind(SyntaxKind.SyntaxList)!\n\t\t.getChildrenOfKind(SyntaxKind.PropertyAssignment)\n\tconst parsePropertyAssignment = innerNodePropertyAssignments.find((prop) => {\n\t\treturn prop.getFirstChildByKind(SyntaxKind.Identifier)?.getText() === 'parse'\n\t})\n\tif (parsePropertyAssignment) {\n\t\tconst returnType = findPropertyAssignmentValueNode(parsePropertyAssignment)\n\t\t\t.asKind(SyntaxKind.ArrowFunction)!\n\t\t\t.getReturnType()\n\t\treturn getProperTypeShape(returnType, parsePropertyAssignment)\n\t}\n\n\t// Import statement\n\tconst importTypeNode = innerLiteralNode\n\t\t.getFirstChildByKind(SyntaxKind.SyntaxList)\n\t\t?.getFirstChildByKind(SyntaxKind.ImportType)\n\tif (importTypeNode) {\n\t\tconst indexOfGreaterThanToken = importTypeNode\n\t\t\t.getLastChildByKind(SyntaxKind.GreaterThanToken)!\n\t\t\t.getChildIndex()\n\t\tconst targetSyntaxList = importTypeNode.getChildAtIndex(indexOfGreaterThanToken - 1)\n\t\treturn getRecursiveNodeShape(targetSyntaxList.getFirstChild()!)\n\t}\n\n\t// Intersection type with Validator\n\tconst intersectionType = innerLiteralNode.isKind(SyntaxKind.IntersectionType)\n\t\t? innerLiteralNode\n\t\t: innerLiteralNode.getParent()?.isKind(SyntaxKind.VariableDeclaration)\n\t\t\t? innerLiteralNode.getParent()?.getFirstChildByKind(SyntaxKind.IntersectionType)\n\t\t\t: null\n\n\tif (intersectionType) {\n\t\tconst validatorType = intersectionType.getFirstChildByKind(SyntaxKind.TypeReference)\n\t\tif (validatorType) {\n\t\t\treturn getTypeReferenceShape(validatorType)\n\t\t}\n\t}\n\n\tconst fileName = innerLiteralNode.getSourceFile().getFilePath().split('/').pop()\n\tLogger.warn(`[${fileName}] Unknown import type node`)\n\n\treturn 'unknown_2'\n}\n\nexport const getValidatorPropertyOptionality = (node: Node): boolean => {\n\tif (isZodCallExpression(node)) {\n\t\tconst callExpression = node.asKind(SyntaxKind.CallExpression)!\n\t\tconst returnType = callExpression.getReturnType()\n\t\tconst typeName = returnType.getSymbol()?.getName() ?? ''\n\t\tif (typeName === 'ZodOptional') {\n\t\t\treturn true\n\t\t}\n\t\treturn false\n\t}\n\n\tconst callExpressionNode = node.asKind(SyntaxKind.CallExpression)\n\tif (callExpressionNode) {\n\t\tconst identifierNode = callExpressionNode.getFirstChildByKind(SyntaxKind.Identifier)\n\t\tif (identifierNode?.getText() === 'OptionalParam') {\n\t\t\treturn true\n\t\t} else if (identifierNode?.getText() === 'RequiredParam') {\n\t\t\treturn false\n\t\t}\n\n\t\tconst syntaxListNode = callExpressionNode.getFirstChildByKind(SyntaxKind.SyntaxList)!\n\t\tconst literalExpression = findNodeImplementation(syntaxListNode.getFirstChild()!)\n\t\treturn getValidatorPropertyOptionality(literalExpression)\n\t}\n\n\tconst syntaxListNode = node.getFirstDescendantByKind(SyntaxKind.SyntaxList)!\n\tconst assignmentNodes = syntaxListNode.getChildrenOfKind(SyntaxKind.PropertyAssignment)!\n\n\treturn assignmentNodes.some((node) => {\n\t\tconst identifierNode = node.getFirstDescendantByKind(SyntaxKind.Identifier)!\n\t\tconst identifierName = identifierNode.getText()\n\n\t\tif (identifierName === 'optional') {\n\t\t\tconst value = findPropertyAssignmentValueNode(node)\n\t\t\treturn value.getKind() === SyntaxKind.TrueKeyword\n\t\t}\n\t\treturn false\n\t})\n}\n\nexport const getValidatorPropertyStringValue = (\n\tnodeOrReference: Node,\n\tname: 'description' | 'errorMessage',\n): string => {\n\tif (isZodCallExpression(nodeOrReference)) {\n\t\treturn ''\n\t}\n\n\tconst node = findNodeImplementation(nodeOrReference)\n\n\tconst callExpressionNode = node.asKind(SyntaxKind.CallExpression)\n\tif (callExpressionNode) {\n\t\tconst targetChild = callExpressionNode.getLastChildByKind(SyntaxKind.SyntaxList)!\n\t\treturn getValidatorPropertyStringValue(targetChild, name)\n\t}\n\n\tconst syntaxListNode = node.asKind(SyntaxKind.SyntaxList)\n\tif (syntaxListNode) {\n\t\tconst children = syntaxListNode.getChildren().map((c) => getValidatorPropertyStringValue(c, name))\n\t\treturn children.find((value) => !!value && value !== 'unknown_25') || ''\n\t}\n\n\tconst objectLiteralNode = node.asKind(SyntaxKind.ObjectLiteralExpression)\n\tif (objectLiteralNode) {\n\t\tconst values = getValuesOfObjectLiteral(objectLiteralNode)\n\t\tconst targetValue = values.find((value) => value.identifier === name)\n\t\tif (!targetValue) {\n\t\t\treturn ''\n\t\t}\n\t\tif (Array.isArray(targetValue.value)) {\n\t\t\treturn 'array'\n\t\t}\n\t\treturn targetValue.value || ''\n\t}\n\n\tconst intersectionTypeNode = node.asKind(SyntaxKind.IntersectionType)\n\tif (intersectionTypeNode) {\n\t\treturn (\n\t\t\tintersectionTypeNode\n\t\t\t\t.getTypeNodes()\n\t\t\t\t.flatMap((t) => getValidatorPropertyStringValue(t, name))\n\t\t\t\t.filter((v) => !!v && v !== 'unknown_25')[0] || 'unknown_27'\n\t\t)\n\t}\n\n\tconst typeLiteralNode = node.asKind(SyntaxKind.TypeLiteral)\n\tif (typeLiteralNode) {\n\t\treturn getValidatorPropertyStringValue(typeLiteralNode.getFirstChildByKind(SyntaxKind.SyntaxList)!, name)\n\t}\n\n\tconst propertySignatureNode = node.asKind(SyntaxKind.PropertySignature)\n\tif (propertySignatureNode) {\n\t\tconst identifier = node.getFirstDescendantByKind(SyntaxKind.Identifier)!\n\t\tif (identifier.getText() === name) {\n\t\t\tconst targetNode = findPropertyAssignmentValueNode(propertySignatureNode).getFirstDescendantByKind(\n\t\t\t\tSyntaxKind.StringLiteral,\n\t\t\t)!\n\t\t\treturn targetNode.getLiteralText()\n\t\t}\n\t}\n\n\tconst fileName = node.getSourceFile().getFilePath().split('/').pop()\n\tLogger.dev(`[${fileName}] Unknown property string value node ${node.getKindName()}`)\n\treturn 'unknown_25'\n}\n\nconst isPromise = (type: Type) => {\n\tconst symbol = type.getSymbol()\n\tif (!type.isObject() || !symbol) {\n\t\treturn false\n\t}\n\tconst args = type.getTypeArguments()\n\treturn symbol.getName() === 'Promise' && args.length === 1\n}\n\nexport const getProperTypeShape = (\n\ttypeOrPromise: Type,\n\tatLocation: Node,\n\tstack: Type[] = [],\n): ShapeOfType['shape'] => {\n\tconst typeName = typeOrPromise.getAliasSymbol()?.getName()\n\tif (typeName && OpenApiManager.getInstance().hasExposedModel(typeName)) {\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'ref',\n\t\t\t\tshape: typeName,\n\t\t\t\toptional: false,\n\t\t\t},\n\t\t]\n\t}\n\n\tconst type = isPromise(typeOrPromise) ? typeOrPromise.getTypeArguments()[0] : typeOrPromise\n\n\tif (stack.some((previousType) => previousType === type)) {\n\t\treturn 'circular'\n\t}\n\n\tconst cacheKey = type.compilerType\n\tconst cached = typeShapeCache.get(cacheKey)\n\tif (cached !== undefined) {\n\t\treturn cached\n\t}\n\tconst result = computeProperTypeShape(type, atLocation, stack)\n\ttypeShapeCache.set(cacheKey, result)\n\treturn result\n}\n\nconst computeProperTypeShape = (type: Type, atLocation: Node, stack: Type[]): ShapeOfType['shape'] => {\n\tconst nextStack = stack.concat(type)\n\n\tif (type.getText() === 'void') {\n\t\treturn 'void'\n\t}\n\n\tif (type.isAny()) {\n\t\treturn 'any'\n\t}\n\n\tif (type.isUnknown()) {\n\t\treturn 'unknown'\n\t}\n\n\tif (type.isNull()) {\n\t\treturn 'null'\n\t}\n\n\tif (type.isUndefined()) {\n\t\treturn 'undefined'\n\t}\n\n\tif (type.isBoolean() || type.isBooleanLiteral()) {\n\t\treturn 'boolean'\n\t}\n\n\tif (type.isStringLiteral()) {\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'literal_string' as const,\n\t\t\t\tshape: String(type.getLiteralValue()!),\n\t\t\t\toptional: false,\n\t\t\t},\n\t\t]\n\t}\n\n\tif (type.isNumberLiteral()) {\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'literal_number' as const,\n\t\t\t\tshape: String(type.getLiteralValue()!),\n\t\t\t\toptional: false,\n\t\t\t},\n\t\t]\n\t}\n\n\tif (type.isString() || type.isTemplateLiteral()) {\n\t\treturn 'string'\n\t}\n\n\tif (type.isNumber()) {\n\t\treturn 'number'\n\t}\n\n\tif (type.getText() === 'bigint') {\n\t\treturn 'bigint'\n\t}\n\n\tif (type.isTuple()) {\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'tuple' as const,\n\t\t\t\tshape: type.getTupleElements().map((t) => ({\n\t\t\t\t\trole: 'tuple_entry' as const,\n\t\t\t\t\tshape: getProperTypeShape(t, atLocation, nextStack),\n\t\t\t\t\toptional: false,\n\t\t\t\t})),\n\t\t\t\toptional: false,\n\t\t\t},\n\t\t]\n\t}\n\n\tif (type.isArray()) {\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'array' as const,\n\t\t\t\tshape: getProperTypeShape(type.getArrayElementType()!, atLocation, nextStack),\n\t\t\t\toptional: false,\n\t\t\t},\n\t\t]\n\t}\n\n\t// Handles `interface Foo extends Array<T>` (e.g. Prisma's JsonArray)\n\t// which fails type.isArray() but is still array-like\n\tif (type.isObject()) {\n\t\tconst arrayElementType = type.getNumberIndexType()\n\t\tconst baseTypes = type.getBaseTypes()\n\t\tconst arrayBase = baseTypes?.find((base) => base.isArray())\n\t\tif (arrayBase) {\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\trole: 'array' as const,\n\t\t\t\t\tshape: getProperTypeShape(\n\t\t\t\t\t\tarrayBase.getArrayElementType() ?? arrayElementType!,\n\t\t\t\t\t\tatLocation,\n\t\t\t\t\t\tnextStack,\n\t\t\t\t\t),\n\t\t\t\t\toptional: false,\n\t\t\t\t},\n\t\t\t]\n\t\t}\n\t}\n\n\tconst typeSymbolName = type.getSymbol()?.getName()\n\n\tconst bufferLikeTypes = new Set([\n\t\t'Buffer',\n\t\t'Uint8Array',\n\t\t'Int8Array',\n\t\t'Uint8ClampedArray',\n\t\t'Int16Array',\n\t\t'Uint16Array',\n\t\t'Int32Array',\n\t\t'Uint32Array',\n\t\t'Float32Array',\n\t\t'Float64Array',\n\t\t'BigInt64Array',\n\t\t'BigUint64Array',\n\t\t'ArrayBuffer',\n\t\t'SharedArrayBuffer',\n\t\t'ReadableStream',\n\t])\n\n\tif (type.isObject() && typeSymbolName && bufferLikeTypes.has(typeSymbolName)) {\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'buffer' as const,\n\t\t\t\tshape: 'buffer',\n\t\t\t\toptional: false,\n\t\t\t},\n\t\t]\n\t}\n\n\tif (type.isObject() && typeSymbolName === 'RegExp') {\n\t\treturn 'string'\n\t}\n\n\tif (type.isObject() && typeSymbolName === 'Map') {\n\t\tconst typeArgs = type.getTypeArguments()\n\t\tconst valueType = typeArgs[1]\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'record' as const,\n\t\t\t\tshape: valueType ? getProperTypeShape(valueType, atLocation, nextStack) : 'unknown',\n\t\t\t\toptional: false,\n\t\t\t},\n\t\t]\n\t}\n\n\tif (type.isObject() && typeSymbolName === 'Set') {\n\t\tconst typeArgs = type.getTypeArguments()\n\t\tconst elementType = typeArgs[0]\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'array' as const,\n\t\t\t\tshape: elementType ? getProperTypeShape(elementType, atLocation, nextStack) : 'unknown',\n\t\t\t\toptional: false,\n\t\t\t},\n\t\t]\n\t}\n\n\tif (type.isObject() && type.getProperties().length === 0) {\n\t\tconst targetType = type.getAliasTypeArguments()[1] ?? type.getStringIndexType()\n\t\tif (targetType) {\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\trole: 'record' as const,\n\t\t\t\t\tshape: getProperTypeShape(targetType, atLocation, nextStack),\n\t\t\t\t\toptional: false,\n\t\t\t\t},\n\t\t\t]\n\t\t}\n\t}\n\n\tif (type.isObject()) {\n\t\tif (typeSymbolName === 'Date' || type.getText() === 'Date') {\n\t\t\treturn 'Date'\n\t\t}\n\t\treturn type\n\t\t\t.getProperties()\n\t\t\t.map((prop) => {\n\t\t\t\tconst valueDeclaration = prop.getValueDeclaration() || prop.getDeclarations()[0]!\n\t\t\t\tconst shape = getProperTypeShape(prop.getTypeAtLocation(atLocation), atLocation, nextStack)\n\t\t\t\tif (!valueDeclaration) {\n\t\t\t\t\treturn {\n\t\t\t\t\t\trole: 'property' as const,\n\t\t\t\t\t\tidentifier: prop.getName(),\n\t\t\t\t\t\tshape,\n\t\t\t\t\t\toptional: false,\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tconst valueDeclarationNode =\n\t\t\t\t\tvalueDeclaration.asKind(SyntaxKind.PropertySignature) ||\n\t\t\t\t\tvalueDeclaration.asKind(SyntaxKind.PropertyAssignment) ||\n\t\t\t\t\tvalueDeclaration.asKind(SyntaxKind.ShorthandPropertyAssignment)\n\n\t\t\t\tif (!valueDeclarationNode) {\n\t\t\t\t\treturn {\n\t\t\t\t\t\trole: 'property' as const,\n\t\t\t\t\t\tidentifier: prop.getName(),\n\t\t\t\t\t\tshape,\n\t\t\t\t\t\toptional: false,\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tconst isOptional = prop.getTypeAtLocation(atLocation).isNullable()\n\n\t\t\t\treturn {\n\t\t\t\t\trole: 'property' as const,\n\t\t\t\t\tidentifier: prop.getName(),\n\t\t\t\t\tshape,\n\t\t\t\t\toptional: isOptional,\n\t\t\t\t}\n\t\t\t})\n\t\t\t.filter((val) => val.shape !== 'undefined')\n\t}\n\n\tif (type.isUnion()) {\n\t\tconst unfilteredShapes: ShapeOfUnionEntry[] = type.getUnionTypes().map((type) => ({\n\t\t\trole: 'union_entry',\n\t\t\tshape: getProperTypeShape(type, atLocation, nextStack),\n\t\t\toptional: false,\n\t\t}))\n\n\t\tconst dedupedShapes = unfilteredShapes.filter(\n\t\t\t(type, index, arr) => !arr.find((dup, dupIndex) => dup.shape === type.shape && dupIndex > index),\n\t\t)\n\t\tconst isNullable = dedupedShapes.some((shape) => shape.shape === 'undefined')\n\t\tconst shapes = dedupedShapes.filter((shape) => shape.shape !== 'undefined')\n\t\tif (shapes.length === 1) {\n\t\t\treturn shapes[0].shape\n\t\t}\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'union',\n\t\t\t\tshape: shapes,\n\t\t\t\toptional: isNullable,\n\t\t\t},\n\t\t]\n\t}\n\n\tif (type.isIntersection()) {\n\t\tconst children = type.getIntersectionTypes()\n\t\tconst shapesOfChildren = children\n\t\t\t.map((child) => getProperTypeShape(child, atLocation, nextStack))\n\t\t\t.filter((shape) => typeof shape !== 'string') as ShapeOfProperty[][]\n\t\treturn shapesOfChildren.reduce<ShapeOfType[]>((total, current) => [...total, ...current], [])\n\t}\n\n\tconst fileName = atLocation.getSourceFile().getFilePath().split('/').pop()\n\tLogger.warn(`[${fileName}] Unknown type shape node ${type.getText()}`)\n\treturn 'unknown_5'\n}\n\nconst getLiteralValueOfNode = (node: Node): string | string[] | unknown[] => {\n\tif (node.isKind(SyntaxKind.Identifier)) {\n\t\treturn getLiteralValueOfNode(findNodeImplementation(node))\n\t} else if (node.isKind(SyntaxKind.StringLiteral)) {\n\t\treturn node.getLiteralValue()\n\t} else if (node.isKind(SyntaxKind.ArrayLiteralExpression)) {\n\t\treturn node.forEachChildAsArray().map((child) => getLiteralValueOfNode(child)) as string[]\n\t} else if (node.isKind(SyntaxKind.PropertyAccessExpression)) {\n\t\treturn getLiteralValueOfNode(findPropertyAssignmentValueNode(node))\n\t} else if (node.isKind(SyntaxKind.ObjectLiteralExpression)) {\n\t\treturn getValuesOfObjectLiteral(node)\n\t}\n\n\tconst fileName = node.getSourceFile().getFilePath().split('/').pop()\n\tLogger.dev(`[${fileName}] Unknown literal value node ${node.getKindName()}`)\n\n\treturn 'unknown_6'\n}\n\nexport const resolveEndpointPath = (node: Node): string | null => {\n\tconst callExpression = node.getFirstDescendantByKind(SyntaxKind.CallExpression)\n\tif (!callExpression) return null\n\n\tconst firstArg = callExpression.getArguments()[0]\n\tif (!firstArg) return null\n\n\tconst argType = firstArg.getType()\n\tif (argType.isStringLiteral()) {\n\t\treturn argType.getLiteralValue() as string\n\t}\n\n\treturn null\n}\n\nexport const getValuesOfObjectLiteral = (objectLiteralNode: Node<ts.ObjectLiteralExpression>) => {\n\tconst syntaxListNode = objectLiteralNode.getFirstDescendantByKind(SyntaxKind.SyntaxList)!\n\tconst assignmentNodes = syntaxListNode.getChildrenOfKind(SyntaxKind.PropertyAssignment)!\n\n\tconst properties = assignmentNodes.map((node) => {\n\t\tconst identifierNode = node.getFirstDescendantByKind(SyntaxKind.Identifier)!\n\t\tconst identifierName = identifierNode.getText()\n\n\t\tconst assignmentValueNode = node.getLastChild()!\n\t\tconst targetNode = findNodeImplementation(assignmentValueNode)\n\t\tconst value = getLiteralValueOfNode(targetNode)\n\n\t\treturn {\n\t\t\tidentifier: identifierName,\n\t\t\tvalue,\n\t\t}\n\t})\n\n\treturn properties || []\n}\n"],"names":["implementationCache","nodeShapeCache","typeShapeCache","findNodeImplementation","node","cached","SyntaxKind","implementationNode","assignmentValueNode","result","definitionNode","findPropertyAssignmentValueNode","identifierChildren","child","getTypeReferenceShape","firstChild","getRecursiveNodeShape","nodeOrReference","computeRecursiveNodeShape","typeName","OpenApiManager","literalNode","typeLiteralNode","propNode","identifier","valueNode","questionMarkToken","typeReferenceNode","lastChild","getProperTypeShape","unionTypeNode","typeQueryNode","qualifiedNameNode","callExpressionNode","awaitExpressionNode","asExpressionNode","fileName","Logger","getShapeOfValidatorLiteral","objectLiteralNode","identifierNode","identifierName","innerLiteralNode","getValidatorPropertyShape","getValidatorPropertyOptionality","getValidatorPropertyStringValue","isZodCallExpression","callExpression","getZodCallShape","returnType","outputProp","inlineValidatorAsExpression","typeReference","childTypeReferenceNode","typeNode","childCallExpressionNode","callExpressionArgument","thingyNode","parsePropertyAssignment","prop","importTypeNode","indexOfGreaterThanToken","targetSyntaxList","intersectionType","validatorType","syntaxListNode","literalExpression","name","targetChild","c","value","targetValue","getValuesOfObjectLiteral","intersectionTypeNode","t","v","propertySignatureNode","isPromise","type","symbol","args","typeOrPromise","atLocation","stack","previousType","cacheKey","computeProperTypeShape","nextStack","arrayElementType","arrayBase","base","typeSymbolName","bufferLikeTypes","valueType","elementType","targetType","valueDeclaration","shape","isOptional","val","dedupedShapes","index","arr","dup","dupIndex","isNullable","shapes","total","current","getLiteralValueOfNode","resolveEndpointPath","firstArg","argType","targetNode"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"nodeParsers.mjs","sources":["../../../src/openapi/analyzerModule/nodeParsers.ts"],"sourcesContent":["import {\n\tNode,\n\tPropertyAccessExpression,\n\tPropertyAssignment,\n\tPropertySignature,\n\tShorthandPropertyAssignment,\n\tSyntaxKind,\n\tts,\n\tType,\n\tTypeReferenceNode,\n} from 'ts-morph'\n\nimport { Logger } from '../../utils/logger'\nimport { OpenApiManager } from '../manager/OpenApiManager'\nimport { ShapeOfProperty, ShapeOfType, ShapeOfUnionEntry } from './types'\n\nconst implementationCache = new WeakMap<Node, Node>()\nconst nodeShapeCache = new WeakMap<Node, ShapeOfType['shape']>()\nconst typeShapeCache = new WeakMap<object, ShapeOfType['shape']>()\n\nconst implementationBySymbolCache = new WeakMap<ts.Symbol, Node>()\n\nconst getCanonicalSymbol = (node: Node): ts.Symbol | undefined => {\n\tconst symbol = node.getSymbol()\n\tif (!symbol) {\n\t\treturn undefined\n\t}\n\treturn (symbol.getAliasedSymbol() ?? symbol).compilerSymbol\n}\n\nexport const findNodeImplementation = (node: Node): Node => {\n\tconst cached = implementationCache.get(node)\n\tif (cached) {\n\t\treturn cached\n\t}\n\n\tif (node.getKind() === SyntaxKind.Identifier) {\n\t\tconst symbol = getCanonicalSymbol(node)\n\t\tif (symbol) {\n\t\t\tconst cachedBySymbol = implementationBySymbolCache.get(symbol)\n\t\t\tif (cachedBySymbol) {\n\t\t\t\timplementationCache.set(node, cachedBySymbol)\n\t\t\t\treturn cachedBySymbol\n\t\t\t}\n\t\t}\n\n\t\tconst resolve = (): Node => {\n\t\t\tconst implementationNode = node.asKind(SyntaxKind.Identifier)!.getImplementations()[0]?.getNode()\n\t\t\tif (implementationNode) {\n\t\t\t\tconst implementationParentNode = implementationNode.getParent()!\n\t\t\t\tconst assignmentValueNode = implementationParentNode.getLastChild()!\n\t\t\t\tif (assignmentValueNode === node) {\n\t\t\t\t\tthrow new Error('Recursive implementation found')\n\t\t\t\t}\n\t\t\t\treturn findNodeImplementation(assignmentValueNode)\n\t\t\t}\n\n\t\t\tconst definitionNode = node.asKind(SyntaxKind.Identifier)!.getDefinitions()[0]?.getNode()\n\t\t\tif (definitionNode) {\n\t\t\t\tconst definitionParentNode = definitionNode.getParent()!\n\t\t\t\tconst assignmentValueNode = definitionParentNode.getLastChild()!\n\t\t\t\tif (assignmentValueNode === node) {\n\t\t\t\t\tthrow new Error('Recursive implementation found')\n\t\t\t\t}\n\t\t\t\treturn findNodeImplementation(assignmentValueNode)\n\t\t\t}\n\t\t\tthrow new Error('No implementation nor definition available')\n\t\t}\n\n\t\tconst result = resolve()\n\t\tif (symbol) {\n\t\t\timplementationBySymbolCache.set(symbol, result)\n\t\t}\n\t\timplementationCache.set(node, result)\n\t\treturn result\n\t}\n\n\timplementationCache.set(node, node)\n\treturn node\n}\n\nexport const findPropertyAssignmentValueNode = (\n\tnode:\n\t\t| PropertyAssignment\n\t\t| TypeReferenceNode\n\t\t| PropertySignature\n\t\t| PropertyAccessExpression\n\t\t| ShorthandPropertyAssignment,\n): Node => {\n\tconst identifierChildren = node.getChildrenOfKind(SyntaxKind.Identifier)\n\tif (identifierChildren.length === 2) {\n\t\treturn findNodeImplementation(identifierChildren[1])\n\t}\n\tconst lastMatchingChild = node.getChildren().reverse()\n\treturn lastMatchingChild.find(\n\t\t(child) =>\n\t\t\tchild.getKind() !== SyntaxKind.GreaterThanToken &&\n\t\t\tchild.getKind() !== SyntaxKind.CommaToken &&\n\t\t\tchild.getKind() !== SyntaxKind.SemicolonToken,\n\t)!\n}\n\nexport const getTypeReferenceShape = (node: TypeReferenceNode): ShapeOfType['shape'] => {\n\tconst firstChild = node.getFirstChildByKind(SyntaxKind.SyntaxList)!\n\tif (firstChild.isKind(SyntaxKind.SyntaxList)) {\n\t\treturn getRecursiveNodeShape(firstChild.getFirstChild()!)\n\t} else {\n\t\treturn getRecursiveNodeShape(firstChild)\n\t}\n}\n\nexport const getRecursiveNodeShape = (nodeOrReference: Node): ShapeOfType['shape'] => {\n\tconst cached = nodeShapeCache.get(nodeOrReference)\n\tif (cached !== undefined) {\n\t\treturn cached\n\t}\n\tconst result = computeRecursiveNodeShape(nodeOrReference)\n\tnodeShapeCache.set(nodeOrReference, result)\n\treturn result\n}\n\nconst computeRecursiveNodeShape = (nodeOrReference: Node): ShapeOfType['shape'] => {\n\tconst typeName = nodeOrReference.getSymbol()?.getName()\n\tif (typeName && OpenApiManager.getInstance().hasExposedModel(typeName)) {\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'ref',\n\t\t\t\tshape: typeName,\n\t\t\t\toptional: false,\n\t\t\t},\n\t\t]\n\t}\n\n\tconst node = findNodeImplementation(nodeOrReference)\n\n\t// Undefined\n\tconst undefinedNode = node.asKind(SyntaxKind.UndefinedKeyword)\n\tif (undefinedNode) {\n\t\treturn 'undefined'\n\t}\n\n\t// Literal type\n\tconst literalNode = node.asKind(SyntaxKind.LiteralType)\n\tif (literalNode) {\n\t\tif (literalNode.getFirstChildByKind(SyntaxKind.TrueKeyword)) {\n\t\t\treturn 'true'\n\t\t}\n\t\tif (literalNode.getFirstChildByKind(SyntaxKind.FalseKeyword)) {\n\t\t\treturn 'false'\n\t\t}\n\t}\n\n\t// Boolean literal\n\tconst booleanLiteralNode =\n\t\tnode.asKind(SyntaxKind.BooleanKeyword) ||\n\t\tnode.asKind(SyntaxKind.TrueKeyword) ||\n\t\tnode.asKind(SyntaxKind.FalseKeyword)\n\tif (booleanLiteralNode) {\n\t\treturn 'boolean'\n\t}\n\n\t// String literal\n\tconst stringLiteralNode = node.asKind(SyntaxKind.StringKeyword) || node.asKind(SyntaxKind.StringLiteral)\n\tif (stringLiteralNode) {\n\t\treturn 'string'\n\t}\n\n\t// Number literal\n\tconst numberLiteralNode = node.asKind(SyntaxKind.NumberKeyword) || node.asKind(SyntaxKind.NumericLiteral)\n\tif (numberLiteralNode) {\n\t\treturn 'number'\n\t}\n\n\t// BigInt literal\n\tconst bigIntNode = node.asKind(SyntaxKind.BigIntKeyword) || node.asKind(SyntaxKind.BigIntLiteral)\n\tif (bigIntNode) {\n\t\treturn 'bigint'\n\t}\n\n\t// Type literal\n\tconst typeLiteralNode = node.asKind(SyntaxKind.TypeLiteral)\n\tif (typeLiteralNode) {\n\t\tconst properties = typeLiteralNode\n\t\t\t.getFirstChildByKind(SyntaxKind.SyntaxList)!\n\t\t\t.getChildrenOfKind(SyntaxKind.PropertySignature)\n\n\t\tconst propertyShapes = properties.map((propNode) => {\n\t\t\tconst identifier = propNode.getFirstChildByKind(SyntaxKind.Identifier)!\n\t\t\tconst valueNode = findPropertyAssignmentValueNode(propNode)\n\t\t\tconst questionMarkToken = identifier.getNextSiblingIfKind(SyntaxKind.QuestionToken)\n\t\t\treturn {\n\t\t\t\trole: 'property' as const,\n\t\t\t\tidentifier: identifier.getText(),\n\t\t\t\tshape: getRecursiveNodeShape(valueNode),\n\t\t\t\toptional: valueNode.getType().isNullable() || !!questionMarkToken,\n\t\t\t}\n\t\t})\n\t\treturn propertyShapes\n\t}\n\n\t// Type reference\n\tconst typeReferenceNode = node.asKind(SyntaxKind.TypeReference)\n\tif (typeReferenceNode) {\n\t\treturn getRecursiveNodeShape(typeReferenceNode.getFirstChild()!)\n\t}\n\n\t// Property access expression\n\tconst propertyAccessNode = node.asKind(SyntaxKind.PropertyAccessExpression)\n\tif (propertyAccessNode) {\n\t\tconst lastChild = findNodeImplementation(node.getLastChild()!)\n\t\treturn getProperTypeShape(lastChild.asKind(SyntaxKind.CallExpression)!.getReturnType(), lastChild)\n\t}\n\n\t// Union type\n\tconst unionTypeNode = node.asKind(SyntaxKind.UnionType)\n\tif (unionTypeNode) {\n\t\treturn getProperTypeShape(unionTypeNode.getType(), node)\n\t}\n\n\t// Typeof query\n\tconst typeQueryNode = node.asKind(SyntaxKind.TypeQuery)\n\tif (typeQueryNode) {\n\t\treturn getRecursiveNodeShape(typeQueryNode.getLastChild()!)\n\t}\n\n\t// Qualified name\n\tconst qualifiedNameNode = node.asKind(SyntaxKind.QualifiedName)\n\tif (qualifiedNameNode) {\n\t\treturn getRecursiveNodeShape(qualifiedNameNode.getLastChild()!)\n\t}\n\n\t// Call expression\n\tconst callExpressionNode = node.asKind(SyntaxKind.CallExpression)\n\tif (callExpressionNode) {\n\t\treturn getProperTypeShape(callExpressionNode.getReturnType(), callExpressionNode)\n\t}\n\n\t// Await expression\n\tconst awaitExpressionNode = node.asKind(SyntaxKind.AwaitExpression)\n\tif (awaitExpressionNode) {\n\t\treturn getRecursiveNodeShape(awaitExpressionNode.getChildAtIndex(1)!)\n\t}\n\n\t// 'As' Expression\n\tconst asExpressionNode = node.asKind(SyntaxKind.AsExpression)\n\tif (asExpressionNode) {\n\t\treturn getRecursiveNodeShape(asExpressionNode.getChildAtIndex(2)!)\n\t}\n\n\t// TODO\n\tconst fileName = node.getSourceFile().getFilePath().split('/').pop()\n\tLogger.warn(`[${fileName}] Unknown node type: ${node.getKindName()}`)\n\treturn 'unknown_1'\n}\n\nexport const getShapeOfValidatorLiteral = (\n\tobjectLiteralNode: Node<ts.ObjectLiteralExpression>,\n): (ShapeOfProperty & { description: string; errorMessage: string })[] => {\n\tconst syntaxListNode = objectLiteralNode.getFirstDescendantByKind(SyntaxKind.SyntaxList)!\n\tconst assignmentNodes = syntaxListNode.getChildrenOfKind(SyntaxKind.PropertyAssignment)!\n\n\tconst properties = assignmentNodes.map((node) => {\n\t\tconst identifierNode = node.getFirstChild()!\n\t\tconst identifierName = (() => {\n\t\t\tif (identifierNode.isKind(SyntaxKind.Identifier)) {\n\t\t\t\treturn identifierNode.getText()\n\t\t\t}\n\t\t\tif (identifierNode.isKind(SyntaxKind.StringLiteral)) {\n\t\t\t\treturn identifierNode.getLiteralText()\n\t\t\t}\n\t\t\tconst fileName = node.getSourceFile().getFilePath().split('/').pop()\n\t\t\tLogger.warn(`[${fileName}] Unknown identifier name: ${identifierNode.getText()}`)\n\t\t\treturn 'unknown_30'\n\t\t})()\n\n\t\tconst assignmentValueNode = node.getLastChild()!\n\t\tconst innerLiteralNode = findNodeImplementation(assignmentValueNode)\n\n\t\treturn {\n\t\t\trole: 'property' as const,\n\t\t\tidentifier: identifierName,\n\t\t\tshape: getValidatorPropertyShape(innerLiteralNode),\n\t\t\toptional: getValidatorPropertyOptionality(innerLiteralNode),\n\t\t\tdescription: getValidatorPropertyStringValue(innerLiteralNode, 'description'),\n\t\t\terrorMessage: getValidatorPropertyStringValue(innerLiteralNode, 'errorMessage'),\n\t\t}\n\t})\n\n\treturn properties || []\n}\n\nconst returnTypeCache = new WeakMap<Node, Type>()\nconst getCallReturnType = (callExpression: Node): Type => {\n\tconst cached = returnTypeCache.get(callExpression)\n\tif (cached) {\n\t\treturn cached\n\t}\n\tconst result = callExpression.asKindOrThrow(SyntaxKind.CallExpression).getReturnType()\n\treturnTypeCache.set(callExpression, result)\n\treturn result\n}\n\nconst isZodCallExpression = (node: Node): boolean => {\n\tconst callExpression = node.asKind(SyntaxKind.CallExpression)\n\tif (!callExpression) {\n\t\treturn false\n\t}\n\tconst returnType = getCallReturnType(callExpression)\n\tconst typeName = returnType.getSymbol()?.getName() ?? ''\n\treturn typeName.startsWith('Zod')\n}\n\nconst getZodCallShape = (node: Node): ShapeOfType['shape'] => {\n\tconst callExpression = node.asKind(SyntaxKind.CallExpression)!\n\tconst returnType = getCallReturnType(callExpression)\n\tconst outputProp = returnType.getProperty('_output')\n\tif (outputProp) {\n\t\treturn getProperTypeShape(outputProp.getTypeAtLocation(callExpression), callExpression)\n\t}\n\tconst fileName = node.getSourceFile().getFilePath().split('/').pop()\n\tconst typeName = returnType.getSymbol()?.getName() ?? ''\n\tLogger.warn(`[${fileName}] Unknown zod type: ${typeName}`)\n\treturn 'unknown_zod'\n}\n\nexport const getValidatorPropertyShape = (innerLiteralNode: Node): ShapeOfType['shape'] => {\n\t// Zod validator (e.g. z.number(), z.string(), z.object({...}), z.array(...))\n\tif (isZodCallExpression(innerLiteralNode)) {\n\t\treturn getZodCallShape(innerLiteralNode)\n\t}\n\n\t// Inline definition with `as Validator<...>` clause\n\tconst inlineValidatorAsExpression = innerLiteralNode\n\t\t.getParent()!\n\t\t.getFirstChildByKind(SyntaxKind.AsExpression)\n\tif (inlineValidatorAsExpression) {\n\t\tconst typeReference = inlineValidatorAsExpression.getLastChildByKind(SyntaxKind.TypeReference)!\n\t\treturn getTypeReferenceShape(typeReference)\n\t}\n\n\t// Variable with `: Validator<...>` clause\n\tconst childTypeReferenceNode = innerLiteralNode.getParent()!.getFirstChildByKind(SyntaxKind.TypeReference)\n\tif (childTypeReferenceNode) {\n\t\treturn getTypeReferenceShape(childTypeReferenceNode)\n\t}\n\n\t// `RequiredParam<...>` inline call expression\n\tif (innerLiteralNode.getParent()!.getChildrenOfKind(SyntaxKind.SyntaxList).length >= 2) {\n\t\tconst typeNode = innerLiteralNode\n\t\t\t.getParent()!\n\t\t\t.getFirstChildByKind(SyntaxKind.SyntaxList)!\n\t\t\t.getFirstChild()!\n\t\treturn getRecursiveNodeShape(typeNode)\n\t}\n\n\t// `RequestParam | RequiredParam | OptionalParam` call expression\n\tconst childCallExpressionNode = innerLiteralNode.getParent()!.getFirstChildByKind(SyntaxKind.CallExpression)\n\tif (childCallExpressionNode) {\n\t\tconst callExpressionArgument = findNodeImplementation(\n\t\t\tchildCallExpressionNode.getFirstChildByKind(SyntaxKind.SyntaxList)!.getFirstChild()!,\n\t\t)\n\n\t\t// Param is a type reference\n\t\tconst typeReferenceNode = callExpressionArgument\n\t\t\t.getParent()!\n\t\t\t.getFirstChildByKind(SyntaxKind.TypeReference)!\n\t\tif (typeReferenceNode) {\n\t\t\treturn getProperTypeShape(typeReferenceNode.getType(), typeReferenceNode, [])\n\t\t}\n\n\t\tconst thingyNode = callExpressionArgument\n\t\t\t.getParent()!\n\t\t\t.getFirstChildByKind(SyntaxKind.ObjectLiteralExpression)!\n\t\tif (thingyNode) {\n\t\t\treturn getValidatorPropertyShape(thingyNode)\n\t\t}\n\n\t\tif (callExpressionArgument.getKind() === SyntaxKind.CallExpression) {\n\t\t\treturn getValidatorPropertyShape(callExpressionArgument)\n\t\t}\n\n\t\tif (callExpressionArgument.getKind() === SyntaxKind.IntersectionType) {\n\t\t\treturn getValidatorPropertyShape(callExpressionArgument)\n\t\t}\n\n\t\tconst fileName = innerLiteralNode.getSourceFile().getFilePath().split('/').pop()\n\t\tLogger.warn(`[${fileName}] Unknown call expression argument: ${callExpressionArgument.getKindName()}`)\n\t\treturn 'unknown_3'\n\t}\n\n\t// Attempting to infer type from `parse` function\n\tconst innerNodePropertyAssignments = innerLiteralNode\n\t\t.getFirstChildByKind(SyntaxKind.SyntaxList)!\n\t\t.getChildrenOfKind(SyntaxKind.PropertyAssignment)\n\tconst parsePropertyAssignment = innerNodePropertyAssignments.find((prop) => {\n\t\treturn prop.getFirstChildByKind(SyntaxKind.Identifier)?.getText() === 'parse'\n\t})\n\tif (parsePropertyAssignment) {\n\t\tconst returnType = findPropertyAssignmentValueNode(parsePropertyAssignment)\n\t\t\t.asKind(SyntaxKind.ArrowFunction)!\n\t\t\t.getReturnType()\n\t\treturn getProperTypeShape(returnType, parsePropertyAssignment)\n\t}\n\n\t// Import statement\n\tconst importTypeNode = innerLiteralNode\n\t\t.getFirstChildByKind(SyntaxKind.SyntaxList)\n\t\t?.getFirstChildByKind(SyntaxKind.ImportType)\n\tif (importTypeNode) {\n\t\tconst indexOfGreaterThanToken = importTypeNode\n\t\t\t.getLastChildByKind(SyntaxKind.GreaterThanToken)!\n\t\t\t.getChildIndex()\n\t\tconst targetSyntaxList = importTypeNode.getChildAtIndex(indexOfGreaterThanToken - 1)\n\t\treturn getRecursiveNodeShape(targetSyntaxList.getFirstChild()!)\n\t}\n\n\t// Intersection type with Validator\n\tconst intersectionType = innerLiteralNode.isKind(SyntaxKind.IntersectionType)\n\t\t? innerLiteralNode\n\t\t: innerLiteralNode.getParent()?.isKind(SyntaxKind.VariableDeclaration)\n\t\t\t? innerLiteralNode.getParent()?.getFirstChildByKind(SyntaxKind.IntersectionType)\n\t\t\t: null\n\n\tif (intersectionType) {\n\t\tconst validatorType = intersectionType.getFirstChildByKind(SyntaxKind.TypeReference)\n\t\tif (validatorType) {\n\t\t\treturn getTypeReferenceShape(validatorType)\n\t\t}\n\t}\n\n\tconst fileName = innerLiteralNode.getSourceFile().getFilePath().split('/').pop()\n\tLogger.warn(`[${fileName}] Unknown import type node`)\n\n\treturn 'unknown_2'\n}\n\nexport const getValidatorPropertyOptionality = (node: Node): boolean => {\n\tif (isZodCallExpression(node)) {\n\t\tconst callExpression = node.asKind(SyntaxKind.CallExpression)!\n\t\tconst returnType = getCallReturnType(callExpression)\n\t\tconst typeName = returnType.getSymbol()?.getName() ?? ''\n\t\tif (typeName === 'ZodOptional') {\n\t\t\treturn true\n\t\t}\n\t\treturn false\n\t}\n\n\tconst callExpressionNode = node.asKind(SyntaxKind.CallExpression)\n\tif (callExpressionNode) {\n\t\tconst identifierNode = callExpressionNode.getFirstChildByKind(SyntaxKind.Identifier)\n\t\tif (identifierNode?.getText() === 'OptionalParam') {\n\t\t\treturn true\n\t\t} else if (identifierNode?.getText() === 'RequiredParam') {\n\t\t\treturn false\n\t\t}\n\n\t\tconst syntaxListNode = callExpressionNode.getFirstChildByKind(SyntaxKind.SyntaxList)!\n\t\tconst literalExpression = findNodeImplementation(syntaxListNode.getFirstChild()!)\n\t\treturn getValidatorPropertyOptionality(literalExpression)\n\t}\n\n\tconst syntaxListNode = node.getFirstDescendantByKind(SyntaxKind.SyntaxList)!\n\tconst assignmentNodes = syntaxListNode.getChildrenOfKind(SyntaxKind.PropertyAssignment)!\n\n\treturn assignmentNodes.some((node) => {\n\t\tconst identifierNode = node.getFirstDescendantByKind(SyntaxKind.Identifier)!\n\t\tconst identifierName = identifierNode.getText()\n\n\t\tif (identifierName === 'optional') {\n\t\t\tconst value = findPropertyAssignmentValueNode(node)\n\t\t\treturn value.getKind() === SyntaxKind.TrueKeyword\n\t\t}\n\t\treturn false\n\t})\n}\n\nexport const getValidatorPropertyStringValue = (\n\tnodeOrReference: Node,\n\tname: 'description' | 'errorMessage',\n): string => {\n\tif (isZodCallExpression(nodeOrReference)) {\n\t\treturn ''\n\t}\n\n\tconst node = findNodeImplementation(nodeOrReference)\n\n\tconst callExpressionNode = node.asKind(SyntaxKind.CallExpression)\n\tif (callExpressionNode) {\n\t\tconst targetChild = callExpressionNode.getLastChildByKind(SyntaxKind.SyntaxList)!\n\t\treturn getValidatorPropertyStringValue(targetChild, name)\n\t}\n\n\tconst syntaxListNode = node.asKind(SyntaxKind.SyntaxList)\n\tif (syntaxListNode) {\n\t\tconst children = syntaxListNode.getChildren().map((c) => getValidatorPropertyStringValue(c, name))\n\t\treturn children.find((value) => !!value && value !== 'unknown_25') || ''\n\t}\n\n\tconst objectLiteralNode = node.asKind(SyntaxKind.ObjectLiteralExpression)\n\tif (objectLiteralNode) {\n\t\tconst values = getValuesOfObjectLiteral(objectLiteralNode)\n\t\tconst targetValue = values.find((value) => value.identifier === name)\n\t\tif (!targetValue) {\n\t\t\treturn ''\n\t\t}\n\t\tif (Array.isArray(targetValue.value)) {\n\t\t\treturn 'array'\n\t\t}\n\t\treturn targetValue.value || ''\n\t}\n\n\tconst intersectionTypeNode = node.asKind(SyntaxKind.IntersectionType)\n\tif (intersectionTypeNode) {\n\t\treturn (\n\t\t\tintersectionTypeNode\n\t\t\t\t.getTypeNodes()\n\t\t\t\t.flatMap((t) => getValidatorPropertyStringValue(t, name))\n\t\t\t\t.filter((v) => !!v && v !== 'unknown_25')[0] || 'unknown_27'\n\t\t)\n\t}\n\n\tconst typeLiteralNode = node.asKind(SyntaxKind.TypeLiteral)\n\tif (typeLiteralNode) {\n\t\treturn getValidatorPropertyStringValue(typeLiteralNode.getFirstChildByKind(SyntaxKind.SyntaxList)!, name)\n\t}\n\n\tconst propertySignatureNode = node.asKind(SyntaxKind.PropertySignature)\n\tif (propertySignatureNode) {\n\t\tconst identifier = node.getFirstDescendantByKind(SyntaxKind.Identifier)!\n\t\tif (identifier.getText() === name) {\n\t\t\tconst targetNode = findPropertyAssignmentValueNode(propertySignatureNode).getFirstDescendantByKind(\n\t\t\t\tSyntaxKind.StringLiteral,\n\t\t\t)!\n\t\t\treturn targetNode.getLiteralText()\n\t\t}\n\t}\n\n\tconst fileName = node.getSourceFile().getFilePath().split('/').pop()\n\tLogger.dev(`[${fileName}] Unknown property string value node ${node.getKindName()}`)\n\treturn 'unknown_25'\n}\n\nconst isPromise = (type: Type) => {\n\tconst symbol = type.getSymbol()\n\tif (!type.isObject() || !symbol) {\n\t\treturn false\n\t}\n\tconst args = type.getTypeArguments()\n\treturn symbol.getName() === 'Promise' && args.length === 1\n}\n\nexport const getProperTypeShape = (\n\ttypeOrPromise: Type,\n\tatLocation: Node,\n\tstack: Type[] = [],\n): ShapeOfType['shape'] => {\n\tconst typeName = typeOrPromise.getAliasSymbol()?.getName()\n\tif (typeName && OpenApiManager.getInstance().hasExposedModel(typeName)) {\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'ref',\n\t\t\t\tshape: typeName,\n\t\t\t\toptional: false,\n\t\t\t},\n\t\t]\n\t}\n\n\tconst type = isPromise(typeOrPromise) ? typeOrPromise.getTypeArguments()[0] : typeOrPromise\n\n\tif (stack.some((previousType) => previousType === type)) {\n\t\treturn 'circular'\n\t}\n\n\tconst cacheKey = type.compilerType\n\tconst cached = typeShapeCache.get(cacheKey)\n\tif (cached !== undefined) {\n\t\treturn cached\n\t}\n\tconst result = computeProperTypeShape(type, atLocation, stack)\n\ttypeShapeCache.set(cacheKey, result)\n\treturn result\n}\n\nconst computeProperTypeShape = (type: Type, atLocation: Node, stack: Type[]): ShapeOfType['shape'] => {\n\tconst nextStack = stack.concat(type)\n\n\tif (type.getText() === 'void') {\n\t\treturn 'void'\n\t}\n\n\tif (type.isAny()) {\n\t\treturn 'any'\n\t}\n\n\tif (type.isUnknown()) {\n\t\treturn 'unknown'\n\t}\n\n\tif (type.isNull()) {\n\t\treturn 'null'\n\t}\n\n\tif (type.isUndefined()) {\n\t\treturn 'undefined'\n\t}\n\n\tif (type.isBoolean() || type.isBooleanLiteral()) {\n\t\treturn 'boolean'\n\t}\n\n\tif (type.isStringLiteral()) {\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'literal_string' as const,\n\t\t\t\tshape: String(type.getLiteralValue()!),\n\t\t\t\toptional: false,\n\t\t\t},\n\t\t]\n\t}\n\n\tif (type.isNumberLiteral()) {\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'literal_number' as const,\n\t\t\t\tshape: String(type.getLiteralValue()!),\n\t\t\t\toptional: false,\n\t\t\t},\n\t\t]\n\t}\n\n\tif (type.isString() || type.isTemplateLiteral()) {\n\t\treturn 'string'\n\t}\n\n\tif (type.isNumber()) {\n\t\treturn 'number'\n\t}\n\n\tif (type.getText() === 'bigint') {\n\t\treturn 'bigint'\n\t}\n\n\tif (type.isTuple()) {\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'tuple' as const,\n\t\t\t\tshape: type.getTupleElements().map((t) => ({\n\t\t\t\t\trole: 'tuple_entry' as const,\n\t\t\t\t\tshape: getProperTypeShape(t, atLocation, nextStack),\n\t\t\t\t\toptional: false,\n\t\t\t\t})),\n\t\t\t\toptional: false,\n\t\t\t},\n\t\t]\n\t}\n\n\tif (type.isArray()) {\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'array' as const,\n\t\t\t\tshape: getProperTypeShape(type.getArrayElementType()!, atLocation, nextStack),\n\t\t\t\toptional: false,\n\t\t\t},\n\t\t]\n\t}\n\n\t// Handles `interface Foo extends Array<T>` (e.g. Prisma's JsonArray)\n\t// which fails type.isArray() but is still array-like\n\tif (type.isObject()) {\n\t\tconst arrayElementType = type.getNumberIndexType()\n\t\tconst baseTypes = type.getBaseTypes()\n\t\tconst arrayBase = baseTypes?.find((base) => base.isArray())\n\t\tif (arrayBase) {\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\trole: 'array' as const,\n\t\t\t\t\tshape: getProperTypeShape(\n\t\t\t\t\t\tarrayBase.getArrayElementType() ?? arrayElementType!,\n\t\t\t\t\t\tatLocation,\n\t\t\t\t\t\tnextStack,\n\t\t\t\t\t),\n\t\t\t\t\toptional: false,\n\t\t\t\t},\n\t\t\t]\n\t\t}\n\t}\n\n\tconst typeSymbolName = type.getSymbol()?.getName()\n\n\tconst bufferLikeTypes = new Set([\n\t\t'Buffer',\n\t\t'Uint8Array',\n\t\t'Int8Array',\n\t\t'Uint8ClampedArray',\n\t\t'Int16Array',\n\t\t'Uint16Array',\n\t\t'Int32Array',\n\t\t'Uint32Array',\n\t\t'Float32Array',\n\t\t'Float64Array',\n\t\t'BigInt64Array',\n\t\t'BigUint64Array',\n\t\t'ArrayBuffer',\n\t\t'SharedArrayBuffer',\n\t\t'ReadableStream',\n\t])\n\n\tif (type.isObject() && typeSymbolName && bufferLikeTypes.has(typeSymbolName)) {\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'buffer' as const,\n\t\t\t\tshape: 'buffer',\n\t\t\t\toptional: false,\n\t\t\t},\n\t\t]\n\t}\n\n\tif (type.isObject() && typeSymbolName === 'RegExp') {\n\t\treturn 'string'\n\t}\n\n\tif (type.isObject() && typeSymbolName === 'Map') {\n\t\tconst typeArgs = type.getTypeArguments()\n\t\tconst valueType = typeArgs[1]\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'record' as const,\n\t\t\t\tshape: valueType ? getProperTypeShape(valueType, atLocation, nextStack) : 'unknown',\n\t\t\t\toptional: false,\n\t\t\t},\n\t\t]\n\t}\n\n\tif (type.isObject() && typeSymbolName === 'Set') {\n\t\tconst typeArgs = type.getTypeArguments()\n\t\tconst elementType = typeArgs[0]\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'array' as const,\n\t\t\t\tshape: elementType ? getProperTypeShape(elementType, atLocation, nextStack) : 'unknown',\n\t\t\t\toptional: false,\n\t\t\t},\n\t\t]\n\t}\n\n\tif (type.isObject() && type.getProperties().length === 0) {\n\t\tconst targetType = type.getAliasTypeArguments()[1] ?? type.getStringIndexType()\n\t\tif (targetType) {\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\trole: 'record' as const,\n\t\t\t\t\tshape: getProperTypeShape(targetType, atLocation, nextStack),\n\t\t\t\t\toptional: false,\n\t\t\t\t},\n\t\t\t]\n\t\t}\n\t}\n\n\tif (type.isObject()) {\n\t\tif (typeSymbolName === 'Date' || type.getText() === 'Date') {\n\t\t\treturn 'Date'\n\t\t}\n\t\treturn type\n\t\t\t.getProperties()\n\t\t\t.map((prop) => {\n\t\t\t\tconst valueDeclaration = prop.getValueDeclaration() || prop.getDeclarations()[0]!\n\t\t\t\tconst shape = getProperTypeShape(prop.getTypeAtLocation(atLocation), atLocation, nextStack)\n\t\t\t\tif (!valueDeclaration) {\n\t\t\t\t\treturn {\n\t\t\t\t\t\trole: 'property' as const,\n\t\t\t\t\t\tidentifier: prop.getName(),\n\t\t\t\t\t\tshape,\n\t\t\t\t\t\toptional: false,\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tconst valueDeclarationNode =\n\t\t\t\t\tvalueDeclaration.asKind(SyntaxKind.PropertySignature) ||\n\t\t\t\t\tvalueDeclaration.asKind(SyntaxKind.PropertyAssignment) ||\n\t\t\t\t\tvalueDeclaration.asKind(SyntaxKind.ShorthandPropertyAssignment)\n\n\t\t\t\tif (!valueDeclarationNode) {\n\t\t\t\t\treturn {\n\t\t\t\t\t\trole: 'property' as const,\n\t\t\t\t\t\tidentifier: prop.getName(),\n\t\t\t\t\t\tshape,\n\t\t\t\t\t\toptional: false,\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tconst isOptional = prop.getTypeAtLocation(atLocation).isNullable()\n\n\t\t\t\treturn {\n\t\t\t\t\trole: 'property' as const,\n\t\t\t\t\tidentifier: prop.getName(),\n\t\t\t\t\tshape,\n\t\t\t\t\toptional: isOptional,\n\t\t\t\t}\n\t\t\t})\n\t\t\t.filter((val) => val.shape !== 'undefined')\n\t}\n\n\tif (type.isUnion()) {\n\t\tconst unfilteredShapes: ShapeOfUnionEntry[] = type.getUnionTypes().map((type) => ({\n\t\t\trole: 'union_entry',\n\t\t\tshape: getProperTypeShape(type, atLocation, nextStack),\n\t\t\toptional: false,\n\t\t}))\n\n\t\tconst dedupedShapes = unfilteredShapes.filter(\n\t\t\t(type, index, arr) => !arr.find((dup, dupIndex) => dup.shape === type.shape && dupIndex > index),\n\t\t)\n\t\tconst isNullable = dedupedShapes.some((shape) => shape.shape === 'undefined')\n\t\tconst shapes = dedupedShapes.filter((shape) => shape.shape !== 'undefined')\n\t\tif (shapes.length === 1) {\n\t\t\treturn shapes[0].shape\n\t\t}\n\t\treturn [\n\t\t\t{\n\t\t\t\trole: 'union',\n\t\t\t\tshape: shapes,\n\t\t\t\toptional: isNullable,\n\t\t\t},\n\t\t]\n\t}\n\n\tif (type.isIntersection()) {\n\t\tconst children = type.getIntersectionTypes()\n\t\tconst shapesOfChildren = children\n\t\t\t.map((child) => getProperTypeShape(child, atLocation, nextStack))\n\t\t\t.filter((shape) => typeof shape !== 'string') as ShapeOfProperty[][]\n\t\treturn shapesOfChildren.reduce<ShapeOfType[]>((total, current) => [...total, ...current], [])\n\t}\n\n\tconst fileName = atLocation.getSourceFile().getFilePath().split('/').pop()\n\tLogger.warn(`[${fileName}] Unknown type shape node ${type.getText()}`)\n\treturn 'unknown_5'\n}\n\nconst getLiteralValueOfNode = (node: Node): string | string[] | unknown[] => {\n\tif (node.isKind(SyntaxKind.Identifier)) {\n\t\treturn getLiteralValueOfNode(findNodeImplementation(node))\n\t} else if (node.isKind(SyntaxKind.StringLiteral)) {\n\t\treturn node.getLiteralValue()\n\t} else if (node.isKind(SyntaxKind.ArrayLiteralExpression)) {\n\t\treturn node.forEachChildAsArray().map((child) => getLiteralValueOfNode(child)) as string[]\n\t} else if (node.isKind(SyntaxKind.PropertyAccessExpression)) {\n\t\treturn getLiteralValueOfNode(findPropertyAssignmentValueNode(node))\n\t} else if (node.isKind(SyntaxKind.ObjectLiteralExpression)) {\n\t\treturn getValuesOfObjectLiteral(node)\n\t}\n\n\tconst fileName = node.getSourceFile().getFilePath().split('/').pop()\n\tLogger.dev(`[${fileName}] Unknown literal value node ${node.getKindName()}`)\n\n\treturn 'unknown_6'\n}\n\nexport const resolveEndpointPath = (node: Node): string | null => {\n\tconst callExpression = node.getFirstDescendantByKind(SyntaxKind.CallExpression)\n\tif (!callExpression) return null\n\n\tconst firstArg = callExpression.getArguments()[0]\n\tif (!firstArg) return null\n\n\tconst argType = firstArg.getType()\n\tif (argType.isStringLiteral()) {\n\t\treturn argType.getLiteralValue() as string\n\t}\n\n\treturn null\n}\n\nexport const getValuesOfObjectLiteral = (objectLiteralNode: Node<ts.ObjectLiteralExpression>) => {\n\tconst syntaxListNode = objectLiteralNode.getFirstDescendantByKind(SyntaxKind.SyntaxList)!\n\tconst assignmentNodes = syntaxListNode.getChildrenOfKind(SyntaxKind.PropertyAssignment)!\n\n\tconst properties = assignmentNodes.map((node) => {\n\t\tconst identifierNode = node.getFirstDescendantByKind(SyntaxKind.Identifier)!\n\t\tconst identifierName = identifierNode.getText()\n\n\t\tconst assignmentValueNode = node.getLastChild()!\n\t\tconst targetNode = findNodeImplementation(assignmentValueNode)\n\t\tconst value = getLiteralValueOfNode(targetNode)\n\n\t\treturn {\n\t\t\tidentifier: identifierName,\n\t\t\tvalue,\n\t\t}\n\t})\n\n\treturn properties || []\n}\n"],"names":["implementationCache","nodeShapeCache","typeShapeCache","implementationBySymbolCache","getCanonicalSymbol","node","symbol","findNodeImplementation","cached","SyntaxKind","cachedBySymbol","result","implementationNode","assignmentValueNode","definitionNode","findPropertyAssignmentValueNode","identifierChildren","child","getTypeReferenceShape","firstChild","getRecursiveNodeShape","nodeOrReference","computeRecursiveNodeShape","typeName","OpenApiManager","literalNode","typeLiteralNode","propNode","identifier","valueNode","questionMarkToken","typeReferenceNode","lastChild","getProperTypeShape","unionTypeNode","typeQueryNode","qualifiedNameNode","callExpressionNode","awaitExpressionNode","asExpressionNode","fileName","Logger","getShapeOfValidatorLiteral","objectLiteralNode","identifierNode","identifierName","innerLiteralNode","getValidatorPropertyShape","getValidatorPropertyOptionality","getValidatorPropertyStringValue","returnTypeCache","getCallReturnType","callExpression","isZodCallExpression","getZodCallShape","returnType","outputProp","inlineValidatorAsExpression","typeReference","childTypeReferenceNode","typeNode","childCallExpressionNode","callExpressionArgument","thingyNode","parsePropertyAssignment","prop","importTypeNode","indexOfGreaterThanToken","targetSyntaxList","intersectionType","validatorType","syntaxListNode","literalExpression","name","targetChild","c","value","targetValue","getValuesOfObjectLiteral","intersectionTypeNode","t","v","propertySignatureNode","isPromise","type","args","typeOrPromise","atLocation","stack","previousType","cacheKey","computeProperTypeShape","nextStack","arrayElementType","arrayBase","base","typeSymbolName","bufferLikeTypes","valueType","elementType","targetType","valueDeclaration","shape","isOptional","val","dedupedShapes","index","arr","dup","dupIndex","isNullable","shapes","total","current","getLiteralValueOfNode","resolveEndpointPath","firstArg","argType","targetNode"],"mappings":"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"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("fs"),p=require("path"),F=require("../discoverRouters/discoverRouters.cjs");function d(r){const s=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(r){for(const t in r)if(t!=="default"){const n=Object.getOwnPropertyDescriptor(r,t);Object.defineProperty(s,t,n.get?n:{enumerable:!0,get:()=>r[t]})}}return s.default=r,Object.freeze(s)}const l=d(a),m=d(p),g=({targetPath:r,excludedFiles:s,project:t})=>{if(!l.existsSync(r))return{discoveredRouterFiles:[],discoveredSourceFiles:[]};const n=(s??[]).map(e=>typeof e=="string"?new RegExp(`${e}`):e),f=[/^node_modules/,/^\./,/^dist/,/\.d\.ts$/,/\.spec\.ts$/,/\.test\.ts$/].concat(n??[]),c=l.readdirSync(r,{recursive:!0}).filter(e=>!(typeof e!="string"||f.some(o=>o.test(e))||!e.endsWith(".ts"))).map(e=>{const o=m.resolve(r,e);return{fileName:e,sourceFile:t.getSourceFile(o)}}).filter(e=>!!e.sourceFile);return{discoveredRouterFiles:c.map(e=>{const{fileName:o,sourceFile:u}=e,i=F.discoverRouters(u);return i.named.length===0&&i.anonymous.length===0?null:{fileName:o,sourceFile:u,routers:i}}).filter(e=>e!==null),discoveredSourceFiles:c.map(e=>e.sourceFile)}};exports.discoverRouterFiles=g;
|
|
2
2
|
//# sourceMappingURL=discoverRouterFiles.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"discoverRouterFiles.cjs","sources":["../../../../src/openapi/discoveryModule/discoverRouterFiles/discoverRouterFiles.ts"],"sourcesContent":["import * as fs from 'fs'\nimport * as path from 'path'\nimport { Project } from 'ts-morph'\n\nimport { discoverRouters } from '../discoverRouters/discoverRouters'\n\nexport type DiscoveredSourceFile = ReturnType<typeof discoverRouterFiles>['discoveredRouterFiles'][number]\n\nexport const discoverRouterFiles = ({\n\ttargetPath,\n\
|
|
1
|
+
{"version":3,"file":"discoverRouterFiles.cjs","sources":["../../../../src/openapi/discoveryModule/discoverRouterFiles/discoverRouterFiles.ts"],"sourcesContent":["import * as fs from 'fs'\nimport * as path from 'path'\nimport { Project } from 'ts-morph'\n\nimport { discoverRouters } from '../discoverRouters/discoverRouters'\n\nexport type DiscoveredSourceFile = ReturnType<typeof discoverRouterFiles>['discoveredRouterFiles'][number]\n\nexport const discoverRouterFiles = ({\n\ttargetPath,\n\texcludedFiles,\n\tproject,\n}: {\n\ttargetPath: string\n\texcludedFiles?: (string | RegExp)[]\n\tproject: Project\n}) => {\n\tif (!fs.existsSync(targetPath)) {\n\t\treturn { discoveredRouterFiles: [], discoveredSourceFiles: [] }\n\t}\n\n\tconst usersExcludedFiles = (excludedFiles ?? []).map((value) =>\n\t\ttypeof value === 'string' ? new RegExp(`${value}`) : value,\n\t)\n\tconst excludedPrefixes = [/^node_modules/, /^\\./, /^dist/, /\\.d\\.ts$/, /\\.spec\\.ts$/, /\\.test\\.ts$/].concat(\n\t\tusersExcludedFiles ?? [],\n\t)\n\n\tconst files = fs.readdirSync(targetPath, { recursive: true }).filter((filePath): filePath is string => {\n\t\tif (typeof filePath !== 'string') {\n\t\t\treturn false\n\t\t}\n\n\t\tif (excludedPrefixes.some((p) => p.test(filePath))) {\n\t\t\treturn false\n\t\t}\n\n\t\tif (!filePath.endsWith('.ts')) {\n\t\t\treturn false\n\t\t}\n\t\treturn true\n\t})\n\n\tconst allSourceFiles = files\n\t\t.map((fileName) => {\n\t\t\tconst filePath = path.resolve(targetPath, fileName)\n\t\t\treturn {\n\t\t\t\tfileName,\n\t\t\t\tsourceFile: project.getSourceFile(filePath),\n\t\t\t}\n\t\t})\n\t\t.filter(\n\t\t\t(\n\t\t\t\tfile,\n\t\t\t): file is Omit<typeof file, 'sourceFile'> & { sourceFile: NonNullable<(typeof file)['sourceFile']> } =>\n\t\t\t\t!!file.sourceFile,\n\t\t)\n\n\tconst routersInFiles = allSourceFiles\n\t\t.map((file) => {\n\t\t\tconst { fileName, sourceFile } = file\n\t\t\tconst routers = discoverRouters(sourceFile)\n\t\t\tif (routers.named.length === 0 && routers.anonymous.length === 0) {\n\t\t\t\treturn null\n\t\t\t}\n\t\t\treturn {\n\t\t\t\tfileName,\n\t\t\t\tsourceFile,\n\t\t\t\trouters,\n\t\t\t}\n\t\t})\n\t\t.filter((file): file is NonNullable<typeof file> => file !== null)\n\treturn {\n\t\tdiscoveredRouterFiles: routersInFiles,\n\t\tdiscoveredSourceFiles: allSourceFiles.map((file) => file.sourceFile),\n\t}\n}\n"],"names":["discoverRouterFiles","targetPath","excludedFiles","project","fs","usersExcludedFiles","value","excludedPrefixes","allSourceFiles","filePath","p","fileName","path","file","sourceFile","routers","discoverRouters"],"mappings":"6cAQaA,EAAsB,CAAC,CACnC,WAAAC,EACA,cAAAC,EACA,QAAAC,CACD,IAIM,CACL,GAAI,CAACC,EAAG,WAAWH,CAAU,EAC5B,MAAO,CAAE,sBAAuB,GAAI,sBAAuB,CAAA,CAAG,EAGzD,MAAAI,GAAsBH,GAAiB,CAAA,GAAI,IAAKI,GACrD,OAAOA,GAAU,SAAW,IAAI,OAAO,GAAGA,CAAK,EAAE,EAAIA,CACtD,EACMC,EAAmB,CAAC,gBAAiB,MAAO,QAAS,WAAY,cAAe,aAAa,EAAE,OACpGF,GAAsB,CAAA,CACvB,EAiBMG,EAfQJ,EAAG,YAAYH,EAAY,CAAE,UAAW,GAAM,EAAE,OAAQQ,GACjE,SAAOA,GAAa,UAIpBF,EAAiB,KAAMG,GAAMA,EAAE,KAAKD,CAAQ,CAAC,GAI7C,CAACA,EAAS,SAAS,KAAK,EAI5B,EAGC,IAAKE,GAAa,CAClB,MAAMF,EAAWG,EAAK,QAAQX,EAAYU,CAAQ,EAC3C,MAAA,CACN,SAAAA,EACA,WAAYR,EAAQ,cAAcM,CAAQ,CAC3C,CACA,CAAA,EACA,OAECI,GAEA,CAAC,CAACA,EAAK,UACT,EAgBM,MAAA,CACN,sBAfsBL,EACrB,IAAKK,GAAS,CACR,KAAA,CAAE,SAAAF,EAAU,WAAAG,CAAA,EAAeD,EAC3BE,EAAUC,kBAAgBF,CAAU,EAC1C,OAAIC,EAAQ,MAAM,SAAW,GAAKA,EAAQ,UAAU,SAAW,EACvD,KAED,CACN,SAAAJ,EACA,WAAAG,EACA,QAAAC,CACD,CACA,CAAA,EACA,OAAQF,GAA2CA,IAAS,IAAI,EAGjE,sBAAuBL,EAAe,IAAKK,GAASA,EAAK,UAAU,CACpE,CACD"}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import { Project } from 'ts-morph';
|
|
2
|
+
|
|
1
3
|
export type DiscoveredSourceFile = ReturnType<typeof discoverRouterFiles>['discoveredRouterFiles'][number];
|
|
2
|
-
export declare const discoverRouterFiles: ({ targetPath,
|
|
4
|
+
export declare const discoverRouterFiles: ({ targetPath, excludedFiles, project, }: {
|
|
3
5
|
targetPath: string;
|
|
4
|
-
tsConfigPath: string;
|
|
5
6
|
excludedFiles?: (string | RegExp)[];
|
|
7
|
+
project: Project;
|
|
6
8
|
}) => {
|
|
7
9
|
discoveredRouterFiles: {
|
|
8
10
|
fileName: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"discoverRouterFiles.d.ts","sourceRoot":"","sources":["../../../../src/openapi/discoveryModule/discoverRouterFiles/discoverRouterFiles.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"discoverRouterFiles.d.ts","sourceRoot":"","sources":["../../../../src/openapi/discoveryModule/discoverRouterFiles/discoverRouterFiles.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,UAAU,CAAA;AAIlC,MAAM,MAAM,oBAAoB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC,uBAAuB,CAAC,CAAC,MAAM,CAAC,CAAA;AAE1G,eAAO,MAAM,mBAAmB,4CAI7B;IACF,UAAU,EAAE,MAAM,CAAA;IAClB,aAAa,CAAC,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,CAAA;IACnC,OAAO,EAAE,OAAO,CAAA;CAChB;;;;;;;;;;CA4DA,CAAA"}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import * as n from "fs";
|
|
2
|
-
import * as
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
const R = ({
|
|
2
|
+
import * as f from "path";
|
|
3
|
+
import { discoverRouters as m } from "../discoverRouters/discoverRouters.mjs";
|
|
4
|
+
const v = ({
|
|
6
5
|
targetPath: s,
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
excludedFiles: u,
|
|
7
|
+
project: c
|
|
9
8
|
}) => {
|
|
10
9
|
if (!n.existsSync(s))
|
|
11
10
|
return { discoveredRouterFiles: [], discoveredSourceFiles: [] };
|
|
@@ -13,21 +12,18 @@ const R = ({
|
|
|
13
12
|
(e) => typeof e == "string" ? new RegExp(`${e}`) : e
|
|
14
13
|
), d = [/^node_modules/, /^\./, /^dist/, /\.d\.ts$/, /\.spec\.ts$/, /\.test\.ts$/].concat(
|
|
15
14
|
l ?? []
|
|
16
|
-
),
|
|
17
|
-
|
|
18
|
-
skipFileDependencyResolution: !0
|
|
19
|
-
}), o = f.map((e) => {
|
|
20
|
-
const r = m.resolve(s, e);
|
|
15
|
+
), o = n.readdirSync(s, { recursive: !0 }).filter((e) => !(typeof e != "string" || d.some((r) => r.test(e)) || !e.endsWith(".ts"))).map((e) => {
|
|
16
|
+
const r = f.resolve(s, e);
|
|
21
17
|
return {
|
|
22
18
|
fileName: e,
|
|
23
|
-
sourceFile:
|
|
19
|
+
sourceFile: c.getSourceFile(r)
|
|
24
20
|
};
|
|
25
21
|
}).filter(
|
|
26
22
|
(e) => !!e.sourceFile
|
|
27
23
|
);
|
|
28
24
|
return {
|
|
29
25
|
discoveredRouterFiles: o.map((e) => {
|
|
30
|
-
const { fileName: r, sourceFile: i } = e, t =
|
|
26
|
+
const { fileName: r, sourceFile: i } = e, t = m(i);
|
|
31
27
|
return t.named.length === 0 && t.anonymous.length === 0 ? null : {
|
|
32
28
|
fileName: r,
|
|
33
29
|
sourceFile: i,
|
|
@@ -38,6 +34,6 @@ const R = ({
|
|
|
38
34
|
};
|
|
39
35
|
};
|
|
40
36
|
export {
|
|
41
|
-
|
|
37
|
+
v as discoverRouterFiles
|
|
42
38
|
};
|
|
43
39
|
//# sourceMappingURL=discoverRouterFiles.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"discoverRouterFiles.mjs","sources":["../../../../src/openapi/discoveryModule/discoverRouterFiles/discoverRouterFiles.ts"],"sourcesContent":["import * as fs from 'fs'\nimport * as path from 'path'\nimport { Project } from 'ts-morph'\n\nimport { discoverRouters } from '../discoverRouters/discoverRouters'\n\nexport type DiscoveredSourceFile = ReturnType<typeof discoverRouterFiles>['discoveredRouterFiles'][number]\n\nexport const discoverRouterFiles = ({\n\ttargetPath,\n\
|
|
1
|
+
{"version":3,"file":"discoverRouterFiles.mjs","sources":["../../../../src/openapi/discoveryModule/discoverRouterFiles/discoverRouterFiles.ts"],"sourcesContent":["import * as fs from 'fs'\nimport * as path from 'path'\nimport { Project } from 'ts-morph'\n\nimport { discoverRouters } from '../discoverRouters/discoverRouters'\n\nexport type DiscoveredSourceFile = ReturnType<typeof discoverRouterFiles>['discoveredRouterFiles'][number]\n\nexport const discoverRouterFiles = ({\n\ttargetPath,\n\texcludedFiles,\n\tproject,\n}: {\n\ttargetPath: string\n\texcludedFiles?: (string | RegExp)[]\n\tproject: Project\n}) => {\n\tif (!fs.existsSync(targetPath)) {\n\t\treturn { discoveredRouterFiles: [], discoveredSourceFiles: [] }\n\t}\n\n\tconst usersExcludedFiles = (excludedFiles ?? []).map((value) =>\n\t\ttypeof value === 'string' ? new RegExp(`${value}`) : value,\n\t)\n\tconst excludedPrefixes = [/^node_modules/, /^\\./, /^dist/, /\\.d\\.ts$/, /\\.spec\\.ts$/, /\\.test\\.ts$/].concat(\n\t\tusersExcludedFiles ?? [],\n\t)\n\n\tconst files = fs.readdirSync(targetPath, { recursive: true }).filter((filePath): filePath is string => {\n\t\tif (typeof filePath !== 'string') {\n\t\t\treturn false\n\t\t}\n\n\t\tif (excludedPrefixes.some((p) => p.test(filePath))) {\n\t\t\treturn false\n\t\t}\n\n\t\tif (!filePath.endsWith('.ts')) {\n\t\t\treturn false\n\t\t}\n\t\treturn true\n\t})\n\n\tconst allSourceFiles = files\n\t\t.map((fileName) => {\n\t\t\tconst filePath = path.resolve(targetPath, fileName)\n\t\t\treturn {\n\t\t\t\tfileName,\n\t\t\t\tsourceFile: project.getSourceFile(filePath),\n\t\t\t}\n\t\t})\n\t\t.filter(\n\t\t\t(\n\t\t\t\tfile,\n\t\t\t): file is Omit<typeof file, 'sourceFile'> & { sourceFile: NonNullable<(typeof file)['sourceFile']> } =>\n\t\t\t\t!!file.sourceFile,\n\t\t)\n\n\tconst routersInFiles = allSourceFiles\n\t\t.map((file) => {\n\t\t\tconst { fileName, sourceFile } = file\n\t\t\tconst routers = discoverRouters(sourceFile)\n\t\t\tif (routers.named.length === 0 && routers.anonymous.length === 0) {\n\t\t\t\treturn null\n\t\t\t}\n\t\t\treturn {\n\t\t\t\tfileName,\n\t\t\t\tsourceFile,\n\t\t\t\trouters,\n\t\t\t}\n\t\t})\n\t\t.filter((file): file is NonNullable<typeof file> => file !== null)\n\treturn {\n\t\tdiscoveredRouterFiles: routersInFiles,\n\t\tdiscoveredSourceFiles: allSourceFiles.map((file) => file.sourceFile),\n\t}\n}\n"],"names":["discoverRouterFiles","targetPath","excludedFiles","project","fs","usersExcludedFiles","value","excludedPrefixes","allSourceFiles","filePath","p","fileName","path","file","sourceFile","routers","discoverRouters"],"mappings":";;;AAQO,MAAMA,IAAsB,CAAC;AAAA,EACnC,YAAAC;AAAA,EACA,eAAAC;AAAA,EACA,SAAAC;AACD,MAIM;AACL,MAAI,CAACC,EAAG,WAAWH,CAAU;AAC5B,WAAO,EAAE,uBAAuB,IAAI,uBAAuB,CAAA,EAAG;AAGzD,QAAAI,KAAsBH,KAAiB,CAAA,GAAI;AAAA,IAAI,CAACI,MACrD,OAAOA,KAAU,WAAW,IAAI,OAAO,GAAGA,CAAK,EAAE,IAAIA;AAAA,EACtD,GACMC,IAAmB,CAAC,iBAAiB,OAAO,SAAS,YAAY,eAAe,aAAa,EAAE;AAAA,IACpGF,KAAsB,CAAA;AAAA,EACvB,GAiBMG,IAfQJ,EAAG,YAAYH,GAAY,EAAE,WAAW,IAAM,EAAE,OAAO,CAACQ,MACjE,SAAOA,KAAa,YAIpBF,EAAiB,KAAK,CAACG,MAAMA,EAAE,KAAKD,CAAQ,CAAC,KAI7C,CAACA,EAAS,SAAS,KAAK,EAI5B,EAGC,IAAI,CAACE,MAAa;AAClB,UAAMF,IAAWG,EAAK,QAAQX,GAAYU,CAAQ;AAC3C,WAAA;AAAA,MACN,UAAAA;AAAA,MACA,YAAYR,EAAQ,cAAcM,CAAQ;AAAA,IAC3C;AAAA,EACA,CAAA,EACA;AAAA,IACA,CACCI,MAEA,CAAC,CAACA,EAAK;AAAA,EACT;AAgBM,SAAA;AAAA,IACN,uBAfsBL,EACrB,IAAI,CAACK,MAAS;AACR,YAAA,EAAE,UAAAF,GAAU,YAAAG,EAAA,IAAeD,GAC3BE,IAAUC,EAAgBF,CAAU;AAC1C,aAAIC,EAAQ,MAAM,WAAW,KAAKA,EAAQ,UAAU,WAAW,IACvD,OAED;AAAA,QACN,UAAAJ;AAAA,QACA,YAAAG;AAAA,QACA,SAAAC;AAAA,MACD;AAAA,IACA,CAAA,EACA,OAAO,CAACF,MAA2CA,MAAS,IAAI;AAAA,IAGjE,uBAAuBL,EAAe,IAAI,CAACK,MAASA,EAAK,UAAU;AAAA,EACpE;AACD;"}
|
package/package.json
CHANGED
|
@@ -109,7 +109,7 @@ export const prepareOpenApiSpec = async ({
|
|
|
109
109
|
const startTime = performance.now()
|
|
110
110
|
const files = discoverRouterFiles({
|
|
111
111
|
targetPath: typeof sourceFileDiscovery === 'object' ? sourceFileDiscovery.rootPath : '.',
|
|
112
|
-
|
|
112
|
+
project,
|
|
113
113
|
})
|
|
114
114
|
if (profiling !== 'off') {
|
|
115
115
|
Logger.info(`File discovery took ${Math.round(performance.now() - startTime)}ms`)
|
|
@@ -271,7 +271,6 @@ export const analyzeMultipleSourceFiles = async (
|
|
|
271
271
|
pool.terminate()
|
|
272
272
|
}
|
|
273
273
|
|
|
274
|
-
// Each result maps 1:1 to a file task.
|
|
275
274
|
for (let i = 0; i < results.length; i++) {
|
|
276
275
|
const result = results[i]
|
|
277
276
|
const fileName = allTasks[i].fileName
|
|
@@ -288,7 +287,6 @@ export const analyzeMultipleSourceFiles = async (
|
|
|
288
287
|
}
|
|
289
288
|
}
|
|
290
289
|
|
|
291
|
-
// Write cache for each uncached file
|
|
292
290
|
for (const { file, timestamp } of uncached) {
|
|
293
291
|
const fileResult = byFile.get(file.fileName)!
|
|
294
292
|
if (fileResult.endpoints.length > 0) {
|
|
@@ -1,26 +1,31 @@
|
|
|
1
1
|
import fs from 'fs'
|
|
2
|
-
import { SourceFile,
|
|
2
|
+
import { SourceFile, ts } from 'ts-morph'
|
|
3
3
|
|
|
4
4
|
import { formatTimestamp, Logger } from '../../utils/logger'
|
|
5
5
|
|
|
6
|
-
export type TimestampCache = Record<string, { dependencies:
|
|
7
|
-
|
|
8
|
-
/**
|
|
9
|
-
* Per-run cache of file mtimes keyed by absolute path. Router files share large parts of their
|
|
10
|
-
* transitive import graphs (common types, utils, models), so without this the same dependency gets
|
|
11
|
-
* `statSync`-ed once per importing router — tens of thousands of redundant syscalls across a project
|
|
12
|
-
* with dozens of routers. mtimes don't change mid-run, so memoizing is safe.
|
|
13
|
-
*/
|
|
6
|
+
export type TimestampCache = Record<string, { dependencies: string[] }>
|
|
14
7
|
export type MtimeCache = Map<string, number>
|
|
15
8
|
|
|
9
|
+
const resolutionHost: ts.ModuleResolutionHost = ts.sys
|
|
10
|
+
const resolutionCacheByOptions = new WeakMap<ts.CompilerOptions, ts.ModuleResolutionCache>()
|
|
11
|
+
|
|
12
|
+
const getResolutionCache = (options: ts.CompilerOptions): ts.ModuleResolutionCache => {
|
|
13
|
+
let cache = resolutionCacheByOptions.get(options)
|
|
14
|
+
if (!cache) {
|
|
15
|
+
cache = ts.createModuleResolutionCache(ts.sys.getCurrentDirectory(), (fileName) => fileName, options)
|
|
16
|
+
resolutionCacheByOptions.set(options, cache)
|
|
17
|
+
}
|
|
18
|
+
return cache
|
|
19
|
+
}
|
|
20
|
+
|
|
16
21
|
export function getSourceFileTimestamp(
|
|
17
22
|
sourceFile: SourceFile,
|
|
18
23
|
timestampCache: TimestampCache,
|
|
19
24
|
mtimeCache: MtimeCache = new Map(),
|
|
20
25
|
) {
|
|
21
|
-
const
|
|
22
|
-
const
|
|
23
|
-
|
|
26
|
+
const compilerOptions = sourceFile.getProject().getCompilerOptions()
|
|
27
|
+
const dependencies = getFileDependencies(sourceFile.getFilePath(), compilerOptions, timestampCache)
|
|
28
|
+
const timestamps = dependencies.map((depPath) => {
|
|
24
29
|
const cached = mtimeCache.get(depPath)
|
|
25
30
|
if (cached !== undefined) {
|
|
26
31
|
return cached
|
|
@@ -32,49 +37,59 @@ export function getSourceFileTimestamp(
|
|
|
32
37
|
const latestTimestamp = Math.max(...timestamps)
|
|
33
38
|
|
|
34
39
|
const fileName = sourceFile.getFilePath().split('/').pop()
|
|
35
|
-
const depsCount = dependencies.length
|
|
36
40
|
Logger.debug(
|
|
37
|
-
`[${fileName}] Found ${
|
|
41
|
+
`[${fileName}] Found ${dependencies.length} imports, latest touched at ${formatTimestamp(latestTimestamp)}.`,
|
|
38
42
|
)
|
|
39
43
|
|
|
40
44
|
return latestTimestamp
|
|
41
45
|
}
|
|
42
46
|
|
|
43
|
-
function getFileDependencies(
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
const cacheHit = timestampCache[sourceFile.getFilePath()]
|
|
47
|
+
function getFileDependencies(
|
|
48
|
+
filePath: string,
|
|
49
|
+
options: ts.CompilerOptions,
|
|
50
|
+
timestampCache: TimestampCache,
|
|
51
|
+
): string[] {
|
|
52
|
+
const cacheHit = timestampCache[filePath]
|
|
50
53
|
if (cacheHit) {
|
|
51
54
|
return cacheHit.dependencies
|
|
52
55
|
}
|
|
53
56
|
|
|
54
|
-
|
|
55
|
-
timestampCache[sourceFile.getFilePath()] = { dependencies: [] }
|
|
57
|
+
timestampCache[filePath] = { dependencies: [filePath] }
|
|
56
58
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
+
const fileName = filePath.split('/').pop()
|
|
60
|
+
const sourceText = ts.sys.readFile(filePath)
|
|
61
|
+
if (sourceText === undefined) {
|
|
62
|
+
return timestampCache[filePath].dependencies
|
|
63
|
+
}
|
|
59
64
|
|
|
60
|
-
|
|
65
|
+
try {
|
|
66
|
+
const closure = new Set<string>([filePath])
|
|
67
|
+
const { importedFiles } = ts.preProcessFile(sourceText, true, true)
|
|
68
|
+
const resolutionCache = getResolutionCache(options)
|
|
61
69
|
|
|
62
|
-
for (const
|
|
63
|
-
const
|
|
64
|
-
|
|
65
|
-
|
|
70
|
+
for (const imported of importedFiles) {
|
|
71
|
+
const { resolvedModule } = ts.resolveModuleName(
|
|
72
|
+
imported.fileName,
|
|
73
|
+
filePath,
|
|
74
|
+
options,
|
|
75
|
+
resolutionHost,
|
|
76
|
+
resolutionCache,
|
|
77
|
+
)
|
|
78
|
+
if (!resolvedModule) {
|
|
79
|
+
Logger.debug(`[${fileName}] Could not resolve import ${imported.fileName}.`)
|
|
66
80
|
continue
|
|
67
81
|
}
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
82
|
+
for (const dep of getFileDependencies(resolvedModule.resolvedFileName, options, timestampCache)) {
|
|
83
|
+
closure.add(dep)
|
|
84
|
+
}
|
|
71
85
|
}
|
|
72
86
|
|
|
73
|
-
|
|
74
|
-
|
|
87
|
+
const dependencies = [...closure]
|
|
88
|
+
timestampCache[filePath] = { dependencies }
|
|
89
|
+
return dependencies
|
|
75
90
|
} catch (error) {
|
|
76
91
|
Logger.warn(`[${fileName}] Caught an error while processing imports:`, error)
|
|
77
|
-
timestampCache[
|
|
78
|
-
return []
|
|
92
|
+
timestampCache[filePath] = { dependencies: [filePath] }
|
|
93
|
+
return timestampCache[filePath].dependencies
|
|
79
94
|
}
|
|
80
95
|
}
|