import { inject, injectable, } from 'inversify'; import { ServiceIdentifiers } from '../../../container/ServiceIdentifiers'; import { TCustomCodeHelperFactory } from '../../../types/container/custom-code-helpers/TCustomCodeHelperFactory'; import { TIdentifierNamesGeneratorFactory } from '../../../types/container/generators/TIdentifierNamesGeneratorFactory'; import { TInitialData } from '../../../types/TInitialData'; import { TNodeWithStatements } from '../../../types/node/TNodeWithStatements'; import { ICallsGraphData } from '../../../interfaces/analyzers/calls-graph-analyzer/ICallsGraphData'; import { ICustomCodeHelper } from '../../../interfaces/custom-code-helpers/ICustomCodeHelper'; import { IOptions } from '../../../interfaces/options/IOptions'; import { IRandomGenerator } from '../../../interfaces/utils/IRandomGenerator'; import { IStringArrayStorage } from '../../../interfaces/storages/string-array-storage/IStringArrayStorage'; import { initializable } from '../../../decorators/Initializable'; import { CustomCodeHelper } from '../../../enums/custom-code-helpers/CustomCodeHelper'; import { ObfuscationEvent } from '../../../enums/event-emitters/ObfuscationEvent'; import { AbstractCustomCodeHelperGroup } from '../../AbstractCustomCodeHelperGroup'; import { NodeAppender } from '../../../node/NodeAppender'; import { StringArrayCodeHelper } from '../StringArrayCodeHelper'; import { StringArrayCallsWrapperCodeHelper } from '../StringArrayCallsWrapperCodeHelper'; import { StringArrayRotateFunctionCodeHelper } from '../StringArrayRotateFunctionCodeHelper'; @injectable() export class StringArrayCodeHelperGroup extends AbstractCustomCodeHelperGroup { /** * @type {ObfuscationEvent} */ protected appendEvent: ObfuscationEvent = ObfuscationEvent.AfterObfuscation; /** * @type {Map} */ @initializable() protected customCodeHelpers!: Map ; /** * @type {TCustomCodeHelperFactory} */ private readonly customCodeHelperFactory: TCustomCodeHelperFactory; /** * @type {IStringArrayStorage} */ private readonly stringArrayStorage: IStringArrayStorage; /** * @param {TCustomCodeHelperFactory} customCodeHelperFactory * @param {IStringArrayStorage} stringArrayStorage * @param {TIdentifierNamesGeneratorFactory} identifierNamesGeneratorFactory * @param {IRandomGenerator} randomGenerator * @param {IOptions} options */ public constructor ( @inject(ServiceIdentifiers.Factory__ICustomCodeHelper) customCodeHelperFactory: TCustomCodeHelperFactory, @inject(ServiceIdentifiers.IStringArrayStorage) stringArrayStorage: IStringArrayStorage, @inject(ServiceIdentifiers.Factory__IIdentifierNamesGenerator) identifierNamesGeneratorFactory: TIdentifierNamesGeneratorFactory, @inject(ServiceIdentifiers.IRandomGenerator) randomGenerator: IRandomGenerator, @inject(ServiceIdentifiers.IOptions) options: IOptions ) { super(identifierNamesGeneratorFactory, randomGenerator, options); this.customCodeHelperFactory = customCodeHelperFactory; this.stringArrayStorage = stringArrayStorage; } /** * @param {TNodeWithStatements} nodeWithStatements * @param {ICallsGraphData[]} callsGraphData */ public appendNodes (nodeWithStatements: TNodeWithStatements, callsGraphData: ICallsGraphData[]): void { if (!this.stringArrayStorage.getLength()) { return; } // stringArray helper nodes append this.appendCustomNodeIfExist( CustomCodeHelper.StringArray, (customCodeHelper: ICustomCodeHelper>) => { NodeAppender.prepend(nodeWithStatements, customCodeHelper.getNode()); } ); // stringArrayCallsWrapper helper nodes append this.appendCustomNodeIfExist( CustomCodeHelper.StringArrayCallsWrapper, (customCodeHelper: ICustomCodeHelper>) => { NodeAppender.insertAtIndex(nodeWithStatements, customCodeHelper.getNode(), 1); } ); // stringArrayRotateFunction helper nodes append this.appendCustomNodeIfExist( CustomCodeHelper.StringArrayRotateFunction, (customCodeHelper: ICustomCodeHelper>) => { NodeAppender.insertAtIndex(nodeWithStatements, customCodeHelper.getNode(), 1); } ); } public initialize (): void { this.customCodeHelpers = new Map (); if (!this.options.stringArray) { return; } const stringArrayCodeHelper: ICustomCodeHelper> = this.customCodeHelperFactory(CustomCodeHelper.StringArray); const stringArrayCallsWrapperCodeHelper: ICustomCodeHelper> = this.customCodeHelperFactory(CustomCodeHelper.StringArrayCallsWrapper); const stringArrayRotateFunctionCodeHelper: ICustomCodeHelper> = this.customCodeHelperFactory(CustomCodeHelper.StringArrayRotateFunction); const stringArrayName: string = this.stringArrayStorage.getStorageName(); const stringArrayCallsWrapperName: string = this.stringArrayStorage.getStorageCallsWrapperName(); const stringArrayRotationAmount: number = this.stringArrayStorage.getRotationAmount(); stringArrayCodeHelper.initialize(this.stringArrayStorage, stringArrayName); stringArrayCallsWrapperCodeHelper.initialize(stringArrayName, stringArrayCallsWrapperName); stringArrayRotateFunctionCodeHelper.initialize(stringArrayName, stringArrayRotationAmount); this.customCodeHelpers.set(CustomCodeHelper.StringArray, stringArrayCodeHelper); this.customCodeHelpers.set(CustomCodeHelper.StringArrayCallsWrapper, stringArrayCallsWrapperCodeHelper); if (this.options.rotateStringArray) { this.customCodeHelpers.set(CustomCodeHelper.StringArrayRotateFunction, stringArrayRotateFunctionCodeHelper); } } }