-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcloud-formation.yaml
579 lines (529 loc) · 21 KB
/
cloud-formation.yaml
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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
AWSTemplateFormatVersion: "2010-09-09"
Description: "CloudFormation Template for SubtitleBuddy Project - create subtitles for your video."
Parameters:
InputS3BucketName:
Type: String
Default: subtitle-generator-input-s3bucket
Description: Enter name of S3 Bucket for storing input video files. Default is subtitle-generator-input-s3-bucket.
FrontendSourceCodeS3BucketName:
Type: String
Default: subtitle-generator-source-code-for-cloudformation
Description: Enter name of S3 Bucket which contains the source code of frontend(.zip). This will be used by Elastic Beanstalk.
FrontendSourceCodeS3KeyName:
Type: String
Default: subtitle-generator-frontend.zip
Description: Enter name of S3 Object Key of the source code of frontend(.zip). This will be used by Elastic Beanstalk.
SenderEmail:
Type: String
Default: adityapurohit27@gmail.com
Description: Enter email from which you want to send emails to users for .srt files. This email will be verified, as it will be registered in AWS SES.
Resources:
GenerateS3PresignedURLFunctionRole:
Type: "AWS::IAM::Role"
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- "sts:AssumeRole"
Policies:
- PolicyName: root
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action: ["ses:CreateEmailIdentity", "ses:GetEmailIdentity"]
Resource: !Sub "arn:aws:ses:${AWS::Region}:${AWS::AccountId}:identity/*"
- Effect: Allow
Action: ["s3:PutObject", "s3:PutObjectTagging"]
Resource: !Sub "arn:aws:s3:::${InputS3BucketName}/*"
- Effect: Allow
Action: "logs:CreateLogGroup"
Resource: !Sub "arn:aws:logs:${AWS::Region}:${AWS::AccountId}:*"
- Effect: Allow
Action: ["logs:CreateLogStream", "logs:PutLogEvents"]
Resource: !Sub "arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:/aws/lambda/*"
GenerateS3PresignedURLFunction:
Type: AWS::Lambda::Function
Properties:
Runtime: nodejs18.x
Role: !GetAtt GenerateS3PresignedURLFunctionRole.Arn
Handler: index.handler
Environment:
Variables:
INPUT_BUCKET_NAME: !Ref InputS3BucketName
Code:
ZipFile: |
const { S3Client, PutObjectCommand } = require("@aws-sdk/client-s3");
const { getSignedUrl } = require("@aws-sdk/s3-request-presigner");
const {
SESv2Client,
CreateEmailIdentityCommand,
GetEmailIdentityCommand,
} = require("@aws-sdk/client-sesv2");
exports.handler = async function(event) {
// Extract the input file name and email of the user.
const body = JSON.parse(event.body);
const fileName = body.fileName;
const email = body.email;
// Check if the email identity already exists in AWS SES
const sesClient = new SESv2Client();
const identityParams = { EmailIdentity: email };
const getEmailIdentityCommand = new GetEmailIdentityCommand(identityParams);
let emailIdentityResponse;
try {
emailIdentityResponse = await sesClient.send(getEmailIdentityCommand);
} catch (error) {
// If the email identity doesn"t exist, create it and send verification email
if (error.name === "NotFoundException") {
const createEmailIdentityParams = { EmailIdentity: email };
const createEmailIdentityCommand = new CreateEmailIdentityCommand(
createEmailIdentityParams
);
await sesClient.send(createEmailIdentityCommand);
console.log("Verification email sent to", email);
return {
statusCode: 200,
body: JSON.stringify({
preSignedURL: null,
isEmailVerified: false,
}),
headers: {
"Access-Control-Allow-Headers": "Content-Type",
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "OPTIONS,POST",
},
};
} else {
throw error;
}
}
// If email identity is created but not successfully verified, don't send preSignedURL, let user verify first.
if (emailIdentityResponse.VerificationStatus !== "SUCCESS") {
console.log("Email", email, "verification is not successful yet.");
return {
statusCode: 200,
body: JSON.stringify({
preSignedURL: null,
isEmailVerified: false,
}),
headers: {
"Access-Control-Allow-Headers": "Content-Type",
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "OPTIONS,POST",
},
};
}
console.log("Email", email, "is already verified.");
// Create a Pre-signed URL for the S3 Object with given file name and email as a tag
const s3Client = new S3Client();
const s3Command = new PutObjectCommand({
Bucket: process.env.INPUT_BUCKET_NAME,
Key: fileName,
Tagging: `email=${email}`,
});
const s3Response = await getSignedUrl(s3Client, s3Command, {
expiresIn: 3600,
unhoistableHeaders: new Set(["x-amz-tagging"]),
});
console.log("S3 Response", s3Response);
// Send the Pre-signed URL to frontend, so that user can directly upload to S3
return {
statusCode: 200,
body: JSON.stringify({
preSignedURL: s3Response,
isEmailVerified: true,
}),
headers: {
"Access-Control-Allow-Headers": "Content-Type",
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "OPTIONS,POST",
},
};
};
Description: "Generates a pre-signed URL for an S3 object, associating it with an email tag. Additionally, registers the email in SES due to sandbox restrictions for the recipient."
CreateTranscriptionJobFunctionRole:
Type: "AWS::IAM::Role"
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- "sts:AssumeRole"
Policies:
- PolicyName: root
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action: ["transcribe:StartTranscriptionJob", "transcribe:TagResource"]
Resource: "*"
- Effect: Allow
Action: ["s3:GetObject", "s3:GetObjectTagging"]
Resource: !Sub "arn:aws:s3:::${InputS3BucketName}/*"
- Effect: Allow
Action: "logs:CreateLogGroup"
Resource: !Sub "arn:aws:logs:${AWS::Region}:${AWS::AccountId}:*"
- Effect: Allow
Action: ["logs:CreateLogStream", "logs:PutLogEvents"]
Resource: !Sub "arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:/aws/lambda/*"
CreateTranscriptionJobFunction:
Type: AWS::Lambda::Function
Properties:
Runtime: nodejs18.x
Role: !GetAtt CreateTranscriptionJobFunctionRole.Arn
Handler: index.handler
Code:
ZipFile: |
const { TranscribeClient, StartTranscriptionJobCommand } = require("@aws-sdk/client-transcribe");
const { S3Client, GetObjectTaggingCommand } = require("@aws-sdk/client-s3");
const { randomUUID } = require("crypto");
exports.handler = async function(event, context) {
// Get the S3 URI of the object uploaded in the bucket.
const s3BucketName = event["Records"][0]["s3"]["bucket"]["name"];
const s3ObjectKey = event["Records"][0]["s3"]["object"]["key"];
const s3InputObjectUri = `s3://${s3BucketName}/${s3ObjectKey}`;
console.log("Input: ", s3InputObjectUri);
// Retrieve email tag from the S3 object.
const s3Client = new S3Client();
const s3TagInput = {
Bucket: s3BucketName,
Key: s3ObjectKey,
};
const s3TagResponse = await s3Client.send(
new GetObjectTaggingCommand(s3TagInput)
);
const emailTag = s3TagResponse.TagSet.find((tag) => tag.Key === "email");
// Create a Transcription Job with the email as tag.
const transcribeClient = new TranscribeClient();
const transcribeInput = {
TranscriptionJobName: s3ObjectKey + "_" + randomUUID(),
IdentifyMultipleLanguages: true,
LanguageOptions: [ "en-US", "fr-CA"], // same media file can contain english + french combined.
Media: {
MediaFileUri: s3InputObjectUri,
},
Subtitles: {
Formats: ["srt"],
OutputStartIndex: 1,
},
Tags: [
{
Key: "email",
Value: emailTag.Value,
},
],
};
const transcribeCommand = new StartTranscriptionJobCommand(transcribeInput);
const transcribeResponse = await transcribeClient.send(transcribeCommand);
console.log("TranscribeClient response: ", transcribeResponse);
return transcribeResponse;
};
Description: "Creates a transcription job based on the S3 Object(i.e. video file) uploaded by the frontend. It is triggered by S3, when object upload is uploaded."
SendEmailWithSubtitlesFunctionRole:
Type: "AWS::IAM::Role"
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- "sts:AssumeRole"
Policies:
- PolicyName: root
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action: ["transcribe:GetTranscriptionJob"]
Resource: !Sub "arn:aws:transcribe:${AWS::Region}:${AWS::AccountId}:transcription-job/*"
- Effect: Allow
Action: ["ses:SendEmail"]
Resource: !Sub "arn:aws:ses:${AWS::Region}:${AWS::AccountId}:identity/*"
- Effect: Allow
Action: "logs:CreateLogGroup"
Resource: !Sub "arn:aws:logs:${AWS::Region}:${AWS::AccountId}:*"
- Effect: Allow
Action: ["logs:CreateLogStream", "logs:PutLogEvents"]
Resource: !Sub "arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:/aws/lambda/*"
SendEmailWithSubtitlesFunction:
Type: AWS::Lambda::Function
Properties:
Runtime: nodejs18.x
Role: !GetAtt SendEmailWithSubtitlesFunctionRole.Arn
Handler: index.handler
Environment:
Variables:
SES_SENDER: !Ref SenderEmail
Code:
ZipFile: |
const { SESClient, SendEmailCommand } = require("@aws-sdk/client-ses");
const {
TranscribeClient,
GetTranscriptionJobCommand,
} = require("@aws-sdk/client-transcribe");
exports.handler = async (event, context) => {
// Fetch the completed TranscriptionJob.
const transcribeClient = new TranscribeClient();
const transcribeInput = {
TranscriptionJobName: event.detail.TranscriptionJobName,
};
const transcribeCommand = new GetTranscriptionJobCommand(transcribeInput);
const transcribeResponse = await transcribeClient.send(transcribeCommand);
// Extract subtitle URL, media file name and email from transcribeResponse.
const subtitleUrl =
transcribeResponse.TranscriptionJob.Subtitles.SubtitleFileUris[0];
const mediaFileName =
transcribeResponse.TranscriptionJob.Media.MediaFileUri.split("/").pop();
const emailTag = transcribeResponse.TranscriptionJob.Tags.find(
(tag) => tag.Key === "email"
);
// Create HTML message with subtitle URL and media file name.
const subject = `Subtitles Generated - ${mediaFileName}`;
const htmlBody = `<p><b>File Name</b>: ${mediaFileName}</p>
<p><b>Subtitle URL</b>: <a href="${subtitleUrl}">Download Subtitles.</a></p>`;
// Send the email to user with .srt file URL and input media file name.
const sesClient = new SESClient();
const sesCommand = new SendEmailCommand({
Source: process.env.SES_SENDER,
Destination: {
ToAddresses: [emailTag.Value],
},
Message: {
Subject: {
Data: subject,
},
Body: {
Html: {
Data: htmlBody,
},
},
},
});
const sesResponse = await sesClient.send(sesCommand);
console.log("SESClient response: ", sesResponse);
return sesResponse;
};
Description: "Sends .srt file to the user in Email using SES. It is triggered by EventBridge, once transcription job is completed."
InputS3Bucket:
Type: "AWS::S3::Bucket"
DependsOn:
- "PermissionForS3ToInvokeLambda"
Properties:
BucketName: !Ref InputS3BucketName
CorsConfiguration:
CorsRules:
- AllowedHeaders:
- "*"
AllowedMethods:
- PUT
AllowedOrigins:
- "*"
Id: myCORSRuleId1
MaxAge: 3600
NotificationConfiguration:
LambdaConfigurations:
- Event: 's3:ObjectCreated:Put'
Function: !GetAtt CreateTranscriptionJobFunction.Arn
PermissionForS3ToInvokeLambda:
Type: AWS::Lambda::Permission
Properties:
FunctionName: !Ref CreateTranscriptionJobFunction
Action: "lambda:InvokeFunction"
Principal: "s3.amazonaws.com"
SourceArn: !Sub "arn:aws:s3:::${InputS3BucketName}"
SESSenderEmailIdentity:
Type: AWS::SES::EmailIdentity
Properties:
EmailIdentity: !Ref SenderEmail
TranscribeToLambdaEventRule:
Type: AWS::Events::Rule
Properties:
EventBusName: default
EventPattern:
source:
- aws.transcribe
detail-type:
- Transcribe Job State Change
detail:
TranscriptionJobStatus:
- COMPLETED
State: ENABLED
Targets:
- Id: "SendEmailLambdaTarget"
Arn: !GetAtt SendEmailWithSubtitlesFunction.Arn
PermissionForEventsToInvokeLambda:
Type: AWS::Lambda::Permission
Properties:
FunctionName: !Ref SendEmailWithSubtitlesFunction
Action: "lambda:InvokeFunction"
Principal: "events.amazonaws.com"
SourceArn: !GetAtt TranscribeToLambdaEventRule.Arn
GenerateS3PresignedURLLambdaRestApi:
Type: AWS::ApiGateway::RestApi
Properties:
Name: GenerateS3PresignedURLLambdaRestApi
Description: "This REST API is used to expose Lambda function."
EndpointConfiguration:
Types:
- REGIONAL
UploadResource:
Type: 'AWS::ApiGateway::Resource'
Properties:
RestApiId: !Ref GenerateS3PresignedURLLambdaRestApi
ParentId: !GetAtt
- GenerateS3PresignedURLLambdaRestApi
- RootResourceId
PathPart: upload
UploadResourcePOST:
Type: 'AWS::ApiGateway::Method'
Properties:
RestApiId: !Ref GenerateS3PresignedURLLambdaRestApi
ResourceId: !Ref UploadResource
HttpMethod: POST
AuthorizationType: NONE
Integration:
Type: AWS_PROXY
IntegrationHttpMethod: POST
Uri: !Sub >-
arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${GenerateS3PresignedURLFunction.Arn}/invocations
UploadResourceOPTIONS:
Type: AWS::ApiGateway::Method
Properties:
RestApiId: !Ref GenerateS3PresignedURLLambdaRestApi
ResourceId: !Ref UploadResource
HttpMethod: OPTIONS
AuthorizationType: NONE
Integration:
Type: MOCK
IntegrationResponses:
- StatusCode: 200
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: "'*'"
method.response.header.Access-Control-Allow-Methods: "'POST,OPTIONS'"
method.response.header.Access-Control-Allow-Origin: "'*'"
ResponseTemplates:
application/json: ''
PassthroughBehavior: WHEN_NO_MATCH
RequestTemplates:
application/json: '{"statusCode": 200}'
MethodResponses:
- StatusCode: 200
ResponseModels:
application/json: 'Empty'
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: true
method.response.header.Access-Control-Allow-Methods: true
method.response.header.Access-Control-Allow-Origin: true
Deployment:
Type: 'AWS::ApiGateway::Deployment'
DependsOn:
- UploadResourcePOST
- UploadResourceOPTIONS
Properties:
RestApiId: !Ref GenerateS3PresignedURLLambdaRestApi
Description: Prod Deployment
Prod:
Type: AWS::ApiGateway::Stage
Properties:
StageName: prod
Description: Prod Stage
RestApiId: !Ref GenerateS3PresignedURLLambdaRestApi
DeploymentId: !Ref Deployment
PermissionForAPIGatewayToInvokeLambda:
Type: AWS::Lambda::Permission
Properties:
FunctionName: !Ref GenerateS3PresignedURLFunction
Action: "lambda:InvokeFunction"
Principal: "apigateway.amazonaws.com"
SourceArn: !Sub "arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:${GenerateS3PresignedURLLambdaRestApi}/*/POST/upload"
ElasticBeanStalkApplication:
Type: AWS::ElasticBeanstalk::Application
Properties:
ApplicationName: "SubtitleGeneratorFrontend"
Description: "Subtitle Generator Frontend - React & Docker"
EBAppVersion1:
Type: AWS::ElasticBeanstalk::ApplicationVersion
Properties:
ApplicationName: !Ref ElasticBeanStalkApplication
Description: "Frontend Version 1"
SourceBundle:
S3Bucket: !Ref FrontendSourceCodeS3BucketName
S3Key: !Ref FrontendSourceCodeS3KeyName
EBEnvironment:
Type: AWS::ElasticBeanstalk::Environment
Properties:
ApplicationName: !Ref ElasticBeanStalkApplication
Description: "AWS Elastic Beanstalk Environment running Dockerized React frontend."
EnvironmentName: prod
CNAMEPrefix: SubtitleGenerator
SolutionStackName: "64bit Amazon Linux 2023 v4.3.0 running Docker"
VersionLabel: !Ref EBAppVersion1
OptionSettings:
- Namespace: 'aws:elasticbeanstalk:environment'
OptionName: EnvironmentType
Value: SingleInstance
- Namespace: 'aws:autoscaling:launchconfiguration'
OptionName: IamInstanceProfile
Value: !Ref EBInstanceProfile
- Namespace: 'aws:elasticbeanstalk:environment'
OptionName: ServiceRole
Value: !Ref EBServiceRole
- Namespace: 'aws:ec2:instances'
OptionName: InstanceTypes
Value: t3.medium
- Namespace: 'aws:elasticbeanstalk:application:environment'
OptionName: REACT_APP_API_GATEWAY_URL
Value: !Sub "https://${GenerateS3PresignedURLLambdaRestApi}.execute-api.${AWS::Region}.amazonaws.com/${Prod}/upload"
EBServiceRole:
Type: "AWS::IAM::Role"
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- elasticbeanstalk.amazonaws.com
Action:
- "sts:AssumeRole"
ManagedPolicyArns:
- "arn:aws:iam::aws:policy/service-role/AWSElasticBeanstalkEnhancedHealth"
- "arn:aws:iam::aws:policy/AWSElasticBeanstalkManagedUpdatesCustomerRolePolicy"
EBInstanceProfile:
Type: AWS::IAM::InstanceProfile
Properties:
Roles:
- !Ref EBInstanceProfileRole
EBInstanceProfileRole:
Type: "AWS::IAM::Role"
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- ec2.amazonaws.com
Action:
- "sts:AssumeRole"
ManagedPolicyArns:
- "arn:aws:iam::aws:policy/AWSElasticBeanstalkWebTier"
Outputs:
POSTUploadAPIGatewayURL:
Description: API Gateway URL for POST /upload
Value: !Sub "https://${GenerateS3PresignedURLLambdaRestApi}.execute-api.${AWS::Region}.amazonaws.com/${Prod}/upload"
BeanstalkFrontendURL:
Description: Frontend URL provided by AWS Elastic Beanstalk
Value: !Sub "http://SubtitleGenerator.${AWS::Region}.elasticbeanstalk.com"