-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmain.js
64 lines (55 loc) · 1.44 KB
/
main.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
const request = require("request");
const crypto = require("crypto");
const hmacSecret = process.env.HMAC_SECRET;
if (!hmacSecret || hmacSecret === "" || hmacSecret.trim() === "") {
console.warn(
"The hmac secret seems empty. This doesn't seem like what you want."
);
}
if (hmacSecret.length < 32) {
console.warn(
"The hmac secret seems week. You should use at least 32 secure random hex chars."
);
}
const createHmacSignature = body => {
const hmac = crypto.createHmac("sha1", hmacSecret);
const bodySignature = hmac.update(JSON.stringify(body)).digest("hex");
return `sha1=${bodySignature}`;
};
function isJsonString(str) {
try {
const json = JSON.parse(str);
return typeof json === "object";
} catch (e) {
return false;
}
}
const uri = process.env.REQUEST_URI;
const data = {
data: isJsonString(process.env.REQUEST_DATA)
? JSON.parse(process.env.REQUEST_DATA)
: process.env.REQUEST_DATA
};
const signature = createHmacSignature(data);
request(
{
method: "POST",
uri: uri,
json: true,
body: data,
headers: {
"X-Hub-Signature": signature
}
},
(error, response, body) => {
if (error || response.statusCode < 200 || response.statusCode > 299) {
// Something went wrong
console.error(`Request failed with status code ${response.statusCode}!`);
console.error(response.body);
process.exit(1);
} else {
// Success
process.exit();
}
}
);