2023-01-25 12:02:28 +00:00
|
|
|
import AppAccount
|
2023-01-08 09:22:52 +00:00
|
|
|
import CryptoKit
|
2023-01-17 10:36:01 +00:00
|
|
|
import Env
|
2024-09-10 04:53:19 +00:00
|
|
|
import Intents
|
2023-01-17 10:36:01 +00:00
|
|
|
import KeychainSwift
|
2023-01-08 09:22:52 +00:00
|
|
|
import Models
|
2023-02-14 07:54:23 +00:00
|
|
|
import Network
|
2023-02-14 11:17:27 +00:00
|
|
|
import Notifications
|
2023-02-18 06:26:48 +00:00
|
|
|
import UIKit
|
|
|
|
import UserNotifications
|
2023-01-08 09:22:52 +00:00
|
|
|
|
2024-09-10 04:53:19 +00:00
|
|
|
extension UNMutableNotificationContent: @unchecked @retroactive Sendable { }
|
2023-01-17 10:36:01 +00:00
|
|
|
|
2024-09-10 04:53:19 +00:00
|
|
|
class NotificationService: UNNotificationServiceExtension {
|
|
|
|
override func didReceive(_ request: UNNotificationRequest,
|
|
|
|
withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) {
|
|
|
|
|
|
|
|
let bestAttemptContent = request.content.mutableCopy() as? UNMutableNotificationContent
|
|
|
|
let provider = NotificationServiceContentProvider(bestAttemptContent: bestAttemptContent)
|
|
|
|
let casted = unsafeBitCast(contentHandler,
|
|
|
|
to: (@Sendable (UNNotificationContent) -> Void).self)
|
|
|
|
Task {
|
|
|
|
if let content = await provider.buildContent() {
|
|
|
|
casted(content)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-01-17 10:36:01 +00:00
|
|
|
|
2024-09-10 04:53:19 +00:00
|
|
|
actor NotificationServiceContentProvider {
|
|
|
|
var bestAttemptContent: UNMutableNotificationContent?
|
|
|
|
|
|
|
|
private let pushKeys = PushKeys()
|
|
|
|
private let keychainAccounts = AppAccount.retrieveAll()
|
|
|
|
|
|
|
|
init(bestAttemptContent: UNMutableNotificationContent? = nil) {
|
|
|
|
self.bestAttemptContent = bestAttemptContent
|
|
|
|
}
|
|
|
|
|
|
|
|
func buildContent() async -> UNMutableNotificationContent? {
|
2023-02-14 07:54:23 +00:00
|
|
|
if var bestAttemptContent {
|
2024-09-10 04:53:19 +00:00
|
|
|
let privateKey = pushKeys.notificationsPrivateKeyAsKey
|
|
|
|
let auth = pushKeys.notificationsAuthKeyAsKey
|
|
|
|
|
2023-01-08 09:22:52 +00:00
|
|
|
guard let encodedPayload = bestAttemptContent.userInfo["m"] as? String,
|
2023-01-17 10:36:01 +00:00
|
|
|
let payload = Data(base64Encoded: encodedPayload.URLSafeBase64ToBase64())
|
|
|
|
else {
|
2024-09-10 04:53:19 +00:00
|
|
|
return bestAttemptContent
|
2023-01-08 09:22:52 +00:00
|
|
|
}
|
2024-09-10 04:53:19 +00:00
|
|
|
|
2023-01-08 09:22:52 +00:00
|
|
|
guard let encodedPublicKey = bestAttemptContent.userInfo["k"] as? String,
|
|
|
|
let publicKeyData = Data(base64Encoded: encodedPublicKey.URLSafeBase64ToBase64()),
|
2023-01-17 10:36:01 +00:00
|
|
|
let publicKey = try? P256.KeyAgreement.PublicKey(x963Representation: publicKeyData)
|
|
|
|
else {
|
2024-09-10 04:53:19 +00:00
|
|
|
return bestAttemptContent
|
2023-01-08 09:22:52 +00:00
|
|
|
}
|
2024-09-10 04:53:19 +00:00
|
|
|
|
2023-01-08 09:22:52 +00:00
|
|
|
guard let encodedSalt = bestAttemptContent.userInfo["s"] as? String,
|
2023-01-17 10:36:01 +00:00
|
|
|
let salt = Data(base64Encoded: encodedSalt.URLSafeBase64ToBase64())
|
|
|
|
else {
|
2024-09-10 04:53:19 +00:00
|
|
|
return bestAttemptContent
|
2023-01-08 09:22:52 +00:00
|
|
|
}
|
2024-09-10 04:53:19 +00:00
|
|
|
|
2023-01-08 09:22:52 +00:00
|
|
|
guard let plaintextData = NotificationService.decrypt(payload: payload,
|
|
|
|
salt: salt,
|
|
|
|
auth: auth,
|
|
|
|
privateKey: privateKey,
|
|
|
|
publicKey: publicKey),
|
2024-09-10 04:53:19 +00:00
|
|
|
let notification = try? JSONDecoder().decode(MastodonPushNotification.self, from: plaintextData)
|
2023-01-17 10:36:01 +00:00
|
|
|
else {
|
2024-09-10 04:53:19 +00:00
|
|
|
return bestAttemptContent
|
2023-01-08 09:22:52 +00:00
|
|
|
}
|
2024-09-10 04:53:19 +00:00
|
|
|
|
2023-01-08 09:22:52 +00:00
|
|
|
bestAttemptContent.title = notification.title
|
2024-09-10 04:53:19 +00:00
|
|
|
if keychainAccounts.count > 1 {
|
2023-02-14 07:58:01 +00:00
|
|
|
bestAttemptContent.subtitle = bestAttemptContent.userInfo["i"] as? String ?? ""
|
|
|
|
}
|
2023-01-08 09:22:52 +00:00
|
|
|
bestAttemptContent.body = notification.body.escape()
|
|
|
|
bestAttemptContent.userInfo["plaintext"] = plaintextData
|
2023-01-26 19:09:33 +00:00
|
|
|
bestAttemptContent.sound = UNNotificationSound(named: UNNotificationSoundName(rawValue: "glass.caf"))
|
2024-09-10 04:53:19 +00:00
|
|
|
let badgeCount = await updateBadgeCoung(notification: notification)
|
|
|
|
bestAttemptContent.badge = .init(integerLiteral: badgeCount)
|
|
|
|
|
2023-01-08 10:13:17 +00:00
|
|
|
if let urlString = notification.icon,
|
2024-09-10 04:53:19 +00:00
|
|
|
let url = URL(string: urlString) {
|
2023-01-08 10:13:17 +00:00
|
|
|
let temporaryDirectoryURL = URL(fileURLWithPath: NSTemporaryDirectory()).appendingPathComponent("notification-attachments")
|
|
|
|
try? FileManager.default.createDirectory(at: temporaryDirectoryURL, withIntermediateDirectories: true, attributes: nil)
|
|
|
|
let filename = url.lastPathComponent
|
|
|
|
let fileURL = temporaryDirectoryURL.appendingPathComponent(filename)
|
2024-09-10 04:53:19 +00:00
|
|
|
|
|
|
|
// Warning: Non-sendable type '(any URLSessionTaskDelegate)?' exiting main actor-isolated
|
|
|
|
// context in call to non-isolated instance method 'data(for:delegate:)' cannot cross actor
|
|
|
|
// boundary.
|
|
|
|
// This is on the defaulted-to-nil second parameter of `.data(from:delegate:)`.
|
|
|
|
// There is a Radar tracking this & others like it.
|
|
|
|
if let (data, _) = try? await URLSession.shared.data(for: .init(url: url)) {
|
|
|
|
if let image = UIImage(data: data) {
|
|
|
|
try? image.pngData()?.write(to: fileURL)
|
|
|
|
|
|
|
|
if let remoteNotification = await toRemoteNotification(localNotification: notification),
|
|
|
|
let type = remoteNotification.supportedType
|
|
|
|
{
|
|
|
|
let intent = buildMessageIntent(remoteNotification: remoteNotification,
|
|
|
|
currentUser: bestAttemptContent.userInfo["i"] as? String ?? "",
|
|
|
|
avatarURL: fileURL)
|
|
|
|
do {
|
2023-02-14 07:54:23 +00:00
|
|
|
bestAttemptContent = try bestAttemptContent.updating(from: intent) as! UNMutableNotificationContent
|
2023-02-14 17:55:26 +00:00
|
|
|
bestAttemptContent.threadIdentifier = remoteNotification.type
|
2023-02-14 11:17:27 +00:00
|
|
|
if type == .mention {
|
|
|
|
bestAttemptContent.body = notification.body.escape()
|
2023-02-14 07:58:01 +00:00
|
|
|
} else {
|
2023-02-14 11:17:27 +00:00
|
|
|
let newBody = "\(NSLocalizedString(type.notificationKey(), bundle: .main, comment: ""))\(notification.body.escape())"
|
2023-02-14 07:58:01 +00:00
|
|
|
bestAttemptContent.body = newBody
|
|
|
|
}
|
2024-09-10 04:53:19 +00:00
|
|
|
return bestAttemptContent
|
|
|
|
} catch {
|
|
|
|
return bestAttemptContent
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if let attachment = try? UNNotificationAttachment(identifier: filename,
|
|
|
|
url: fileURL,
|
|
|
|
options: nil) {
|
|
|
|
bestAttemptContent.attachments = [attachment]
|
2023-01-08 10:13:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-09-10 04:53:19 +00:00
|
|
|
} else {
|
|
|
|
return bestAttemptContent
|
2023-01-08 10:13:17 +00:00
|
|
|
}
|
|
|
|
} else {
|
2024-09-10 04:53:19 +00:00
|
|
|
return bestAttemptContent
|
2023-01-08 10:13:17 +00:00
|
|
|
}
|
2023-01-08 09:22:52 +00:00
|
|
|
}
|
2024-09-10 04:53:19 +00:00
|
|
|
return nil
|
2023-01-08 09:22:52 +00:00
|
|
|
}
|
2024-09-10 04:53:19 +00:00
|
|
|
|
|
|
|
|
2023-02-14 07:54:23 +00:00
|
|
|
private func toRemoteNotification(localNotification: MastodonPushNotification) async -> Models.Notification? {
|
|
|
|
do {
|
2024-09-10 04:53:19 +00:00
|
|
|
if let account = keychainAccounts.first(where: { $0.oauthToken?.accessToken == localNotification.accessToken }) {
|
2023-02-14 07:54:23 +00:00
|
|
|
let client = Client(server: account.server, oauthToken: account.oauthToken)
|
|
|
|
let remoteNotification: Models.Notification = try await client.get(endpoint: Notifications.notification(id: String(localNotification.notificationID)))
|
|
|
|
return remoteNotification
|
|
|
|
}
|
|
|
|
} catch {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2024-09-10 04:53:19 +00:00
|
|
|
|
2023-02-14 11:17:27 +00:00
|
|
|
private func buildMessageIntent(remoteNotification: Models.Notification,
|
|
|
|
currentUser: String,
|
2023-02-18 06:26:48 +00:00
|
|
|
avatarURL: URL) -> INSendMessageIntent
|
|
|
|
{
|
2023-02-14 07:54:23 +00:00
|
|
|
let handle = INPersonHandle(value: remoteNotification.account.id, type: .unknown)
|
|
|
|
let avatar = INImage(url: avatarURL)
|
|
|
|
let sender = INPerson(personHandle: handle,
|
|
|
|
nameComponents: nil,
|
|
|
|
displayName: remoteNotification.account.safeDisplayName,
|
|
|
|
image: avatar,
|
|
|
|
contactIdentifier: nil,
|
|
|
|
customIdentifier: nil)
|
2023-02-14 11:17:27 +00:00
|
|
|
var recipents: [INPerson]?
|
|
|
|
var groupName: INSpeakableString?
|
2024-09-10 04:53:19 +00:00
|
|
|
if keychainAccounts.count > 1 {
|
2023-02-14 11:17:27 +00:00
|
|
|
let me = INPerson(personHandle: .init(value: currentUser, type: .unknown),
|
|
|
|
nameComponents: nil,
|
|
|
|
displayName: currentUser,
|
|
|
|
image: nil,
|
|
|
|
contactIdentifier: nil,
|
|
|
|
customIdentifier: nil)
|
|
|
|
recipents = [me, sender]
|
|
|
|
groupName = .init(spokenPhrase: currentUser)
|
|
|
|
}
|
|
|
|
let intent = INSendMessageIntent(recipients: recipents,
|
2023-02-14 07:54:23 +00:00
|
|
|
outgoingMessageType: .outgoingMessageText,
|
|
|
|
content: nil,
|
2023-02-14 11:17:27 +00:00
|
|
|
speakableGroupName: groupName,
|
2023-02-14 07:54:23 +00:00
|
|
|
conversationIdentifier: remoteNotification.account.id,
|
|
|
|
serviceName: nil,
|
|
|
|
sender: sender,
|
|
|
|
attachments: nil)
|
2023-02-14 11:17:27 +00:00
|
|
|
if groupName != nil {
|
|
|
|
intent.setImage(avatar, forParameterNamed: \.speakableGroupName)
|
|
|
|
}
|
2023-02-14 07:54:23 +00:00
|
|
|
return intent
|
|
|
|
}
|
2024-09-10 04:53:19 +00:00
|
|
|
|
|
|
|
@MainActor
|
|
|
|
private func updateBadgeCoung(notification: MastodonPushNotification) -> Int {
|
|
|
|
let preferences = UserPreferences.shared
|
|
|
|
let tokens = AppAccountsManager.shared.pushAccounts.map(\.token)
|
|
|
|
preferences.reloadNotificationsCount(tokens: tokens)
|
|
|
|
|
|
|
|
if let token = keychainAccounts.first(where: { $0.oauthToken?.accessToken == notification.accessToken })?.oauthToken {
|
|
|
|
var currentCount = preferences.notificationsCount[token] ?? 0
|
|
|
|
currentCount += 1
|
|
|
|
preferences.notificationsCount[token] = currentCount
|
|
|
|
}
|
|
|
|
return preferences.totalNotificationsCount
|
|
|
|
}
|
2023-01-08 09:22:52 +00:00
|
|
|
}
|