All files / src/container/modules/node-transformers ObfuscationTransformersModule.ts

100% Statements 20/20
100% Branches 2/2
100% Functions 3/3
100% Lines 20/20
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 501x 1x       1x   1x 1x 1x 1x   1x 6260x       6260x       6260x       6260x       6260x   30385x   30385x 113715x 77131x     36584x         36584x   36584x        
import { ContainerModule, interfaces } from 'inversify';
import { ServiceIdentifiers } from '../../ServiceIdentifiers';
 
import { IObfuscationReplacer } from '../../../interfaces/node-transformers/IObfuscationReplacer';
 
import { NodeObfuscatorsReplacers } from '../../../enums/container/NodeObfuscationReplacers';
 
import { BooleanLiteralReplacer } from '../../../node-transformers/obfuscation-transformers/replacers/BooleanLiteralReplacer';
import { IdentifierReplacer } from '../../../node-transformers/obfuscation-transformers/replacers/IdentifierReplacer';
import { NumberLiteralReplacer } from '../../../node-transformers/obfuscation-transformers/replacers/NumberLiteralReplacer';
import { StringLiteralReplacer } from '../../../node-transformers/obfuscation-transformers/replacers/StringLiteralReplacer';
 
export const obfuscationTransformersModule: interfaces.ContainerModule = new ContainerModule((bind: interfaces.Bind) => {
    bind<IObfuscationReplacer>(ServiceIdentifiers.IObfuscatorReplacer)
        .to(BooleanLiteralReplacer)
        .whenTargetNamed(NodeObfuscatorsReplacers.BooleanReplacer);
 
    bind<IObfuscationReplacer>(ServiceIdentifiers.IObfuscatorReplacer)
        .to(IdentifierReplacer)
        .whenTargetNamed(NodeObfuscatorsReplacers.IdentifierReplacer);
 
    bind<IObfuscationReplacer>(ServiceIdentifiers.IObfuscatorReplacer)
        .to(NumberLiteralReplacer)
        .whenTargetNamed(NodeObfuscatorsReplacers.NumberLiteralReplacer);
 
    bind<IObfuscationReplacer>(ServiceIdentifiers.IObfuscatorReplacer)
        .to(StringLiteralReplacer)
        .whenTargetNamed(NodeObfuscatorsReplacers.StringLiteralReplacer);
 
    bind<IObfuscationReplacer>(ServiceIdentifiers.Factory__IObfuscatorReplacer)
        .toFactory<IObfuscationReplacer>((context: interfaces.Context) => {
            const cache: Map <NodeObfuscatorsReplacers, IObfuscationReplacer> = new Map();
 
            return (replacerName: NodeObfuscatorsReplacers) => {
                if (cache.has(replacerName)) {
                    return <IObfuscationReplacer>cache.get(replacerName);
                }
 
                const obfuscationReplacer: IObfuscationReplacer = context.container.getNamed<IObfuscationReplacer>(
                    ServiceIdentifiers.IObfuscatorReplacer,
                    replacerName
                );
 
                cache.set(replacerName, obfuscationReplacer);
 
                return obfuscationReplacer;
            };
        });
});