mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
432 lines
20 KiB
Swift
432 lines
20 KiB
Swift
// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
|
|
|
|
import Foundation
|
|
import Combine
|
|
import GRDB
|
|
import CallKit
|
|
import UserNotifications
|
|
import BackgroundTasks
|
|
import SessionMessagingKit
|
|
import SignalUtilitiesKit
|
|
import SignalCoreKit
|
|
import SessionUtilitiesKit
|
|
|
|
public final class NotificationServiceExtension: UNNotificationServiceExtension {
|
|
private var didPerformSetup = false
|
|
private var contentHandler: ((UNNotificationContent) -> Void)?
|
|
private var request: UNNotificationRequest?
|
|
private var openGroupPollCancellable: AnyCancellable?
|
|
private var fileLogger: DDFileLogger?
|
|
|
|
public static let isFromRemoteKey = "remote"
|
|
public static let threadIdKey = "Signal.AppNotificationsUserInfoKey.threadId"
|
|
public static let threadVariantRaw = "Signal.AppNotificationsUserInfoKey.threadVariantRaw"
|
|
public static let threadNotificationCounter = "Session.AppNotificationsUserInfoKey.threadNotificationCounter"
|
|
private static let callPreOfferLargeNotificationSupressionDuration: TimeInterval = 30
|
|
|
|
// MARK: Did receive a remote push notification request
|
|
|
|
override public func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) {
|
|
self.contentHandler = contentHandler
|
|
self.request = request
|
|
|
|
guard let notificationContent = request.content.mutableCopy() as? UNMutableNotificationContent else {
|
|
return self.completeSilenty()
|
|
}
|
|
|
|
// Abort if the main app is running
|
|
guard !(UserDefaults.sharedLokiProject?[.isMainAppActive]).defaulting(to: false) else {
|
|
return self.completeSilenty()
|
|
}
|
|
|
|
/// Create the context if we don't have it (needed before _any_ interaction with the database)
|
|
if !Singleton.hasAppContext {
|
|
Singleton.setup(appContext: NotificationServiceExtensionContext())
|
|
}
|
|
|
|
let isCallOngoing: Bool = (UserDefaults.sharedLokiProject?[.isCallOngoing])
|
|
.defaulting(to: false)
|
|
let lastCallPreOffer: Date? = UserDefaults.sharedLokiProject?[.lastCallPreOffer]
|
|
|
|
// Perform main setup
|
|
Storage.resumeDatabaseAccess()
|
|
DispatchQueue.main.sync { self.setUpIfNecessary() { } }
|
|
|
|
// Handle the push notification
|
|
Singleton.appReadiness.runNowOrWhenAppDidBecomeReady {
|
|
let openGroupPollingPublishers: [AnyPublisher<Void, Error>] = self.pollForOpenGroups()
|
|
defer {
|
|
self.openGroupPollCancellable = Publishers
|
|
.MergeMany(openGroupPollingPublishers)
|
|
.subscribe(on: DispatchQueue.global(qos: .background))
|
|
.subscribe(on: DispatchQueue.main)
|
|
.sink(
|
|
receiveCompletion: { [weak self] _ in self?.completeSilenty() },
|
|
receiveValue: { _ in }
|
|
)
|
|
}
|
|
|
|
let (maybeEnvelope, result) = PushNotificationAPI.processNotification(
|
|
notificationContent: notificationContent
|
|
)
|
|
|
|
guard
|
|
(result == .success || result == .legacySuccess),
|
|
let envelope: SNProtoEnvelope = maybeEnvelope
|
|
else {
|
|
switch result {
|
|
// If we got an explicit failure, or we got a success but no content then show
|
|
// the fallback notification
|
|
case .success, .legacySuccess, .failure, .legacyFailure:
|
|
return self.handleFailure(for: notificationContent, error: .processing(result))
|
|
|
|
case .successTooLong:
|
|
/// If the notification is too long and there is an ongoing call or a recent call pre-offer then we assume the notification
|
|
/// is a call `ICE_CANDIDATES` message and just complete silently (because the fallback would be annoying), if not
|
|
/// then we do want to show the fallback notification
|
|
guard
|
|
isCallOngoing ||
|
|
(lastCallPreOffer ?? Date.distantPast).timeIntervalSinceNow < NotificationServiceExtension.callPreOfferLargeNotificationSupressionDuration
|
|
else { return self.handleFailure(for: notificationContent, error: .processing(result)) }
|
|
|
|
SNLog("[NotificationServiceExtension] Suppressing large notification too close to a call.", forceNSLog: true)
|
|
return
|
|
|
|
case .legacyForceSilent, .failureNoContent: return
|
|
}
|
|
}
|
|
|
|
// HACK: It is important to use write synchronously here to avoid a race condition
|
|
// where the completeSilenty() is called before the local notification request
|
|
// is added to notification center
|
|
Storage.shared.write { db in
|
|
do {
|
|
guard let processedMessage: ProcessedMessage = try Message.processRawReceivedMessageAsNotification(db, envelope: envelope) else {
|
|
self.handleFailure(for: notificationContent, error: .messageProcessing)
|
|
return
|
|
}
|
|
|
|
/// Due to the way the `CallMessage` and `SharedConfigMessage` work we need to custom
|
|
/// handle their behaviours, for all other message types we want to just use standard messages
|
|
switch processedMessage.messageInfo.message {
|
|
case is CallMessage, is SharedConfigMessage: break
|
|
default:
|
|
try MessageReceiver.handle(
|
|
db,
|
|
threadId: processedMessage.threadId,
|
|
threadVariant: processedMessage.threadVariant,
|
|
message: processedMessage.messageInfo.message,
|
|
serverExpirationTimestamp: processedMessage.messageInfo.serverExpirationTimestamp,
|
|
associatedWithProto: processedMessage.proto
|
|
)
|
|
return
|
|
}
|
|
|
|
// Throw if the message is outdated and shouldn't be processed
|
|
try MessageReceiver.throwIfMessageOutdated(
|
|
db,
|
|
message: processedMessage.messageInfo.message,
|
|
threadId: processedMessage.threadId,
|
|
threadVariant: processedMessage.threadVariant
|
|
)
|
|
|
|
switch processedMessage.messageInfo.message {
|
|
case let callMessage as CallMessage:
|
|
try MessageReceiver.handleCallMessage(
|
|
db,
|
|
threadId: processedMessage.threadId,
|
|
threadVariant: processedMessage.threadVariant,
|
|
message: callMessage
|
|
)
|
|
|
|
guard case .preOffer = callMessage.kind else { return self.completeSilenty() }
|
|
|
|
if !db[.areCallsEnabled] {
|
|
if
|
|
let sender: String = callMessage.sender,
|
|
let interaction: Interaction = try MessageReceiver.insertCallInfoMessage(
|
|
db,
|
|
for: callMessage,
|
|
state: .permissionDenied
|
|
)
|
|
{
|
|
let thread: SessionThread = try SessionThread
|
|
.fetchOrCreate(
|
|
db,
|
|
id: sender,
|
|
variant: .contact,
|
|
shouldBeVisible: nil
|
|
)
|
|
|
|
// Notify the user if the call message wasn't already read
|
|
if !interaction.wasRead {
|
|
SessionEnvironment.shared?.notificationsManager.wrappedValue?
|
|
.notifyUser(
|
|
db,
|
|
forIncomingCall: interaction,
|
|
in: thread,
|
|
applicationState: .background
|
|
)
|
|
}
|
|
}
|
|
break
|
|
}
|
|
|
|
if isCallOngoing {
|
|
try MessageReceiver.handleIncomingCallOfferInBusyState(db, message: callMessage)
|
|
break
|
|
}
|
|
|
|
try MessageReceiver.insertCallInfoMessage(db, for: callMessage)
|
|
self.handleSuccessForIncomingCall(db, for: callMessage)
|
|
|
|
case let sharedConfigMessage as SharedConfigMessage:
|
|
try LibSession.handleConfigMessages(
|
|
db,
|
|
messages: [sharedConfigMessage],
|
|
publicKey: processedMessage.threadId
|
|
)
|
|
|
|
default: break
|
|
}
|
|
|
|
// Perform any required post-handling logic
|
|
try MessageReceiver.postHandleMessage(
|
|
db,
|
|
threadId: processedMessage.threadId,
|
|
message: processedMessage.messageInfo.message
|
|
)
|
|
}
|
|
catch {
|
|
if let error = error as? MessageReceiverError, error.isRetryable {
|
|
switch error {
|
|
case .invalidGroupPublicKey, .noGroupKeyPair, .outdatedMessage: self.completeSilenty()
|
|
default: self.handleFailure(for: notificationContent, error: .messageHandling(error))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// MARK: Setup
|
|
|
|
private func setUpIfNecessary(completion: @escaping () -> Void) {
|
|
AssertIsOnMainThread()
|
|
|
|
// The NSE will often re-use the same process, so if we're
|
|
// already set up we want to do nothing; we're already ready
|
|
// to process new messages.
|
|
guard !didPerformSetup else { return }
|
|
|
|
SNLog("[NotificationServiceExtension] Performing setup", forceNSLog: true)
|
|
didPerformSetup = true
|
|
|
|
_ = AppVersion.sharedInstance()
|
|
|
|
Cryptography.seedRandom()
|
|
|
|
AppSetup.setupEnvironment(
|
|
retrySetupIfDatabaseInvalid: true,
|
|
appSpecificBlock: { [weak self] in
|
|
SessionEnvironment.shared?.notificationsManager.mutate {
|
|
$0 = NSENotificationPresenter()
|
|
}
|
|
|
|
// Add the file logger
|
|
let logFileManager: DDLogFileManagerDefault = DDLogFileManagerDefault(
|
|
logsDirectory: "\(OWSFileSystem.appSharedDataDirectoryPath())/Logs/NotificationExtension" // stringlint:disable
|
|
)
|
|
let fileLogger: DDFileLogger = DDFileLogger(logFileManager: logFileManager)
|
|
fileLogger.rollingFrequency = kDayInterval // Refresh everyday
|
|
fileLogger.logFileManager.maximumNumberOfLogFiles = 3 // Save 3 days' log files
|
|
DDLog.add(fileLogger)
|
|
self?.fileLogger = fileLogger
|
|
},
|
|
migrationsCompletion: { [weak self] result, needsConfigSync in
|
|
switch result {
|
|
// Only 'NSLog' works in the extension - viewable via Console.app
|
|
case .failure(let error):
|
|
SNLog("[NotificationServiceExtension] Failed to complete migrations: \(error)", forceNSLog: true)
|
|
self?.completeSilenty()
|
|
|
|
case .success:
|
|
// We should never receive a non-voip notification on an app that doesn't support
|
|
// app extensions since we have to inform the service we wanted these, so in theory
|
|
// this path should never occur. However, the service does have our push token
|
|
// so it is possible that could change in the future. If it does, do nothing
|
|
// and don't disturb the user. Messages will be processed when they open the app.
|
|
guard Storage.shared[.isReadyForAppExtensions] else {
|
|
SNLog("[NotificationServiceExtension] Not ready for extensions", forceNSLog: true)
|
|
self?.completeSilenty()
|
|
return
|
|
}
|
|
|
|
DispatchQueue.main.async {
|
|
self?.versionMigrationsDidComplete(needsConfigSync: needsConfigSync)
|
|
}
|
|
}
|
|
|
|
completion()
|
|
}
|
|
)
|
|
}
|
|
|
|
private func versionMigrationsDidComplete(needsConfigSync: Bool) {
|
|
AssertIsOnMainThread()
|
|
|
|
// If we need a config sync then trigger it now
|
|
if needsConfigSync {
|
|
Storage.shared.write { db in
|
|
ConfigurationSyncJob.enqueue(db, publicKey: getUserHexEncodedPublicKey(db))
|
|
}
|
|
}
|
|
|
|
checkIsAppReady(migrationsCompleted: true)
|
|
}
|
|
|
|
private func checkIsAppReady(migrationsCompleted: Bool) {
|
|
AssertIsOnMainThread()
|
|
|
|
// Only mark the app as ready once.
|
|
guard !Singleton.appReadiness.isAppReady else { return }
|
|
|
|
// App isn't ready until storage is ready AND all version migrations are complete.
|
|
guard Storage.shared.isValid && migrationsCompleted else {
|
|
SNLog("[NotificationServiceExtension] Storage invalid", forceNSLog: true)
|
|
self.completeSilenty()
|
|
return
|
|
}
|
|
|
|
SignalUtilitiesKit.Configuration.performMainSetup()
|
|
|
|
// Note that this does much more than set a flag; it will also run all deferred blocks.
|
|
Singleton.appReadiness.setAppReady()
|
|
}
|
|
|
|
// MARK: Handle completion
|
|
|
|
override public func serviceExtensionTimeWillExpire() {
|
|
// Called just before the extension will be terminated by the system.
|
|
// Use this as an opportunity to deliver your "best attempt" at modified content, otherwise the original push payload will be used.
|
|
SNLog("[NotificationServiceExtension] Execution time expired", forceNSLog: true)
|
|
openGroupPollCancellable?.cancel()
|
|
completeSilenty()
|
|
}
|
|
|
|
private func completeSilenty() {
|
|
SNLog("[NotificationServiceExtension] Complete silently", forceNSLog: true)
|
|
DDLog.flushLog()
|
|
let silentContent: UNMutableNotificationContent = UNMutableNotificationContent()
|
|
silentContent.badge = Storage.shared
|
|
.read { db in try Interaction.fetchUnreadCount(db) }
|
|
.map { NSNumber(value: $0) }
|
|
.defaulting(to: NSNumber(value: 0))
|
|
Storage.suspendDatabaseAccess()
|
|
|
|
self.contentHandler!(silentContent)
|
|
}
|
|
|
|
private func handleSuccessForIncomingCall(_ db: Database, for callMessage: CallMessage) {
|
|
if #available(iOSApplicationExtension 14.5, *), Preferences.isCallKitSupported {
|
|
guard let caller: String = callMessage.sender, let timestamp = callMessage.sentTimestamp else { return }
|
|
|
|
let payload: JSON = [
|
|
"uuid": callMessage.uuid,
|
|
"caller": caller,
|
|
"timestamp": timestamp
|
|
]
|
|
|
|
CXProvider.reportNewIncomingVoIPPushPayload(payload) { error in
|
|
if let error = error {
|
|
self.handleFailureForVoIP(db, for: callMessage)
|
|
SNLog("[NotificationServiceExtension] Failed to notify main app of call message: \(error)", forceNSLog: true)
|
|
}
|
|
else {
|
|
SNLog("[NotificationServiceExtension] Successfully notified main app of call message.", forceNSLog: true)
|
|
UserDefaults.sharedLokiProject?[.lastCallPreOffer] = Date()
|
|
self.completeSilenty()
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
self.handleFailureForVoIP(db, for: callMessage)
|
|
}
|
|
}
|
|
|
|
private func handleFailureForVoIP(_ db: Database, for callMessage: CallMessage) {
|
|
let notificationContent = UNMutableNotificationContent()
|
|
notificationContent.userInfo = [ NotificationServiceExtension.isFromRemoteKey : true ]
|
|
notificationContent.title = "Session"
|
|
notificationContent.badge = (try? Interaction.fetchUnreadCount(db))
|
|
.map { NSNumber(value: $0) }
|
|
.defaulting(to: NSNumber(value: 0))
|
|
|
|
if let sender: String = callMessage.sender {
|
|
let senderDisplayName: String = Profile.displayName(db, id: sender, threadVariant: .contact)
|
|
notificationContent.body = "\(senderDisplayName) is calling..."
|
|
}
|
|
else {
|
|
notificationContent.body = "Incoming call..."
|
|
}
|
|
|
|
let identifier = self.request?.identifier ?? UUID().uuidString
|
|
let request = UNNotificationRequest(identifier: identifier, content: notificationContent, trigger: nil)
|
|
let semaphore = DispatchSemaphore(value: 0)
|
|
|
|
UNUserNotificationCenter.current().add(request) { error in
|
|
if let error = error {
|
|
SNLog("[NotificationServiceExtension] Failed to add notification request due to error: \(error)", forceNSLog: true)
|
|
}
|
|
semaphore.signal()
|
|
}
|
|
semaphore.wait()
|
|
SNLog("[NotificationServiceExtension] Add remote notification request", forceNSLog: true)
|
|
DDLog.flushLog()
|
|
}
|
|
|
|
private func handleFailure(for content: UNMutableNotificationContent, error: NotificationError) {
|
|
SNLog("[NotificationServiceExtension] Show generic failure message due to error: \(error)", forceNSLog: true)
|
|
DDLog.flushLog()
|
|
Storage.suspendDatabaseAccess()
|
|
|
|
content.title = "Session"
|
|
content.body = "APN_Message".localized()
|
|
let userInfo: [String: Any] = [ NotificationServiceExtension.isFromRemoteKey: true ]
|
|
content.userInfo = userInfo
|
|
contentHandler!(content)
|
|
}
|
|
|
|
// MARK: - Poll for open groups
|
|
|
|
private func pollForOpenGroups() -> [AnyPublisher<Void, Error>] {
|
|
return Storage.shared
|
|
.read { db in
|
|
// The default room promise creates an OpenGroup with an empty `roomToken` value,
|
|
// we don't want to start a poller for this as the user hasn't actually joined a room
|
|
try OpenGroup
|
|
.select(.server)
|
|
.filter(OpenGroup.Columns.roomToken != "")
|
|
.filter(OpenGroup.Columns.isActive)
|
|
.distinct()
|
|
.asRequest(of: String.self)
|
|
.fetchSet(db)
|
|
}
|
|
.defaulting(to: [])
|
|
.map { server -> AnyPublisher<Void, Error> in
|
|
OpenGroupAPI.Poller(for: server)
|
|
.poll(calledFromBackgroundPoller: true, isPostCapabilitiesRetry: false)
|
|
.timeout(
|
|
.seconds(20),
|
|
scheduler: DispatchQueue.global(qos: .default),
|
|
customError: { NotificationServiceError.timeout }
|
|
)
|
|
.eraseToAnyPublisher()
|
|
}
|
|
}
|
|
|
|
private enum NotificationServiceError: Error {
|
|
case timeout
|
|
}
|
|
}
|