-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathKaynConfig.js
70 lines (65 loc) · 1.74 KB
/
KaynConfig.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
import { struct } from 'superstruct'
import METHOD_NAMES from 'Enums/method-names'
export const DEFAULT_KAYN_CONFIG = {
region: 'na',
locale: 'en_US',
apiURLPrefix: 'https://%s.api.riotgames.com',
debugOptions: {
isEnabled: true,
showKey: false,
loggers: {},
},
requestOptions: {
shouldRetry: true,
numberOfRetriesBeforeAbort: 3,
delayBeforeRetry: 1000,
burst: false,
shouldExitOn403: false,
},
cacheOptions: {
cache: null,
timeToLives: {
useDefault: false,
byGroup: {},
byMethod: {},
},
ttls: {} /* The final ttls object after processing the above config. It overwrites the rest of ttls for backwards-compatibility's sake. */,
},
}
const ttlsValidator = {}
Object.keys(METHOD_NAMES).forEach(s => {
Object.keys(METHOD_NAMES[s]).forEach(
t => (ttlsValidator[METHOD_NAMES[s][t]] = 'number?'),
)
})
const byGroupValidator = {}
Object.keys(METHOD_NAMES).forEach(groupName => {
byGroupValidator[groupName] = 'number?'
})
export const KAYN_CONFIG_STRUCT = struct({
region: 'string',
locale: 'string',
apiURLPrefix: 'string',
debugOptions: {
isEnabled: 'boolean',
showKey: 'boolean',
loggers: 'any',
},
requestOptions: {
shouldRetry: 'boolean',
numberOfRetriesBeforeAbort: 'number',
delayBeforeRetry: 'number',
burst: 'boolean',
shouldExitOn403: 'boolean',
},
cacheOptions: {
cache: 'any',
ttls: ttlsValidator,
timeToLives: {
useDefault: 'boolean',
byGroup: byGroupValidator,
byMethod: ttlsValidator,
},
},
key: 'string',
})