javascript-obfuscator
Version:
JavaScript obfuscator
75 lines (62 loc) • 3.06 kB
text/typescript
import { inject, injectable, } from 'inversify';
import { ServiceIdentifiers } from '../../container/ServiceIdentifiers';
import { TIdentifierNamesGeneratorFactory } from '../../types/container/generators/TIdentifierNamesGeneratorFactory';
import { TStatement } from '../../types/node/TStatement';
import { IOptions } from '../../interfaces/options/IOptions';
import { IRandomGenerator } from '../../interfaces/utils/IRandomGenerator';
import { ICustomNodeFormatter } from '../../interfaces/custom-nodes/ICustomNodeFormatter';
import { ObfuscationTarget } from '../../enums/ObfuscationTarget';
import { initializable } from '../../decorators/Initializable';
import { DebuggerTemplate } from '../../templates/debug-protection-nodes/debug-protection-function-node/DebuggerTemplate';
import { DebuggerTemplateNoEval } from '../../templates/debug-protection-nodes/debug-protection-function-node/DebuggerTemplateNoEval';
import { DebugProtectionFunctionTemplate } from '../../templates/debug-protection-nodes/debug-protection-function-node/DebugProtectionFunctionTemplate';
import { AbstractCustomNode } from '../AbstractCustomNode';
import { NodeUtils } from '../../node/NodeUtils';
()
export class DebugProtectionFunctionNode extends AbstractCustomNode {
/**
* @type {string}
*/
()
private debugProtectionFunctionName!: string;
/**
* @param {TIdentifierNamesGeneratorFactory} identifierNamesGeneratorFactory
* @param {ICustomNodeFormatter} customNodeFormatter
* @param {IRandomGenerator} randomGenerator
* @param {IOptions} options
*/
public constructor (
identifierNamesGeneratorFactory: TIdentifierNamesGeneratorFactory,
(ServiceIdentifiers.ICustomNodeFormatter) customNodeFormatter: ICustomNodeFormatter,
(ServiceIdentifiers.IRandomGenerator) randomGenerator: IRandomGenerator,
(ServiceIdentifiers.IOptions) options: IOptions
) {
(ServiceIdentifiers.Factory__IIdentifierNamesGenerator)
super(identifierNamesGeneratorFactory, customNodeFormatter, randomGenerator, options);
}
/**
* @param {string} debugProtectionFunctionName
*/
public initialize (debugProtectionFunctionName: string): void {
this.debugProtectionFunctionName = debugProtectionFunctionName;
}
/**
* @param {string} nodeTemplate
* @returns {TStatement[]}
*/
protected getNodeStructure (nodeTemplate: string): TStatement[] {
return NodeUtils.convertCodeToStructure(nodeTemplate);
}
/**
* @returns {string}
*/
protected getNodeTemplate (): string {
const debuggerTemplate: string = this.options.target !== ObfuscationTarget.BrowserNoEval
? DebuggerTemplate()
: DebuggerTemplateNoEval();
return this.customNodeFormatter.formatTemplate(DebugProtectionFunctionTemplate(), {
debuggerTemplate,
debugProtectionFunctionName: this.debugProtectionFunctionName
});
}
}