-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathlambda.ts
70 lines (63 loc) · 1.87 KB
/
lambda.ts
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 { gunzipSync } from 'zlib';
import { Context } from 'aws-lambda';
import fetch from 'node-fetch';
interface LogGroupEvent {
awslogs?: {
data?: string;
};
}
export const processEvent = async (
fetchMethod: typeof fetch,
env: string,
event: LogGroupEvent | undefined
) => {
const postNotification = async (message: string) => {
// TODO: implement logging
};
const parseEvents = (data?: string) => {
if (typeof data !== 'string') {
throw new Error('Unexpected type of data');
}
try {
const payload = Buffer.from(data, 'base64');
const parsed = JSON.parse(gunzipSync(payload).toString());
return parsed;
} catch (err) {
throw new Error(`Failed reading event: deserializing\n${err.message}`);
}
};
const getMessage = (event: LogGroupEvent | undefined): string => {
try {
const events = parseEvents(event?.awslogs?.data);
const logEvents = events?.logEvents;
if (!Array.isArray(logEvents)) {
throw new Error('Log events is not an array');
}
const messages = logEvents.map((item, i) => {
const message = item?.message;
if (typeof message !== 'string') {
throw new Error(`logEvent[${i}].message is not a string: ${JSON.stringify(item)}`);
}
return message;
});
return `Issue on office-booker-${env}: ${messages.join('\n')}`;
} catch (err) {
console.error(err);
return `Unparsable issue office-booker-${env}: ${err.message}`;
}
};
try {
const message = getMessage(event);
await postNotification(message);
} catch (error) {
console.error(error);
}
};
export const handler = async (event: LogGroupEvent | undefined, context: Context) => {
const env = process.env.ENV;
if (env === undefined) {
console.error('ENV not defined');
} else {
await processEvent(fetch, env, event);
}
};