-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathScriptMessageHandler.swift
156 lines (141 loc) · 5.55 KB
/
ScriptMessageHandler.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
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
//
// ScriptMessageHandler.swift
//
import WebKit
class ScriptMessageHandler: NSObject, WKScriptMessageHandler {
var logging = Bool()
var viewController: ViewController!
var nameFns:[String:(WKScriptMessage) -> Void] {
return [
"consoleLog": ScriptMessageHandler.consoleLog,
"ctrlTab": ctrlTab,
"fetch": fetch,
"localStorageSetItem": localStorageSetItem,
"windowColorSchemeChange": windowColorSchemeChange,
"windowOpen": windowOpen,
"windowReload": windowReload,
]
}
func userContentController(
_ userContentController: WKUserContentController,
didReceive message: WKScriptMessage
) {
if let fn = nameFns[message.name] {
fn(message)
} else {
NSLog("unknown message: \(message)")
}
}
func windowOpen(_ message: WKScriptMessage) {
if let messageBody = message.body as? NSDictionary {
if let url = messageBody["0"] as? String {
AppDelegate.shared.openURL(url)
}
}
}
func windowReload(_ message: WKScriptMessage) {
viewController.webView.reload()
}
func windowColorSchemeChange(_ message: WKScriptMessage) {
if let messageBody = message.body as? NSDictionary {
if let colorScheme = messageBody["colorScheme"] as? String,
let darkMode = messageBody["darkMode"] as? Int,
let backgroundColor = messageBody["backgroundColor"] as? String
{
// NSLog("colorScheme: \(colorScheme), darkMode: \(darkMode), backgroundColor: \(backgroundColor)")
if darkMode == 1 {
viewController.updateTitleBar(.dark, backgroundColor: backgroundColor)
} else {
viewController.updateTitleBar(.light, backgroundColor: backgroundColor)
}
}
}
}
func handleFetchListNotifications(_ doc : NSDictionary) {
if let notificationsList = doc["notifications"] as? [NSDictionary] {
var mutedThreadUris: [String] = []
if notificationsList.count > 0 {
mutedThreadUris = AppDelegate.shared.getMutedThreadUris()
}
for notification in notificationsList {
if mutedThreadUris.count > 0,
let record = notification["record"] as? NSDictionary,
let recordReply = record["reply"] as? NSDictionary,
let recordReplyRoot = recordReply["root"] as? NSDictionary,
let recordReplyRootUri = recordReplyRoot["uri"] as? String,
mutedThreadUris.contains(recordReplyRootUri)
{
continue
}
if let isRead = notification["isRead"] as? Int,
let uri = notification["uri"] as? String
{
AppDelegate.shared.setNotificationReadStatus(uri: uri, isRead: isRead)
}
}
AppDelegate.shared.refreshBadge()
}
}
func handleFetchListConversations(_ doc : NSDictionary) {
if let convosList = doc["convos"] as? [NSDictionary] {
var mutedThreadUris: [String] = []
for convo in convosList {
if let convoId = convo["id"] as? String,
let convoUnreadCount = convo["unreadCount"] as? Int
{
AppDelegate.shared.setConvoUnreadCount(
id: convoId, unreadCount: convoUnreadCount
)
}
}
AppDelegate.shared.refreshBadge()
}
}
func fetch(_ message: WKScriptMessage) {
if let messageBody = message.body as? NSDictionary {
if let urlString = messageBody["url"] as? String,
let response = messageBody["response"] as? NSDictionary
{
if urlString.contains("listNotifications") {
handleFetchListNotifications(response)
}
if urlString.contains("listConvos") {
handleFetchListConversations(response)
}
}
}
}
class func consoleLog(_ message: WKScriptMessage) {
if let messageBody = message.body as? NSDictionary {
NSLog("console.log: \(messageBody)")
} else if let messageBody = message.body as? String {
NSLog("console.log: \(messageBody)")
} else if let messageBody = message.body as? [Any] {
NSLog("console.log: \(messageBody)")
} else {
NSLog("console.log [unknown type \(type(of:message.body))]: \(message.body)")
}
}
func ctrlTab(_ message: WKScriptMessage) {
if let messageBody = message.body as? NSDictionary {
if let direction = messageBody["direction"] as? Int {
if direction == 1 {
viewController.actionNextTab(Optional.none)
} else {
viewController.actionPrevTab(Optional.none)
}
}
}
}
func localStorageSetItem(_ message: WKScriptMessage) {
if let messageBody = message.body as? NSDictionary {
if let args = messageBody["args"] as? [String] {
if args.count == 2 {
let itemKey = args[0]
let jsonValue = args[1]
AppDelegate.shared.setLocalStorage(key: itemKey, jsonValue: jsonValue)
}
}
}
}
}