@@ -3,6 +3,7 @@ import path from "path";
3
3
import * as cdk from "aws-cdk-lib" ;
4
4
import * as s3 from "aws-cdk-lib/aws-s3" ;
5
5
import * as lambda from "aws-cdk-lib/aws-lambda" ;
6
+ import * as dynamodb from "aws-cdk-lib/aws-dynamodb" ;
6
7
import * as acm from "aws-cdk-lib/aws-certificatemanager" ;
7
8
import * as s3deploy from "aws-cdk-lib/aws-s3-deployment" ;
8
9
import * as apigateway from "aws-cdk-lib/aws-apigateway" ;
@@ -11,16 +12,26 @@ import * as route53 from "aws-cdk-lib/aws-route53";
11
12
12
13
export interface DiscordProps extends cdk . StackProps {
13
14
readonly domain : [ string , string ] | string ;
15
+ leaderboardApi : string ;
14
16
readonly publicKey : string ;
15
17
}
16
18
17
19
const __dirname = path . dirname ( fileURLToPath ( import . meta. url ) ) ;
18
20
19
21
export class DiscordStack extends cdk . Stack {
20
22
constructor ( scope : cdk . App , id : string , props : DiscordProps ) {
21
- const { domain, publicKey, ...rest } = props ;
23
+ const { domain, publicKey, leaderboardApi , ...rest } = props ;
22
24
super ( scope , id , rest ) ;
23
25
26
+ // DynamoDB tables
27
+ const minecraftPlayerTable = new dynamodb . Table ( this , "MinecraftPlayer" , {
28
+ partitionKey : {
29
+ name : "uuid" ,
30
+ type : dynamodb . AttributeType . STRING ,
31
+ } ,
32
+ tableClass : dynamodb . TableClass . STANDARD ,
33
+ } ) ;
34
+
24
35
// Bucket with a single image
25
36
const staticAssetBucket = new s3 . Bucket ( this , "static-assets-bucket-3" , {
26
37
publicReadAccess : true ,
@@ -36,7 +47,7 @@ export class DiscordStack extends cdk.Stack {
36
47
destinationBucket : staticAssetBucket ,
37
48
} ) ;
38
49
39
- const metadataHandler = new lambda . Function ( this , "discordLambda" , {
50
+ const discordHandler = new lambda . Function ( this , "discordLambda" , {
40
51
runtime : lambda . Runtime . PROVIDED ,
41
52
code : lambda . Code . fromAsset (
42
53
path . join ( __dirname , "../../../.layers/discord" )
@@ -45,11 +56,6 @@ export class DiscordStack extends cdk.Stack {
45
56
timeout : cdk . Duration . seconds ( 10 ) ,
46
57
memorySize : 128 ,
47
58
layers : [
48
- // new lambda.LayerVersion(this, "node16Layer-custom", {
49
- // code: lambda.Code.fromAsset(
50
- // path.join(__dirname, "../../../node16Layer/")
51
- // ),
52
- // }),
53
59
lambda . LayerVersion . fromLayerVersionArn (
54
60
this ,
55
61
"node16Layer" ,
@@ -60,9 +66,14 @@ export class DiscordStack extends cdk.Stack {
60
66
PUBLIC_KEY : publicKey ,
61
67
STATIC_IMAGE_URL : `https://${ staticAssetBucket . bucketName } .s3.amazonaws.com` ,
62
68
MINIMUM_LOG_LEVEL : "DEBUG" ,
69
+ TABLE_NAME_MINECRAFT_PLAYER : minecraftPlayerTable . tableName ,
70
+ CURRENT_LEADERBOARD : "potato" ,
71
+ LEADERBOARD_BASE : leaderboardApi ,
63
72
} ,
64
73
} ) ;
65
74
75
+ minecraftPlayerTable . grantReadWriteData ( discordHandler ) ;
76
+
66
77
// Domain
67
78
const domains = domain instanceof Array ? domain : [ domain ] ;
68
79
const domainName = domains . join ( "." ) ;
@@ -85,11 +96,9 @@ export class DiscordStack extends cdk.Stack {
85
96
} ,
86
97
} ) ;
87
98
88
- const metadataIntegration = new apigateway . LambdaIntegration (
89
- metadataHandler
90
- ) ;
99
+ const discordIntegration = new apigateway . LambdaIntegration ( discordHandler ) ;
91
100
const resource = api . root . addResource ( "discord" ) ;
92
- resource . addMethod ( "POST" , metadataIntegration ) ;
101
+ resource . addMethod ( "POST" , discordIntegration ) ;
93
102
94
103
new route53 . ARecord ( this , "ipv4-record" , {
95
104
zone : hostedZone ,
0 commit comments