-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
409 lines (387 loc) · 18.4 KB
/
index.js
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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
const httpStatusCodes = require('http-status');
/**
* Creates and returns JSend success object.
*
* @param {*} data wrapper for any data returned by the API call. If the call returns no data, this parameter should be
* set to <code>null</code>.
* @param {number} [httpStatus] the HTTP status code to use for the response, defaults to 200 (OK). If specified, it
* should be an HTTP status code in the range [200, 299].
*/
const createJSendSuccess = function(data, httpStatus) {
httpStatus = httpStatus || httpStatusCodes.OK;
return {
code : httpStatus,
status : 'success',
data : data
}
};
/**
* Creates and returns JSend object for a client error, for when an API call is rejected due to invalid data or call
* conditions.
*
* @param {string} message A meaningful, end-user-readable (or at the least log-worthy) message, explaining what went
* wrong.
* @param {*} data details of why the request failed. If the reasons for failure correspond to POST values, the response
* object's keys SHOULD correspond to those POST values. Can be <code>null</code>.
* @param {number} [httpStatus] the HTTP status code to use for the response, defaults to 400 (Bad Request). If
* specified, it should be an HTTP status code in the range [400, 499].
*/
const createJSendClientError = function(message, data, httpStatus) {
httpStatus = httpStatus || httpStatusCodes.BAD_REQUEST;
return {
code : httpStatus,
status : 'error', // JSend calls actually calls for "fail", but that seems counterintuitive and wrong
data : data,
message : message
}
};
/**
* Creates and returns JSend object for a client validation error, for when an API call is rejected due to a data
* validation error. The code will be HTTP status code 422 (Unprocessable Entity).
*
* @param {string} message A meaningful, end-user-readable (or at the least log-worthy) message, explaining what went
* wrong.
* @param {*} data details of why the request failed. If the reasons for failure correspond to POST values, the response
* object's keys SHOULD correspond to those POST values. Can be <code>null</code>.
*/
const createJSendClientValidationError = function(message, data) {
return createJSendClientError(message, data, httpStatusCodes.UNPROCESSABLE_ENTITY);
};
/**
* Creates and returns JSend object for a server failure error, for when an API call fails due to an error on the
* server.
*
* @param {string} message A meaningful, end-user-readable (or at the least log-worthy) message, explaining what went
* wrong.
* @param {*} [data] A generic container for any other information about the error, i.e. the conditions that caused the
* error, stack traces, etc. Can be <code>null</code>.
* @param {number} [httpStatus] the HTTP status code to use for the response, defaults to 500 (Internal Server Error).
* If specified, it should be an HTTP status code in the range [500, 599].
*/
const createJSendServerError = function(message, data, httpStatus) {
httpStatus = httpStatus || httpStatusCodes.INTERNAL_SERVER_ERROR;
return {
code : httpStatus,
status : 'fail', // JSend calls actually calls for "error", but that seems counterintuitive and wrong
data : data,
message : message
};
};
/**
* Decorates the given Express response by adding the following methods. You should only need to call this once.
* <ul>
* <li>
* <h4 class="name">jsendSuccess(data, httpStatus)</h4>
* <p>Sets the HTTP status and sends a JSend success response, for when an API call is successful.</p>
* <table class="params">
* <thead>
* <tr>
* <th>Name</th>
* <th>Type</th>
* <th>Attributes</th>
* <th class="last">Description</th>
* </tr>
* </thead>
* <tbody>
* <tr>
* <td class="name">data</td>
* <td class="type">*</td>
* <td class="attributes"> </td>
* <td class="description last">wrapper for any data returned by the API call. If the call returns no data, this parameter should be set to <code>null</code>.</td>
* </tr>
* <tr>
* <td class="name">httpStatus</td>
* <td class="type">number</td>
* <td class="attributes"><optional></td>
* <td class="description last">the HTTP status code to use for the response, defaults to 200 (OK). If specified, it should be an HTTP status code in the range [200, 299].</td>
* </tr>
* </tbody>
* </table>
* </li>
* <li>
* <h4 class="name">jsendClientError(message, data, httpStatus)</h4>
* <p>Sets the HTTP status and sends a JSend response for a client error, for when an API call is rejected due to invalid data or call conditions.</p>
* <table class="params">
* <thead>
* <tr>
* <th>Name</th>
* <th>Type</th>
* <th>Attributes</th>
* <th class="last">Description</th>
* </tr>
* </thead>
* <tbody>
* <tr>
* <td class="name">message</td>
* <td class="type">string</td>
* <td class="attributes"> </td>
* <td class="description last">A meaningful, end-user-readable (or at the least log-worthy) message, explaining what went wrong.</td>
* </tr>
* <tr>
* <td class="name">data</td>
* <td class="type">*</td>
* <td class="attributes"> </td>
* <td class="description last">details of why the request failed. If the reasons for failure correspond to POST values, the response object's keys SHOULD correspond to those POST values. Can be <code>null</code>.</td>
* </tr>
* <tr>
* <td class="name">httpStatus</td>
* <td class="type">number</td>
* <td class="attributes"><optional></td>
* <td class="description last">the HTTP status code to use for the response, defaults to 400 (Bad Request). If specified, it should be an HTTP status code in the range [400, 499].</td>
* </tr>
* </tbody>
* </table>
* </li>
* <li>
* <h4 class="name">jsendClientValidationError(message, data)</h4>
* <p>Sets the HTTP status and sends a JSend response for a client validation error, for when an API call is rejected due to a data validation error. The code will be HTTP status code 422 (Unprocessable Entity).</p>
* <table class="params">
* <thead>
* <tr>
* <th>Name</th>
* <th>Type</th>
* <th>Attributes</th>
* <th class="last">Description</th>
* </tr>
* </thead>
* <tbody>
* <tr>
* <td class="name">message</td>
* <td class="type">string</td>
* <td class="attributes"> </td>
* <td class="description last">A meaningful, end-user-readable (or at the least log-worthy) message, explaining what went wrong.</td>
* </tr>
* <tr>
* <td class="name">data</td>
* <td class="type">*</td>
* <td class="attributes"> </td>
* <td class="description last">details of why the request failed. If the reasons for failure correspond to POST values, the response object's keys SHOULD correspond to those POST values. Can be <code>null</code>.</td>
* </tr>
* </tbody>
* </table>
* </li>
* <li>
* <h4 class="name">jsendServerError(message, data, httpStatus)</h4>
* <p>Sets the HTTP status and sends a JSend response for a server error, for when an API call fails due to an error on the server.</p>
* <table class="params">
* <thead>
* <tr>
* <th>Name</th>
* <th>Type</th>
* <th>Attributes</th>
* <th class="last">Description</th>
* </tr>
* </thead>
* <tbody>
* <tr>
* <td class="name">message</td>
* <td class="type">string</td>
* <td class="attributes"> </td>
* <td class="description last">A meaningful, end-user-readable (or at the least log-worthy) message, explaining what went wrong.</td>
* </tr>
* <tr>
* <td class="name">data</td>
* <td class="type">*</td>
* <td class="attributes"> </td>
* <td class="description last">A generic container for any other information about the error, i.e. the conditions that caused the error, stack traces, etc. Can be <code>null</code>.</td>
* </tr>
* <tr>
* <td class="name">httpStatus</td>
* <td class="type">number</td>
* <td class="attributes"><optional></td>
* <td class="description last">the HTTP status code to use for the response, defaults to 500 (Internal Server Error). If specified, it should be an HTTP status code in the range [500, 599].</td>
* </tr>
* </tbody>
* </table>
* </li>
* <li>
* <h4 class="name">jsendPassThrough(jsendResponse)</h4>
* <p>Useful for passing a JSend response from a third party system along to the caller. This method simply picks
* the HTTP status code from the given <code>jsendResponse</code>, sets the response to that status code, and then
* send the <code>jsendResponse</code>.</p>
* <table class="params">
* <thead>
* <tr>
* <th>Name</th>
* <th>Type</th>
* <th>Attributes</th>
* <th class="last">Description</th>
* </tr>
* </thead>
* <tbody>
* <tr>
* <td class="name">jsendResponse</td>
* <td class="type">string|object</td>
* <td class="attributes"> </td>
* <td class="description last">The JSend response to pass through</td>
* </tr>
* </tbody>
* </table>
* </li>
* </ul>
* @param {obj} response Express response
*/
const decorateExpressResponse = function(response) {
/**
* Sets the HTTP status and sends a JSend success response, for when an API call is successful.
*
* @param {*} data wrapper for any data returned by the API call. If the call returns no data, this parameter should be
* set to <code>null</code>.
* @param {number} [httpStatus] the HTTP status code to use for the response, defaults to 200 (OK). If specified, it
* should be an HTTP status code in the range [200, 299].
*/
response['jsendSuccess'] = function(data, httpStatus) {
const jsendObj = createJSendSuccess(data, httpStatus);
return this.status(jsendObj.code).json(jsendObj);
};
/**
* Sets the HTTP status and sends a JSend response for a client error, for when an API call is rejected due to invalid
* data or call conditions.
*
* @param {string} message A meaningful, end-user-readable (or at the least log-worthy) message, explaining what went
* wrong.
* @param {*} data details of why the request failed. If the reasons for failure correspond to POST values, the response
* object's keys SHOULD correspond to those POST values. Can be <code>null</code>.
* @param {number} [httpStatus] the HTTP status code to use for the response, defaults to 400 (Bad Request). If
* specified, it should be an HTTP status code in the range [400, 499].
*/
response['jsendClientError'] = function(message, data, httpStatus) {
const jsendObj = createJSendClientError(message, data, httpStatus);
return this.status(jsendObj.code).json(jsendObj);
};
/**
* Sets the HTTP status and sends a JSend response for a client validation error, for when an API call is rejected due
* to a data validation error. The code will be HTTP status code 422 (Unprocessable Entity).
*
* @param {string} message A meaningful, end-user-readable (or at the least log-worthy) message, explaining what went
* wrong.
* @param {*} data details of why the request failed. If the reasons for failure correspond to POST values, the response
* object's keys SHOULD correspond to those POST values. Can be <code>null</code>.
*/
response['jsendClientValidationError'] = function(message, data) {
const jsendObj = createJSendClientValidationError(message, data);
return this.status(jsendObj.code).json(jsendObj);
};
/**
* Sets the HTTP status and sends a JSend response for a server error, for when an API call fails due to an error on
* the server.
*
* @param {string} message A meaningful, end-user-readable (or at the least log-worthy) message, explaining what went
* wrong.
* @param {*} [data] A generic container for any other information about the error, i.e. the conditions that caused the
* error, stack traces, etc. Can be <code>null</code>.
* @param {number} [httpStatus] the HTTP status code to use for the response, defaults to 500 (Internal Server Error).
* If specified, it should be an HTTP status code in the range [500, 599].
*/
response['jsendServerError'] = function(message, data, httpStatus) {
const jsendObj = createJSendServerError(message, data, httpStatus);
return this.status(jsendObj.code).json(jsendObj);
};
/**
* Useful for passing a JSend response from a third party system along to the caller. This method simply picks the
* HTTP status code from the given <code>jsendResponse</code>, sets the response to that status code, and then send
* the <code>jsendResponse</code>.
*
* @param {string|object} jsendResponse The JSend response to pass through
*/
response['jsendPassThrough'] = function(jsendResponse) {
if (typeof jsendResponse === 'string') {
jsendResponse = JSON.parse(jsendResponse);
}
return this.status(jsendResponse['code']).json(jsendResponse);
};
};
/**
* Creates an instance of a <code>JSendError</code> with the given JSend object (<code>jsendObj</code>). The message
* for the error will be taken from the given <code>jsendObj</code>, or default to "Error" if the message is undefined.
* Use this error when you need to pass an error back to the caller, but want to provide more details about the error
* within a JSend object.
*
* @param {object} jsendObj Extra data about the error, in the form of a JSend object. Will be saved in this instance's
* <code>data</code> property.
* @constructor
*/
class JSendError extends Error {
constructor(jsendObj = {}) {
super();
if (Error.captureStackTrace) {
Error.captureStackTrace(this, JSendError);
}
this.name = this.constructor.name;
this.data = jsendObj;
this.message = (jsendObj && jsendObj.message) ? jsendObj.message : 'Error';
}
}
/**
* Creates an instance of a <code>JSendClientError</code> containing a JSend object describing the error. This class
* is a subclass of <code>JSendError</code>.
*
* @param {string} message A meaningful, end-user-readable (or at the least log-worthy) message, explaining what went
* wrong.
* @param {*} data details of why the request failed. If the reasons for failure correspond to POST values, the response
* object's keys SHOULD correspond to those POST values. Can be <code>null</code>.
* @param {number} [httpStatus] the HTTP status code to use for the response, defaults to 400 (Bad Request). If
* specified, it should be an HTTP status code in the range [400, 499].
* @constructor
*/
class JSendClientError extends JSendError {
constructor(message, data, httpStatus) {
super();
if (Error.captureStackTrace) {
Error.captureStackTrace(this, JSendClientError);
}
this.name = this.constructor.name;
this.data = createJSendClientError(message, data, httpStatus);
this.message = this.data.message || "Client Error";
}
}
/**
* Creates an instance of a <code>JSendClientValidationError</code> containing a JSend object describing the error.
* This class is a subclass of <code>JSendClientError</code>. The contained JSend object will have a status code of
* 422 (Unprocessable Entity).
*
* @param {string} message A meaningful, end-user-readable (or at the least log-worthy) message, explaining what went
* wrong.
* @param {*} data details of why the request failed. If the reasons for failure correspond to POST values, the response
* object's keys SHOULD correspond to those POST values. Can be <code>null</code>.
* @constructor
*/
class JSendClientValidationError extends JSendClientError {
constructor(message, data) {
super();
if (Error.captureStackTrace) {
Error.captureStackTrace(this, JSendClientValidationError);
}
this.name = this.constructor.name;
this.data = createJSendClientValidationError(message, data);
this.message = this.data.message || "Validation Error";
}
}
/**
* Creates an instance of a <code>JSendServerError</code> containing a JSend object describing the error. This class
* is a subclass of <code>JSendError</code>.
*
* @param {string} message A meaningful, end-user-readable (or at the least log-worthy) message, explaining what went
* wrong.
* @param {*} [data] A generic container for any other information about the error, i.e. the conditions that caused the
* error, stack traces, etc. Can be <code>null</code>.
* @param {number} [httpStatus] the HTTP status code to use for the response, defaults to 500 (Internal Server Error).
* If specified, it should be an HTTP status code in the range [500, 599].
* @constructor
*/
class JSendServerError extends JSendError {
constructor(message, data, httpStatus) {
super();
if (Error.captureStackTrace) {
Error.captureStackTrace(this, JSendServerError);
}
this.name = this.constructor.name;
this.data = createJSendServerError(message, data, httpStatus);
this.message = this.data.message || "Server Error";
}
}
module.exports.decorateExpressResponse = decorateExpressResponse;
module.exports.JSendError = JSendError;
module.exports.JSendClientError = JSendClientError;
module.exports.JSendClientValidationError = JSendClientValidationError;
module.exports.JSendServerError = JSendServerError;