forked from bugsnag/bugsnag-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
157 lines (155 loc) · 5.44 KB
/
config.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
const filter = require('./lib/es-utils/filter')
const reduce = require('./lib/es-utils/reduce')
const keys = require('./lib/es-utils/keys')
const isArray = require('./lib/es-utils/is-array')
const includes = require('./lib/es-utils/includes')
const intRange = require('./lib/validators/int-range')
const stringWithLength = require('./lib/validators/string-with-length')
const listOfFunctions = require('./lib/validators/list-of-functions')
const BREADCRUMB_TYPES = require('./lib/breadcrumb-types')
const defaultErrorTypes = () => ({ unhandledExceptions: true, unhandledRejections: true })
module.exports.schema = {
apiKey: {
defaultValue: () => null,
message: 'is required',
validate: stringWithLength
},
appVersion: {
defaultValue: () => undefined,
message: 'should be a string',
validate: value => value === undefined || stringWithLength(value)
},
appType: {
defaultValue: () => undefined,
message: 'should be a string',
validate: value => value === undefined || stringWithLength(value)
},
autoDetectErrors: {
defaultValue: () => true,
message: 'should be true|false',
validate: value => value === true || value === false
},
enabledErrorTypes: {
defaultValue: () => defaultErrorTypes(),
message: 'should be an object containing the flags { unhandledExceptions:true|false, unhandledRejections:true|false }',
allowPartialObject: true,
validate: value => {
// ensure we have an object
if (typeof value !== 'object' || !value) return false
const providedKeys = keys(value)
const defaultKeys = keys(defaultErrorTypes())
// ensure it only has a subset of the allowed keys
if (filter(providedKeys, k => includes(defaultKeys, k)).length < providedKeys.length) return false
// ensure all of the values are boolean
if (filter(keys(value), k => typeof value[k] !== 'boolean').length > 0) return false
return true
}
},
onError: {
defaultValue: () => [],
message: 'should be a function or array of functions',
validate: listOfFunctions
},
onSession: {
defaultValue: () => [],
message: 'should be a function or array of functions',
validate: listOfFunctions
},
onBreadcrumb: {
defaultValue: () => [],
message: 'should be a function or array of functions',
validate: listOfFunctions
},
endpoints: {
defaultValue: () => ({
notify: 'https://notify.bugsnag.com',
sessions: 'https://sessions.bugsnag.com'
}),
message: 'should be an object containing endpoint URLs { notify, sessions }',
validate: val =>
// first, ensure it's an object
(val && typeof val === 'object') &&
(
// notify and sessions must always be set
stringWithLength(val.notify) && stringWithLength(val.sessions)
) &&
// ensure no keys other than notify/session are set on endpoints object
filter(keys(val), k => !includes(['notify', 'sessions'], k)).length === 0
},
autoTrackSessions: {
defaultValue: val => true,
message: 'should be true|false',
validate: val => val === true || val === false
},
enabledReleaseStages: {
defaultValue: () => null,
message: 'should be an array of strings',
validate: value => value === null || (isArray(value) && filter(value, f => typeof f === 'string').length === value.length)
},
releaseStage: {
defaultValue: () => 'production',
message: 'should be a string',
validate: value => typeof value === 'string' && value.length
},
maxBreadcrumbs: {
defaultValue: () => 25,
message: 'should be a number ≤100',
validate: value => intRange(0, 100)(value)
},
enabledBreadcrumbTypes: {
defaultValue: () => BREADCRUMB_TYPES,
message: `should be null or a list of available breadcrumb types (${BREADCRUMB_TYPES.join(',')})`,
validate: value => value === null || (isArray(value) && reduce(value, (accum, maybeType) => {
if (accum === false) return accum
return includes(BREADCRUMB_TYPES, maybeType)
}, true))
},
context: {
defaultValue: () => undefined,
message: 'should be a string',
validate: value => value === undefined || typeof value === 'string'
},
user: {
defaultValue: () => ({}),
message: 'should be an object with { id, email, name } properties',
validate: value =>
(value === null) ||
(value && reduce(
keys(value),
(accum, key) => accum && includes(['id', 'email', 'name'], key),
true
))
},
metadata: {
defaultValue: () => ({}),
message: 'should be an object',
validate: (value) => typeof value === 'object' && value !== null
},
logger: {
defaultValue: () => undefined,
message: 'should be null or an object with methods { debug, info, warn, error }',
validate: value =>
(!value) ||
(value && reduce(
['debug', 'info', 'warn', 'error'],
(accum, method) => accum && typeof value[method] === 'function',
true
))
},
redactedKeys: {
defaultValue: () => ['password'],
message: 'should be an array of strings|regexes',
validate: value =>
isArray(value) && value.length === filter(value, s =>
(typeof s === 'string' || (s && typeof s.test === 'function'))
).length
},
plugins: {
defaultValue: () => ([]),
message: 'should be an array of plugin objects',
validate: value =>
isArray(value) && value.length === filter(value, p =>
(p && typeof p === 'object' && typeof p.load === 'function')
).length
}
}