-
Notifications
You must be signed in to change notification settings - Fork 3
/
MinifyJavascript.php
183 lines (151 loc) · 5.23 KB
/
MinifyJavascript.php
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
<?php
namespace DzId\LaravelHtmlMinifier\Middleware;
class MinifyJavascript extends Minifier
{
protected static $allowInsertSemicolon;
protected function apply()
{
static::$minifyJavascriptHasBeenUsed = true;
$obfuscate = (bool) config("laravel-html-minifier.obfuscate_javascript", false);
static::$allowInsertSemicolon = (bool) config("laravel-html-minifier.js_automatic_insert_semicolon", true);
foreach ($this->getByTag("script") as $el)
{
$value = $this->replace($el->nodeValue);
/* Apakah fungsi obfuscate diaktifkan? */
if ($obfuscate)
{
$value = $this->obfuscate($value);
}
$el->nodeValue = "";
$el->appendChild(static::$dom->createTextNode($value));
}
return static::$dom->saveHtml();
}
protected function insertSemicolon($value)
{
/**
* menghapus semua komentar
*/
$value = preg_replace('/(?:(?:\/\*(?:[^*]|(?:\*+[^*\/]))*\*+\/)|(?:(?<!\:|\\\|\'|\")\/\/.*))/', '', $value);
/**
* Menghapus baris baru string yang didalam tanda kutip (`)
* supaya tidak ada kesalahan saat penambahan semicolon
*
* dari :
* `
* example...
* example...
* `
*
* ke :
* `example... example...`
*
*/
$value = preg_replace_callback('/(`[\S\s]*?[^\\\`]`)/', function($m) {
return preg_replace('/\n+/', '', $m[1]);
}, $value);
$result = [];
$code = explode("\n", trim($value));
$patternRegex = [
// temukan string yang diakhiri dengan {, [, (, ,, ;, =>, :, ?, .
'#(?:({|\[|\(|,|;|=>|\:|\?|\.))$#',
// temukan blank spasi
'#^\s*$#',
// temukan string pertama dan terakhir do, else
'#^(do|else)$#'
];
$loop = 0;
foreach ($code as $line)
{
$loop++;
$insert = false;
$shouldInsert = true;
foreach ($patternRegex as $pattern)
{
// jika pattern tidak cocok artinya boleh ditambahkan semicolon
$match = preg_match($pattern, trim($line));
$shouldInsert = $shouldInsert && (bool) !$match;
}
if ($shouldInsert)
{
$i = $loop;
while (true)
{
if ($i >= count($code))
{
$insert = true;
break;
}
$c = trim($code[$i]);
$i++;
if (!$c)
{
continue;
}
$insert = true;
$regex = ['#^(\?|\:|,|\.|{|}|\)|\])#'];
foreach ($regex as $r)
{
$insert = $insert && (bool) !preg_match($r, $c);
}
if ($insert)
{
if (preg_match("#(?:\\})$#", trim($line)) && preg_match("#^(else|elseif|else\s*if|catch)#", $c))
{
$insert = false;
}
}
break;
}
}
if ($insert)
{
$result[] = sprintf("%s;", $line);
}
else
{
$result[] = $line;
}
}
return join("\n", $result);
}
protected function replace($value)
{
if (static::$allowInsertSemicolon)
{
$value = $this->insertSemicolon($value);
}
return trim(preg_replace([
'#\s*("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')\s*|\s*\/\*(?!\!|@cc_on)(?>[\s\S]*?\*\/)\s*|\s*(?<![\:\=])\/\/.*(?=[\n\r]|$)|^\s*|\s*$#',
// Remove white-space(s) outside the string and regex
'#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/)|\/(?!\/)[^\n\r]*?\/(?=[\s.,;]|[gimuy]|$))|\s*([!%&*\(\)\-=+\[\]\{\}|;:,.<>?\/])\s*#s',
// Remove the last semicolon
'#;+\}#',
// Minify object attribute(s) except JSON attribute(s). From `{'foo':'bar'}` to `{foo:'bar'}`
'#([\{,])([\'])(\d+|[a-z_][a-z0-9_]*)\2(?=\:)#i',
// --ibid. From `foo['bar']` to `foo.bar`
'#([a-z0-9_\)\]])\[([\'"])([a-z_][a-z0-9_]*)\2\]#i'
],[
'$1',
'$1$2',
'}',
'$1$3',
'$1.$3'
], $value));
}
protected function obfuscate($value)
{
$ords = [];
for ($i = 0; $i < strlen($value); $i++)
{
$ords[] = ord($value[$i]);
}
$template = sprintf("
eval(((_, __, ___, ____, _____, ______, _______) => {
______[___](x => _______[__](String[____](x)));
return _______[_](_____)
})('join', 'push', 'forEach', 'fromCharCode', '', %s, []))
", json_encode($ords));
return $this->replace($template);
}
}