forked from storacha/w3infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupload-db-stack.js
124 lines (106 loc) · 3.32 KB
/
upload-db-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
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
import { Table, Bucket, Config } from 'sst/constructs'
import {
allocationTableProps,
storeTableProps,
uploadTableProps,
consumerTableProps,
subscriptionTableProps,
delegationTableProps,
revocationTableProps,
rateLimitTableProps,
adminMetricsTableProps,
spaceMetricsTableProps
} from '../upload-api/tables/index.js'
import {
pieceTableProps
} from '../filecoin/store/index.js'
import { setupSentry, getBucketConfig } from './config.js'
/**
* @param {import('sst/constructs').StackContext} properties
*/
export function UploadDbStack({ stack, app }) {
// Setup app monitoring with Sentry
setupSentry(app, stack)
// Upload API private key
const privateKey = new Config.Secret(stack, 'PRIVATE_KEY')
// Content claims private key
// TODO: we should look into creating a trust layer for content claims
const contentClaimsPrivateKey = new Config.Secret(stack, 'CONTENT_CLAIMS_PRIVATE_KEY')
/**
* The allocation table tracks allocated multihashes per space.
* Used by the blob/* service capabilities.
*/
const allocationTable = new Table(stack, 'allocation', allocationTableProps)
/**
* This table takes a stored CAR and makes an entry in the store table
* Used by the store/* service capabilities.
*/
const storeTable = new Table(stack, 'store', storeTableProps)
/**
* This table maps stored CAR files (shards) to an upload root cid.
* Used by the upload/* capabilities.
*/
const uploadTable = new Table(stack, 'upload', uploadTableProps)
/**
* This table takes a stored CAR and makes an entry in the piece table
* Used by the filecoin/* service capabilities.
*/
const pieceTable = new Table(stack, 'piece-v2', {
...pieceTableProps,
// information that will be written to the stream
stream: 'new_image',
})
/**
* This table tracks the relationship between customers and providers.
*/
const subscriptionTable = new Table(stack, 'subscription', subscriptionTableProps)
/**
* This table tracks the relationship between subscriptions and consumers (ie, spaces).
*/
const consumerTable = new Table(stack, 'consumer', consumerTableProps)
/**
* This table tracks rate limits we have imposed on subjects.
*/
const rateLimitTable = new Table(stack, 'rate-limit', rateLimitTableProps)
/**
* This bucket stores delegations extracted from UCAN invocations.
*/
const delegationBucket = new Bucket(stack, 'delegation-store', {
cors: true,
cdk: {
bucket: getBucketConfig('delegation', app.stage)
}
})
/**
* This table indexes delegations.
*/
const delegationTable = new Table(stack, 'delegation', delegationTableProps)
/**
* This table indexes revocations.
*/
const revocationTable = new Table(stack, 'revocation', revocationTableProps)
/**
* This table tracks w3 wider metrics.
*/
const adminMetricsTable = new Table(stack, 'admin-metrics', adminMetricsTableProps)
/**
* This table tracks metrics per space.
*/
const spaceMetricsTable = new Table(stack, 'space-metrics', spaceMetricsTableProps)
return {
allocationTable,
storeTable,
uploadTable,
pieceTable,
consumerTable,
subscriptionTable,
rateLimitTable,
delegationBucket,
delegationTable,
revocationTable,
adminMetricsTable,
spaceMetricsTable,
privateKey,
contentClaimsPrivateKey
}
}