-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcloudformation.yml
492 lines (454 loc) · 14.4 KB
/
cloudformation.yml
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
AWSTemplateFormatVersion: '2010-09-09'
Transform: "AWS::Serverless-2016-10-31"
Description: "Simple Chat App"
Resources:
IAMRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
- appsync.amazonaws.com
- events.amazonaws.com
Action:
- 'sts:AssumeRole'
Path: /
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole
Policies:
- PolicyName: Policy_api-lambda-db
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- 'dynamodb:BatchGetItem'
- 'dynamodb:BatchWriteItem'
- 'dynamodb:TagResource'
- 'dynamodb:UntagResource'
- 'dynamodb:PutItem'
- 'dynamodb:DeleteItem'
- 'dynamodb:GetItem'
- 'dynamodb:Scan'
- 'dynamodb:Query'
- 'dynamodb:UpdateItem'
Resource: '*'
- Effect: Allow
Action:
- 'logs:CreateLogStream'
- 'logs:CreateLogGroup'
- 'logs:PutLogEvents'
Resource: '*'
AuthLambda:
Type: AWS::Lambda::Function
Properties:
Code:
ZipFile: |
exports.handler = async (event) => {
const {
authorizationToken,
requestContext: { apiId, accountId },
} = event
// authorizationToken check !!!
// NOTE : Kendinize ait bir kimlik doğrulama seçip, userId dönmelisiniz. Ben JWT token çözerek bu işlemi yapıyorum.
// NOTE : You should add your own authentication method and return userId. I'm doing this by decrypting the JWT token.
return {
isAuthorized: true,
resolverContext: {
userId: "xxxx"
}
}
};
Handler: index.handler
MemorySize: 128
Role: !GetAtt IAMRole.Arn
Runtime: nodejs14.x
Timeout: 5
Api:
Type: AWS::AppSync::GraphQLApi
Properties:
AuthenticationType: AWS_LAMBDA
Name: SimpleChatApp
LambdaAuthorizerConfig:
AuthorizerResultTtlInSeconds: 900
AuthorizerUri: !GetAtt AuthLambda.Arn
DependsOn:
- AuthLambda
ApiSchema:
Type: AWS::AppSync::GraphQLSchema
Properties:
ApiId: !GetAtt Api.ApiId
Definition: |
type Group {
group_id: String
owner: String
created_at: AWSTimestamp
}
type GroupMessage {
msg_id: String
user_id: String
group_id: String
content: String
created_at: AWSTimestamp
expired_at: AWSTimestamp
}
type GroupUser {
user_id: String
group_id: String
role: Int
}
type Mutation {
groupMessageSend(group_id: String, content: String!): GroupMessage
groupCreate: GroupUser
groupUserJoin(group_id: String!): GroupUser
groupUserLeave(group_id: String!): GroupUser
}
type Query {
getGroup(group_id: String): Group
}
type Subscription {
groupMessageSent(group_id: String!): GroupMessage
@aws_subscribe(mutations: ["groupMessageSend"])
}
schema {
query: Query
mutation: Mutation
subscription: Subscription
}
Groups:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
- AttributeName: group_id
AttributeType: S
KeySchema:
- AttributeName: group_id
KeyType: HASH
BillingMode: 'PAY_PER_REQUEST'
StreamSpecification:
StreamViewType: 'NEW_AND_OLD_IMAGES'
GroupUsers:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
- AttributeName: user_id
AttributeType: S
- AttributeName: group_id
AttributeType: S
KeySchema:
- AttributeName: user_id
KeyType: HASH
BillingMode: 'PAY_PER_REQUEST'
StreamSpecification:
StreamViewType: 'NEW_AND_OLD_IMAGES'
GlobalSecondaryIndexes:
- IndexName: group_id-index
KeySchema:
- AttributeName: group_id
KeyType: HASH
Projection:
ProjectionType: ALL
GroupMessages:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
- AttributeName: msg_id
AttributeType: S
KeySchema:
- AttributeName: msg_id
KeyType: HASH
BillingMode: 'PAY_PER_REQUEST'
StreamSpecification:
StreamViewType: 'NEW_AND_OLD_IMAGES'
TimeToLiveSpecification:
AttributeName: expired_at
Enabled: true
GroupsTableDataSource:
Type: AWS::AppSync::DataSource
Properties:
ApiId: !GetAtt Api.ApiId
Name: GroupsTableDataSource
Type: AMAZON_DYNAMODB
DynamoDBConfig:
AwsRegion: !Ref AWS::Region
TableName: !Ref Groups
ServiceRoleArn: !GetAtt IAMRole.Arn
GroupUsersTableDataSource:
Type: AWS::AppSync::DataSource
Properties:
ApiId: !GetAtt Api.ApiId
Name: GroupUsersTableDataSource
Type: AMAZON_DYNAMODB
DynamoDBConfig:
AwsRegion: !Ref AWS::Region
TableName: !Ref GroupUsers
ServiceRoleArn: !GetAtt IAMRole.Arn
GroupMessagesTableDataSource:
Type: AWS::AppSync::DataSource
Properties:
ApiId: !GetAtt Api.ApiId
Name: GroupMessagesTableDataSource
Type: AMAZON_DYNAMODB
DynamoDBConfig:
AwsRegion: !Ref AWS::Region
TableName: !Ref GroupMessages
ServiceRoleArn: !GetAtt IAMRole.Arn
GroupCreateFunction:
Type: AWS::AppSync::FunctionConfiguration
Properties:
ApiId: !GetAtt Api.ApiId
DataSourceName: !GetAtt GroupsTableDataSource.Name
FunctionVersion: 2018-05-29
Name: GroupCreate
RequestMappingTemplate: '
#if($context.prev.result.user_id == $context.identity.resolverContext.userId)
$util.error("User has group")
#end
{
"operation" : "PutItem",
"key" : {
"group_id": $util.dynamodb.toDynamoDBJson($util.autoId())
},
"attributeValues" : {
"owner": $util.dynamodb.toDynamoDBJson($context.identity.resolverContext.userId),
"created_at": $util.dynamodb.toDynamoDBJson($util.time.nowEpochSeconds())
}
}'
ResponseMappingTemplate: '
#if($ctx.error)
$util.error($ctx.error.message, $ctx.error.type)
#end
$util.toJson($ctx.result)'
GroupGetFunction:
Type: AWS::AppSync::FunctionConfiguration
Properties:
ApiId: !GetAtt Api.ApiId
DataSourceName: !GetAtt GroupsTableDataSource.Name
FunctionVersion: 2018-05-29
Name: GroupGet
RequestMappingTemplate: '
{
"operation": "GetItem",
"key": {
"group_id": $util.dynamodb.toDynamoDBJson($context.arguments.group_id),
}
}'
ResponseMappingTemplate: '
#if($ctx.error)
$util.error($ctx.error.message, $ctx.error.type)
#end
$util.toJson($ctx.result)'
GroupOwnerJoinFunction:
Type: AWS::AppSync::FunctionConfiguration
Properties:
ApiId: !GetAtt Api.ApiId
DataSourceName: !GetAtt GroupUsersTableDataSource.Name
FunctionVersion: 2018-05-29
Name: GroupOwnerJoin
RequestMappingTemplate: '
{
"operation" : "PutItem",
"key" : {
"user_id": $util.dynamodb.toDynamoDBJson($context.identity.resolverContext.userId)
},
"attributeValues" : {
"role": $util.dynamodb.toDynamoDBJson(3),
"group_id": $util.dynamodb.toDynamoDBJson($context.prev.result.group_id)
}
}'
ResponseMappingTemplate: '
#if($ctx.error)
$util.error($ctx.error.message, $ctx.error.type)
#end
$util.toJson($ctx.result)'
MessageSendFunction:
Type: AWS::AppSync::FunctionConfiguration
Properties:
ApiId: !GetAtt Api.ApiId
DataSourceName: !GetAtt GroupMessagesTableDataSource.Name
FunctionVersion: 2018-05-29
Name: MessageSend
RequestMappingTemplate: '
#set( $now = $util.time.nowEpochSeconds() )
#set( $ex = $now + 846000 )
#*
expired time 10days ^^
*#
{
"operation" : "PutItem",
"key" : {
"msg_id": $util.dynamodb.toDynamoDBJson($util.autoId()),
},
"attributeValues" : {
"user_id": $util.dynamodb.toDynamoDBJson($context.prev.result.user_id),
"group_id": $util.dynamodb.toDynamoDBJson($context.prev.result.group_id),
"content": $util.dynamodb.toDynamoDBJson($context.arguments.content),
"created_at": $util.dynamodb.toDynamoDBJson($now),
"expired_at": $util.dynamodb.toDynamoDBJson($ex)
}
}'
ResponseMappingTemplate: '
#if($ctx.error)
$util.error($ctx.error.message, $ctx.error.type)
#end
$util.toJson($ctx.result)'
UserDeleteFunction:
Type: AWS::AppSync::FunctionConfiguration
Properties:
ApiId: !GetAtt Api.ApiId
DataSourceName: !GetAtt GroupUsersTableDataSource.Name
FunctionVersion: 2018-05-29
Name: UserDelete
RequestMappingTemplate: '
#if( $context.prev.result.role == 1 )
$util.error("You are not manager or owner")
#end
#if($context.prev.result.group_id != $context.arguments.group_id)
$util.error("You have not this group")
#end
{
"operation": "DeleteItem",
"key": {
"user_id": $util.dynamodb.toDynamoDBJson($context.arguments.user_id),
}
}'
ResponseMappingTemplate: '
#if($ctx.error)
$util.error($ctx.error.message, $ctx.error.type)
#end
$util.toJson($ctx.result)'
UserGetFunction:
Type: AWS::AppSync::FunctionConfiguration
Properties:
ApiId: !GetAtt Api.ApiId
DataSourceName: !GetAtt GroupUsersTableDataSource.Name
FunctionVersion: 2018-05-29
Name: UserGet
RequestMappingTemplate: '
{
"version" : "2017-02-28",
"operation" : "GetItem",
"key" : {
"user_id" : $util.dynamodb.toDynamoDBJson($context.identity.resolverContext.userId)
},
"consistentRead" : true
}'
ResponseMappingTemplate: '
#if($ctx.error)
$util.error($ctx.error.message, $ctx.error.type)
#end
$util.toJson($ctx.result)'
UserJoinFunction:
Type: AWS::AppSync::FunctionConfiguration
Properties:
ApiId: !GetAtt Api.ApiId
DataSourceName: !GetAtt GroupUsersTableDataSource.Name
FunctionVersion: 2018-05-29
Name: UserJoin
RequestMappingTemplate: '
{
"operation" : "PutItem",
"key" : {
"user_id": $util.dynamodb.toDynamoDBJson($context.identity.resolverContext.userId)
},
"attributeValues" : {
"role": $util.dynamodb.toDynamoDBJson(1),
"group_id": $util.dynamodb.toDynamoDBJson($context.arguments.group_id)
}
}'
ResponseMappingTemplate: '
#if($ctx.error)
$util.error($ctx.error.message, $ctx.error.type)
#end
$util.toJson($ctx.result)'
UserLeaveFunction:
Type: AWS::AppSync::FunctionConfiguration
Properties:
ApiId: !GetAtt Api.ApiId
DataSourceName: !GetAtt GroupUsersTableDataSource.Name
FunctionVersion: 2018-05-29
Name: UserLeave
RequestMappingTemplate: '
#if ($context.arguments.group_id != $context.prev.result.group_id)
$util.error("group_id is not match")
#end
{
"operation" : "DeleteItem",
"key" : {
"user_id" : $util.dynamodb.toDynamoDBJson($context.identity.resolverContext.userId)
}
}'
ResponseMappingTemplate: '
#if($ctx.error)
$util.error($ctx.error.message, $ctx.error.type)
#end
$util.toJson($ctx.result)'
GroupMessageSendResolver:
Type: AWS::AppSync::Resolver
Properties:
ApiId: !GetAtt Api.ApiId
FieldName: groupMessageSend
Kind: PIPELINE
PipelineConfig:
Functions:
- !GetAtt UserGetFunction.FunctionId
- !GetAtt MessageSendFunction.FunctionId
TypeName: Mutation
RequestMappingTemplate: "{}"
ResponseMappingTemplate: |
$util.toJson($ctx.result)
DependsOn:
- ApiSchema
GroupCreateResolver:
Type: AWS::AppSync::Resolver
Properties:
ApiId: !GetAtt Api.ApiId
FieldName: groupCreate
Kind: PIPELINE
PipelineConfig:
Functions:
- !GetAtt UserGetFunction.FunctionId
- !GetAtt GroupCreateFunction.FunctionId
- !GetAtt GroupOwnerJoinFunction.FunctionId
TypeName: Mutation
RequestMappingTemplate: "{}"
ResponseMappingTemplate: |
$util.toJson($ctx.result)
DependsOn:
- ApiSchema
GroupUserJoinResolver:
Type: AWS::AppSync::Resolver
Properties:
ApiId: !GetAtt Api.ApiId
FieldName: groupUserJoin
Kind: PIPELINE
PipelineConfig:
Functions:
- !GetAtt UserGetFunction.FunctionId
- !GetAtt UserJoinFunction.FunctionId
TypeName: Mutation
RequestMappingTemplate: "{}"
ResponseMappingTemplate: |
$util.toJson($ctx.result)
DependsOn:
- ApiSchema
GroupUserLeaveResolver:
Type: AWS::AppSync::Resolver
Properties:
ApiId: !GetAtt Api.ApiId
FieldName: groupUserLeave
Kind: PIPELINE
PipelineConfig:
Functions:
- !GetAtt UserGetFunction.FunctionId
- !GetAtt UserLeaveFunction.FunctionId
TypeName: Mutation
RequestMappingTemplate: "{}"
ResponseMappingTemplate: |
$util.toJson($ctx.result)
DependsOn:
- ApiSchema