forked from managemy-lease/action-aws-ses-template-uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
68 lines (58 loc) · 2.12 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
const core = require('@actions/core');
const {
SESClient,
UpdateTemplateCommand,
CreateTemplateCommand,
GetTemplateCommand
} = require('@aws-sdk/client-ses');
const fs = require('fs');
async function run() {
try {
// Grab the templates directory location from the input
const templatesDir = core.getInput('templates');
// GitHub should validate this because it's required, but just to be safe!
if (!templatesDir) {
core.setFailed('no templates directory provided');
return;
}
// Create a new SES Client, taking credentials from aws-actions/configure-aws-credentials
const client = new SESClient();
// Parse each file in the directory
parseFiles(client, templatesDir);
} catch (error) {
core.setFailed(error.message);
}
}
function parseFiles(client, templatesDir) {
// Read each file in the directory
fs.readdirSync(templatesDir).forEach((name) => {
const path = `${templatesDir}/${name}`;
// If it's a directory, read the file within there
if (fs.lstatSync(path).isDirectory()) {
readFiles(path);
return;
}
// Parse the JSON from the file
const file = JSON.parse(fs.readFileSync(path));
// First, figure out if we have a template
client.send(new GetTemplateCommand({TemplateName: file.Template.TemplateName})).then(() => {
// We have a template! Update it
client.send(new UpdateTemplateCommand({
Template: file.Template
})).then(() => {
core.notice(`Updated template: ${file.Template.TemplateName} (${name})`);
}).catch((error) => {
core.setFailed(error.message);
});
}).catch(() => {
client.send(new CreateTemplateCommand({
Template: file.Template
})).then(() => {
core.notice(`Created template: ${file.Template.TemplateName} (${name})`);
}).catch((error) => {
core.setFailed(error.message);
});
})
});
}
run();