-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrors.ts
More file actions
372 lines (334 loc) · 9.72 KB
/
Copy patherrors.ts
File metadata and controls
372 lines (334 loc) · 9.72 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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
import { z } from "zod";
import {
httpResponseCodeToName,
httpResponseCodeToString,
ResponseType,
ResponseTypeStrings,
XRPCError as XRPCClientError,
} from "@atp/xrpc";
// @NOTE Do not depend (directly or indirectly) on "./types" here, as it would
// create a circular dependency.
/**
* Zod schema for error result objects.
* Defines the structure of error responses with status code and optional error/message fields.
*/
export const errorResult: z.ZodObject<{
status: z.ZodNumber;
error: z.ZodOptional<z.ZodString>;
message: z.ZodOptional<z.ZodString>;
}> = z.object({
status: z.number(),
error: z.string().optional(),
message: z.string().optional(),
});
/**
* Type representing an error result object.
* Contains HTTP status code and optional error identifier and message.
*/
export type ErrorResult = z.infer<typeof errorResult>;
/**
* Type guard to check if a value is an ErrorResult.
* @param v - The value to check
* @returns True if the value matches the ErrorResult schema
*/
export function isErrorResult(v: unknown): v is ErrorResult {
return errorResult.safeParse(v).success;
}
/**
* Type guard to check if a value is an HTTP Error-like object.
*/
function isHttpErrorLike(
value: unknown,
): value is { status: number; message: string; name: string } {
return (
typeof value === "object" &&
value !== null &&
"status" in value &&
"message" in value &&
"name" in value &&
typeof (value as Record<string, unknown>).status === "number" &&
typeof (value as Record<string, unknown>).message === "string" &&
typeof (value as Record<string, unknown>).name === "string"
);
}
/**
* Excludes ErrorResult from a value type and throws if the value is an ErrorResult.
* @template V - The value type
* @param v - The value to check and exclude
* @returns The value if it's not an ErrorResult
* @throws {XRPCError} If the value is an ErrorResult
*/
export function excludeErrorResult<V>(v: V): Exclude<V, ErrorResult> {
if (isErrorResult(v)) throw XRPCError.fromErrorResult(v);
return v as Exclude<V, ErrorResult>;
}
export { ResponseType };
/**
* Base class for all XRPC errors.
* Extends the standard Error class with XRPC-specific properties and methods.
*/
export class XRPCError extends Error {
constructor(
public type: ResponseType,
public errorMessage?: string,
public customErrorName?: string,
options?: ErrorOptions,
) {
super(errorMessage, options);
}
get statusCode(): number {
const { type } = this;
if (type < 400 || type >= 600 || !Number.isFinite(type)) {
return 500;
}
return type;
}
/**
* Gets the error payload for HTTP responses.
* For internal server errors (500), returns generic message instead of error details.
* @returns Object containing error name and message for the response
*/
get payload(): {
error: string | undefined;
message: string | undefined;
} {
return {
error: this.customErrorName ?? this.typeName,
message: this.type === ResponseType.InternalServerError
? this.typeStr // Do not respond with error details for 500s
: this.errorMessage || this.typeStr,
};
}
get typeName(): string | undefined {
return ResponseType[this.type];
}
get typeStr(): string | undefined {
return ResponseTypeStrings[this.type];
}
static fromError(cause: unknown): XRPCError {
if (cause instanceof XRPCError) {
return cause;
}
if (cause instanceof XRPCClientError) {
const { error, message, type } = mapFromClientError(cause);
return new XRPCError(type, message, error, { cause });
}
if (isHttpErrorLike(cause)) {
return new XRPCError(cause.status, cause.message, cause.name, { cause });
}
if (isErrorResult(cause)) {
return this.fromErrorResult(cause);
}
if (cause instanceof Error) {
return new InternalServerError(cause.message, undefined, { cause });
}
return new InternalServerError(
"Unexpected internal server error",
undefined,
{ cause },
);
}
static fromErrorResult(err: ErrorResult): XRPCError {
return new XRPCError(err.status, err.message, err.error, { cause: err });
}
}
/**
* Error class for invalid request errors (HTTP 400).
* Used when the client request is malformed or invalid.
*/
export class InvalidRequestError extends XRPCError {
constructor(
errorMessage?: string,
customErrorName?: string,
options?: ErrorOptions,
) {
super(ResponseType.InvalidRequest, errorMessage, customErrorName, options);
}
[Symbol.hasInstance](instance: unknown): boolean {
return (
instance instanceof XRPCError &&
instance.type === ResponseType.InvalidRequest
);
}
}
/**
* Error class for authentication required errors (HTTP 401).
* Used when the request requires authentication but none was provided or it was invalid.
*/
export class AuthRequiredError extends XRPCError {
constructor(
errorMessage?: string,
customErrorName?: string,
options?: ErrorOptions,
) {
super(
ResponseType.AuthenticationRequired,
errorMessage,
customErrorName,
options,
);
}
[Symbol.hasInstance](instance: unknown): boolean {
return (
instance instanceof XRPCError &&
instance.type === ResponseType.AuthenticationRequired
);
}
}
/**
* Error class for forbidden errors (HTTP 403).
* Used when the client is authenticated but doesn't have permission to access the resource.
*/
export class ForbiddenError extends XRPCError {
constructor(
errorMessage?: string,
customErrorName?: string,
options?: ErrorOptions,
) {
super(ResponseType.Forbidden, errorMessage, customErrorName, options);
}
[Symbol.hasInstance](instance: unknown): boolean {
return (
instance instanceof XRPCError && instance.type === ResponseType.Forbidden
);
}
}
/**
* Error class for internal server errors (HTTP 500).
* Used when an unexpected error occurs on the server side.
*/
export class InternalServerError extends XRPCError {
constructor(
errorMessage?: string,
customErrorName?: string,
options?: ErrorOptions,
) {
super(
ResponseType.InternalServerError,
errorMessage,
customErrorName,
options,
);
}
[Symbol.hasInstance](instance: unknown): boolean {
return (
instance instanceof XRPCError &&
instance.type === ResponseType.InternalServerError
);
}
}
/**
* Error class for upstream failure errors (HTTP 502).
* Used when a dependent service fails or returns an invalid response.
*/
export class UpstreamFailureError extends XRPCError {
constructor(
errorMessage?: string,
customErrorName?: string,
options?: ErrorOptions,
) {
super(ResponseType.UpstreamFailure, errorMessage, customErrorName, options);
}
[Symbol.hasInstance](instance: unknown): boolean {
return (
instance instanceof XRPCError &&
instance.type === ResponseType.UpstreamFailure
);
}
}
/**
* Error class for not enough resources errors (HTTP 507).
* Used when the server temporarily cannot handle the request due to resource constraints.
*/
export class NotEnoughResourcesError extends XRPCError {
constructor(
errorMessage?: string,
customErrorName?: string,
options?: ErrorOptions,
) {
super(
ResponseType.NotEnoughResources,
errorMessage,
customErrorName,
options,
);
}
[Symbol.hasInstance](instance: unknown): boolean {
return (
instance instanceof XRPCError &&
instance.type === ResponseType.NotEnoughResources
);
}
}
/**
* Error class for upstream timeout errors (HTTP 504).
* Used when a dependent service times out or takes too long to respond.
*/
export class UpstreamTimeoutError extends XRPCError {
constructor(
errorMessage?: string,
customErrorName?: string,
options?: ErrorOptions,
) {
super(ResponseType.UpstreamTimeout, errorMessage, customErrorName, options);
}
[Symbol.hasInstance](instance: unknown): boolean {
return (
instance instanceof XRPCError &&
instance.type === ResponseType.UpstreamTimeout
);
}
}
/**
* Error class for method not implemented errors (HTTP 501).
* Used when the requested XRPC method is not implemented by the server.
*/
export class MethodNotImplementedError extends XRPCError {
constructor(
errorMessage?: string,
customErrorName?: string,
options?: ErrorOptions,
) {
super(
ResponseType.MethodNotImplemented,
errorMessage,
customErrorName,
options,
);
}
[Symbol.hasInstance](instance: unknown): boolean {
return (
instance instanceof XRPCError &&
instance.type === ResponseType.MethodNotImplemented
);
}
}
function mapFromClientError(error: XRPCClientError): {
error: string;
message: string;
type: ResponseType;
} {
switch (error.status) {
case ResponseType.InvalidResponse:
// Upstream server returned an XRPC response that is not compatible with our internal lexicon definitions for that XRPC method.
// @NOTE This could be reflected as both a 500 ("we" are at fault) and 502 ("they" are at fault). Let's be gents about it.
return {
error: httpResponseCodeToName(ResponseType.InternalServerError),
message: httpResponseCodeToString(ResponseType.InternalServerError),
type: ResponseType.InternalServerError,
};
case ResponseType.Unknown:
// Typically a network error / unknown host
return {
error: httpResponseCodeToName(ResponseType.InternalServerError),
message: httpResponseCodeToString(ResponseType.InternalServerError),
type: ResponseType.InternalServerError,
};
default:
return {
error: error.error,
message: error.message,
type: error.status,
};
}
}