import { TStringArrayCallsWrapper } from '../../types/custom-nodes/TStringArrayCallsWrapper';
import { TStringArrayNode } from '../../types/custom-nodes/TStringArrayNode';
import { StringArrayEncoding } from '../../enums/StringArrayEncoding';
import { AbstractReplacer } from './AbstractReplacer';
import { NumberLiteralReplacer } from './NumberLiteralReplacer';
import { StringArray } from '../../StringArray';
import { Utils } from '../../Utils';
export class StringLiteralReplacer extends AbstractReplacer {
/**
* @type {number}
*/
private static minimumLengthForStringArray: number = 3;
/**
* @type {string[]}
*/
private static rc4Keys: string[] = Utils.getRandomGenerator()
.n(() => Utils.getRandomGenerator().string({length: 4}), 50);
/**
* @param nodeValue
* @returns {string}
*/
public replace (nodeValue: string): string {
const replaceWithStringArrayFlag: boolean = (
nodeValue.length >= StringLiteralReplacer.minimumLengthForStringArray
&& Math.random() <= this.options.stringArrayThreshold
);
if (this.options.stringArray && replaceWithStringArrayFlag) {
return this.replaceStringLiteralWithStringArrayCall(nodeValue);
}
return `'${Utils.stringToUnicodeEscapeSequence(nodeValue)}'`;
}
/**
* @param value
* @returns {string}
*/
private replaceStringLiteralWithStringArrayCall (value: string): string {
const stringArrayNode: TStringArrayNode = <TStringArrayNode>this.nodes.get('stringArrayNode');
Iif (!stringArrayNode) {
throw new ReferenceError('`stringArrayNode` node is not found in Map with custom node.');
}
let rc4Key: string = '';
switch (this.options.stringArrayEncoding) {
case StringArrayEncoding.base64:
value = Utils.btoa(value);
break;
case StringArrayEncoding.rc4:
rc4Key = Utils.getRandomGenerator().pickone(StringLiteralReplacer.rc4Keys);
value = Utils.btoa(Utils.rc4(value, rc4Key));
break;
}
if (this.options.unicodeEscapeSequence) {
value = Utils.stringToUnicodeEscapeSequence(value);
}
let stringArray: StringArray = stringArrayNode.getNodeData(),
indexOfExistingValue: number = stringArray.getIndexOf(value),
indexOfValue: number,
hexadecimalIndex: string;
if (indexOfExistingValue >= 0) {
indexOfValue = indexOfExistingValue;
} else {
indexOfValue = stringArray.getLength();
stringArrayNode.updateNodeData(value);
}
hexadecimalIndex = new NumberLiteralReplacer(this.nodes, this.options)
.replace(indexOfValue);
const stringArrayCallsWrapper: TStringArrayCallsWrapper = <TStringArrayCallsWrapper>this.nodes.get('stringArrayCallsWrapper');
Iif (!stringArrayCallsWrapper) {
throw new ReferenceError('`stringArrayCallsWrapper` node is not found in Map with custom node.');
}
if (this.options.stringArrayEncoding === StringArrayEncoding.rc4) {
return `${stringArrayCallsWrapper.getNodeIdentifier()}('${hexadecimalIndex}', '${Utils.stringToUnicodeEscapeSequence(rc4Key)}')`;
}
return `${stringArrayCallsWrapper.getNodeIdentifier()}('${hexadecimalIndex}')`;
}
}
|