-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathlambda.js
208 lines (171 loc) · 4.37 KB
/
lambda.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
'use strict'
// The newrelic module is provided by the Lambda layer.
// eslint-disable-next-line node/no-missing-require
const newrelic = require('newrelic')
const {
rootLogger,
setLogLevel,
getEnv,
getSecretAsJson,
NerdstorageClient,
requireAccountIds,
trimStringAndLower,
DEFAULT_LOG_LEVEL,
CORE_CONSTANTS,
} = require('nr-reports-core'),
{ NerdstorageRepository } = require('./lib/repositories/nerdstorage'),
{ EventBridgeBackend } = require('./lib/backends/eventbridge'),
{ poll } = require('./lib/scheduler')
const logger = rootLogger,
{ SECRET_NAME_VAR, REPORTS_BUILDER_NERDPACK_ID } = CORE_CONSTANTS
function configureLogger() {
const logLevel = trimStringAndLower(getEnv('LOG_LEVEL', DEFAULT_LOG_LEVEL))
if (logLevel === 'debug') {
setLogLevel(logger, 'trace')
} else if (logLevel === 'verbose') {
setLogLevel(logger, 'debug')
}
}
// The root logger is a global object so all invocations will share the
// same one until the lambda is reloaded. So we need to configure it once
// globally.
configureLogger()
function makeSecretData(secret) {
if (!secret.apiKey) {
throw Error('No api key found')
}
if (!secret.accountId) {
throw Error('No account ID found')
}
let sourceNerdletId = REPORTS_BUILDER_NERDPACK_ID
if (secret.sourceNerdletId) {
const val = secret.sourceNerdletId.trim()
if (val !== '') {
logger.debug('Using a custom nerdpack ID for sourceNerdletId')
sourceNerdletId = val
}
}
// This is done so we don't accidentally expose the secrets
// info if the object is dumped to a log or to the screen. The properties
// have to explicitly be referenced in code. Otherwise, something like
// [apiKey getter] will be shown, not the value behind it.
return {
get apiKey() {
return secret.apiKey
},
get accountId() {
return secret.accountId
},
get sourceNerdletId() {
return sourceNerdletId
},
}
}
async function getSecretData() {
const secretName = getEnv(SECRET_NAME_VAR)
if (!secretName) {
throw Error(`No secret name found in ${SECRET_NAME_VAR}`)
}
return makeSecretData(await getSecretAsJson(secretName))
}
function lambdaResponse(
statusCode,
success = false,
payload = null,
message = '',
mimeType = 'application/json',
) {
const body = { success }
if (!success) {
body.message = message
} else if (payload) {
body.payload = payload
}
return {
statusCode,
headers: {
'Content-Type': mimeType,
},
body: JSON.stringify(body),
}
}
async function pollAccount(
apiKey,
sourceNerdletId,
accountId,
backend,
) {
try {
const nerdstorage = new NerdstorageClient(
apiKey,
sourceNerdletId,
accountId,
),
nerdstorageRepo = new NerdstorageRepository(nerdstorage)
await poll(accountId, nerdstorageRepo, backend)
logger.trace('Recording job status...')
newrelic.recordCustomEvent(
'NrReportsSchedulerStatus',
{
accountId,
error: false,
},
)
} catch (err) {
logger.error('Uncaught exception:')
logger.error(err.message)
// eslint-disable-next-line no-console
console.error(err)
newrelic.noticeError(err)
logger.trace('Recording job status...')
newrelic.recordCustomEvent(
'NrReportsSchedulerStatus',
{
accountId,
error: true,
message: err.message,
},
)
}
}
// eslint-disable-next-line no-unused-vars
async function handler(event) {
try {
const secretData = await getSecretData(),
accountIds = requireAccountIds(secretData),
eventBridgeBackend = new EventBridgeBackend()
for (const accountId of accountIds) {
await pollAccount(
secretData.apiKey,
secretData.sourceNerdletId,
accountId,
eventBridgeBackend,
)
}
return lambdaResponse(
200,
true,
)
} catch (err) {
logger.error('Uncaught exception:')
logger.error(err.message)
// eslint-disable-next-line no-console
console.error(err)
newrelic.noticeError(err)
logger.trace('Recording job status...')
newrelic.recordCustomEvent(
'NrReportsSchedulerStatus',
{
error: true,
message: err.message,
},
)
return lambdaResponse(
500,
false,
null,
err.message,
)
}
}
module.exports.handler = handler