All files / src/container/modules/node-transformers ObfuscatingTransformersModule.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 6271x       6271x       6271x       6271x       6271x   37572x   37572x 132142x 88368x     43774x         43774x   43774x        
import { ContainerModule, interfaces } from 'inversify';
import { ServiceIdentifiers } from '../../ServiceIdentifiers';
 
import { IObfuscationReplacer } from '../../../interfaces/node-transformers/IObfuscationReplacer';
 
import { ObfuscationReplacers } from '../../../enums/container/ObfuscationReplacers';
 
import { BooleanLiteralReplacer } from '../../../node-transformers/obfuscating-transformers/replacers/BooleanLiteralReplacer';
import { IdentifierReplacer } from '../../../node-transformers/obfuscating-transformers/replacers/IdentifierReplacer';
import { NumberLiteralReplacer } from '../../../node-transformers/obfuscating-transformers/replacers/NumberLiteralReplacer';
import { StringLiteralReplacer } from '../../../node-transformers/obfuscating-transformers/replacers/StringLiteralReplacer';
 
export const obfuscatingTransformersModule: interfaces.ContainerModule = new ContainerModule((bind: interfaces.Bind) => {
    bind<IObfuscationReplacer>(ServiceIdentifiers.IObfuscationReplacer)
        .to(BooleanLiteralReplacer)
        .whenTargetNamed(ObfuscationReplacers.BooleanReplacer);
 
    bind<IObfuscationReplacer>(ServiceIdentifiers.IObfuscationReplacer)
        .to(IdentifierReplacer)
        .whenTargetNamed(ObfuscationReplacers.IdentifierReplacer);
 
    bind<IObfuscationReplacer>(ServiceIdentifiers.IObfuscationReplacer)
        .to(NumberLiteralReplacer)
        .whenTargetNamed(ObfuscationReplacers.NumberLiteralReplacer);
 
    bind<IObfuscationReplacer>(ServiceIdentifiers.IObfuscationReplacer)
        .to(StringLiteralReplacer)
        .whenTargetNamed(ObfuscationReplacers.StringLiteralReplacer);
 
    bind<IObfuscationReplacer>(ServiceIdentifiers.Factory__IObfuscationReplacer)
        .toFactory<IObfuscationReplacer>((context: interfaces.Context) => {
            const cache: Map <ObfuscationReplacers, IObfuscationReplacer> = new Map();
 
            return (replacerName: ObfuscationReplacers) => {
                if (cache.has(replacerName)) {
                    return <IObfuscationReplacer>cache.get(replacerName);
                }
 
                const obfuscationReplacer: IObfuscationReplacer = context.container.getNamed<IObfuscationReplacer>(
                    ServiceIdentifiers.IObfuscationReplacer,
                    replacerName
                );
 
                cache.set(replacerName, obfuscationReplacer);
 
                return obfuscationReplacer;
            };
        });
});