typia
Version:
Superfast runtime validators with only one line
96 lines (87 loc) • 3.29 kB
text/typescript
import { ILlmSchema } from "@samchon/openapi";
import ts from "typescript";
import { MetadataCollection } from "../../factories/MetadataCollection";
import { MetadataFactory } from "../../factories/MetadataFactory";
import { Metadata } from "../../schemas/metadata/Metadata";
import { MetadataObject } from "../../schemas/metadata/MetadataObject";
import { ITypiaContext } from "../../transformers/ITypiaContext";
import { TransformerError } from "../../transformers/TransformerError";
import { ValidationPipe } from "../../typings/ValidationPipe";
export namespace LlmMetadataFactory {
export const getConfig = (props: {
context: ITypiaContext;
method: string;
node: ts.TypeNode | undefined;
}):
| Partial<
ILlmSchema.IConfig & {
equals: boolean;
}
>
| undefined => {
if (props.node === undefined) return undefined;
const type: ts.Type = props.context.checker.getTypeFromTypeNode(props.node);
const collection: MetadataCollection = new MetadataCollection();
const result: ValidationPipe<Metadata, MetadataFactory.IError> =
MetadataFactory.analyze({
checker: props.context.checker,
transformer: props.context.transformer,
options: {
absorb: true,
escape: false,
constant: true,
functional: false,
},
collection,
type,
});
if (result.success === false)
throw new TransformerError({
code: `typia.llm.${props.method}`,
message: `Failed to analyze generic argument "Config".`,
});
const meta: Metadata = result.data;
if (
meta.size() !== 1 ||
meta.objects.length !== 1 ||
meta.nullable === true ||
meta.isRequired() === false
)
throw new TransformerError({
code: `typia.llm.${props.method}`,
message: `Invalid generic argument "Config". It must be a literal object type.`,
});
const obj: MetadataObject = meta.objects[0]!;
if (obj.type.properties.some((p) => p.key.isSoleLiteral() === false))
throw new TransformerError({
code: `typia.llm.${props.method}`,
message: `Invalid generic argument "Config". It must be a literal object type. Do not allow dynamic properties.`,
});
else if (
obj.type.properties.some(
(p) =>
p.value.size() !== 1 ||
p.value.constants.length !== 1 ||
p.value.nullable === true ||
p.value.isRequired() === false,
)
)
throw new TransformerError({
code: `typia.llm.${props.method}`,
message: `Invalid generic argument "Config". It must be a literal object type. Do not allow variable type.`,
});
const config: Partial<ILlmSchema.IConfig> = {};
for (const prop of obj.type.properties) {
const key: string = prop.key.getSoleLiteral()!;
const value: boolean | bigint | number | string =
prop.value.constants[0]!.values[0]!.value;
if (typeof value === "bigint")
throw new TransformerError({
code: `typia.llm.${props.method}`,
message: `Invalid generic argument "Config". It must be a literal object type. Do not allow bigint.`,
});
(config as any)[key] = value;
}
return config;
};
}