-
Notifications
You must be signed in to change notification settings - Fork 210
Expand file tree
/
Copy pathschema-error.ts
More file actions
149 lines (128 loc) · 5.07 KB
/
Copy pathschema-error.ts
File metadata and controls
149 lines (128 loc) · 5.07 KB
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
// adapted from https://github.com/apideck-libraries/better-ajv-errors (MIT)
// https://github.com/apideck-libraries/better-ajv-errors/tree/026206038919c1fb73b4e8ef258a2e4a01813c4a
import {DefinedError, ErrorObject} from "ajv";
import pointer from "jsonpointer";
export interface ValidationError {
message: string;
path: string;
schemaPath: string;
}
const QUOTES_REGEX = /"/g;
const NOT_REGEX = /NOT/g;
const SLASH_REGEX = /\//g;
const AJV_ERROR_KEYWORD_WEIGHT_MAP: Partial<Record<DefinedError["keyword"], number>> = {enum: 1, type: 0};
const pointerToDotNotation = (pointer: string): string => {
return pointer.replaceAll(SLASH_REGEX, ".");
};
const cleanAjvMessage = (message: string): string => {
return message.replaceAll(QUOTES_REGEX, "'").replaceAll(NOT_REGEX, "not");
};
const getLastSegment = (path: string): string => {
const segments = path.split("/");
return segments.pop() as string;
};
const safeJsonPointer = <T>({object, pnter, fallback}: {object: any; pnter: string; fallback: T}): T => {
try {
return pointer.get(object, pnter) ?? fallback;
} catch {
return fallback;
}
};
const filterSingleErrorPerProperty = (errors: DefinedError[]): DefinedError[] => {
const errorsPerProperty: Record<string, DefinedError> = {};
errors.forEach(error => {
const prop =
error.instancePath + ((error.params as any)?.additionalProperty ?? (error.params as any)?.missingProperty ?? "");
const existingError = errorsPerProperty[prop];
if (!existingError) {
errorsPerProperty[prop] = error;
return errorsPerProperty;
}
const weight = AJV_ERROR_KEYWORD_WEIGHT_MAP[error.keyword] ?? 0;
const existingWeight = AJV_ERROR_KEYWORD_WEIGHT_MAP[existingError.keyword] ?? 0;
if (weight > existingWeight) {
errorsPerProperty[prop] = error;
}
});
return Object.values(errorsPerProperty);
};
interface BetterAjvErrorsOptions {
errors: ErrorObject[] | null | undefined;
data: any;
basePath?: string;
}
export const betterAjvErrors = ({
errors,
data,
basePath = "",
}: BetterAjvErrorsOptions): ValidationError[] => {
if (!Array.isArray(errors) || !errors?.length) {
return [];
}
const definedErrors = filterSingleErrorPerProperty(errors as DefinedError[]);
return definedErrors.map((error) => {
const path = basePath ? pointerToDotNotation(basePath + error.instancePath) : pointerToDotNotation(error.instancePath).substring(1);
const prop = getLastSegment(error.instancePath);
const schemaPath = error.schemaPath;
const propertyMessage = prop ? `property '${prop}'` : path;
const defaultMessage = `${propertyMessage} ${(cleanAjvMessage(error.message as string))}`;
let validationError: ValidationError;
switch (error.keyword) {
case "additionalProperties": {
const additionalProp = error.params.additionalProperty;
validationError = {
message: `'${additionalProp}' property is not expected to be here`,
path,
schemaPath,
};
break;
}
case "enum": {
const allowedValues = error.params.allowedValues.map((value) => value.toString());
const prop = getLastSegment(error.instancePath);
const value = safeJsonPointer({object: data, pnter: error.instancePath, fallback: ""});
validationError = {
message: `'${prop}' property must be one of [${allowedValues.join(", ")}] (found ${value})`,
path,
schemaPath,
};
break;
}
case "type": {
const prop = getLastSegment(error.instancePath);
const type = error.params.type;
validationError = {
message: `'${prop}' property type must be ${type}`,
path,
schemaPath,
};
break;
}
case "required": {
validationError = {
message: `${path} must have required property '${error.params.missingProperty}'`,
path,
schemaPath,
};
break;
}
case "const": {
return {
message: `'${prop}' property must be equal to the allowed value`,
path,
schemaPath,
};
}
default:
validationError = {message: defaultMessage, path, schemaPath};
}
// Remove empty properties
const errorEntries = Object.entries(validationError);
for (const [key, value] of errorEntries as [keyof ValidationError, unknown][]) {
if (value === null || value === undefined || value === "") {
delete validationError[key];
}
}
return validationError;
});
};