-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathJsLoader.swift
87 lines (81 loc) · 3.24 KB
/
JsLoader.swift
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
//
// JsLoader.swift
//
import Foundation
import WebKit
class JsLoader {
class func loadWKUserScript(
_ name: String,
_ context: [String: String] = [:],
_ injectionTime: WKUserScriptInjectionTime = .atDocumentStart
) -> WKUserScript {
let source = JsLoader.loadScriptContents(name, context)
return WKUserScript(
source: source,
injectionTime: injectionTime,
forMainFrameOnly: false
)
}
class func resolveIncludePath(_ includeFile: String, referencePath: String) -> String {
var resolvedPath = includeFile
if !includeFile.contains("/") {
let words = referencePath.split(separator: "/")
if words.count > 1 {
var slice = words[..<(words.count-1)].compactMap { substring in
String(substring)
}
slice.append(includeFile)
resolvedPath = slice.joined(separator: "/")
}
}
return resolvedPath
}
class func loadScriptContents(
_ scriptPath: String,
_ context: [String: String] = [:]
) -> String {
let scriptURL = Bundle.main.url(forResource: scriptPath, withExtension: "js")
var scriptContents = try! String(contentsOf: scriptURL!, encoding: String.Encoding.utf8)
for (key, value) in context {
let jsKey = "$__\(key.uppercased())__"
scriptContents = scriptContents.replacingOccurrences(of: jsKey, with: value)
}
scriptContents = scriptContents.replacingOccurrences(
of: "export function",
with: "function"
)
if scriptContents.contains("$LOG") {
scriptContents = scriptContents.replacingOccurrences(
of: "$LOG",
with: "window.webkit.messageHandlers.consoleLog.postMessage"
)
}
if scriptContents.contains("$INCLUDE") {
let regex = try? NSRegularExpression(pattern: "\\$INCLUDE\\(['\"]([^'\"]+)['\"]\\)", options: [])
var finalLines: [String] = []
let lines = scriptContents.components(separatedBy: "\n")
for line in lines {
var found = false
let nsRange = NSRange(line.startIndex..., in: line)
let matches = regex!.matches(in: line, range: nsRange)
for match in matches {
let firstMatchRange = match.range(at: 1)
let swiftRange = Range(firstMatchRange, in: line)
let includeFile = line[swiftRange!]
var includePath = resolveIncludePath(String(includeFile), referencePath: scriptPath)
includePath = includePath.replacingOccurrences(of: ".js", with: "")
let innerScript = loadScriptContents(includePath)
for innerScriptLine in innerScript.components(separatedBy: "\n") {
finalLines.append(innerScriptLine)
}
found = true
}
if !found {
finalLines.append(line)
}
}
scriptContents = finalLines.joined(separator: "\n")
}
return scriptContents
}
}