Browse Source

JS compress funcs, remove comments

Volodymyr Tkach 2 years ago
parent
commit
83566e3212
2 changed files with 18 additions and 1 deletions
  1. 6 0
      utils/http/helpers/helpers.go
  2. 12 1
      utils/http/helpers/helpers_test.go

+ 6 - 0
utils/http/helpers/helpers.go

@@ -36,9 +36,12 @@ var mHtmlLeft = regexp.MustCompile(`>[\n\t\r]+`)
 var mHtmlRight = regexp.MustCompile(`[\n\t\r]+<`)
 
 var mScript = regexp.MustCompile(`<script>([^<]*)</script>`)
+var mScriptCommentsInline = regexp.MustCompile(`//.*\n`)
+var mScriptCommentsMultiline = regexp.MustCompile(`/\*[^*]*\*/`)
 var mScriptLine = regexp.MustCompile(`[\n\t\r]+`)
 var mScriptEqual = regexp.MustCompile(`[\n\t\r\s]+=[\n\t\r\s]+`)
 var mScriptDots = regexp.MustCompile(`:[\n\t\r\s]+"`)
+var mScriptFuncs = regexp.MustCompile(`\)[\n\t\r\s]+{`)
 
 func ClientIP(r *http.Request) string {
 	ips := ClientIPs(r)
@@ -146,9 +149,12 @@ func HandleTextXml(data string) http.Handler {
 func MinifyHtmlCode(str string) string {
 	str = mScript.ReplaceAllStringFunc(str, func(m string) string {
 		s := strings.TrimSuffix(strings.TrimPrefix(m, "<script>"), "</script>")
+		s = mScriptCommentsInline.ReplaceAllString(s, "")
+		s = mScriptCommentsMultiline.ReplaceAllString(s, "")
 		s = mScriptLine.ReplaceAllString(s, "")
 		s = mScriptEqual.ReplaceAllString(s, "=")
 		s = mScriptDots.ReplaceAllString(s, ":\"")
+		s = mScriptFuncs.ReplaceAllString(s, "){")
 		return `<script>` + s + `</script>`
 	})
 	str = mHtml.ReplaceAllString(str, "><")

+ 12 - 1
utils/http/helpers/helpers_test.go

@@ -378,17 +378,28 @@ var _ = Describe("helpers", func() {
 					<head>
 						<meta charset="utf-8" />
 						<script>
+							// Comment
 							var LangTexts = {
 								"empty": "Empty",
 								"full": "Full"
 							};
+
+							/* Comment */
+
+							/*
+								Comment line 1
+								Comment line 2
+							*/
+							function Func(value) {
+								console.log(value);
+							};
 						</script>
 					</head>
 					<body>
 						Index
 					</body>
 				</html>
-			`)).To(Equal(`<!doctype html><html lang="uk"><head><meta charset="utf-8" /><script>var LangTexts={"empty":"Empty","full":"Full"};</script></head><body>Index</body></html>`))
+			`)).To(Equal(`<!doctype html><html lang="uk"><head><meta charset="utf-8" /><script>var LangTexts={"empty":"Empty","full":"Full"};function Func(value){console.log(value);};</script></head><body>Index</body></html>`))
 
 			Expect(helpers.MinifyHtmlCode(`
 				<div>