-
Notifications
You must be signed in to change notification settings - Fork 0
/
salt.js
400 lines (318 loc) · 10.8 KB
/
salt.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
(function(universal) {
/*Constants*/
const FILE_EXTN = ".salt.js",
FILE_MAIN_PATH = "./",
FILE_READ_FORMAT = 'utf8',
ENUMS = require("./core/enum.js");
"use strict";
//Promisify global ES6 filler
require('es6-promise').polyfill();
//Color for console priinting
require("colors");
/*
import dependencies
*/
var /*uglify = require("uglify-js"),*/
fs = require("fs"),
decipherBoby = require("./core/decipher.js");
/*
Description:
This is Encryption routine
Syntax:
Encrypt(string, key, UUID);
*/
function Encrypt(word1, key, UUID) {
var result = [],
scope2 = 0,
letters = null;
key.length != 15 &&
(function() {
var pad = "";
for (var i = 0; i < 15 - key.length; i++) {
pad = pad.concat("0");
}
key = key + pad;
})();
for (var scope1 = 0; scope1 < word1.length; scope1++) {
var salt = -1;
if (key.charCodeAt(scope2) % 2) {
salt = 1;
}
letters = (parseInt(word1.charCodeAt(scope1).toString(36), 36) + salt).toString(36);
result.push(letters.length == 1 ? "0" + letters : letters); //Handling space
scope2++;
if (scope2 >= key.length) {
scope2 = 0;
}
}
//console.log('Encryted:'+JSON.stringify((new CipherBuilder(key)) (result.join(""))));
return (new CipherBuilder(key, UUID))(result.join(""));
};
/*
Description:
This function helps the library to build the ciphered javascript files
Syntax:
1: new CipherBuilder (key)
2: Encrypted string
*/
function CipherBuilder(key, UUID) {
var build = {
n: [],
i: [],
r: [],
u: null,
s: ![]
},
distributor = function(str) {
var scope1 = 0;
while (true) {
str.charAt(scope1) !== undefined && build.n.push(str.charAt(scope1)) && scope1++; //distributor
str.charAt(scope1) !== undefined && build.i.push(str.charAt(scope1)) && scope1++; //distributor
str.charAt(scope1) !== undefined && build.r.push(str.charAt(scope1)) && scope1++; //distributor
if (scope1 >= str.length)
break;
}
};
distributor(key);
//build.u = (key.length >>> 0).toString(2);
return function(eString) {
distributor(eString);
build.n = build.n.join("");
build.i = build.i.join("");
build.r = build.r.join("");
//build.s = "Nirus";
//build.s = UUID.toString();
return build;
};
};
/*
Description:
The Function constructor formats the encrypted objects for write
Syntax:
FormatThis( ENCRYPTED OBJECT )
*/
function FormatThis(encObj, buildfor, OEPformat, protect) {
var code, debugProtection = "";
protect = protect || ENUMS.ATTACH.NO; //Defaulting the parameter
if (protect) {
/*debugProtection = uglify.minify("./core/protection.js").code;
debugProtection = debugProtection.substring(0, debugProtection.length - 1) + " && ";*/
/*this is to remove the trailing semicolon generated by uglify*/
debugProtection = fs.readFileSync("./minified/protection.min.js", "utf8") + " && ";
}
if (!OEPformat) {
code = "('" + encObj.n + "','" + encObj.i + "','" + encObj.r + "','" + encObj.u + "','" + encObj.s + "')";
if (buildfor == ENUMS.BUILD_TARGET.old) {
code = code + "[([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(![]+[])[+!+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[!+[]+!+[]]](this)";
}
return debugProtection.concat(decipherBoby(buildfor).concat(code));
} else {
("SINGLE" in OEPformat) && (code = debugProtection.concat(decipherBoby(buildfor).concat("('" + encObj.n + "','" + encObj.i + "','" + encObj.r + "','" + encObj.u + "','N!ru$')")));
("INIT" in OEPformat) && (code = debugProtection.concat(decipherBoby(buildfor).concat("('" + encObj.n + "','" + encObj.i + "','" + encObj.r + "','" + encObj.u + "',[")));
("STACKIT" in OEPformat) && (code = "['" + encObj.n + "','" + encObj.i + "','" + encObj.r + "','" + encObj.u + "','" + encObj.s + "'],");
("END" in OEPformat) && (code = "['" + encObj.n + "','" + encObj.i + "','" + encObj.r + "','" + encObj.u + "','" + encObj.s + "']])");
return code;
}
//throw new Error("Invalid OEP Format option");
};
/*
Description:
The Function Reads a file asynchronously and prepares the encrypted version
Syntax:
ReadAndEncrypt( FILE_NAME, KEY_TO_ENCRYPT )
*/
function ReadAndEncrypt(file, key, UUID, buildfor, OEPformat, protect) {
var defer = new Promise(function(resolve, reject) {
fs.readFile(file, FILE_READ_FORMAT, function(err, data) {
if (err) {
reject(err.message);
}
else {
console.log('Success file read:' + file);
resolve(FormatThis(Encrypt(data, key, UUID), buildfor, OEPformat, protect)); //parameters Same as write
}
});
});
defer.catch(function() {
console.log("Unable to read the file:" + file);
});
return defer;
};
/*
Description:
The Function to write to a file
Syntax:
Write( FILE_NAME )
*/
function Write(file) {
console.log('Writing File name:' + file);
return fs.existsSync(file) === true ? fs.appendFile : fs.writeFileSync; //deliberatelty targetting the async operation while append
};
/*
Description:
The Function to map read to write function
Syntax:
var f = MappingIO( KEY_TO_ENCRYPT);
f(FILE_NAME);
*/
function MappingIO(salty) {
return function(file) {
var _key = salty.key,
_buildFor = salty.buildfor,
_protect = salty.protection;
//var writeFileName = (salty.output === ENUMS.FILE.SEPARATE) ? (file.substring(0, file.length - 3)).concat(FILE_EXTN) : salty.fname.concat(FILE_EXTN);
var writeFileName = (salty.output === ENUMS.FILE.SEPARATE) ? (file.substring(0, file.length - 3)).concat(FILE_EXTN) : salty.fname;
return ReadAndEncrypt(file, _key, salty.UUID, _buildFor, salty.OEPformat, _protect)
.then(function(data) {
(Write(writeFileName))(writeFileName, data, function(err){
if(err){
console.log("Error while writing to the file: ".red, err);
}
});
});
};
}
/*
OEP writer
*/
function Encloser(opt, obj, protect) {
console.log("Encloser:" + opt.file);
var stream = Encrypt(fs.readFileSync(opt.file, "utf8"), opt.key, opt.UUID),
writeFileName = opt.fname /*.concat(FILE_EXTN)*/ ;
Write(writeFileName)(writeFileName, FormatThis(stream, opt.buildfor, obj, protect), function(err){
if(err){
console.log("Error occured in 'Encloser' function while writing: ".red, err);
}
});
};
/*
This function contains the stack of error check conditions
*/
function CheckErrorConditions(salty) {
if (salty.key.length > 15) {
throw new Error("Key length exceeds 15 characters".red);
//return;
}
if (salty.output == ENUMS.FILE.MERGE && !salty.fname) {
throw new Error("Provide merge file name with key 'fname'".red);
//return;
}
if (salty.output == ENUMS.FILE.MERGE && salty.buildfor == ENUMS.BUILD_TARGET.old) {
throw new Error("This option is not supported: You cannot merge the files building for old browsers, they should be seperate. Please check 'output' & 'buildfor' options".red);
//return;
}
/*if (!salty.folder) {
throw new Error("Provide source folder of your JS files".red);
return;
}*/
};
/*
Description:
Global interface API
Syntax:
salt( KEY_TO_ENCRYPT, FILE/FILES_ARRAY)
*/
universal.salt = function(salty, files, resolve, reject) {
try {
files = !(files instanceof Array) ? [files] : files;
/*
Check error conditions
This function throws error message to the below Catch block
*/
CheckErrorConditions(salty);
//Entrypoint variables
var mapped, EOF = null;
/*
*This is a special code that checks if you are trying to build for one file using mordern
browser cofig and modify to build as old browser code because its one and the same. Sorry buddy!
*/
/*if(files.length === 1){
salty.output = ENUMS.FILE.SEPARATE;
salty.buildfor = ENUMS.BUILD_TARGET.old;
}*/
if (salty.output === ENUMS.FILE.MERGE) { //This is the place where all the logic for thread distribution happens
//Default value for stacking the code
if (files.length === 1) {
salty.OEPformat = { "SINGLE": true };
} else {
salty.OEPformat = { "STACKIT": true};
}
/*
* This is to make sure the output file is a *.salt.js extension with a full path
*/
salty.fname = salty.folder + "/" + ((salty.fname.substr(salty.fname.length - 3, salty.fname.length).toLowerCase() === ".js") ? salty.fname.substring(0, salty.fname.length - 3) + FILE_EXTN : salty.fname + FILE_EXTN);
//This is a Enclosure method which writes the entrypoint code
/*
This is a sync operation so dont worry!
*/
Encloser({
file: files.shift(),
fname: salty.fname,
buildfor: salty.buildfor,
key: salty.key,
UUID: salty.UUID
}, salty.OEPformat.SINGLE && salty.OEPformat || { "INIT": true}, salty.protection);
//Call the resolve method after processing only one file
/*
This is a special case boss. Here only one file is processed in mordern config
*/
if (salty.OEPformat.SINGLE) {
resolve && resolve(salty.fname);
return; //Just cut the crap and return here please
}
/*If this passes all the above conditions
then the files to be procesed are more than 1*/
if (files.length == 1) {
Encloser({
file: files.pop(),
fname: salty.fname,
buildfor: salty.buildfor,
key: salty.key,
UUID: salty.UUID
}, { "END": true });
resolve && resolve(salty.fname);
console.log('Finished the job!'.green);
} else {
EOF = files.pop();
}
}
if (files.length !== 0) {
mapped = files.map(MappingIO(salty));
Promise.all(mapped).then(function() {
EOF && Encloser({
file: EOF,
fname: salty.fname,
buildfor: salty.buildfor,
key: salty.key,
UUID: salty.UUID
}, { "END": true });
//Incase of seperate file compression
if (salty.output === ENUMS.FILE.SEPARATE) {
salty.fname = [];
files.forEach(function(element, index, array) {
salty.fname.push((function() {
var fname = element.substr(element.length - 3, element.length).toLowerCase() === ".js" ? element.substring(0, element.length - 3) + FILE_EXTN : element + FILE_EXTN;
return salty.folder + "/" + fname;
})());
});
}
resolve && resolve(salty.fname);
console.log('Finished the job!'.green);
});
}
} catch (e) {
reject && reject(e.message);
console.log("Error Occured:".red + e.message + "\r");
}
};
//This is a wrapper method that returns encrypted text
universal.toTxt = function(file, key, UUID) {
return ReadAndEncrypt(file, key, UUID, ENUMS.BUILD_TARGET.old);
};
//Promise version of the Salt API
universal.AsPromise = function(salty, files) {
return new Promise(function(resolve, reject) {
return universal.salt.apply(universal, [salty, files, resolve, reject]); // Safe wrapping
});
};
})(module.exports);