forked from electerious/Ackee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
38 lines (32 loc) · 1.3 KB
/
index.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
'use strict'
const handler = require('../src/serverless').handler
/**
* A serverless function handler for the '/api' route, for use with Vercel.
* This handler follows the AWS Lambda API; Vercel deployments are opted-in
* using the "NODEJS_AWS_HANDLER_NAME" environment variable defined in vercel.json.
*
* See:
* - https://vercel.com/docs/serverless-functions/supported-languages#node.js
* - https://vercel.com/docs/runtimes#advanced-usage/advanced-node-js-usage/aws-lambda-api
*/
exports.handler = async (...args) => {
const response = await handler(...args)
return convertMultiValueHeaders(response)
}
/*
* At the time of writing the Vercel polyfill for the AWS Lambda API doesn't support .multiValueHeaders.
* This stops us from attaching CORS headers to requests.
* Since all the headers we commonly attach have a single value, we can map them to .headers instead.
*/
const convertMultiValueHeaders = (response) => {
if (response?.multiValueHeaders == null) return response
response.headers = response.headers ?? {}
for (const [ key, value ] of Object.entries(response.multiValueHeaders)) {
if (value.length === 1) {
response.headers[key] = value[0]
} else {
console.warn(`multiValueHeaders is currently unsupported on Vercel. Header ${ key } will be ignored.`)
}
}
return response
}