|
@@ -0,0 +1,81 @@
|
|
|
+import { inject, injectable, } from 'inversify';
|
|
|
+import { ServiceIdentifiers } from '../../container/ServiceIdentifiers';
|
|
|
+import * as ESTree from 'estree';
|
|
|
+import { TIdentifierObfuscatingReplacerFactory } from '../../types/container/node-transformers/TIdentifierObfuscatingReplacerFactory';
|
|
|
+import { IIdentifierObfuscatingReplacer } from '../../interfaces/node-transformers/obfuscating-transformers/obfuscating-replacers/IIdentifierObfuscatingReplacer';
|
|
|
+import { IOptions } from '../../interfaces/options/IOptions';
|
|
|
+import { IRandomGenerator } from '../../interfaces/utils/IRandomGenerator';
|
|
|
+import { IVisitor } from '../../interfaces/node-transformers/IVisitor';
|
|
|
+import { IdentifierObfuscatingReplacer } from "../../enums/node-transformers/obfuscating-transformers/obfuscating-replacers/IdentifierObfuscatingReplacer";
|
|
|
+import { TransformationStage } from '../../enums/node-transformers/TransformationStage';
|
|
|
+import { AbstractNodeTransformer } from '../AbstractNodeTransformer';
|
|
|
+import { NodeGuards } from '../../node/NodeGuards';
|
|
|
+
|
|
|
+/**
|
|
|
+ * Preserve non-replaceable variables
|
|
|
+ */
|
|
|
+@injectable()
|
|
|
+export class VariablePreserveTransformer extends AbstractNodeTransformer {
|
|
|
+ /**
|
|
|
+ * @type {IIdentifierObfuscatingReplacer}
|
|
|
+ */
|
|
|
+ private readonly identifierObfuscatingReplacer: IIdentifierObfuscatingReplacer;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param {TIdentifierObfuscatingReplacerFactory} identifierObfuscatingReplacerFactory
|
|
|
+ * @param {IRandomGenerator} randomGenerator
|
|
|
+ * @param {IOptions} options
|
|
|
+ */
|
|
|
+ constructor (
|
|
|
+ @inject(ServiceIdentifiers.Factory__IIdentifierObfuscatingReplacer)
|
|
|
+ identifierObfuscatingReplacerFactory: TIdentifierObfuscatingReplacerFactory,
|
|
|
+ @inject(ServiceIdentifiers.IRandomGenerator) randomGenerator: IRandomGenerator,
|
|
|
+ @inject(ServiceIdentifiers.IOptions) options: IOptions
|
|
|
+ ) {
|
|
|
+ super(randomGenerator, options);
|
|
|
+
|
|
|
+ this.identifierObfuscatingReplacer = identifierObfuscatingReplacerFactory(
|
|
|
+ IdentifierObfuscatingReplacer.BaseIdentifierObfuscatingReplacer
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param {TransformationStage} transformationStage
|
|
|
+ * @returns {IVisitor | null}
|
|
|
+ */
|
|
|
+ public getVisitor (transformationStage: TransformationStage): IVisitor | null {
|
|
|
+ switch (transformationStage) {
|
|
|
+ case TransformationStage.Preparing:
|
|
|
+ return {
|
|
|
+ enter: (node: ESTree.Node, parentNode: ESTree.Node | null) => {
|
|
|
+ if (parentNode &&
|
|
|
+ NodeGuards.isIdentifierNode(node) &&
|
|
|
+ (
|
|
|
+ NodeGuards.parentNodeIsPropertyNode(node, parentNode) ||
|
|
|
+ NodeGuards.parentNodeIsMemberExpressionNode(node, parentNode) ||
|
|
|
+ NodeGuards.parentNodeIsMethodDefinitionNode(node, parentNode) ||
|
|
|
+ NodeGuards.isLabelIdentifierNode(node, parentNode)
|
|
|
+ )
|
|
|
+ ) {
|
|
|
+ return this.transformNode(node, parentNode);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
+ default:
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param {Identifier} node
|
|
|
+ * @param {NodeGuards} parentNode
|
|
|
+ * @returns {NodeGuards}
|
|
|
+ */
|
|
|
+ public transformNode (node: ESTree.Identifier, parentNode: ESTree.Node): ESTree.Node {
|
|
|
+ this.identifierObfuscatingReplacer.preserveName(node.name);
|
|
|
+
|
|
|
+ return node;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|