-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
146 lines (125 loc) · 3.32 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
'use strict';
class FloraError extends Error {
constructor(message, ...args) {
super(message, ...args);
this.name = this.constructor.name;
/**
* @type {string}
* @name FloraError#message
* @readonly
*/
this.message = message;
/**
* @type {number}
* @name FloraError#httpStatusCode
* @readonly
*/
this.httpStatusCode = 500; // HTTP status for "other errors"
Error.captureStackTrace(this, this.constructor);
}
}
class RequestError extends FloraError {
constructor(...args) {
super(...args);
this.httpStatusCode = 400;
this.code = 'ERR_REQUEST_ERROR';
}
}
class AuthenticationError extends FloraError {
constructor(...args) {
super(...args);
this.httpStatusCode = 401;
this.code = 'ERR_AUTHENTICATION_ERROR';
}
}
class AuthorizationError extends FloraError {
constructor(...args) {
super(...args);
this.httpStatusCode = 403;
this.code = 'ERR_AUTHORIZATION_ERROR';
}
}
class NotFoundError extends FloraError {
constructor(...args) {
super(...args);
this.httpStatusCode = 404;
this.code = 'ERR_NOT_FOUND';
}
}
class GoneError extends FloraError {
constructor(...args) {
super(...args);
this.httpStatusCode = 410;
this.code = 'ERR_GONE';
}
}
class ImplementationError extends FloraError {
constructor(...args) {
super(...args);
this.httpStatusCode = 500;
this.code = 'ERR_IMPLEMENTATION_ERROR';
}
}
class DataError extends FloraError {
constructor(...args) {
super(...args);
this.httpStatusCode = 500;
this.code = 'ERR_DATA_ERROR';
}
}
class ConnectionError extends FloraError {
constructor(...args) {
super(...args);
this.httpStatusCode = 503;
this.code = 'ERR_CONNECTION_ERROR';
}
}
class ValidationError extends RequestError {
constructor(message, validation) {
super(message);
this.code = 'ERR_VALIDATION_ERROR';
this.validation = validation;
}
}
/**
* Converts an error object to a stringifyable object format for use
* in Flora responses.
*
* @param {FloraError} err object
* @param {Object=} options
*/
function format(err, options) {
const error = { message: 'Internal Server Error' };
options = options || {};
if (options.exposeErrors || (err.httpStatusCode && err.httpStatusCode < 500)) {
error.message = err.message;
if (err.code) error.code = err.code;
if (err.validation) error.validation = err.validation;
}
if (options.exposeErrors) {
if (err.stack) error.stack = err.stack.split(/\r?\n/);
if (err.info) {
Object.keys(err.info).forEach((key) => {
if (
!Object.prototype.hasOwnProperty.call(error, key) &&
Object.prototype.hasOwnProperty.call(err.info, key)
)
error[key] = err.info[key];
});
}
}
return error;
}
module.exports = {
RequestError,
AuthenticationError,
AuthorizationError,
NotFoundError,
GoneError,
ImplementationError,
DataError,
ConnectionError,
ValidationError,
FloraError,
format
};