forked from javascript-obfuscator/javascript-obfuscator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathObfuscatedCode.ts
More file actions
102 lines (83 loc) · 2.53 KB
/
ObfuscatedCode.ts
File metadata and controls
102 lines (83 loc) · 2.53 KB
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
import { inject, injectable } from 'inversify';
import { ServiceIdentifiers } from '../container/ServiceIdentifiers';
import { ICryptUtils } from '../interfaces/utils/ICryptUtils';
import { IObfuscatedCode } from '../interfaces/source-code/IObfuscatedCode';
import { initializable } from '../decorators/Initializable';
import { SourceMapMode } from '../enums/source-map/SourceMapMode';
import { IOptions } from '../interfaces/options/IOptions';
@injectable()
export class ObfuscatedCode implements IObfuscatedCode {
/**
* @type {ICryptUtils}
*/
private readonly cryptUtils: ICryptUtils;
/**
* @type {string}
*/
@initializable()
private obfuscatedCode!: string;
/**
* @type {IOptions}
*/
private readonly options: IOptions;
/**
* @type {string}
*/
@initializable()
private sourceMap!: string;
constructor (
@inject(ServiceIdentifiers.ICryptUtils) cryptUtils: ICryptUtils,
@inject(ServiceIdentifiers.IOptions) options: IOptions
) {
this.cryptUtils = cryptUtils;
this.options = options;
}
/**
* @param {string} obfuscatedCode
* @param {string} sourceMap
*/
public initialize (obfuscatedCode: string, sourceMap: string): void {
this.obfuscatedCode = obfuscatedCode;
this.sourceMap = sourceMap;
}
/**
* @returns {string}
*/
public getObfuscatedCode (): string {
return this.correctObfuscatedCode();
}
/**
* @returns {string}
*/
public getSourceMap (): string {
return this.sourceMap;
}
/**
* @returns {string}
*/
public toString (): string {
return this.obfuscatedCode;
}
/**
* @returns {string}
*/
private correctObfuscatedCode (): string {
if (!this.sourceMap) {
return this.obfuscatedCode;
}
const sourceMapUrl: string = this.options.sourceMapBaseUrl + this.options.sourceMapFileName;
let sourceMappingUrl: string = '//# sourceMappingURL=';
switch (this.options.sourceMapMode) {
case SourceMapMode.Inline:
sourceMappingUrl += `data:application/json;base64,${this.cryptUtils.btoa(this.sourceMap)}`;
break;
case SourceMapMode.Separate:
default:
if (!sourceMapUrl) {
return this.obfuscatedCode;
}
sourceMappingUrl += sourceMapUrl;
}
return `${this.obfuscatedCode}\n${sourceMappingUrl}`;
}
}