-
Notifications
You must be signed in to change notification settings - Fork 855
/
Copy pathjson_obfuscator.js
144 lines (140 loc) · 4.1 KB
/
json_obfuscator.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
const Survey = require("../build/survey-core/survey.core");
// eslint-disable-next-line no-undef
const fs = require("fs");
// eslint-disable-next-line no-undef
const path = require("path");
// eslint-disable-next-line no-undef
let args = process.argv;
if (!Array.isArray(args)) return;
if (args.length < 3) {
// eslint-disable-next-line no-console
console.error("Please provide a path to the survey JSON file.");
return;
}
const fileName = args[2];
fs.readFile(fileName, (err, data) => {
if (err) {
// eslint-disable-next-line no-console
console.error("Cannot read the file: " + err);
return;
}
const newJSON = obfuscateJSON(data.toString().trim());
const ext = path.extname(fileName);
const newFileName = fileName.substring(0, fileName.length - ext.length) + ".obf" + ext;
fs.writeFile(newFileName, newJSON, err => {
if (err) {
// eslint-disable-next-line no-console
console.error(err);
} else {
// eslint-disable-next-line no-console
console.log("File generated successfully: " + newFileName);
}
});
});
function obfuscateJSON(data) {
const model = new Survey.Model(JSON.parse(data));
let index = 0;
model.getAllPanels().forEach(panel => {
panel.name = "panel" + (++index);
});
const containers = [model];
model.pages.forEach(page => containers.push(page));
model.getAllPanels().forEach(panel => containers.push(panel));
const propsToObs = [
"title",
"description",
"requiredErrorText",
"placeholder",
"otherText",
"otherPlaceholder",
"minRateDescription",
"maxRateDescription"
];
containers.forEach(container => obfuscatePropsText(container, propsToObs));
let questions = model.getAllQuestions(false, true, false);
questions.forEach(q => {
if (q.getType() === "html") {
q.delete();
return;
}
obfuscatePropsText(q, propsToObs);
["choices", "columns", "rows", "validators"].forEach(name => {
obfuscateArrayText(q[name]);
});
});
questions = model.getAllQuestions(false, true, false);
const qNames = [];
index = 0;
questions.forEach(q => {
const newName = "q" + (++index);
const oldName = q.name;
q.name = newName;
qNames.push({ oldName: oldName, newName: newName });
});
let json = JSON.stringify(model.toJSON(), null, 2);
qNames.forEach(item => {
["{", "{panel.", "{row."].forEach(prefix =>
json = renameQuestionInExpression(json, prefix + item.oldName, prefix + item.newName, ["}", ".", "["])
);
});
return json;
}
function obfuscatePropsText(el, props) {
props.forEach(
prop => {
let isDone = false;
const loc = el["loc" + prop[0].toUpperCase() + prop.substring(1)];
if (!!loc && !loc.isEmpty) {
data = loc.getJson();
if (!!data && typeof data === "object") {
for (let key in data) {
data[key] = obfuscateText(data[key]);
}
loc.setJson(data);
isDone = true;
}
}
if (!isDone && !!el[prop]) el[prop] = obfuscateText(el[prop]);
}
);
}
function obfuscateArrayText(items) {
if (Array.isArray(items)) {
items.forEach(item => {
obfuscatePropsText(item, ["text", "title"]);
/*
if(item.text) {
item.text = obfuscateText(item.text);
}
if(item.title) {
item.title = obfuscateText(item.title);
}
*/
});
}
}
function obfuscateText(text) {
if (!text) return text;
let newText = "";
for (let i = 0; i < text.length; i++) {
const ch = text[i];
let newCh = ch;
if (ch >= "a" && ch <= "z") newCh = getRandomChar("a", "z");
if (ch >= "A" && ch <= "Z") newCh = getRandomChar("A", "Z");
newText += newCh;
}
return newText;
}
function getRandomChar(min, max) {
const minI = min.codePointAt(0);
const maxI = max.codePointAt(0);
const val = Math.floor(Math.random() * (maxI - minI + 1)) + minI;
return String.fromCharCode(val);
}
function renameQuestionInExpression(json, oldName, newName, postFixes) {
postFixes.forEach(post => {
const re = new RegExp(oldName + "\\" + post, "gi");
json = json.replace(re, newName + post);
});
return json;
}