1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- 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 { ConsoleOutputDisableExpressionTemplate } from '../../templates/console-output-nodes/console-output-disable-expression-node/ConsoleOutputDisableExpressionTemplate';
- import { GlobalVariableNoEvalTemplate } from '../../templates/GlobalVariableNoEvalTemplate';
- import { initializable } from '../../decorators/Initializable';
- import { AbstractCustomNode } from '../AbstractCustomNode';
- import { NodeUtils } from '../../node/NodeUtils';
- @injectable()
- export class ConsoleOutputDisableExpressionNode extends AbstractCustomNode {
- /**
- * @type {string}
- */
- @initializable()
- private callsControllerFunctionName!: string;
- /**
- * @param {TIdentifierNamesGeneratorFactory} identifierNamesGeneratorFactory
- * @param {ICustomNodeFormatter} customNodeFormatter
- * @param {IRandomGenerator} randomGenerator
- * @param {IOptions} options
- */
- public constructor (
- @inject(ServiceIdentifiers.Factory__IIdentifierNamesGenerator)
- identifierNamesGeneratorFactory: TIdentifierNamesGeneratorFactory,
- @inject(ServiceIdentifiers.ICustomNodeFormatter) customNodeFormatter: ICustomNodeFormatter,
- @inject(ServiceIdentifiers.IRandomGenerator) randomGenerator: IRandomGenerator,
- @inject(ServiceIdentifiers.IOptions) options: IOptions
- ) {
- super(identifierNamesGeneratorFactory, customNodeFormatter, randomGenerator, options);
- }
- /**
- * @param {string} callsControllerFunctionName
- */
- public initialize (callsControllerFunctionName: string): void {
- this.callsControllerFunctionName = callsControllerFunctionName;
- }
- /**
- * @param {string} nodeTemplate
- * @returns {TStatement[]}
- */
- protected getNodeStructure (nodeTemplate: string): TStatement[] {
- return NodeUtils.convertCodeToStructure(nodeTemplate);
- }
- /**
- * @returns {string}
- */
- protected getNodeTemplate (): string {
- const globalVariableTemplate: string = this.options.target !== ObfuscationTarget.BrowserNoEval
- ? this.getGlobalVariableTemplate()
- : GlobalVariableNoEvalTemplate();
- return this.customNodeFormatter.formatTemplate(ConsoleOutputDisableExpressionTemplate(), {
- consoleLogDisableFunctionName: this.identifierNamesGenerator.generate(),
- globalVariableTemplate,
- singleNodeCallControllerFunctionName: this.callsControllerFunctionName
- });
- }
- }
|