如何在WKWebView中捕获通知?



我正在 Swift 4 中开发 macOS 桌面应用程序。
它有一个WKWebView,可以加载一个发送通知的网页。
默认情况下不显示任何通知,也没有权限请求。

我需要一种方法来显示通知并拦截它们,以便我可以显示计数器。

知道如何实现这一目标吗?

我面临着同样的挑战,并通过注入一个脚本(WKUserScript)来解决它,该脚本使用自定义实现覆盖Web通知API,该实现利用WKUserContentController将消息发送到最终发布最终通知的本机应用程序代码。

设置WKWebView

据我所知,以编程方式创建WKWebView对于使用自定义WKWebViewConfiguration是必要的。创建一个新的 macOS 应用程序项目,我在ViewController函数中扩展了我的viewDidLoad,如下所示:

override func viewDidLoad() {
super.viewDidLoad()
let userScriptURL = Bundle.main.url(forResource: "UserScript", withExtension: "js")!
let userScriptCode = try! String(contentsOf: userScriptURL)
let userScript = WKUserScript(source: userScriptCode, injectionTime: .atDocumentStart, forMainFrameOnly: false)
let configuration = WKWebViewConfiguration()
configuration.userContentController.addUserScript(userScript)
configuration.userContentController.add(self, name: "notify")
let documentURL = Bundle.main.url(forResource: "Document", withExtension: "html")!
let webView = WKWebView(frame: view.frame, configuration: configuration)
webView.loadFileURL(documentURL, allowingReadAccessTo: documentURL)
view.addSubview(webView)
}

首先,我从应用程序包加载用户脚本,并将其添加到用户内容控制器。我还添加了一个名为notify的消息处理程序,它可用于从 JavaScript 上下文回电到本机代码。最后,我从应用程序包中加载一个示例 HTML 文档,并使用窗口中可用的整个区域呈现 Web 视图。

覆盖通知 API

这是注入的用户脚本和 Web 通知 API 的部分覆盖。在此通用问题范围内处理典型的通知权限请求过程和通知发布就足够了。

/**
* Incomplete Notification API override to enable native notifications.
*/
class NotificationOverride {
// Grant permission by default to keep this example simple.
// Safari 13 does not support class fields yet, so a static getter must be used.
static get permission() {
return "granted";
}
// Safari 13 still uses callbacks instead of promises.
static requestPermission (callback) {
callback("granted");
}
// Forward the notification text to the native app through the script message handler.
constructor (messageText) {
window.webkit.messageHandlers.notify.postMessage(messageText);
}
}
// Override the global browser notification object.
window.Notification = NotificationOverride;

每次在 JavaScript 上下文中创建新通知时,都会调用用户内容控制器消息处理程序。

处理脚本消息

ViewController(或其他任何应该处理脚本消息的内容)需要符合WKScriptMessageHandler并实现以下函数来处理调用:

func userContentController(_ userContentController: WKUserContentController, didReceive message: WKScriptMessage) {
let content = UNMutableNotificationContent()
content.title = "WKWebView Notification Example"
content.body = message.body as! String
let uuidString = UUID().uuidString
let request = UNNotificationRequest(identifier: uuidString, content: content, trigger: nil)
let notificationCenter = UNUserNotificationCenter.current()
notificationCenter.add(request) { (error) in
if error != nil {
NSLog(error.debugDescription)
}
}
}

整个实现是关于在 macOS 中创建本地本机通知。但是,如果没有额外的努力,它还没有工作。

应用委托调整

在允许 macOS 应用发布通知之前,它必须请求执行此操作的权限,例如网站。

func applicationDidFinishLaunching(_ aNotification: Notification) {
UNUserNotificationCenter.current().requestAuthorization(options: [.alert]) { (granted, error) in
// Enable or disable features based on authorization.
}
}

如果应在应用处于前台时显示通知,则必须进一步扩展应用委托以符合UNUserNotificationCenterDelegate和实现:

func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
completionHandler(UNNotificationPresentationOptions.alert)
}

这需要applicationDidFinishLaunching(_:)中的委托分配:

UNUserNotificationCenter.current().delegate = self

UNNotificationPresentationOptions可能会根据您的要求而有所不同。

参考

我在 GitHub 上创建了一个示例项目,该项目渲染了整个图片。

相关内容

  • 没有找到相关文章

最新更新