-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatus.js
62 lines (59 loc) · 1.25 KB
/
status.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
'use strict';
const status = {
OK: 200,
BadRequest: 400,
Unauthorized: 401,
Forbidden: 403,
NotFound: 404,
NotAcceptable: 406,
UnprocessableEntity: 422,
InternalServerError: 500,
GatewayTimeout: 504
};
const error = {
RequestError: 1,
ResponseTimeout: 2,
JsonError: 3,
InvalidAction: 4,
MissingAction: 5,
ServerError: 6,
InvalidSecret: 7,
Forbidden: 8
};
module.exports = {
OK: {
status: status.OK
},
RequestError: {
status: status.BadRequest,
error: error.RequestError
},
ResponseTimeout: {
status: status.GatewayTimeout,
error: error.ResponseTimeout
},
JsonError: {
status: status.UnprocessableEntity,
error: error.JsonError
},
InvalidAction: {
status: status.NotAcceptable,
error: error.InvalidAction
},
MissingAction: {
status: status.NotFound,
error: error.MissingAction
},
ServerError: {
status: status.InternalServerError,
error: error.ServerError
},
InvalidSecret: {
status: status.Unauthorized,
error: error.InvalidSecret
},
Forbidden: {
status: status.Forbidden,
error: error.Forbidden
}
};