All files / src/node-transformers/obfuscating-transformers LiteralTransformer.ts

100% Statements 27/27
100% Branches 10/10
100% Functions 2/2
100% Lines 24/24
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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 931x 1x   1x               1x   1x 1x     1x                           6262x   6262x             6262x   664830x 112047x                       112047x 9610x     102437x       9580x     9580x     30650x     30650x     60277x     60277x     1930x     100507x         100507x      
import { injectable, inject } from 'inversify';
import { ServiceIdentifiers } from '../../container/ServiceIdentifiers';
 
import * as escodegen from 'escodegen';
import * as ESTree from 'estree';
 
import { TObfuscationReplacerFactory } from '../../types/container/TObfuscationReplacerFactory';
 
import { IOptions } from '../../interfaces/options/IOptions';
import { IVisitor } from '../../interfaces/IVisitor';
 
import { ObfuscationReplacers } from '../../enums/container/ObfuscationReplacers';
 
import { AbstractNodeTransformer } from '../AbstractNodeTransformer';
import { Node } from '../../node/Node';
 
@injectable()
export class LiteralTransformer extends AbstractNodeTransformer {
    /**
     * @type {TObfuscationReplacerFactory}
     */
    private readonly obfuscationReplacerFactory: TObfuscationReplacerFactory;
 
    /**
     * @param obfuscationReplacerFactory
     * @param options
     */
    constructor (
        @inject(ServiceIdentifiers.Factory__IObfuscationReplacer) obfuscationReplacerFactory: TObfuscationReplacerFactory,
        @inject(ServiceIdentifiers.IOptions) options: IOptions
    ) {
        super(options);
 
        this.obfuscationReplacerFactory = obfuscationReplacerFactory;
    }
 
    /**
     * @return {IVisitor}
     */
    public getVisitor (): IVisitor {
        return {
            enter: (node: ESTree.Node, parentNode: ESTree.Node) => {
                if (Node.isLiteralNode(node)) {
                    return this.transformNode(node, parentNode);
                }
            }
        };
    }
 
    /**
     * @param literalNode
     * @param parentNode
     * @returns {ESTree.Node}
     */
    public transformNode (literalNode: ESTree.Literal, parentNode: ESTree.Node): ESTree.Node {
        if (Node.isPropertyNode(parentNode) && parentNode.key === literalNode) {
            return literalNode;
        }
 
        let content: string;
 
        switch (typeof literalNode.value) {
            case 'boolean':
                content = this.obfuscationReplacerFactory(ObfuscationReplacers.BooleanReplacer)
                    .replace(<boolean>literalNode.value);
 
                break;
 
            case 'number':
                content = this.obfuscationReplacerFactory(ObfuscationReplacers.NumberLiteralReplacer)
                    .replace(<number>literalNode.value);
 
                break;
 
            case 'string':
                content = this.obfuscationReplacerFactory(ObfuscationReplacers.StringLiteralReplacer)
                    .replace(<string>literalNode.value);
 
                break;
 
            default:
                return literalNode;
        }
 
        literalNode['x-verbatim-property'] = {
            content : content,
            precedence: escodegen.Precedence.Primary
        };
 
        return literalNode;
    }
}