import { inject, injectable, } from 'inversify'; import { ServiceIdentifiers } from '../../container/ServiceIdentifiers'; import * as format from 'string-template'; import { TIdentifierNameGeneratorFactory } from '../../types/container/generators/TIdentifierNameGeneratorFactory'; import { TStatement } from '../../types/node/TStatement'; import { IOptions } from '../../interfaces/options/IOptions'; import { IRandomGenerator } from '../../interfaces/utils/IRandomGenerator'; import { initializable } from '../../decorators/Initializable'; import { DebugProtectionFunctionCallTemplate } from '../../templates/debug-protection-nodes/debug-protection-function-call-node/DebugProtectionFunctionCallTemplate'; import { AbstractCustomNode } from '../AbstractCustomNode'; import { NodeUtils } from '../../node/NodeUtils'; @injectable() export class DebugProtectionFunctionCallNode extends AbstractCustomNode { /** * @type {string} */ @initializable() private callsControllerFunctionName: string; /** * @type {string} */ @initializable() private debugProtectionFunctionName: string; /** * @param {TIdentifierNameGeneratorFactory} identifierNameGeneratorFactory * @param {IRandomGenerator} randomGenerator * @param {IOptions} options */ constructor ( @inject(ServiceIdentifiers.Factory__IIdentifierNameGenerator) identifierNameGeneratorFactory: TIdentifierNameGeneratorFactory, @inject(ServiceIdentifiers.IRandomGenerator) randomGenerator: IRandomGenerator, @inject(ServiceIdentifiers.IOptions) options: IOptions ) { super(identifierNameGeneratorFactory, randomGenerator, options); } /** * @param {string} debugProtectionFunctionName * @param {string} callsControllerFunctionName */ public initialize (debugProtectionFunctionName: string, callsControllerFunctionName: string): void { this.debugProtectionFunctionName = debugProtectionFunctionName; this.callsControllerFunctionName = callsControllerFunctionName; } /** * @returns {TStatement[]} */ protected getNodeStructure (): TStatement[] { return NodeUtils.convertCodeToStructure(this.getTemplate()); } /** * @returns {string} */ protected getTemplate (): string { return format(DebugProtectionFunctionCallTemplate(), { debugProtectionFunctionName: this.debugProtectionFunctionName, singleNodeCallControllerFunctionName: this.callsControllerFunctionName }); } }