This repository was archived by the owner on May 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy patherrors.ts
358 lines (297 loc) · 10.7 KB
/
errors.ts
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
import * as HttpCodes from "http-status-codes";
export type ApiError = {
code: number;
error: string;
message: string;
};
export type HeaderValue = number | string | string[];
/**
* Code additions (/postfix) to be added to the http status code per error.
* The concatenation is done in the MarketplaceError ctor.
*/
const CODES = {
BadRequest: {
code: HttpCodes.BAD_REQUEST, // 400
types: {
UnknownSignInType: 1,
WrongJwtAlgorithm: 2,
InvalidPollAnswers: 3,
InvalidExternalOrderJwt: 4,
InvalidJwtSignature: 5,
JwtKidMissing: 6,
MaxWalletsExceeded: 7,
InvalidWalletAddress: 8,
ExpiredJwt: 9,
InvalidJwtIssuedTime: 10,
MissingField: 11,
BadJWTInput: 12,
InvalidJwtField: 13,
}
},
Unauthorized: {
code: HttpCodes.UNAUTHORIZED, // 401
types: {
MissingToken: 1,
InvalidToken: 2,
InvalidApiKey: 3,
TOSMissingOrOldToken: 4,
CrossAppWallet: 5,
BulkUserCreation: 6,
}
},
NotFound: {
code: HttpCodes.NOT_FOUND, // 404
types: {
App: 1,
Offer: 2,
Order: 3,
PublicKey: 4,
OfferCapReached: 5,
User: 6,
Wallet: 7,
}
},
RequestTimeout: {
code: HttpCodes.REQUEST_TIMEOUT, // 408
types: {
OpenOrderExpired: 1,
}
},
Conflict: {
code: HttpCodes.CONFLICT, // 409
types: {
ExternalOrderAlreadyCompleted: 1,
ExternalOrderByDifferentUser: 2,
CompletedOrderCantTransitionToFailed: 3,
ExternalOrderByDifferentDevice: 4,
UserHasNoWallet: 5
}
},
Gone: {
code: HttpCodes.GONE, // 410
types: {
WrongBlockchainVersion: 1,
}
},
TooManyRequests: {
code: HttpCodes.TOO_MANY_REQUESTS, // 429
types: {
Registrations: 1,
Amounts: 2,
UserRequests: 3,
}
},
InternalServerError: {
code: HttpCodes.INTERNAL_SERVER_ERROR, // 500
types: {
OpenedOrdersOnly: 1,
OpenedOrdersUnreturnable: 2,
}
},
TransactionFailed: { // these errors aren't thrown, they are set to the order.error field
code: 700, // 700
types: {
WrongSender: 1,
WrongRecipient: 2,
WrongAmount: 3,
AssetUnavailable: 4,
BlockchainError: 5,
TransactionTimeout: 6
}
},
};
export class MarketplaceError extends Error {
public readonly title: string;
public readonly status: number; // http status code
public readonly code: number; // our own internal codes
public readonly headers: { [name: string]: HeaderValue };
constructor(status: number, index: number, title: string, message: string) {
super(message);
this.code = Number(status + "" + index);
this.title = title;
this.status = status;
this.headers = {};
}
public setHeader(name: string, value: HeaderValue) {
this.headers[name] = value;
}
public toJson(): ApiError {
return {
code: this.code,
error: this.title,
message: this.message
};
}
public toString(): string {
return JSON.stringify(this.toJson());
}
}
function UnauthorizedError(key: keyof typeof CODES.Unauthorized.types, message: string) {
return new MarketplaceError(CODES.Unauthorized.code, CODES.Unauthorized.types[key], "Unauthorized Request", message);
}
export function MissingToken() {
return UnauthorizedError("MissingToken", "Request missing token");
}
export function InvalidToken(token: string) {
return UnauthorizedError("InvalidToken", `Invalid token: ${ token }`);
}
export function InvalidApiKey(apiKey: string) {
return UnauthorizedError("InvalidApiKey", `Invalid api key: ${ apiKey }`);
}
export function TOSMissingOrOldToken() {
return UnauthorizedError("TOSMissingOrOldToken", "User did not approve TOS or using a pre activated token");
}
export function CrossAppWallet(wallet: string, app: string) {
return UnauthorizedError("CrossAppWallet", `Wallet ${ wallet } does not belong to current app ${ app }`);
}
export function BulkUserCreation(app: string, requestedAmount: number, allowedNumber: number) {
return UnauthorizedError("BulkUserCreation", `Bulk creation of ${ allowedNumber } is allowed for app ${ app }, ${ requestedAmount } requested`);
}
function NotFoundError(key: keyof typeof CODES.NotFound.types, message: string) {
return new MarketplaceError(CODES.NotFound.code, CODES.NotFound.types[key], "Not Found", message);
}
export function NoSuchApp(id: string) {
return NotFoundError("App", `No such app: ${ id }`);
}
export function NoSuchUser(id: string) {
return NotFoundError("User", `No such user: ${ id }`);
}
export function NoSuchOffer(id: string) {
return NotFoundError("Offer", `No such offer: ${ id }`);
}
export function NoSuchOrder(id: string) {
return NotFoundError("Order", `No such order: ${ id }`);
}
export function NoSuchWallet(walletAddress: string) {
return NotFoundError("Wallet", `No such wallet: ${ walletAddress }`);
}
export function NoSuchPublicKey(appId: string, keyid: string) {
return NotFoundError("App", `Key "${ keyid }" not found for iss "${ appId }"`);
}
function RequestTimeoutError(key: keyof typeof CODES.RequestTimeout.types, message: string) {
return new MarketplaceError(CODES.RequestTimeout.code, CODES.RequestTimeout.types[key], "Request Timeout", message);
}
export function OpenOrderExpired(orderId: string) {
return RequestTimeoutError("OpenOrderExpired", `open order ${ orderId } has expired`);
}
function ConflictError(key: keyof typeof CODES.Conflict.types, message: string) {
return new MarketplaceError(CODES.Conflict.code, CODES.Conflict.types[key], "Conflict", message);
}
export function ExternalOrderAlreadyCompleted(orderId: string, status: string) {
const error = ConflictError("ExternalOrderAlreadyCompleted", `Can't create order for offer. Another order is ${ status }`);
error.setHeader("Location", `/v1/orders/${ orderId }`);
return error;
}
export function ExternalOrderByDifferentUser(loggedInUser: string, payToUser: string) {
const message = `User (${ payToUser }) is not the logged in user (${ loggedInUser })`;
return ConflictError("ExternalOrderByDifferentUser", message);
}
export function CompletedOrderCantTransitionToFailed() {
const message = "cant set an error message to a completed order";
return ConflictError("CompletedOrderCantTransitionToFailed", message);
}
export function ExternalOrderByDifferentDevice(loggedDeviceId: string, deviceId: string) {
const message = `Device (${ deviceId }) is not the logged in device (${ loggedDeviceId })`;
return ConflictError("ExternalOrderByDifferentUser", message);
}
export function UserHasNoWallet(userId: string, deviceId?: string) {
let message = `No wallet was set for user ${ userId }`;
if (deviceId) {
message += ` for device ${ deviceId }`;
}
return ConflictError("UserHasNoWallet", message);
}
export function OfferCapReached(id: string) {
return NotFoundError("OfferCapReached", `Cap reached for offer: ${ id }`);
}
function InternalServerError(key: keyof typeof CODES.InternalServerError.types, message: string) {
return new MarketplaceError(CODES.InternalServerError.code, CODES.InternalServerError.types[key], "Internal Server Error", message);
}
export function OpenedOrdersOnly() {
return InternalServerError("OpenedOrdersOnly", "Only opened orders should be returned");
}
export function OpenedOrdersUnreturnable() {
return InternalServerError("OpenedOrdersUnreturnable", "Opened orders should not be returned");
}
function BadRequestError(key: keyof typeof CODES.BadRequest.types, message: string) {
return new MarketplaceError(CODES.BadRequest.code, CODES.BadRequest.types[key], "Bad Request", message);
}
export function UnknownSignInType(type: string) {
return BadRequestError("UnknownSignInType", `Unknown sign-in type: ${ type }`);
}
export function WrongJwtAlgorithm(type: string) {
return BadRequestError("UnknownSignInType", `Algorithm type ("${ type }") not supported`);
}
export function InvalidJwtSignature() {
return BadRequestError("InvalidJwtSignature", "The JWT failed to verify");
}
export function ExpiredJwt(exp: number) {
return BadRequestError("ExpiredJwt", `The JWT 'exp' field (${ exp }) is in the past`);
}
export function InvalidJwtIssuedTime(iat: number) {
return BadRequestError("InvalidJwtIssuedTime", `The JWT 'iat' field (${ iat }) is in the future`);
}
export function MissingField(fieldName: string) {
return BadRequestError("MissingField", `The field ${ fieldName } is missing`);
}
export function InvalidJwtField(message: string) {
return BadRequestError("InvalidJwtField", message);
}
export function BadJWTInput(token: string) {
return BadRequestError("BadJWTInput", `JWT ${ token } failed to decode`);
}
export function InvalidPollAnswers() {
return BadRequestError("InvalidPollAnswers", "Submitted form is invalid");
}
export function InvalidExternalOrderJwt(message: string) {
return BadRequestError("InvalidExternalOrderJwt", message);
}
export function JwtKidMissing() {
return BadRequestError("JwtKidMissing", "kid is missing from the JWT");
}
export function MaxWalletsExceeded() {
return BadRequestError("MaxWalletsExceeded", "No more wallet creations allowed");
}
export function InvalidWalletAddress(address: string) {
return BadRequestError("InvalidWalletAddress", `Invalid (not 56 characters) wallet address: ${ address }`);
}
function TransactionFailed(key: keyof typeof CODES.TransactionFailed.types, message: string) {
return new MarketplaceError(CODES.TransactionFailed.code, CODES.TransactionFailed.types[key], "Transaction Failed", message);
}
export function WrongSender() {
return TransactionFailed("WrongSender", "Wrong Sender");
}
export function WrongRecipient() {
return TransactionFailed("WrongRecipient", "Wrong Recipient");
}
export function WrongAmount() {
return TransactionFailed("WrongAmount", "Wrong Amount");
}
export function AssetUnavailable() {
return TransactionFailed("AssetUnavailable", "Unavailable Asset");
}
export function BlockchainError(message?: string) {
message = message ? (": " + message) : "";
return TransactionFailed("BlockchainError", "Blockchain Error: " + message);
}
export function TransactionTimeout() {
return TransactionFailed("TransactionTimeout", "Transaction Timeout");
}
function TooManyRequests(key: keyof typeof CODES.TooManyRequests.types, message: string): MarketplaceError {
return new MarketplaceError(CODES.TooManyRequests.code, CODES.TooManyRequests.types[key], "Too Many Requests", message);
}
export function TooManyRegistrations(message: string): MarketplaceError {
return TooManyRequests("Registrations", message);
}
export function TooMuchEarnOrdered(message: string): MarketplaceError {
return TooManyRequests("Amounts", message);
}
export function TooManyUserRequests(message: string): MarketplaceError {
return TooManyRequests("UserRequests", message);
}
function DeprecationError(key: keyof typeof CODES.Gone.types, message: string): MarketplaceError {
return new MarketplaceError(CODES.Gone.code, CODES.Gone.types[key], "Request to a deprecated resource", message);
}
export function WrongBlockchainVersion(message: string): MarketplaceError {
return DeprecationError("WrongBlockchainVersion", message);
}