All files / src/cli JavaScriptObfuscatorCLI.ts

71.67% Statements 43/60
61.11% Branches 11/18
50% Functions 2/4
71.67% Lines 43/60
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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 2041x   1x         1x   1x   1x 1x 1x 1x   1x                           6x                               6x 6x             6x               2x                                           6x   6x 2x   2x     4x   2x 2x             2x 2x   2x 115x 88x     27x 25x     2x     2x       6x                                             6x 2x 2x 2x 2x         2x       2x 2x   2x     2x                 2x   2x                                                          
import * as path from 'path';
 
import { Command } from 'commander';
 
import { IObfuscationResult } from "../interfaces/IObfuscationResult";
import { IObfuscatorOptions } from "../interfaces/IObfuscatorOptions";
 
import { SourceMapMode } from "../enums/SourceMapMode";
 
import { DEFAULT_PRESET } from "../preset-options/DefaultPreset";
 
import { CLIUtils } from "./CLIUtils";
import { JavaScriptObfuscator } from "../JavaScriptObfuscator";
import { JavaScriptObfuscatorInternal } from "../JavaScriptObfuscatorInternal";
import { Utils } from "../Utils";
 
export class JavaScriptObfuscatorCLI {
    /**
     * @type {string[]}
     */
    private arguments: string[];
 
    /**
     * @type {commander.ICommand}
     */
    private commands: commander.ICommand;
 
    /**
     * @type {string}
     */
    private data: string = '';
 
    /**
     * @type {string}
     */
    private inputPath: string;
 
    /**
     * @type {string[]}
     */
    private rawArguments: string[];
 
    /**
     * @param argv
     */
    constructor (argv: string[]) {
        this.rawArguments = argv;
        this.arguments = this.rawArguments.slice(2);
    }
 
    /**
     * @returns {string}
     */
    private static getBuildVersion (): string {
        return CLIUtils.getPackageConfig().version;
    }
 
    /**
     * @param value
     * @returns {boolean}
     */
    private static parseBoolean (value: string): boolean {
        return value === 'true' || value === '1';
    }
 
    /**
     * @param value
     * @returns {string}
     */
    private static parseSourceMapMode (value: string): string {
        let availableMode: boolean = Object
            .keys(SourceMapMode)
            .some((key: string): boolean => {
                return SourceMapMode[key] === value;
            });
 
        if (!availableMode) {
            throw new ReferenceError('Invalid value of `--sourceMapMode` option');
        }
 
        return value;
    }
 
    public run (): void {
        this.configureCommands();
 
        if (!this.arguments.length || Utils.arrayContains(this.arguments, '--help')) {
            this.commands.outputHelp();
 
            return;
        }
 
        this.inputPath = CLIUtils.getInputPath(this.arguments);
 
        this.getData();
        this.processData();
    }
 
    /**
     * @returns {IObfuscatorOptions}
     */
    private buildOptions (): IObfuscatorOptions {
        let obfuscatorOptions: IObfuscatorOptions = {},
            availableOptions: string[] = Object.keys(DEFAULT_PRESET);
 
        for (let option in this.commands) {
            if (!this.commands.hasOwnProperty(option)) {
                continue;
            }
 
            if (!Utils.arrayContains(availableOptions, option)) {
                continue;
            }
 
            obfuscatorOptions[option] = (<any>this.commands)[option];
        }
 
        return Object.assign({}, DEFAULT_PRESET, obfuscatorOptions);
    }
 
    private configureCommands (): void {
        this.commands = new Command()
            .version(JavaScriptObfuscatorCLI.getBuildVersion(), '-v, --version')
            .usage('<inputPath> [options]')
            .option('-o, --output <path>', 'Output path for obfuscated code')
            .option('--compact <boolean>', 'Disable one line output code compacting', JavaScriptObfuscatorCLI.parseBoolean)
            .option('--debugProtection <boolean>', 'Disable browser Debug panel (can cause DevTools enabled browser freeze)', JavaScriptObfuscatorCLI.parseBoolean)
            .option('--debugProtectionInterval <boolean>', 'Disable browser Debug panel even after page was loaded (can cause DevTools enabled browser freeze)', JavaScriptObfuscatorCLI.parseBoolean)
            .option('--disableConsoleOutput <boolean>', 'Allow console.log, console.info, console.error and console.warn messages output into browser console', JavaScriptObfuscatorCLI.parseBoolean)
            .option('--encodeUnicodeLiterals <boolean>', 'All literals in Unicode array become encoded in Base64 (this option can slightly slow down your code speed)', JavaScriptObfuscatorCLI.parseBoolean)
            .option('--reservedNames <list>', 'Disable obfuscation of variable names, function names and names of function parameters that match the passed RegExp patterns (comma separated)', (val: string) => val.split(','))
            .option('--rotateUnicodeArray <boolean>', 'Disable rotation of unicode array values during obfuscation', JavaScriptObfuscatorCLI.parseBoolean)
            .option('--selfDefending <boolean>', 'Disables self-defending for obfuscated code', JavaScriptObfuscatorCLI.parseBoolean)
            .option('--sourceMap <boolean>', 'Enables source map generation', JavaScriptObfuscatorCLI.parseBoolean)
            .option(
                '--sourceMapMode <string> [inline, separate]',
                'Specify source map output mode',
                JavaScriptObfuscatorCLI.parseSourceMapMode
            )
            .option('--unicodeArray <boolean>', 'Disables gathering of all literal strings into an array and replacing every literal string with an array call', JavaScriptObfuscatorCLI.parseBoolean)
            .option('--unicodeArrayThreshold <number>', 'The probability that the literal string will be inserted into unicodeArray (Default: 0.8, Min: 0, Max: 1)', parseFloat)
            .option('--wrapUnicodeArrayCalls <boolean>', 'Disables usage of special access function instead of direct array call', JavaScriptObfuscatorCLI.parseBoolean)
            .parse(this.rawArguments);
 
        this.commands.on('--help', () => {
            console.log('  Examples:\n');
            console.log('    %> javascript-obfuscator in.js --compact true --selfDefending false');
            console.log('    %> javascript-obfuscator in.js --output out.js --compact true --selfDefending false');
            console.log('');
        });
    }
 
    private getData (): void {
        this.data = CLIUtils.readFile(this.inputPath);
    }
 
    private processData (): void {
        let options: IObfuscatorOptions = this.buildOptions(),
            outputCodePath: string = CLIUtils.getOutputCodePath(this.commands, this.inputPath);
 
        Iif (options.sourceMap) {
            this.processDataWithSourceMap(outputCodePath, options);
        } else {
            this.processDataWithoutSourceMap(outputCodePath, options);
        }
    }
 
    /**
     * @param outputCodePath
     * @param options
     */
    private processDataWithoutSourceMap (outputCodePath: string, options: IObfuscatorOptions): void {
        let obfuscatedCode: string = JavaScriptObfuscator.obfuscate(this.data, options).getObfuscatedCode();
 
        CLIUtils.writeFile(outputCodePath, obfuscatedCode);
    }
 
    /**
     * @param outputCodePath
     * @param options
     */
    private processDataWithSourceMap (outputCodePath: string, options: IObfuscatorOptions): void {
        let javaScriptObfuscator: JavaScriptObfuscatorInternal = new JavaScriptObfuscatorInternal(this.data, options),
            obfuscationResult: IObfuscationResult,
            outputSourceMapPath: string = CLIUtils.getOutputSourceMapPath(outputCodePath);
 
        javaScriptObfuscator.obfuscate();
 
        if (options.sourceMapMode === SourceMapMode.Separate) {
            javaScriptObfuscator.setSourceMapUrl(
                path.basename(outputSourceMapPath)
            );
        }
 
        obfuscationResult = javaScriptObfuscator.getObfuscationResult();
 
        CLIUtils.writeFile(outputCodePath, obfuscationResult.getObfuscatedCode());
 
        if (obfuscationResult.getSourceMap()) {
            CLIUtils.writeFile(outputSourceMapPath, obfuscationResult.getSourceMap());
        }
    }
}