-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.js
479 lines (383 loc) · 8.98 KB
/
index.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
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
let AWS = require('aws-sdk');
let moment = require('moment');
let uuidv1 = require('uuid/v1');
let MailComposer = require('nodemailer/lib/mail-composer');
//
// Initialize S3.
//
let s3 = new AWS.S3({
apiVersion: '2006-03-01'
});
//
// Initialize SES.
//
let ses = new AWS.SES({
apiVersion: '2010-12-01'
});
//
// This lambda will read outgoing emails formated in JSON, convert them
// in to a raw email, send them using SES, and store them in S3.
//
exports.handler = (event) => {
//
// 1. This JS object will contain all the data within the chain.
//
let container = {
bucket: event.Records[0].s3.bucket.name,
key: event.Records[0].s3.object.key,
email: {
json: {},
raw: ""
},
uuid: uuidv1()
}
//
// -> Start the chain.
//
load_the_email(container)
.then(function(container) {
return extract_data(container);
}).then(function(container) {
return generate_the_raw_email(container);
}).then(function(container) {
return send_email(container);
}).then(function(container) {
return save_raw_email(container);
}).then(function(container) {
return copy_raw_email(container);
}).then(function(container) {
return delete_json_email(container);
}).then(function(container) {
return delete_raw_email(container);
}).then(function(container) {
return true;
}).catch(function(error) {
console.error(error);
return false;
});
};
// _____ _____ ____ __ __ _____ _____ ______ _____
// | __ \ | __ \ / __ \ | \/ | |_ _| / ____| | ____| / ____|
// | |__) | | |__) | | | | | | \ / | | | | (___ | |__ | (___
// | ___/ | _ / | | | | | |\/| | | | \___ \ | __| \___ \
// | | | | \ \ | |__| | | | | | _| |_ ____) | | |____ ____) |
// |_| |_| \_\ \____/ |_| |_| |_____| |_____/ |______| |_____/
//
//
// Load the JSON email that triggered this Lambda.
//
function load_the_email(container)
{
return new Promise(function(resolve, reject) {
console.info("load_the_email");
//
// 1. Set the query.
//
let params = {
Bucket: container.bucket,
Key: container.key
};
//
// -> Execute the query.
//
s3.getObject(params, function(error, data) {
//
// 1. Check for internal errors.
//
if(error)
{
return reject(error);
}
//
// 2. Save the email for the next promise.
//
container.email.json = JSON.parse(data.Body);
//
// -> Move to the next chain.
//
return resolve(container);
});
});
}
//
// Extract all the data necessary to organize the incoming emails.
//
function extract_data(container)
{
return new Promise(function(resolve, reject) {
console.info("extract_data");
//
// 1. Extract all the information
//
let tmp_to = container.email.json
.to
.match(/[a-z0-9-+]{1,30}@[a-z0-9-]{1,65}.[a-z]{1,}/gm)[0]
.split('@');
let tmp_from = container.email.json
.from
.match(/[a-z0-9-+]{1,30}@[a-z0-9-]{1,65}.[a-z]{1,}/gm)[0]
.split('@');
//
// 2. Get the domain name of the receiving end, so we can group
// emails by all the domain that were added to SES.
//
let to_domain = tmp_to[1];
//
// 3. Based on the email name, we replace all the + characters, that
// can be used to organize ones on-line accounts in to /, this way
// we can build a S3 patch which will automatically organize
// all the email in structured folder.
//
let to_account = tmp_to[0].replace(/\+/g, "/");
//
// 4. Get the domain name of the email which in our case will
// become the company name.
//
let from_domain = tmp_from[1];
//
// 5. Get the name of who sent us the email.
//
let from_account = tmp_from[0];
//
// 6. Create a human readable time stamp that matches the format
// S3 Provides in its Event.
//
date = moment().format("ddd, DD MMM YYYY HH:MM:SS ZZ");
//
// 7. Create the path where the email needs to be moved
// so it is properly organized.
//
let path = "Sent/"
+ to_domain
+ "/"
+ to_account
+ "/"
+ from_domain
+ "/"
+ from_account
+ "/"
+ date
+ " - "
+ container.email.json.subject
+ "/"
+ "email";
//
// 8. Save the path for the next promise.
//
container.path = path;
//
// -> Move to the next chain.
//
return resolve(container);
});
}
//
// From the JSON file that we loaded in to memory we generate a RAW version
// that can be used by SES, and later on stored and converted in multiple
// formats.
//
function generate_the_raw_email(container, callback)
{
return new Promise(function(resolve, reject) {
console.info("generate_the_raw_email");
//
// 1. Crete the email based on the message object which holds all the
// necessary information.
//
let mail = new MailComposer(container.email.json);
//
// 2. Take the email and compile it down to its text form for storage.
//
mail.compile().build(function(error, raw_message) {
//
// 1. Check if there was an error
//
if(error)
{
return reject(error);
}
//
// 2. Save the raw email so we can save it as is in to S3.
//
container.email.raw = raw_message;
//
// -> Move to the next promise
//
return resolve(container);
});
});
}
//
// Use the newly generated RAW email and send it using SES.
//
function send_email(container)
{
return new Promise(function(resolve, reject) {
console.info("send_email");
//
// 1. Create the message
//
let params = {
RawMessage:{
Data: container.email.raw
}
};
//
// -> Send the email out
//
ses.sendRawEmail(params,function(error, data) {
//
// 1. Check if there was an error
//
if(error)
{
return reject(error);
}
//
// -> Move to the next chain
//
return resolve(container);
});
});
}
//
// We now save the RAW email to S3 in a temporary folder. We do this because
// we don't want to create a PUT action in the Sent folder. The reason is
// that if we were to put the object directly to the destination, it would
// create a PUT action which would trigger the Convert Lambda. And this is
// fine. But then then Convert Lambda would save the object with a PUT action
// which would trigger the Convert Lambda once more, and until infinity.
//
// To prevent this loop, we make a temporary PUT event with no triggers,
// and then we copy the object to the final destination, which triggers
// the Convert action, and once the convert action makes a PUT nothing else
// happens.
//
function save_raw_email(container)
{
return new Promise(function(resolve, reject) {
console.info("save_raw_email");
//
// 1. Set the query.
//
let params = {
Bucket: container.bucket,
Key: 'TMP/email_out/raw/' + container.uuid,
Body: container.email.raw
};
//
// -> Execute the query.
//
s3.putObject(params, function(error, data) {
//
// 1. Check for internal errors.
//
if(error)
{
return reject(error);
}
//
// -> Move to the next chain.
//
return resolve(container);
});
});
}
//
// Now that we have our RAW email saved we do a copy event so it will trigger
// the Conversion Lambda.
//
function copy_raw_email(container)
{
return new Promise(function(resolve, reject) {
console.info("copy_raw_email");
//
// 1. Set the query.
//
let params = {
Bucket: container.bucket,
CopySource: container.bucket + "/TMP/email_out/raw/" + container.uuid,
Key: container.path
};
//
// -> Execute the query.
//
s3.copyObject(params, function(error, data) {
//
// 1. Check for internal errors.
//
if(error)
{
return reject(error);
}
//
// -> Move to the next chain.
//
return resolve(container);
});
});
}
//
// And before we finish we clean up the environment by deleting the JSON email,
//
function delete_json_email(container)
{
return new Promise(function(resolve, reject) {
console.info("delete_json_email");
//
// 1. Set the query.
//
let params = {
Bucket: container.bucket,
Key: container.key
};
//
// -> Execute the query.
//
s3.deleteObject(params, function(error, data) {
//
// 1. Check for internal errors.
//
if(error)
{
return reject(error);
}
//
// -> Move to the next chain.
//
return resolve(container);
});
});
}
//
// And the temporary RAW email.
//
function delete_raw_email(container)
{
return new Promise(function(resolve, reject) {
console.info("delete_raw_email");
//
// 1. Set the query.
//
let params = {
Bucket: container.bucket,
Key: "TMP/email_out/raw/" + container.uuid
};
//
// -> Execute the query.
//
s3.deleteObject(params, function(error, data) {
//
// 1. Check for internal errors.
//
if(error)
{
return reject(error);
}
//
// -> Move to the next chain.
//
return resolve(container);
});
});
}