-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrorHandler.js
More file actions
253 lines (234 loc) · 6.47 KB
/
errorHandler.js
File metadata and controls
253 lines (234 loc) · 6.47 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
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
// ==========================================
// Error Handler Utility - Standardized Error Responses
// ==========================================
// This provides:
// - Consistent error response shape across all endpoints
// - Machine-readable error codes
// - Structured error details
// - Request correlation via requestId
// - Best practices for API error contracts
class ErrorHandler {
constructor() {
// Standard HTTP-aligned error codes
this.ErrorCodes = {
// Client errors (4xx)
BAD_REQUEST: "BAD_REQUEST",
VALIDATION_ERROR: "VALIDATION_ERROR",
UNAUTHORIZED: "UNAUTHORIZED",
FORBIDDEN: "FORBIDDEN",
NOT_FOUND: "NOT_FOUND",
CONFLICT: "CONFLICT",
UNPROCESSABLE_ENTITY: "UNPROCESSABLE_ENTITY",
// Server errors (5xx)
INTERNAL_ERROR: "INTERNAL_ERROR",
NOT_IMPLEMENTED: "NOT_IMPLEMENTED",
SERVICE_UNAVAILABLE: "SERVICE_UNAVAILABLE",
// Application-specific errors
INVALID_JSON: "INVALID_JSON",
MISSING_REQUIRED_FIELD: "MISSING_REQUIRED_FIELD",
INVALID_TOKEN: "INVALID_TOKEN",
INSUFFICIENT_PERMISSIONS: "INSUFFICIENT_PERMISSIONS",
TASK_NOT_FOUND: "TASK_NOT_FOUND",
};
// Map error codes to HTTP status codes
this.StatusCodeMap = {
[this.ErrorCodes.BAD_REQUEST]: 400,
[this.ErrorCodes.VALIDATION_ERROR]: 422,
[this.ErrorCodes.UNAUTHORIZED]: 401,
[this.ErrorCodes.FORBIDDEN]: 403,
[this.ErrorCodes.NOT_FOUND]: 404,
[this.ErrorCodes.CONFLICT]: 409,
[this.ErrorCodes.UNPROCESSABLE_ENTITY]: 422,
[this.ErrorCodes.INTERNAL_ERROR]: 500,
[this.ErrorCodes.NOT_IMPLEMENTED]: 501,
[this.ErrorCodes.SERVICE_UNAVAILABLE]: 503,
[this.ErrorCodes.INVALID_JSON]: 400,
[this.ErrorCodes.MISSING_REQUIRED_FIELD]: 422,
[this.ErrorCodes.INVALID_TOKEN]: 401,
[this.ErrorCodes.INSUFFICIENT_PERMISSIONS]: 403,
[this.ErrorCodes.TASK_NOT_FOUND]: 404,
};
}
/**
* Create a standardized error response
* @param {string} code - Machine-readable error code
* @param {string} message - Human-readable error message
* @param {string} requestId - Request correlation ID
* @param {object} details - Optional additional context
* @returns {object} Standardized error object
*/
createErrorResponse(code, message, requestId, details = {}) {
return {
error: {
code,
message,
requestId,
timestamp: new Date().toISOString(),
...(Object.keys(details).length > 0 && { details }),
},
};
}
/**
* Get HTTP status code for a given error code
*/
getStatusCode(code) {
return this.StatusCodeMap[code] || 500;
}
/**
* Validation error - missing or invalid fields
*/
validationError(requestId, fieldName, reason, details = {}) {
return {
statusCode: 422,
response: this.createErrorResponse(
this.ErrorCodes.VALIDATION_ERROR,
`Validation failed for field: ${fieldName}. Reason: ${reason}`,
requestId,
{ field: fieldName, reason, ...details },
),
};
}
/**
* Invalid JSON payload
*/
invalidJsonError(requestId, parseError) {
return {
statusCode: 400,
response: this.createErrorResponse(
this.ErrorCodes.INVALID_JSON,
"Request body contains invalid JSON",
requestId,
{ parseError: parseError.message },
),
};
}
/**
* Authentication error - invalid or missing token
*/
unauthorizedError(
requestId,
reason = "Missing or invalid authentication token",
) {
return {
statusCode: 401,
response: this.createErrorResponse(
this.ErrorCodes.INVALID_TOKEN,
reason,
requestId,
),
};
}
/**
* Authorization error - user lacks permission
*/
forbiddenError(
requestId,
reason = "You do not have permission to access this resource",
) {
return {
statusCode: 403,
response: this.createErrorResponse(
this.ErrorCodes.INSUFFICIENT_PERMISSIONS,
reason,
requestId,
),
};
}
/**
* Resource not found
*/
notFoundError(requestId, resource, id) {
return {
statusCode: 404,
response: this.createErrorResponse(
this.ErrorCodes.NOT_FOUND,
`${resource} with ID "${id}" not found`,
requestId,
{ resource, id },
),
};
}
/**
* Generic internal server error
*/
internalError(requestId, errorMessage, stack) {
// In production, you might not want to expose the stack trace to clients
return {
statusCode: 500,
response: this.createErrorResponse(
this.ErrorCodes.INTERNAL_ERROR,
"An unexpected error occurred. Please try again later.",
requestId,
{ internalMessage: errorMessage },
// Note: Stack trace is NOT included in client response
// but logged separately for debugging
),
};
}
/**
* Method not allowed
*/
methodNotAllowedError(requestId, method, endpoint) {
return {
statusCode: 405,
response: this.createErrorResponse(
this.ErrorCodes.BAD_REQUEST,
`Method ${method} is not allowed on this endpoint`,
requestId,
{ method, endpoint },
),
};
}
/**
* Missing required field
*/
missingFieldError(requestId, fieldName) {
return {
statusCode: 422,
response: this.createErrorResponse(
this.ErrorCodes.MISSING_REQUIRED_FIELD,
`Missing required field: ${fieldName}`,
requestId,
{ field: fieldName },
),
};
}
/**
* Task-specific not found (convenience method)
*/
taskNotFoundError(requestId, taskId) {
return this.notFoundError(requestId, "Task", taskId);
}
/**
* Generic bad request error
*/
badRequestError(requestId, reason) {
return {
statusCode: 400,
response: this.createErrorResponse(
this.ErrorCodes.BAD_REQUEST,
reason,
requestId,
),
};
}
/**
* Parse an error and return appropriate response
* Useful for middleware that needs to handle various error types
*/
handleUnknownError(requestId, error, context = {}) {
const statusCode = error.statusCode || 500;
const message = error.message || "An unexpected error occurred";
return {
statusCode,
response: this.createErrorResponse(
this.ErrorCodes.INTERNAL_ERROR,
message,
requestId,
{ context },
),
};
}
}
// Export singleton instance
module.exports = new ErrorHandler();