2021-04-25 06:48:29 +02:00
|
|
|
//
|
|
|
|
// NotificationService.swift
|
|
|
|
// Mastodon
|
|
|
|
//
|
|
|
|
// Created by MainasuK Cirno on 2021-4-22.
|
|
|
|
//
|
|
|
|
|
|
|
|
import os.log
|
|
|
|
import UIKit
|
|
|
|
import Combine
|
|
|
|
import CoreData
|
|
|
|
import CoreDataStack
|
|
|
|
import MastodonSDK
|
2021-04-27 10:26:59 +02:00
|
|
|
import AppShared
|
2021-04-25 06:48:29 +02:00
|
|
|
|
|
|
|
final class NotificationService {
|
|
|
|
|
|
|
|
var disposeBag = Set<AnyCancellable>()
|
|
|
|
|
2021-06-11 22:37:54 +02:00
|
|
|
let workingQueue = DispatchQueue(label: "org.joinmastodon.app.NotificationService.working-queue")
|
2021-04-25 06:48:29 +02:00
|
|
|
|
|
|
|
// input
|
2021-04-27 11:27:03 +02:00
|
|
|
weak var apiService: APIService?
|
2021-04-25 06:48:29 +02:00
|
|
|
weak var authenticationService: AuthenticationService?
|
|
|
|
let isNotificationPermissionGranted = CurrentValueSubject<Bool, Never>(false)
|
|
|
|
let deviceToken = CurrentValueSubject<Data?, Never>(nil)
|
2021-04-26 10:57:50 +02:00
|
|
|
|
2021-04-25 06:48:29 +02:00
|
|
|
// output
|
|
|
|
/// [Token: UserID]
|
2021-04-26 10:57:50 +02:00
|
|
|
let notificationSubscriptionDict: [String: NotificationViewModel] = [:]
|
2021-04-27 11:27:03 +02:00
|
|
|
let hasUnreadPushNotification = CurrentValueSubject<Bool, Never>(false)
|
2021-04-27 11:45:11 +02:00
|
|
|
let requestRevealNotificationPublisher = PassthroughSubject<Mastodon.Entity.Notification.ID, Never>()
|
2021-04-25 06:48:29 +02:00
|
|
|
|
|
|
|
init(
|
2021-04-27 11:27:03 +02:00
|
|
|
apiService: APIService,
|
2021-04-25 06:48:29 +02:00
|
|
|
authenticationService: AuthenticationService
|
|
|
|
) {
|
2021-04-27 11:27:03 +02:00
|
|
|
self.apiService = apiService
|
2021-04-25 06:48:29 +02:00
|
|
|
self.authenticationService = authenticationService
|
|
|
|
|
2021-04-27 10:26:59 +02:00
|
|
|
authenticationService.mastodonAuthentications
|
|
|
|
.sink(receiveValue: { [weak self] mastodonAuthentications in
|
|
|
|
guard let self = self else { return }
|
|
|
|
|
|
|
|
// request permission when sign-in
|
|
|
|
guard !mastodonAuthentications.isEmpty else { return }
|
|
|
|
self.requestNotificationPermission()
|
|
|
|
})
|
|
|
|
.store(in: &disposeBag)
|
|
|
|
|
2021-04-25 06:48:29 +02:00
|
|
|
deviceToken
|
|
|
|
.receive(on: DispatchQueue.main)
|
|
|
|
.sink { [weak self] deviceToken in
|
2021-04-26 10:57:50 +02:00
|
|
|
guard let _ = self else { return }
|
2021-04-25 06:48:29 +02:00
|
|
|
guard let deviceToken = deviceToken else { return }
|
|
|
|
let token = [UInt8](deviceToken).toHexString()
|
2021-06-18 12:57:02 +02:00
|
|
|
os_log(.info, log: .api, "%{public}s[%{public}ld], %{public}s: deviceToken: %s", ((#file as NSString).lastPathComponent), #line, #function, token)
|
2021-04-25 06:48:29 +02:00
|
|
|
}
|
|
|
|
.store(in: &disposeBag)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
extension NotificationService {
|
|
|
|
private func requestNotificationPermission() {
|
|
|
|
let center = UNUserNotificationCenter.current()
|
|
|
|
center.requestAuthorization(options: [.alert, .sound, .badge]) { [weak self] granted, error in
|
|
|
|
guard let self = self else { return }
|
|
|
|
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: request notification permission: %s", ((#file as NSString).lastPathComponent), #line, #function, granted ? "granted" : "fail")
|
|
|
|
|
|
|
|
self.isNotificationPermissionGranted.value = granted
|
|
|
|
|
|
|
|
if let _ = error {
|
|
|
|
// Handle the error here.
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enable or disable features based on the authorization.
|
|
|
|
}
|
|
|
|
}
|
2021-04-26 10:57:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
extension NotificationService {
|
2021-04-25 06:48:29 +02:00
|
|
|
|
2021-04-26 10:57:50 +02:00
|
|
|
func dequeueNotificationViewModel(
|
2021-07-20 10:40:04 +02:00
|
|
|
mastodonAuthenticationBox: MastodonAuthenticationBox
|
2021-04-26 10:57:50 +02:00
|
|
|
) -> NotificationViewModel? {
|
|
|
|
var _notificationSubscription: NotificationViewModel?
|
2021-04-25 06:48:29 +02:00
|
|
|
workingQueue.sync {
|
|
|
|
let domain = mastodonAuthenticationBox.domain
|
|
|
|
let userID = mastodonAuthenticationBox.userID
|
|
|
|
let key = [domain, userID].joined(separator: "@")
|
|
|
|
|
|
|
|
if let notificationSubscription = notificationSubscriptionDict[key] {
|
|
|
|
_notificationSubscription = notificationSubscription
|
|
|
|
} else {
|
2021-04-26 10:57:50 +02:00
|
|
|
let notificationSubscription = NotificationViewModel(domain: domain, userID: userID)
|
2021-04-25 06:48:29 +02:00
|
|
|
_notificationSubscription = notificationSubscription
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return _notificationSubscription
|
|
|
|
}
|
2021-04-27 11:27:03 +02:00
|
|
|
|
2021-04-27 12:05:29 +02:00
|
|
|
func handle(mastodonPushNotification: MastodonPushNotification) {
|
2021-04-27 11:27:03 +02:00
|
|
|
hasUnreadPushNotification.value = true
|
2021-04-27 12:05:29 +02:00
|
|
|
|
|
|
|
// Subscription maybe failed to cancel when sign-out
|
|
|
|
// Try cancel again if receive that kind push notification
|
|
|
|
guard let managedObjectContext = authenticationService?.managedObjectContext else { return }
|
|
|
|
guard let apiService = apiService else { return }
|
|
|
|
|
|
|
|
managedObjectContext.perform {
|
|
|
|
let subscriptionRequest = NotificationSubscription.sortedFetchRequest
|
|
|
|
subscriptionRequest.predicate = NotificationSubscription.predicate(userToken: mastodonPushNotification.accessToken)
|
|
|
|
let subscriptions = managedObjectContext.safeFetch(subscriptionRequest)
|
|
|
|
|
|
|
|
// note: assert setting remove after cancel subscription
|
|
|
|
guard let subscription = subscriptions.first else { return }
|
|
|
|
guard let setting = subscription.setting else { return }
|
|
|
|
let domain = setting.domain
|
|
|
|
let userID = setting.userID
|
|
|
|
|
|
|
|
let authenticationRequest = MastodonAuthentication.sortedFetchRequest
|
|
|
|
authenticationRequest.predicate = MastodonAuthentication.predicate(domain: domain, userID: userID)
|
|
|
|
let authentication = managedObjectContext.safeFetch(authenticationRequest).first
|
|
|
|
|
|
|
|
guard authentication == nil else {
|
|
|
|
// do nothing if still sign-in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// cancel subscription if sign-out
|
|
|
|
let accessToken = mastodonPushNotification.accessToken
|
2021-07-20 10:40:04 +02:00
|
|
|
let mastodonAuthenticationBox = MastodonAuthenticationBox(
|
2021-04-27 12:05:29 +02:00
|
|
|
domain: domain,
|
|
|
|
userID: userID,
|
|
|
|
appAuthorization: .init(accessToken: accessToken),
|
|
|
|
userAuthorization: .init(accessToken: accessToken)
|
|
|
|
)
|
|
|
|
apiService
|
|
|
|
.cancelSubscription(mastodonAuthenticationBox: mastodonAuthenticationBox)
|
|
|
|
.sink { completion in
|
|
|
|
switch completion {
|
|
|
|
case .failure(let error):
|
|
|
|
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: [Push Notification] failed to cancel sign-out user subscription: %s", ((#file as NSString).lastPathComponent), #line, #function, error.localizedDescription)
|
|
|
|
case .finished:
|
|
|
|
os_log(.info, log: .debug, "%{public}s[%{public}ld], %{public}s: [Push Notification] cancel sign-out user subscription", ((#file as NSString).lastPathComponent), #line, #function)
|
|
|
|
}
|
|
|
|
} receiveValue: { _ in
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
.store(in: &self.disposeBag)
|
|
|
|
}
|
2021-04-27 11:27:03 +02:00
|
|
|
}
|
|
|
|
|
2021-04-25 06:48:29 +02:00
|
|
|
}
|
|
|
|
|
2021-04-27 11:27:03 +02:00
|
|
|
// MARK: - NotificationViewModel
|
|
|
|
|
2021-04-25 06:48:29 +02:00
|
|
|
extension NotificationService {
|
2021-04-26 10:57:50 +02:00
|
|
|
final class NotificationViewModel {
|
2021-04-25 06:48:29 +02:00
|
|
|
|
|
|
|
var disposeBag = Set<AnyCancellable>()
|
|
|
|
|
|
|
|
// input
|
|
|
|
let domain: String
|
|
|
|
let userID: Mastodon.Entity.Account.ID
|
|
|
|
|
2021-04-26 10:57:50 +02:00
|
|
|
// output
|
2021-04-25 06:48:29 +02:00
|
|
|
|
|
|
|
init(domain: String, userID: Mastodon.Entity.Account.ID) {
|
|
|
|
self.domain = domain
|
|
|
|
self.userID = userID
|
|
|
|
}
|
2021-04-26 10:57:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension NotificationService.NotificationViewModel {
|
|
|
|
func createSubscribeQuery(
|
|
|
|
deviceToken: Data,
|
|
|
|
queryData: Mastodon.API.Subscriptions.QueryData,
|
2021-07-20 10:40:04 +02:00
|
|
|
mastodonAuthenticationBox: MastodonAuthenticationBox
|
2021-04-26 10:57:50 +02:00
|
|
|
) -> Mastodon.API.Subscriptions.CreateSubscriptionQuery {
|
|
|
|
let deviceToken = [UInt8](deviceToken).toHexString()
|
2021-04-25 06:48:29 +02:00
|
|
|
|
2021-04-26 10:57:50 +02:00
|
|
|
let appSecret = AppSecret.default
|
|
|
|
let endpoint = appSecret.notificationEndpoint + "/" + deviceToken
|
2021-04-27 10:26:59 +02:00
|
|
|
let p256dh = appSecret.notificationPublicKey.x963Representation
|
2021-04-26 10:57:50 +02:00
|
|
|
let auth = appSecret.notificationAuth
|
|
|
|
|
|
|
|
let query = Mastodon.API.Subscriptions.CreateSubscriptionQuery(
|
|
|
|
subscription: Mastodon.API.Subscriptions.QuerySubscription(
|
|
|
|
endpoint: endpoint,
|
|
|
|
keys: Mastodon.API.Subscriptions.QuerySubscription.Keys(
|
|
|
|
p256dh: p256dh,
|
|
|
|
auth: auth
|
|
|
|
)
|
|
|
|
),
|
|
|
|
data: queryData
|
|
|
|
)
|
|
|
|
|
|
|
|
return query
|
2021-04-25 06:48:29 +02:00
|
|
|
}
|
2021-04-27 11:27:03 +02:00
|
|
|
|
2021-04-25 06:48:29 +02:00
|
|
|
}
|