mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 20:29:53 +00:00
* core, ios: get messages for multiple last notifications (#5047) * ios: refactor notification service (#5086) * core, ios: separately get notification connections before requesting messages; coordinate nse threads (#5085)
283 lines
12 KiB
Swift
283 lines
12 KiB
Swift
//
|
|
// NtfManager.swift
|
|
// SimpleX
|
|
//
|
|
// Created by Evgeny Poberezkin on 08/02/2022.
|
|
// Copyright © 2022 SimpleX Chat. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import UserNotifications
|
|
import UIKit
|
|
import SimpleXChat
|
|
|
|
let ntfActionAcceptContact = "NTF_ACT_ACCEPT_CONTACT"
|
|
let ntfActionAcceptContactIncognito = "NTF_ACT_ACCEPT_CONTACT_INCOGNITO"
|
|
let ntfActionAcceptCall = "NTF_ACT_ACCEPT_CALL"
|
|
let ntfActionRejectCall = "NTF_ACT_REJECT_CALL"
|
|
|
|
private let ntfTimeInterval: TimeInterval = 1
|
|
|
|
enum NtfCallAction {
|
|
case accept
|
|
case reject
|
|
}
|
|
|
|
class NtfManager: NSObject, UNUserNotificationCenterDelegate, ObservableObject {
|
|
static let shared = NtfManager()
|
|
|
|
private var granted = false
|
|
private var prevNtfTime: Dictionary<ChatId, Date> = [:]
|
|
|
|
override init() {
|
|
super.init()
|
|
UNUserNotificationCenter.current().delegate = self
|
|
}
|
|
|
|
// Handle notification when app is in background
|
|
func userNotificationCenter(_ center: UNUserNotificationCenter,
|
|
didReceive response: UNNotificationResponse,
|
|
withCompletionHandler handler: () -> Void) {
|
|
logger.debug("NtfManager.userNotificationCenter: didReceive")
|
|
if appStateGroupDefault.get() == .active {
|
|
processNotificationResponse(response)
|
|
} else {
|
|
logger.debug("NtfManager.userNotificationCenter: remember response in model")
|
|
ChatModel.shared.notificationResponse = response
|
|
}
|
|
handler()
|
|
}
|
|
|
|
func processNotificationResponse(_ ntfResponse: UNNotificationResponse) {
|
|
let chatModel = ChatModel.shared
|
|
let content = ntfResponse.notification.request.content
|
|
let action = ntfResponse.actionIdentifier
|
|
logger.debug("NtfManager.processNotificationResponse: didReceive: action \(action), categoryIdentifier \(content.categoryIdentifier)")
|
|
if let userId = content.userInfo["userId"] as? Int64,
|
|
userId != chatModel.currentUser?.userId {
|
|
logger.debug("NtfManager.processNotificationResponse changeActiveUser")
|
|
changeActiveUser(userId, viewPwd: nil)
|
|
}
|
|
if content.categoryIdentifier == ntfCategoryContactRequest && (action == ntfActionAcceptContact || action == ntfActionAcceptContactIncognito),
|
|
let chatId = content.userInfo["chatId"] as? String {
|
|
let incognito = action == ntfActionAcceptContactIncognito
|
|
if case let .contactRequest(contactRequest) = chatModel.getChat(chatId)?.chatInfo {
|
|
Task { await acceptContactRequest(incognito: incognito, contactRequest: contactRequest) }
|
|
} else {
|
|
chatModel.ntfContactRequest = NTFContactRequest(incognito: incognito, chatId: chatId)
|
|
}
|
|
} else if let (chatId, ntfAction) = ntfCallAction(content, action) {
|
|
if let invitation = chatModel.callInvitations.removeValue(forKey: chatId) {
|
|
CallController.shared.callAction(invitation: invitation, action: ntfAction)
|
|
} else {
|
|
chatModel.ntfCallInvitationAction = (chatId, ntfAction)
|
|
}
|
|
} else {
|
|
if let chatId = content.targetContentIdentifier {
|
|
ItemsModel.shared.loadOpenChat(chatId)
|
|
}
|
|
}
|
|
}
|
|
|
|
private func ntfCallAction(_ content: UNNotificationContent, _ action: String) -> (ChatId, NtfCallAction)? {
|
|
if content.categoryIdentifier == ntfCategoryCallInvitation,
|
|
let chatId = content.userInfo["chatId"] as? String {
|
|
if action == ntfActionAcceptCall {
|
|
return (chatId, .accept)
|
|
} else if action == ntfActionRejectCall {
|
|
return (chatId, .reject)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Handle notification when the app is in foreground
|
|
func userNotificationCenter(_ center: UNUserNotificationCenter,
|
|
willPresent notification: UNNotification,
|
|
withCompletionHandler handler: (UNNotificationPresentationOptions) -> Void) {
|
|
logger.debug("NtfManager.userNotificationCenter: willPresent")
|
|
handler(presentationOptions(notification.request.content))
|
|
}
|
|
|
|
private func presentationOptions(_ content: UNNotificationContent) -> UNNotificationPresentationOptions {
|
|
let model = ChatModel.shared
|
|
if UIApplication.shared.applicationState == .active {
|
|
switch content.categoryIdentifier {
|
|
case ntfCategoryMessageReceived:
|
|
let recent = recentInTheSameChat(content)
|
|
let userId = content.userInfo["userId"] as? Int64
|
|
if let userId = userId, let user = model.getUser(userId), !user.showNotifications {
|
|
// ... inactive user with disabled notifications
|
|
return []
|
|
} else if model.chatId == nil {
|
|
// in the chat list...
|
|
if model.currentUser?.userId == userId {
|
|
// ... of the active user
|
|
return recent ? [] : [.sound, .list]
|
|
} else {
|
|
// ... of inactive user
|
|
return recent ? [.banner] : [.sound, .banner, .list]
|
|
}
|
|
} else if model.chatId == content.targetContentIdentifier {
|
|
// in the current chat
|
|
return recent ? [] : [.sound, .list]
|
|
} else {
|
|
// in another chat
|
|
return recent ? [.banner, .list] : [.sound, .banner, .list]
|
|
}
|
|
// this notification is deliverd from the notifications server
|
|
// when the app is in foreground it does not need to be shown
|
|
case ntfCategoryCheckMessage: return []
|
|
case ntfCategoryCallInvitation: return []
|
|
default: return [.sound, .banner, .list]
|
|
}
|
|
} else {
|
|
return content.categoryIdentifier == ntfCategoryCheckMessage ? [] : [.sound, .banner, .list]
|
|
}
|
|
}
|
|
|
|
private func recentInTheSameChat(_ content: UNNotificationContent) -> Bool {
|
|
let now = Date.now
|
|
if let chatId = content.targetContentIdentifier {
|
|
var res: Bool = false
|
|
if let t = prevNtfTime[chatId] { res = t.distance(to: now) < 30 }
|
|
prevNtfTime[chatId] = now
|
|
return res
|
|
}
|
|
return false
|
|
}
|
|
|
|
func registerCategories() {
|
|
logger.debug("NtfManager.registerCategories")
|
|
UNUserNotificationCenter.current().setNotificationCategories([
|
|
UNNotificationCategory(
|
|
identifier: ntfCategoryContactRequest,
|
|
actions: [
|
|
UNNotificationAction(
|
|
identifier: ntfActionAcceptContact,
|
|
title: NSLocalizedString("Accept", comment: "accept contact request via notification"),
|
|
options: .foreground
|
|
), UNNotificationAction(
|
|
identifier: ntfActionAcceptContactIncognito,
|
|
title: NSLocalizedString("Accept incognito", comment: "accept contact request via notification"),
|
|
options: .foreground
|
|
)
|
|
],
|
|
intentIdentifiers: [],
|
|
hiddenPreviewsBodyPlaceholder: NSLocalizedString("New contact request", comment: "notification")
|
|
),
|
|
UNNotificationCategory(
|
|
identifier: ntfCategoryContactConnected,
|
|
actions: [],
|
|
intentIdentifiers: [],
|
|
hiddenPreviewsBodyPlaceholder: NSLocalizedString("Contact is connected", comment: "notification")
|
|
),
|
|
UNNotificationCategory(
|
|
identifier: ntfCategoryMessageReceived,
|
|
actions: [],
|
|
intentIdentifiers: [],
|
|
hiddenPreviewsBodyPlaceholder: NSLocalizedString("New message", comment: "notification")
|
|
),
|
|
UNNotificationCategory(
|
|
identifier: ntfCategoryCallInvitation,
|
|
actions: [
|
|
UNNotificationAction(
|
|
identifier: ntfActionAcceptCall,
|
|
title: NSLocalizedString("Accept", comment: "accept incoming call via notification"),
|
|
options: .foreground
|
|
),
|
|
UNNotificationAction(
|
|
identifier: ntfActionRejectCall,
|
|
title: NSLocalizedString("Reject", comment: "reject incoming call via notification")
|
|
)
|
|
],
|
|
intentIdentifiers: [],
|
|
hiddenPreviewsBodyPlaceholder: NSLocalizedString("Incoming call", comment: "notification")
|
|
),
|
|
UNNotificationCategory(
|
|
identifier: ntfCategoryConnectionEvent,
|
|
actions: [],
|
|
intentIdentifiers: [],
|
|
hiddenPreviewsBodyPlaceholder: NSLocalizedString("SimpleX encrypted message or connection event", comment: "notification")
|
|
),
|
|
UNNotificationCategory(
|
|
identifier: ntfCategoryManyEvents,
|
|
actions: [],
|
|
intentIdentifiers: [],
|
|
hiddenPreviewsBodyPlaceholder: NSLocalizedString("New events", comment: "notification")
|
|
)
|
|
])
|
|
}
|
|
|
|
func requestAuthorization(onDeny denied: (()-> Void)? = nil, onAuthorized authorized: (()-> Void)? = nil) {
|
|
logger.debug("NtfManager.requestAuthorization")
|
|
let center = UNUserNotificationCenter.current()
|
|
center.getNotificationSettings { settings in
|
|
switch settings.authorizationStatus {
|
|
case .denied:
|
|
denied?()
|
|
case .authorized:
|
|
self.granted = true
|
|
authorized?()
|
|
default:
|
|
center.requestAuthorization(options: [.alert, .sound, .badge]) { granted, error in
|
|
if let error = error {
|
|
logger.error("NtfManager.requestAuthorization error \(error.localizedDescription)")
|
|
} else {
|
|
self.granted = granted
|
|
authorized?()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func notifyContactRequest(_ user: any UserLike, _ contactRequest: UserContactRequest) {
|
|
logger.debug("NtfManager.notifyContactRequest")
|
|
addNotification(createContactRequestNtf(user, contactRequest, 0))
|
|
}
|
|
|
|
func notifyContactConnected(_ user: any UserLike, _ contact: Contact) {
|
|
logger.debug("NtfManager.notifyContactConnected")
|
|
addNotification(createContactConnectedNtf(user, contact, 0))
|
|
}
|
|
|
|
func notifyMessageReceived(_ user: any UserLike, _ cInfo: ChatInfo, _ cItem: ChatItem) {
|
|
logger.debug("NtfManager.notifyMessageReceived")
|
|
if cInfo.ntfsEnabled {
|
|
addNotification(createMessageReceivedNtf(user, cInfo, cItem, 0))
|
|
}
|
|
}
|
|
|
|
func notifyCallInvitation(_ invitation: RcvCallInvitation) {
|
|
logger.debug("NtfManager.notifyCallInvitation")
|
|
addNotification(createCallInvitationNtf(invitation, 0))
|
|
}
|
|
|
|
func setNtfBadgeCount(_ count: Int) {
|
|
UIApplication.shared.applicationIconBadgeNumber = count
|
|
ntfBadgeCountGroupDefault.set(count)
|
|
}
|
|
|
|
func changeNtfBadgeCount(by count: Int = 1) {
|
|
setNtfBadgeCount(max(0, UIApplication.shared.applicationIconBadgeNumber + count))
|
|
}
|
|
|
|
private func addNotification(_ content: UNMutableNotificationContent) {
|
|
if !granted { return }
|
|
let trigger = UNTimeIntervalNotificationTrigger(timeInterval: ntfTimeInterval, repeats: false)
|
|
let request = UNNotificationRequest(identifier: appNotificationId, content: content, trigger: trigger)
|
|
UNUserNotificationCenter.current().add(request) { error in
|
|
if let error = error { logger.error("addNotification error: \(error.localizedDescription)") }
|
|
}
|
|
}
|
|
|
|
func removeAllNotifications() async {
|
|
let nc = UNUserNotificationCenter.current()
|
|
let settings = await nc.notificationSettings()
|
|
if settings.authorizationStatus == .authorized {
|
|
nc.removeAllPendingNotificationRequests()
|
|
nc.removeAllDeliveredNotifications()
|
|
}
|
|
}
|
|
}
|