12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- import { injectable, inject } from 'inversify';
- import { ServiceIdentifiers } from '../../container/ServiceIdentifiers';
- import * as format from 'string-template';
- import { TObfuscationEvent } from '../../types/event-emitters/TObfuscationEvent';
- import { TStatement } from '../../types/node/TStatement';
- import { IOptions } from '../../interfaces/options/IOptions';
- import { ObfuscationEvents } from '../../enums/ObfuscationEvents';
- import { initializable } from '../../decorators/Initializable';
- import { SingleNodeCallControllerTemplate } from '../../templates/custom-nodes/SingleNodeCallControllerTemplate';
- import { NO_CUSTOM_NODES_PRESET } from '../../options/presets/NoCustomNodes';
- import { AbstractCustomNode } from '../AbstractCustomNode';
- import { JavaScriptObfuscator } from '../../JavaScriptObfuscator';
- import { NodeUtils } from '../../node/NodeUtils';
- @injectable()
- export class NodeCallsControllerFunctionNode extends AbstractCustomNode {
- /**
- * @type {string}
- */
- @initializable()
- protected callsControllerFunctionName: string;
- /**
- * @type {TObfuscationEvent}
- */
- @initializable()
- private appendEvent: TObfuscationEvent;
- /**
- * @param options
- */
- constructor (
- @inject(ServiceIdentifiers.IOptions) options: IOptions
- ) {
- super(options);
- }
- /**
- * @param appendEvent
- * @param callsControllerFunctionName
- */
- public initialize (appendEvent: TObfuscationEvent, callsControllerFunctionName: string): void {
- this.appendEvent = appendEvent;
- this.callsControllerFunctionName = callsControllerFunctionName;
- }
- /**
- * @returns {TStatement[]}
- */
- protected getNodeStructure (): TStatement[] {
- return NodeUtils.convertCodeToStructure(this.getTemplate());
- }
- /**
- * @returns {string}
- */
- protected getTemplate (): string {
- if (this.appendEvent === ObfuscationEvents.AfterObfuscation) {
- return JavaScriptObfuscator.obfuscate(
- format(SingleNodeCallControllerTemplate(), {
- singleNodeCallControllerFunctionName: this.callsControllerFunctionName
- }),
- {
- ...NO_CUSTOM_NODES_PRESET,
- seed: this.options.seed
- }
- ).getObfuscatedCode();
- }
- return format(SingleNodeCallControllerTemplate(), {
- singleNodeCallControllerFunctionName: this.callsControllerFunctionName
- });
- }
- }
|