forked from storacha/w3infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroundabout-stack.js
49 lines (43 loc) · 1.92 KB
/
roundabout-stack.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
import {
Api,
} from 'sst/constructs'
import { getCustomDomain, setupSentry } from './config.js'
/**
* @param {import('sst/constructs').StackContext} properties
*/
export function RoundaboutStack({ stack, app }) {
// Setup app monitoring with Sentry
setupSentry(app, stack)
// Setup API
const customDomain = getCustomDomain(stack.stage, process.env.ROUNDABOUT_HOSTED_ZONE)
const api = new Api(stack, 'roundabout-http-gateway', {
customDomain,
defaults: {
function: {
environment: {
BUCKET_ENDPOINT: process.env.R2_ENDPOINT ?? '',
BUCKET_REGION: process.env.R2_REGION ?? '',
BUCKET_NAME: process.env.R2_CARPARK_BUCKET_NAME ?? '',
BUCKET_ACCESS_KEY_ID: process.env.R2_ACCESS_KEY_ID ?? '',
BUCKET_SECRET_ACCESS_KEY: process.env.R2_SECRET_ACCESS_KEY ?? '',
}
}
},
routes: {
'GET /{cid}': 'roundabout/functions/redirect.handler',
'HEAD /{cid}': 'roundabout/functions/redirect.handler',
'GET /key/{key}': 'roundabout/functions/redirect.keyHandler',
'HEAD /key/{key}': 'roundabout/functions/redirect.keyHandler',
},
accessLog: {
format:'{"requestTime":"$context.requestTime","requestId":"$context.requestId","httpMethod":"$context.httpMethod","path":"$context.path","routeKey":"$context.routeKey","status":$context.status,"responseLatency":$context.responseLatency,"integrationRequestId":"$context.integration.requestId","integrationStatus":"$context.integration.status","integrationLatency":"$context.integration.latency","integrationServiceStatus":"$context.integration.integrationStatus","ip":"$context.identity.sourceIp","userAgent":"$context.identity.userAgent"}'
}
})
stack.addOutputs({
ApiEndpoint: api.url,
CustomDomain: customDomain ? `https://${customDomain.domainName}` : 'Set HOSTED_ZONE in env to deploy to a custom domain'
})
return {
roundaboutApiUrl: api.url
}
}