mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-24 16:10:41 +01:00
53 lines
1.5 KiB
Swift
53 lines
1.5 KiB
Swift
|
//
|
||
|
// CloudKitRemoteNotificationOperation.swift
|
||
|
// Account
|
||
|
//
|
||
|
// Created by Maurice Parker on 5/2/20.
|
||
|
// Copyright © 2020 Ranchero Software, LLC. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
import os.log
|
||
|
import RSCore
|
||
|
|
||
|
class CloudKitRemoteNotificationOperation: MainThreadOperation {
|
||
|
|
||
|
private var log = OSLog(subsystem: Bundle.main.bundleIdentifier!, category: "CloudKit")
|
||
|
|
||
|
// MainThreadOperation
|
||
|
public var isCanceled = false
|
||
|
public var id: Int?
|
||
|
public weak var operationDelegate: MainThreadOperationDelegate?
|
||
|
public var name: String? = "CloudKitRemoteNotificationOperation"
|
||
|
public var completionBlock: MainThreadOperation.MainThreadOperationCompletionBlock?
|
||
|
|
||
|
private weak var accountZone: CloudKitAccountZone?
|
||
|
private weak var articlesZone: CloudKitArticlesZone?
|
||
|
private var userInfo: [AnyHashable : Any]
|
||
|
|
||
|
init(accountZone: CloudKitAccountZone, articlesZone: CloudKitArticlesZone, userInfo: [AnyHashable : Any]) {
|
||
|
self.accountZone = accountZone
|
||
|
self.articlesZone = articlesZone
|
||
|
self.userInfo = userInfo
|
||
|
}
|
||
|
|
||
|
func run() {
|
||
|
guard let accountZone = accountZone, let articlesZone = articlesZone else {
|
||
|
self.operationDelegate?.operationDidComplete(self)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
os_log(.debug, log: log, "Processing remote notification...")
|
||
|
|
||
|
accountZone.receiveRemoteNotification(userInfo: userInfo) {
|
||
|
articlesZone.receiveRemoteNotification(userInfo: self.userInfo) {
|
||
|
os_log(.debug, log: self.log, "Done processing remote notification.")
|
||
|
self.operationDelegate?.operationDidComplete(self)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|