@stacksjs/ts-cloud-core 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +21 -0
- package/README.md +321 -0
- package/package.json +31 -0
- package/src/advanced-features.test.ts +465 -0
- package/src/aws/cloudformation.ts +421 -0
- package/src/aws/cloudfront.ts +158 -0
- package/src/aws/credentials.test.ts +132 -0
- package/src/aws/credentials.ts +545 -0
- package/src/aws/index.ts +87 -0
- package/src/aws/s3.test.ts +188 -0
- package/src/aws/s3.ts +1088 -0
- package/src/aws/signature.test.ts +670 -0
- package/src/aws/signature.ts +1155 -0
- package/src/backup/disaster-recovery.test.ts +726 -0
- package/src/backup/disaster-recovery.ts +500 -0
- package/src/backup/index.ts +34 -0
- package/src/backup/manager.test.ts +498 -0
- package/src/backup/manager.ts +432 -0
- package/src/cicd/circleci.ts +430 -0
- package/src/cicd/github-actions.ts +424 -0
- package/src/cicd/gitlab-ci.ts +255 -0
- package/src/cicd/index.ts +8 -0
- package/src/cli/history.ts +396 -0
- package/src/cli/index.ts +10 -0
- package/src/cli/progress.ts +458 -0
- package/src/cli/repl.ts +454 -0
- package/src/cli/suggestions.ts +327 -0
- package/src/cli/table.test.ts +319 -0
- package/src/cli/table.ts +332 -0
- package/src/cloudformation/builder.test.ts +327 -0
- package/src/cloudformation/builder.ts +378 -0
- package/src/cloudformation/builders/api-gateway.ts +449 -0
- package/src/cloudformation/builders/cache.ts +334 -0
- package/src/cloudformation/builders/cdn.ts +278 -0
- package/src/cloudformation/builders/compute.ts +485 -0
- package/src/cloudformation/builders/database.ts +392 -0
- package/src/cloudformation/builders/functions.ts +343 -0
- package/src/cloudformation/builders/messaging.ts +140 -0
- package/src/cloudformation/builders/monitoring.ts +300 -0
- package/src/cloudformation/builders/network.ts +264 -0
- package/src/cloudformation/builders/queue.ts +147 -0
- package/src/cloudformation/builders/security.ts +399 -0
- package/src/cloudformation/builders/storage.ts +285 -0
- package/src/cloudformation/index.ts +30 -0
- package/src/cloudformation/types.ts +173 -0
- package/src/compliance/aws-config.ts +543 -0
- package/src/compliance/cloudtrail.ts +376 -0
- package/src/compliance/compliance.test.ts +423 -0
- package/src/compliance/guardduty.ts +446 -0
- package/src/compliance/index.ts +66 -0
- package/src/compliance/security-hub.ts +456 -0
- package/src/containers/build-optimization.ts +416 -0
- package/src/containers/containers.test.ts +508 -0
- package/src/containers/image-scanning.ts +360 -0
- package/src/containers/index.ts +9 -0
- package/src/containers/registry.ts +293 -0
- package/src/containers/service-mesh.ts +520 -0
- package/src/database/database.test.ts +762 -0
- package/src/database/index.ts +9 -0
- package/src/database/migrations.ts +444 -0
- package/src/database/performance.ts +528 -0
- package/src/database/replicas.ts +534 -0
- package/src/database/users.ts +494 -0
- package/src/dependency-graph.ts +143 -0
- package/src/deployment/ab-testing.ts +582 -0
- package/src/deployment/blue-green.ts +452 -0
- package/src/deployment/canary.ts +500 -0
- package/src/deployment/deployment.test.ts +526 -0
- package/src/deployment/index.ts +61 -0
- package/src/deployment/progressive.ts +62 -0
- package/src/dns/dns.test.ts +641 -0
- package/src/dns/dnssec.ts +315 -0
- package/src/dns/index.ts +8 -0
- package/src/dns/resolver.ts +496 -0
- package/src/dns/routing.ts +593 -0
- package/src/email/advanced/analytics.ts +445 -0
- package/src/email/advanced/index.ts +11 -0
- package/src/email/advanced/rules.ts +465 -0
- package/src/email/advanced/scheduling.ts +352 -0
- package/src/email/advanced/search.ts +412 -0
- package/src/email/advanced/shared-mailboxes.ts +404 -0
- package/src/email/advanced/templates.ts +455 -0
- package/src/email/advanced/threading.ts +281 -0
- package/src/email/analytics.ts +467 -0
- package/src/email/bounce-handling.ts +425 -0
- package/src/email/email.test.ts +431 -0
- package/src/email/handlers/__tests__/inbound.test.ts +38 -0
- package/src/email/handlers/__tests__/outbound.test.ts +37 -0
- package/src/email/handlers/converter.ts +227 -0
- package/src/email/handlers/feedback.ts +228 -0
- package/src/email/handlers/inbound.ts +169 -0
- package/src/email/handlers/outbound.ts +178 -0
- package/src/email/index.ts +15 -0
- package/src/email/reputation.ts +303 -0
- package/src/email/templates.ts +352 -0
- package/src/errors/index.test.ts +434 -0
- package/src/errors/index.ts +416 -0
- package/src/health-checks/index.ts +40 -0
- package/src/index.ts +360 -0
- package/src/intrinsic-functions.ts +118 -0
- package/src/lambda/concurrency.ts +330 -0
- package/src/lambda/destinations.ts +345 -0
- package/src/lambda/dlq.ts +425 -0
- package/src/lambda/index.ts +11 -0
- package/src/lambda/lambda.test.ts +840 -0
- package/src/lambda/layers.ts +263 -0
- package/src/lambda/versions.ts +376 -0
- package/src/lambda/vpc.ts +399 -0
- package/src/local/config.ts +114 -0
- package/src/local/index.ts +6 -0
- package/src/local/mock-aws.ts +351 -0
- package/src/modules/ai.ts +340 -0
- package/src/modules/api.ts +478 -0
- package/src/modules/auth.ts +805 -0
- package/src/modules/cache.ts +417 -0
- package/src/modules/cdn.ts +1062 -0
- package/src/modules/communication.ts +1094 -0
- package/src/modules/compute.ts +3348 -0
- package/src/modules/database.ts +554 -0
- package/src/modules/deployment.ts +1079 -0
- package/src/modules/dns.ts +337 -0
- package/src/modules/email.ts +1538 -0
- package/src/modules/filesystem.ts +515 -0
- package/src/modules/index.ts +32 -0
- package/src/modules/messaging.ts +486 -0
- package/src/modules/monitoring.ts +2086 -0
- package/src/modules/network.ts +664 -0
- package/src/modules/parameter-store.ts +325 -0
- package/src/modules/permissions.ts +1081 -0
- package/src/modules/phone.ts +494 -0
- package/src/modules/queue.ts +1260 -0
- package/src/modules/redirects.ts +464 -0
- package/src/modules/registry.ts +699 -0
- package/src/modules/search.ts +401 -0
- package/src/modules/secrets.ts +416 -0
- package/src/modules/security.ts +731 -0
- package/src/modules/sms.ts +389 -0
- package/src/modules/storage.ts +1120 -0
- package/src/modules/workflow.ts +680 -0
- package/src/multi-account/config.ts +521 -0
- package/src/multi-account/index.ts +7 -0
- package/src/multi-account/manager.ts +427 -0
- package/src/multi-region/cross-region.ts +410 -0
- package/src/multi-region/index.ts +8 -0
- package/src/multi-region/manager.ts +483 -0
- package/src/multi-region/regions.ts +435 -0
- package/src/network-security/index.ts +48 -0
- package/src/observability/index.ts +9 -0
- package/src/observability/logs.ts +522 -0
- package/src/observability/metrics.ts +460 -0
- package/src/observability/observability.test.ts +782 -0
- package/src/observability/synthetics.ts +568 -0
- package/src/observability/xray.ts +358 -0
- package/src/phone/advanced/analytics.ts +349 -0
- package/src/phone/advanced/callbacks.ts +428 -0
- package/src/phone/advanced/index.ts +8 -0
- package/src/phone/advanced/ivr-builder.ts +504 -0
- package/src/phone/advanced/recording.ts +310 -0
- package/src/phone/handlers/__tests__/incoming-call.test.ts +40 -0
- package/src/phone/handlers/incoming-call.ts +117 -0
- package/src/phone/handlers/missed-call.ts +116 -0
- package/src/phone/handlers/voicemail.ts +179 -0
- package/src/phone/index.ts +9 -0
- package/src/presets/api-backend.ts +134 -0
- package/src/presets/data-pipeline.ts +204 -0
- package/src/presets/extend.test.ts +295 -0
- package/src/presets/extend.ts +297 -0
- package/src/presets/fullstack-app.ts +144 -0
- package/src/presets/index.ts +27 -0
- package/src/presets/jamstack.ts +135 -0
- package/src/presets/microservices.ts +167 -0
- package/src/presets/ml-api.ts +208 -0
- package/src/presets/nodejs-server.ts +104 -0
- package/src/presets/nodejs-serverless.ts +114 -0
- package/src/presets/realtime-app.ts +184 -0
- package/src/presets/static-site.ts +64 -0
- package/src/presets/traditional-web-app.ts +339 -0
- package/src/presets/wordpress.ts +138 -0
- package/src/preview/github.test.ts +249 -0
- package/src/preview/github.ts +297 -0
- package/src/preview/index.ts +37 -0
- package/src/preview/manager.test.ts +440 -0
- package/src/preview/manager.ts +326 -0
- package/src/preview/notifications.test.ts +582 -0
- package/src/preview/notifications.ts +341 -0
- package/src/queue/batch-processing.ts +402 -0
- package/src/queue/dlq-monitoring.ts +402 -0
- package/src/queue/fifo.ts +342 -0
- package/src/queue/index.ts +9 -0
- package/src/queue/management.ts +428 -0
- package/src/queue/queue.test.ts +429 -0
- package/src/resource-mgmt/index.ts +39 -0
- package/src/resource-naming.ts +62 -0
- package/src/s3/index.ts +523 -0
- package/src/schema/cloud-config.schema.json +554 -0
- package/src/schema/index.ts +68 -0
- package/src/security/certificate-manager.ts +492 -0
- package/src/security/index.ts +9 -0
- package/src/security/scanning.ts +545 -0
- package/src/security/secrets-manager.ts +476 -0
- package/src/security/secrets-rotation.ts +456 -0
- package/src/security/security.test.ts +738 -0
- package/src/sms/advanced/ab-testing.ts +389 -0
- package/src/sms/advanced/analytics.ts +336 -0
- package/src/sms/advanced/campaigns.ts +523 -0
- package/src/sms/advanced/chatbot.ts +224 -0
- package/src/sms/advanced/index.ts +10 -0
- package/src/sms/advanced/link-tracking.ts +248 -0
- package/src/sms/advanced/mms.ts +308 -0
- package/src/sms/handlers/__tests__/send.test.ts +40 -0
- package/src/sms/handlers/delivery-status.ts +133 -0
- package/src/sms/handlers/receive.ts +162 -0
- package/src/sms/handlers/send.ts +174 -0
- package/src/sms/index.ts +9 -0
- package/src/stack-diff.ts +389 -0
- package/src/static-site/index.ts +85 -0
- package/src/template-builder.ts +110 -0
- package/src/template-validator.ts +574 -0
- package/src/utils/cache.ts +291 -0
- package/src/utils/diff.ts +269 -0
- package/src/utils/hash.ts +227 -0
- package/src/utils/index.ts +8 -0
- package/src/utils/parallel.ts +294 -0
- package/src/validators/credentials.test.ts +274 -0
- package/src/validators/credentials.ts +233 -0
- package/src/validators/quotas.test.ts +434 -0
- package/src/validators/quotas.ts +217 -0
- package/test/ai.test.ts +327 -0
- package/test/api.test.ts +511 -0
- package/test/auth.test.ts +632 -0
- package/test/cache.test.ts +406 -0
- package/test/cdn.test.ts +247 -0
- package/test/compute.test.ts +861 -0
- package/test/database.test.ts +523 -0
- package/test/deployment.test.ts +499 -0
- package/test/dns.test.ts +270 -0
- package/test/email.test.ts +439 -0
- package/test/filesystem.test.ts +382 -0
- package/test/integration.test.ts +350 -0
- package/test/messaging.test.ts +514 -0
- package/test/monitoring.test.ts +634 -0
- package/test/network.test.ts +425 -0
- package/test/permissions.test.ts +488 -0
- package/test/queue.test.ts +484 -0
- package/test/registry.test.ts +306 -0
- package/test/security.test.ts +462 -0
- package/test/storage.test.ts +463 -0
- package/test/template-validator.test.ts +559 -0
- package/test/workflow.test.ts +592 -0
- package/tsconfig.json +16 -0
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1,449 @@
|
|
|
1
|
+
import type { CloudFormationBuilder } from '../builder'
|
|
2
|
+
import { Fn } from '../types'
|
|
3
|
+
|
|
4
|
+
export interface ApiGatewayConfig {
|
|
5
|
+
type: 'http' | 'rest' | 'websocket'
|
|
6
|
+
customDomain?: {
|
|
7
|
+
domain: string
|
|
8
|
+
certificateArn: string
|
|
9
|
+
}
|
|
10
|
+
cors?: {
|
|
11
|
+
allowOrigins: string[]
|
|
12
|
+
allowMethods: string[]
|
|
13
|
+
allowHeaders?: string[]
|
|
14
|
+
maxAge?: number
|
|
15
|
+
}
|
|
16
|
+
throttling?: {
|
|
17
|
+
rateLimit: number
|
|
18
|
+
burstLimit: number
|
|
19
|
+
}
|
|
20
|
+
routes?: any
|
|
21
|
+
authorizer?: {
|
|
22
|
+
type: 'jwt' | 'lambda' | 'cognito'
|
|
23
|
+
identitySource?: string
|
|
24
|
+
authorizerUri?: string
|
|
25
|
+
issuer?: string
|
|
26
|
+
audience?: string[]
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Add API Gateway resources to CloudFormation template
|
|
32
|
+
*/
|
|
33
|
+
export function addApiGatewayResources(
|
|
34
|
+
builder: CloudFormationBuilder,
|
|
35
|
+
config: ApiGatewayConfig,
|
|
36
|
+
): void {
|
|
37
|
+
if (config.type === 'http') {
|
|
38
|
+
addHttpApi(builder, config)
|
|
39
|
+
}
|
|
40
|
+
else if (config.type === 'rest') {
|
|
41
|
+
addRestApi(builder, config)
|
|
42
|
+
}
|
|
43
|
+
else if (config.type === 'websocket') {
|
|
44
|
+
addWebSocketApi(builder, config)
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Add HTTP API (API Gateway v2)
|
|
50
|
+
*/
|
|
51
|
+
function addHttpApi(
|
|
52
|
+
builder: CloudFormationBuilder,
|
|
53
|
+
config: ApiGatewayConfig,
|
|
54
|
+
): void {
|
|
55
|
+
// HTTP API
|
|
56
|
+
const apiProperties: any = {
|
|
57
|
+
Name: Fn.sub('${AWS::StackName}-http-api'),
|
|
58
|
+
ProtocolType: 'HTTP',
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
// CORS configuration
|
|
62
|
+
if (config.cors) {
|
|
63
|
+
apiProperties.CorsConfiguration = {
|
|
64
|
+
AllowOrigins: config.cors.allowOrigins,
|
|
65
|
+
AllowMethods: config.cors.allowMethods,
|
|
66
|
+
AllowHeaders: config.cors.allowHeaders || ['*'],
|
|
67
|
+
MaxAge: config.cors.maxAge || 300,
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
builder.addResource('HttpApi', 'AWS::ApiGatewayV2::Api', apiProperties)
|
|
72
|
+
|
|
73
|
+
// Default stage
|
|
74
|
+
builder.addResource('HttpApiStage', 'AWS::ApiGatewayV2::Stage', {
|
|
75
|
+
ApiId: Fn.ref('HttpApi'),
|
|
76
|
+
StageName: '$default',
|
|
77
|
+
AutoDeploy: true,
|
|
78
|
+
DefaultRouteSettings: config.throttling ? {
|
|
79
|
+
ThrottlingBurstLimit: config.throttling.burstLimit,
|
|
80
|
+
ThrottlingRateLimit: config.throttling.rateLimit,
|
|
81
|
+
} : undefined,
|
|
82
|
+
AccessLogSettings: {
|
|
83
|
+
DestinationArn: Fn.getAtt('ApiLogGroup', 'Arn'),
|
|
84
|
+
Format: '$context.requestId $context.error.message $context.error.messageString',
|
|
85
|
+
},
|
|
86
|
+
}, {
|
|
87
|
+
dependsOn: ['HttpApi', 'ApiLogGroup'],
|
|
88
|
+
})
|
|
89
|
+
|
|
90
|
+
// CloudWatch Logs for API Gateway
|
|
91
|
+
builder.addResource('ApiLogGroup', 'AWS::Logs::LogGroup', {
|
|
92
|
+
LogGroupName: Fn.sub('/aws/apigateway/${AWS::StackName}-http-api'),
|
|
93
|
+
RetentionInDays: 14,
|
|
94
|
+
})
|
|
95
|
+
|
|
96
|
+
// Authorizer (if configured)
|
|
97
|
+
if (config.authorizer) {
|
|
98
|
+
addAuthorizer(builder, 'HttpApi', config.authorizer)
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
// Custom domain
|
|
102
|
+
if (config.customDomain) {
|
|
103
|
+
addApiCustomDomain(builder, 'HttpApi', config.customDomain, 'HTTP')
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
// Outputs
|
|
107
|
+
builder.addOutputs({
|
|
108
|
+
HttpApiId: {
|
|
109
|
+
Description: 'HTTP API ID',
|
|
110
|
+
Value: Fn.ref('HttpApi'),
|
|
111
|
+
Export: {
|
|
112
|
+
Name: Fn.sub('${AWS::StackName}-http-api-id'),
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
HttpApiEndpoint: {
|
|
116
|
+
Description: 'HTTP API endpoint',
|
|
117
|
+
Value: Fn.getAtt('HttpApi', 'ApiEndpoint'),
|
|
118
|
+
Export: {
|
|
119
|
+
Name: Fn.sub('${AWS::StackName}-http-api-endpoint'),
|
|
120
|
+
},
|
|
121
|
+
},
|
|
122
|
+
})
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* Add REST API (API Gateway v1)
|
|
127
|
+
*/
|
|
128
|
+
function addRestApi(
|
|
129
|
+
builder: CloudFormationBuilder,
|
|
130
|
+
config: ApiGatewayConfig,
|
|
131
|
+
): void {
|
|
132
|
+
// REST API
|
|
133
|
+
builder.addResource('RestApi', 'AWS::ApiGateway::RestApi', {
|
|
134
|
+
Name: Fn.sub('${AWS::StackName}-rest-api'),
|
|
135
|
+
Description: Fn.sub('REST API for ${AWS::StackName}'),
|
|
136
|
+
EndpointConfiguration: {
|
|
137
|
+
Types: ['REGIONAL'],
|
|
138
|
+
},
|
|
139
|
+
})
|
|
140
|
+
|
|
141
|
+
// API Gateway Account (for CloudWatch logging)
|
|
142
|
+
builder.addResource('ApiGatewayAccount', 'AWS::ApiGateway::Account', {
|
|
143
|
+
CloudWatchRoleArn: Fn.getAtt('ApiGatewayCloudWatchRole', 'Arn'),
|
|
144
|
+
}, {
|
|
145
|
+
dependsOn: 'ApiGatewayCloudWatchRole',
|
|
146
|
+
})
|
|
147
|
+
|
|
148
|
+
// IAM Role for API Gateway CloudWatch logging
|
|
149
|
+
builder.addResource('ApiGatewayCloudWatchRole', 'AWS::IAM::Role', {
|
|
150
|
+
AssumeRolePolicyDocument: {
|
|
151
|
+
Version: '2012-10-17',
|
|
152
|
+
Statement: [{
|
|
153
|
+
Effect: 'Allow',
|
|
154
|
+
Principal: { Service: 'apigateway.amazonaws.com' },
|
|
155
|
+
Action: 'sts:AssumeRole',
|
|
156
|
+
}],
|
|
157
|
+
},
|
|
158
|
+
ManagedPolicyArns: [
|
|
159
|
+
'arn:aws:iam::aws:policy/service-role/AmazonAPIGatewayPushToCloudWatchLogs',
|
|
160
|
+
],
|
|
161
|
+
})
|
|
162
|
+
|
|
163
|
+
// Deployment
|
|
164
|
+
builder.addResource('RestApiDeployment', 'AWS::ApiGateway::Deployment', {
|
|
165
|
+
RestApiId: Fn.ref('RestApi'),
|
|
166
|
+
Description: 'Initial deployment',
|
|
167
|
+
}, {
|
|
168
|
+
dependsOn: 'RestApi',
|
|
169
|
+
})
|
|
170
|
+
|
|
171
|
+
// Stage
|
|
172
|
+
const stageProperties: any = {
|
|
173
|
+
RestApiId: Fn.ref('RestApi'),
|
|
174
|
+
DeploymentId: Fn.ref('RestApiDeployment'),
|
|
175
|
+
StageName: 'prod',
|
|
176
|
+
Description: 'Production stage',
|
|
177
|
+
MethodSettings: [{
|
|
178
|
+
ResourcePath: '/*',
|
|
179
|
+
HttpMethod: '*',
|
|
180
|
+
LoggingLevel: 'INFO',
|
|
181
|
+
DataTraceEnabled: true,
|
|
182
|
+
MetricsEnabled: true,
|
|
183
|
+
}],
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
if (config.throttling) {
|
|
187
|
+
stageProperties.MethodSettings[0].ThrottlingBurstLimit = config.throttling.burstLimit
|
|
188
|
+
stageProperties.MethodSettings[0].ThrottlingRateLimit = config.throttling.rateLimit
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
builder.addResource('RestApiStage', 'AWS::ApiGateway::Stage', stageProperties, {
|
|
192
|
+
dependsOn: ['RestApi', 'RestApiDeployment'],
|
|
193
|
+
})
|
|
194
|
+
|
|
195
|
+
// Custom domain
|
|
196
|
+
if (config.customDomain) {
|
|
197
|
+
addApiCustomDomain(builder, 'RestApi', config.customDomain, 'REST')
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
// Outputs
|
|
201
|
+
builder.addOutputs({
|
|
202
|
+
RestApiId: {
|
|
203
|
+
Description: 'REST API ID',
|
|
204
|
+
Value: Fn.ref('RestApi'),
|
|
205
|
+
Export: {
|
|
206
|
+
Name: Fn.sub('${AWS::StackName}-rest-api-id'),
|
|
207
|
+
},
|
|
208
|
+
},
|
|
209
|
+
RestApiEndpoint: {
|
|
210
|
+
Description: 'REST API endpoint',
|
|
211
|
+
Value: Fn.sub('https://${RestApi}.execute-api.${AWS::Region}.amazonaws.com/prod'),
|
|
212
|
+
Export: {
|
|
213
|
+
Name: Fn.sub('${AWS::StackName}-rest-api-endpoint'),
|
|
214
|
+
},
|
|
215
|
+
},
|
|
216
|
+
})
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* Add WebSocket API
|
|
221
|
+
*/
|
|
222
|
+
function addWebSocketApi(
|
|
223
|
+
builder: CloudFormationBuilder,
|
|
224
|
+
config: ApiGatewayConfig,
|
|
225
|
+
): void {
|
|
226
|
+
// WebSocket API
|
|
227
|
+
builder.addResource('WebSocketApi', 'AWS::ApiGatewayV2::Api', {
|
|
228
|
+
Name: Fn.sub('${AWS::StackName}-websocket-api'),
|
|
229
|
+
ProtocolType: 'WEBSOCKET',
|
|
230
|
+
RouteSelectionExpression: '$request.body.action',
|
|
231
|
+
})
|
|
232
|
+
|
|
233
|
+
// Routes (connect, disconnect, default, custom)
|
|
234
|
+
if (config.routes) {
|
|
235
|
+
// Connect route
|
|
236
|
+
if (config.routes.connect) {
|
|
237
|
+
addWebSocketRoute(builder, '$connect', config.routes.connect.functionName)
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
// Disconnect route
|
|
241
|
+
if (config.routes.disconnect) {
|
|
242
|
+
addWebSocketRoute(builder, '$disconnect', config.routes.disconnect.functionName)
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
// Default route
|
|
246
|
+
if (config.routes.default) {
|
|
247
|
+
addWebSocketRoute(builder, '$default', config.routes.default.functionName)
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
// Custom routes
|
|
251
|
+
if (config.routes.custom) {
|
|
252
|
+
config.routes.custom.forEach((route: any) => {
|
|
253
|
+
addWebSocketRoute(builder, route.routeKey, route.functionName)
|
|
254
|
+
})
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
// Stage
|
|
259
|
+
builder.addResource('WebSocketApiStage', 'AWS::ApiGatewayV2::Stage', {
|
|
260
|
+
ApiId: Fn.ref('WebSocketApi'),
|
|
261
|
+
StageName: 'prod',
|
|
262
|
+
AutoDeploy: true,
|
|
263
|
+
DefaultRouteSettings: config.throttling ? {
|
|
264
|
+
ThrottlingBurstLimit: config.throttling.burstLimit,
|
|
265
|
+
ThrottlingRateLimit: config.throttling.rateLimit,
|
|
266
|
+
} : undefined,
|
|
267
|
+
}, {
|
|
268
|
+
dependsOn: 'WebSocketApi',
|
|
269
|
+
})
|
|
270
|
+
|
|
271
|
+
// Custom domain
|
|
272
|
+
if (config.customDomain) {
|
|
273
|
+
addApiCustomDomain(builder, 'WebSocketApi', config.customDomain, 'WEBSOCKET')
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
// Outputs
|
|
277
|
+
builder.addOutputs({
|
|
278
|
+
WebSocketApiId: {
|
|
279
|
+
Description: 'WebSocket API ID',
|
|
280
|
+
Value: Fn.ref('WebSocketApi'),
|
|
281
|
+
Export: {
|
|
282
|
+
Name: Fn.sub('${AWS::StackName}-websocket-api-id'),
|
|
283
|
+
},
|
|
284
|
+
},
|
|
285
|
+
WebSocketApiEndpoint: {
|
|
286
|
+
Description: 'WebSocket API endpoint',
|
|
287
|
+
Value: Fn.getAtt('WebSocketApi', 'ApiEndpoint'),
|
|
288
|
+
Export: {
|
|
289
|
+
Name: Fn.sub('${AWS::StackName}-websocket-api-endpoint'),
|
|
290
|
+
},
|
|
291
|
+
},
|
|
292
|
+
})
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
/**
|
|
296
|
+
* Add WebSocket route
|
|
297
|
+
*/
|
|
298
|
+
function addWebSocketRoute(
|
|
299
|
+
builder: CloudFormationBuilder,
|
|
300
|
+
routeKey: string,
|
|
301
|
+
functionName: string,
|
|
302
|
+
): void {
|
|
303
|
+
const routeId = builder.toLogicalId(`websocket-route-${routeKey}`)
|
|
304
|
+
const integrationId = builder.toLogicalId(`websocket-integration-${routeKey}`)
|
|
305
|
+
const functionLogicalId = builder.toLogicalId(`${functionName}-function`)
|
|
306
|
+
|
|
307
|
+
// Integration
|
|
308
|
+
builder.addResource(integrationId, 'AWS::ApiGatewayV2::Integration', {
|
|
309
|
+
ApiId: Fn.ref('WebSocketApi'),
|
|
310
|
+
IntegrationType: 'AWS_PROXY',
|
|
311
|
+
IntegrationUri: Fn.sub(
|
|
312
|
+
`arn:aws:apigateway:\${AWS::Region}:lambda:path/2015-03-31/functions/\${${functionLogicalId}.Arn}/invocations`,
|
|
313
|
+
),
|
|
314
|
+
}, {
|
|
315
|
+
dependsOn: ['WebSocketApi', functionLogicalId],
|
|
316
|
+
})
|
|
317
|
+
|
|
318
|
+
// Route
|
|
319
|
+
builder.addResource(routeId, 'AWS::ApiGatewayV2::Route', {
|
|
320
|
+
ApiId: Fn.ref('WebSocketApi'),
|
|
321
|
+
RouteKey: routeKey,
|
|
322
|
+
Target: Fn.join('/', ['integrations', Fn.ref(integrationId)]),
|
|
323
|
+
}, {
|
|
324
|
+
dependsOn: ['WebSocketApi', integrationId],
|
|
325
|
+
})
|
|
326
|
+
|
|
327
|
+
// Lambda permission
|
|
328
|
+
builder.addResource(`${routeId}Permission`, 'AWS::Lambda::Permission', {
|
|
329
|
+
FunctionName: Fn.ref(functionLogicalId),
|
|
330
|
+
Action: 'lambda:InvokeFunction',
|
|
331
|
+
Principal: 'apigateway.amazonaws.com',
|
|
332
|
+
SourceArn: Fn.sub(`arn:aws:execute-api:\${AWS::Region}:\${AWS::AccountId}:\${WebSocketApi}/*`),
|
|
333
|
+
}, {
|
|
334
|
+
dependsOn: [functionLogicalId, 'WebSocketApi'],
|
|
335
|
+
})
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
/**
|
|
339
|
+
* Add API Gateway custom domain
|
|
340
|
+
*/
|
|
341
|
+
function addApiCustomDomain(
|
|
342
|
+
builder: CloudFormationBuilder,
|
|
343
|
+
apiLogicalId: string,
|
|
344
|
+
customDomain: { domain: string, certificateArn: string },
|
|
345
|
+
apiType: 'HTTP' | 'REST' | 'WEBSOCKET',
|
|
346
|
+
): void {
|
|
347
|
+
// Domain name
|
|
348
|
+
const domainProperties: any = {
|
|
349
|
+
DomainName: customDomain.domain,
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
if (apiType === 'REST') {
|
|
353
|
+
domainProperties.CertificateArn = customDomain.certificateArn
|
|
354
|
+
domainProperties.EndpointConfiguration = {
|
|
355
|
+
Types: ['REGIONAL'],
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
builder.addResource('ApiCustomDomain', 'AWS::ApiGateway::DomainName', domainProperties)
|
|
359
|
+
|
|
360
|
+
// Base path mapping
|
|
361
|
+
builder.addResource('ApiBasePathMapping', 'AWS::ApiGateway::BasePathMapping', {
|
|
362
|
+
DomainName: Fn.ref('ApiCustomDomain'),
|
|
363
|
+
RestApiId: Fn.ref(apiLogicalId),
|
|
364
|
+
Stage: Fn.ref('RestApiStage'),
|
|
365
|
+
}, {
|
|
366
|
+
dependsOn: ['ApiCustomDomain', apiLogicalId, 'RestApiStage'],
|
|
367
|
+
})
|
|
368
|
+
}
|
|
369
|
+
else {
|
|
370
|
+
// HTTP or WebSocket API
|
|
371
|
+
domainProperties.DomainNameConfigurations = [{
|
|
372
|
+
CertificateArn: customDomain.certificateArn,
|
|
373
|
+
EndpointType: 'REGIONAL',
|
|
374
|
+
}]
|
|
375
|
+
|
|
376
|
+
builder.addResource('ApiCustomDomain', 'AWS::ApiGatewayV2::DomainName', domainProperties)
|
|
377
|
+
|
|
378
|
+
// API mapping
|
|
379
|
+
builder.addResource('ApiMapping', 'AWS::ApiGatewayV2::ApiMapping', {
|
|
380
|
+
ApiId: Fn.ref(apiLogicalId),
|
|
381
|
+
DomainName: Fn.ref('ApiCustomDomain'),
|
|
382
|
+
Stage: apiType === 'HTTP' ? Fn.ref('HttpApiStage') : Fn.ref('WebSocketApiStage'),
|
|
383
|
+
}, {
|
|
384
|
+
dependsOn: ['ApiCustomDomain', apiLogicalId],
|
|
385
|
+
})
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
// Route53 DNS record
|
|
389
|
+
builder.addResource('ApiDNSRecord', 'AWS::Route53::RecordSet', {
|
|
390
|
+
HostedZoneName: Fn.sub(`${extractRootDomain(customDomain.domain)}.`),
|
|
391
|
+
Name: customDomain.domain,
|
|
392
|
+
Type: 'A',
|
|
393
|
+
AliasTarget: {
|
|
394
|
+
HostedZoneId: Fn.getAtt('ApiCustomDomain', 'RegionalHostedZoneId'),
|
|
395
|
+
DNSName: Fn.getAtt('ApiCustomDomain', 'RegionalDomainName'),
|
|
396
|
+
EvaluateTargetHealth: false,
|
|
397
|
+
},
|
|
398
|
+
}, {
|
|
399
|
+
dependsOn: 'ApiCustomDomain',
|
|
400
|
+
})
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
/**
|
|
404
|
+
* Add API Gateway authorizer
|
|
405
|
+
*/
|
|
406
|
+
function addAuthorizer(
|
|
407
|
+
builder: CloudFormationBuilder,
|
|
408
|
+
apiLogicalId: string,
|
|
409
|
+
config: ApiGatewayConfig['authorizer'],
|
|
410
|
+
): void {
|
|
411
|
+
if (!config) return
|
|
412
|
+
|
|
413
|
+
if (config.type === 'jwt') {
|
|
414
|
+
builder.addResource('ApiAuthorizer', 'AWS::ApiGatewayV2::Authorizer', {
|
|
415
|
+
ApiId: Fn.ref(apiLogicalId),
|
|
416
|
+
AuthorizerType: 'JWT',
|
|
417
|
+
IdentitySource: [config.identitySource || '$request.header.Authorization'],
|
|
418
|
+
JwtConfiguration: {
|
|
419
|
+
Issuer: config.issuer,
|
|
420
|
+
Audience: config.audience,
|
|
421
|
+
},
|
|
422
|
+
Name: 'JWTAuthorizer',
|
|
423
|
+
}, {
|
|
424
|
+
dependsOn: apiLogicalId,
|
|
425
|
+
})
|
|
426
|
+
}
|
|
427
|
+
else if (config.type === 'lambda') {
|
|
428
|
+
builder.addResource('ApiAuthorizer', 'AWS::ApiGatewayV2::Authorizer', {
|
|
429
|
+
ApiId: Fn.ref(apiLogicalId),
|
|
430
|
+
AuthorizerType: 'REQUEST',
|
|
431
|
+
AuthorizerUri: config.authorizerUri,
|
|
432
|
+
IdentitySource: [config.identitySource || '$request.header.Authorization'],
|
|
433
|
+
Name: 'LambdaAuthorizer',
|
|
434
|
+
}, {
|
|
435
|
+
dependsOn: apiLogicalId,
|
|
436
|
+
})
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
/**
|
|
441
|
+
* Extract root domain from subdomain
|
|
442
|
+
*/
|
|
443
|
+
function extractRootDomain(domain: string): string {
|
|
444
|
+
const parts = domain.split('.')
|
|
445
|
+
if (parts.length >= 2) {
|
|
446
|
+
return parts.slice(-2).join('.')
|
|
447
|
+
}
|
|
448
|
+
return domain
|
|
449
|
+
}
|