-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.ts
53 lines (40 loc) · 1.57 KB
/
handler.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
import { Handler, Context, Callback } from 'aws-lambda';
interface RedirectResponse {
status: number,
statusDescription: string,
headers: { location: { key: string, value: string }[] }
}
const isMobile: (request: any) => boolean = function (request: any): boolean {
const { headers } = request;
const mobile = headers['cloudfront-is-mobile-viewer'];
const [confirm] = mobile && mobile;
return confirm && confirm.value && confirm.value === 'true';
};
const skipEmptyEventLoop: (context: Context) => void = function (context: Context): void {
context.callbackWaitsForEmptyEventLoop = false;
};
const getRequest: (records: any[]) => any = function (records: any[]): any {
const [first] = records;
return first.cf.request;
};
const forward: Handler = function (event: any, context: Context, callback: Callback) {
skipEmptyEventLoop(context);
console.log('forward: event', event);
console.log('forward: context', context);
const request = getRequest(event.Records);
if (!isMobile(request)) {
console.log('forward: response', request);
callback(undefined, request);
return;
}
const response: RedirectResponse = {
status: 302,
statusDescription: 'mobile',
headers: { location: [{ key: 'Location', value: `https://m.alertbox.com${request.uri}` }] }
};
console.log('forward mobile: response', response);
// Use this code if you don't use the http event with the LAMBDA-PROXY integration
// callback(null, { message: 'Go Serverless v1.0! Your function executed successfully!', event });
callback(undefined, response);
};
export { forward }