-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
39 lines (35 loc) · 1.42 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
// For help writing plugins, visit the documentation to get started:
// https://docs.insomnia.rest/insomnia/introduction-to-plugins
const bufferToJsonObj = buf => JSON.parse(buf.toString('utf-8'));
const jsonObjToBuffer = obj => Buffer.from(JSON.stringify(obj), 'utf-8');
const bufferToString = buf => buf.toString('utf-8');
const timeStampregex = /((["']([a-z0-9_-]+?)["']):([0-9]{10}|[0-9]{13}))([,}\s])/gi;
module.exports.responseHooks = [
async ctx => {
try {
const contentType = ctx.response.getHeader("content-type");
if (!contentType.toLowerCase().includes("application/json")) {
return;
}
const body = bufferToString(ctx.response.getBody());
const newBody = body.replace(timeStampregex, (match, $1, $2, $3, $4, $5) => {
try {
let d;
if ($4.length == 10) {
d = new Date($4 * 1000);
}
else if ($4.length == 13) {
d = new Date($4);
}
return `${$2}:${$4}, "${$3}_as_datetime":"${d.toISOString()}"${$5}`;
}
catch {
// Just fail silently if a value doesn't parse.
}
});
ctx.response.setBody(newBody);
} catch (exception) {
console.log(exception);
}
}
]