-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
79 lines (69 loc) · 2 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
var AWS = require("aws-sdk");
var rand = require("randomstring");
const bucketName = "YOUR.DOMAIN";
const bucketUrlRoot = "https://YOUR.DOMAIN/";
const keyLength = 8;
const awsRegion = "eu-west-2";
var s3 = new AWS.S3({ region: awsRegion });
// uncomment for local debugging
// const awsKeyId = "";
// const awsKeySecret = "";
// s3 = new AWS.S3({
// region: awsRegion,
// credentials: new AWS.Credentials(awsKeyId, awsKeySecret),
// });
function checkObjectExists(key) {
var params = { Bucket: bucketName, Key: key };
return new Promise((resolve, reject) => {
s3.headObject(params, (err, data) => {
if (err) {
if (err.statusCode == 404) {
resolve(false);
} else {
console.log(err);
reject(err.toString());
}
} else {
resolve(true);
}
});
});
}
async function createRedirection(url) {
// find an available random key
var key;
for (var i = 0; i < 10; i++) {
key = rand.generate(keyLength);
var exists = await checkObjectExists(key);
if (!exists) {
break;
}
}
await s3.putObject({
Bucket: bucketName,
Key: key,
WebsiteRedirectLocation: url
}).promise();
return key;
}
exports.handler = async function (event) {
try {
if (event.body !== null && event.body !== undefined) {
let body = JSON.parse(event.body);
if (body.url) {
var key = await createRedirection(body.url);
return {
statusCode: 200,
body: JSON.stringify({ key: key, url: bucketUrlRoot + key }),
};
}
}
return { statusCode: 400 };
} catch (e) {
return {
statusCode: 500,
body: JSON.stringify({ error: e.toString() }),
};
}
};
// createRedirection("https://yahoo.com").then(console.log);