forked from storacha/w3infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
188 lines (170 loc) · 5.27 KB
/
config.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
import { Duration, RemovalPolicy } from 'aws-cdk-lib'
import { createRequire } from 'module'
import { StartingPosition } from 'aws-cdk-lib/aws-lambda'
import git from 'git-rev-sync'
import { mustGetEnv } from '../lib/env.js'
/**
* Get nicer bucket names
*
* @param {string} name
* @param {string} stage
* @param {number} version
*/
export function getBucketName (name, stage, version = 0) {
// e.g `carpark-prod-0` or `carpark-pr101-0`
return `${name}-${stage}-${version}`
}
/**
* Get nicer CDK resources name
*
* @param {string} name
* @param {string} stage
* @param {number} version
*/
export function getCdkNames (name, stage, version = 0) {
// e.g `prod-w3infra-ucan-stream-delivery-0`
return `${stage}-w3infra-${name}-${version}`
}
/**
* Is an ephemeral build?
*
* @param {string} stage
*/
export function isPrBuild (stage) {
if (!stage) throw new Error('stage must be provided')
return stage !== 'prod' && stage !== 'staging'
}
/**
* @param {string} name
* @param {string} stage
* @param {number} version
*/
export function getBucketConfig(name, stage, version = 0){
return {
bucketName: getBucketName(name, stage, version),
...(isPrBuild(stage) && {
autoDeleteObjects: true,
removalPolicy: RemovalPolicy.DESTROY
})
}
}
/**
* Return the custom domain config for http api
*
* @param {string} stage
* @param {string | undefined} hostedZone
* @returns {{domainName: string, hostedZone: string} | undefined}
*/
export function getCustomDomain (stage, hostedZone) {
// return no custom domain config if hostedZone not set
if (!hostedZone) {
return
}
/** @type Record<string,string> */
const domainMap = { prod: hostedZone }
const domainName = domainMap[stage] ?? `${stage}.${hostedZone}`
return { domainName, hostedZone }
}
/**
* @param {import('sst/constructs').Stack} stack
*/
export function getEventSourceConfig (stack) {
if (stack.stage !== 'prod') {
return {
batchSize: 10,
// The maximum amount of time to gather records before invoking the function.
maxBatchingWindow: Duration.seconds(5),
// If the function returns an error, split the batch in two and retry.
bisectBatchOnError: true,
// Where to begin consuming the stream.
startingPosition: StartingPosition.LATEST
}
}
return {
// Dynamo Transactions allow up to 100 writes per transactions. If we allow 10 capabilities executed per request, we can have up to 100.
// TODO: we use bisectBatchOnError, so maybe we can attempt bigger batch sizes to be optimistic?
batchSize: 10,
// The maximum amount of time to gather records before invoking the function.
maxBatchingWindow: Duration.minutes(2),
// If the function returns an error, split the batch in two and retry.
bisectBatchOnError: true,
// Where to begin consuming the stream.
startingPosition: StartingPosition.TRIM_HORIZON
}
}
/**
* @param {import('sst/constructs').Stack} stack
*/
export function getKinesisStreamConfig (stack) {
if (stack.stage !== 'prod' && stack.stage !== 'staging') {
return {
retentionPeriod: Duration.hours(24)
}
}
return {
retentionPeriod: Duration.days(365)
}
}
export function getApiPackageJson () {
// @ts-expect-error ts thinks this is unused becuase of the ignore
const require = createRequire(import.meta.url)
// @ts-ignore ts dont see *.json and dont like it
const pkg = require('./upload-api/package.json')
return pkg
}
export function getGitInfo () {
return {
commmit: git.long('.'),
branch: git.branch('.')
}
}
/**
* @param {import('sst/constructs').App} app
* @param {import('sst/constructs').Stack} stack
*/
export function setupSentry (app, stack) {
// Skip when locally
if (app.local) {
return
}
const { SENTRY_DSN } = getEnv()
stack.addDefaultFunctionEnv({
SENTRY_DSN,
})
}
/**
* @param {import('sst/constructs').Stack} stack
* @param {{domainName: string, hostedZone: string} | undefined} customDomain
*/
export function getServiceURL (stack, customDomain) {
// in production we use the top level subdomain
if (stack.stage === 'prod') {
return 'https://up.web3.storage'
// Derive from custom domain if there is one, which is used in staging, PR envs and dev envs
} else if (customDomain) {
return `https://${customDomain.domainName}`
// everywhere else we use something more estoteric - usually an AWS Lambda URL
} else {
return process.env.ACCESS_SERVICE_URL
}
}
/**
* Get Env validating it is set.
*/
export function getEnv() {
return {
SENTRY_DSN: mustGetEnv('SENTRY_DSN'),
UPLOAD_API_DID: mustGetEnv('UPLOAD_API_DID'),
AGGREGATOR_DID: mustGetEnv('AGGREGATOR_DID'),
AGGREGATOR_URL: mustGetEnv('AGGREGATOR_URL'),
CONTENT_CLAIMS_DID: mustGetEnv('CONTENT_CLAIMS_DID'),
CONTENT_CLAIMS_URL: mustGetEnv('CONTENT_CLAIMS_URL'),
EIPFS_MULTIHASHES_SQS_ARN: mustGetEnv('EIPFS_MULTIHASHES_SQS_ARN'),
EIPFS_BLOCKS_CAR_POSITION_TABLE_ARN: mustGetEnv('EIPFS_BLOCKS_CAR_POSITION_TABLE_ARN'),
// Not required
STOREFRONT_PROOF: process.env.STOREFRONT_PROOF ?? '',
CONTENT_CLAIMS_PROOF: process.env.CONTENT_CLAIMS_PROOF ?? '',
DISABLE_PIECE_CID_COMPUTE: process.env.DISABLE_PIECE_CID_COMPUTE ?? '',
START_FILECOIN_METRICS_EPOCH_MS: process.env.START_FILECOIN_METRICS_EPOCH_MS ?? ''
}
}