| |
| |
| |
|
|
| import Tauri |
| import UserNotifications |
|
|
| public class NotificationHandler: NSObject, NotificationHandlerProtocol { |
|
|
| public weak var plugin: Plugin? |
|
|
| private var notificationsMap = [String: Notification]() |
|
|
| internal func saveNotification(_ key: String, _ notification: Notification) { |
| notificationsMap.updateValue(notification, forKey: key) |
| } |
|
|
| public func requestPermissions(with completion: ((Bool, Error?) -> Void)? = nil) { |
| let center = UNUserNotificationCenter.current() |
| center.requestAuthorization(options: [.badge, .alert, .sound]) { (granted, error) in |
| completion?(granted, error) |
| } |
| } |
|
|
| public func checkPermissions(with completion: ((UNAuthorizationStatus) -> Void)? = nil) { |
| let center = UNUserNotificationCenter.current() |
| center.getNotificationSettings { settings in |
| completion?(settings.authorizationStatus) |
| } |
| } |
|
|
| public func willPresent(notification: UNNotification) -> UNNotificationPresentationOptions { |
| let notificationData = toActiveNotification(notification.request) |
| try? self.plugin?.trigger("notification", data: notificationData) |
|
|
| if let options = notificationsMap[notification.request.identifier] { |
| if options.silent ?? false { |
| return UNNotificationPresentationOptions.init(rawValue: 0) |
| } |
| } |
|
|
| return [ |
| .badge, |
| .sound, |
| .alert, |
| ] |
| } |
|
|
| public func didReceive(response: UNNotificationResponse) { |
| let originalNotificationRequest = response.notification.request |
| let actionId = response.actionIdentifier |
|
|
| var actionIdValue: String |
| |
| if actionId == UNNotificationDefaultActionIdentifier { |
| actionIdValue = "tap" |
| } else if actionId == UNNotificationDismissActionIdentifier { |
| actionIdValue = "dismiss" |
| } else { |
| actionIdValue = actionId |
| } |
|
|
| var inputValue: String? = nil |
| |
| if let inputType = response as? UNTextInputNotificationResponse { |
| inputValue = inputType.userText |
| } |
|
|
| try? self.plugin?.trigger( |
| "actionPerformed", |
| data: ReceivedNotification( |
| actionId: actionIdValue, |
| inputValue: inputValue, |
| notification: toActiveNotification(originalNotificationRequest) |
| )) |
| } |
|
|
| func toActiveNotification(_ request: UNNotificationRequest) -> ActiveNotification { |
| let notificationRequest = notificationsMap[request.identifier]! |
| return ActiveNotification( |
| id: Int(request.identifier) ?? -1, |
| title: request.content.title, |
| body: request.content.body, |
| sound: notificationRequest.sound ?? "", |
| actionTypeId: request.content.categoryIdentifier, |
| attachments: notificationRequest.attachments |
| ) |
| } |
|
|
| func toPendingNotification(_ request: UNNotificationRequest) -> PendingNotification { |
| return PendingNotification( |
| id: Int(request.identifier) ?? -1, |
| title: request.content.title, |
| body: request.content.body |
| ) |
| } |
| } |
|
|
| struct PendingNotification: Encodable { |
| let id: Int |
| let title: String |
| let body: String |
| } |
|
|
| struct ActiveNotification: Encodable { |
| let id: Int |
| let title: String |
| let body: String |
| let sound: String |
| let actionTypeId: String |
| let attachments: [NotificationAttachment]? |
| } |
|
|
| struct ReceivedNotification: Encodable { |
| let actionId: String |
| let inputValue: String? |
| let notification: ActiveNotification |
| } |
|
|