更新Safari应用程序扩展内容阻止程序列表



从Safari应用扩展程序创建本机内容阻滞剂时,插件加载后如何更新静态JSON列表?

我现在看到的唯一方法是部署该应用的全新版本,该版本不会自动为用户更新。

是否可以从另一个URL更新json块列表文件的内容封锁程序,而不必通过Apple Store更新Safari应用程序?

您可以更新JSON BlockList

步骤1:

创建用于内容阻止规则的新JSON

步骤2:将JSON文件保存在共享容器中

fileprivate func saveRuleFile(ruleList:[Rule]) {
        let encoder = JSONEncoder()
        if let encoded = try? encoder.encode(ruleList) {
            let sharedContainerURL = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: "group.xxx.xxxx.xxx")
            print("sharedContainerURL = (String(describing: sharedContainerURL))")
            if let json = String(data: encoded, encoding: .utf8) {
                print(json)
            }
            if let destinationURL = sharedContainerURL?.appendingPathComponent("Rules.json") {
                do {
                    try  encoded.write(to: destinationURL)
                } catch {
                    print (error)
                }
            }
        }
    }

步骤3:调用此方法要求内容阻止程序重新加载规则

SFContentBlockerManager.reloadContentBlocker(withIdentifier:"com.xxxx.xxx.xxxx", completionHandler: nil)

步骤:4 从共享容器中读取JSON规则文件,然后将规则传递给内容Blocker Extension

func beginRequest(with context: NSExtensionContext) {
        let sharedContainerURL = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: "group.xxx.xxx.xxx")
        let sourceURL = sharedContainerURL?.appendingPathComponent("Rules.json")
        let ruleAttachment = NSItemProvider(contentsOf: sourceURL)
        let item = NSExtensionItem()
        item.attachments = ([ruleAttachment] as! [NSItemProvider])
        context.completeRequest(returningItems: [item], completionHandler: nil)
    }

相关内容

  • 没有找到相关文章

最新更新