-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
123 lines (115 loc) · 3.43 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
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
const crypto = require('crypto');
const replacementContent = 'Will be replaced with HMAC of request body turned into Query String';
const settings = {
key: null,
algorithm: null,
encoding: null,
parseJson: false
};
function convertToQueryString(content) {
if(content === '') {
return content;
}
try {
let json = JSON.parse(content);
let keys = Object.keys(json);
let arrayFields = [];
for (const key of keys) {
if(typeof json[key] !== 'object') {
arrayFields.push(key + "=" + json[key]);
}
}
return arrayFields.join('&');
} catch (e) {
return content;
}
}
function hmac(content) {
if(settings.parseJson) {
content = convertToQueryString(content);
}
const hash = crypto.createHmac(settings.algorithm, settings.key);
hash.update(content, 'utf8');
return hash.digest(settings.encoding);
}
function replaceWithHMAC(content, body) {
return content.replace(new RegExp(replacementContent, 'g'), hmac(body))
}
module.exports.templateTags = [{
name: 'requestbodyhmacquerystring',
displayName: 'HMAC',
description: 'HMAC a value or the request body turn into query string',
args: [
{
displayName: 'Algorithm',
type: 'enum',
options: [
{ displayName: 'MD5', value: 'md5' },
{ displayName: 'SHA1', value: 'sha1' },
{ displayName: 'SHA256', value: 'sha256' },
{ displayName: 'SHA512', value: 'sha512' }
]
},
{
displayName: 'Digest Encoding',
description: 'The encoding of the output',
type: 'enum',
options: [
{ displayName: 'Hexadecimal', value: 'hex' },
{ displayName: 'Base64', value: 'base64' }
]
},
{
displayName: 'Key',
type: 'string',
placeholder: 'HMAC Secret Key'
},
{
displayName: 'Parse body in json ?',
type: 'boolean',
},
{
displayName: 'Message',
type: 'string',
placeholder: 'Message to hash (leave empty to use request body)'
}
],
run(context, algorithm, encoding, key = '', parseJson = false, value = '') {
if (encoding !== 'hex' && encoding !== 'base64') {
throw new Error(`Invalid encoding ${encoding}. Choices are hex, base64`);
}
const valueType = typeof value;
if (valueType !== 'string') {
throw new Error(`Cannot hash value of type "${valueType}"`);
}
settings.key = key;
settings.algorithm = algorithm;
settings.encoding = encoding;
settings.parseJson = parseJson;
if (value === '') {
return replacementContent;
} else {
return hmac(value);
}
}
}];
module.exports.requestHooks = [
context => {
if (context.request.getUrl().indexOf(replacementContent) !== -1) {
context.request.setUrl(replaceWithHMAC(context.request.getUrl(), context.request.getBodyText()));
}
if (context.request.getBodyText().indexOf(replacementContent) !== -1) {
context.request.setBodyText(replaceWithHMAC(context.request.getBodyText(), context.request.getBodyText()));
}
context.request.getHeaders().forEach(h => {
if (h.value.indexOf(replacementContent) !== -1) {
context.request.setHeader(h.name, replaceWithHMAC(h.value, context.request.getBodyText()));
}
});
context.request.getParameters().forEach(p => {
if (p.value.indexOf(replacementContent) !== -1) {
context.request.setParameter(p.name, replaceWithHMAC(p.value, context.request.getBodyText()));
}
});
}
];