mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-22 01:22:46 +02:00
67df1a3e95
Merge commit 'af0b6d4be985d9f26e5111d3fa01389c7321949f' into feature/7276_FOSS_Merge_1_27_11 # Conflicts: # Config/AppVersion.xcconfig # Gemfile.lock # IDETemplateMacros.plist # Podfile # Podfile.lock # README.md # Riot/Modules/Authentication/AuthenticationCoordinator.swift # Riot/Modules/Room/CellData/RoomBubbleCellData.m # Riot/target.yml # RiotNSE/NotificationService.swift # RiotSwiftUI/Modules/Authentication/ServerSelection/AuthenticationServerSelectionModels.swift # RiotSwiftUI/Modules/Authentication/ServerSelection/AuthenticationServerSelectionViewModel.swift # RiotSwiftUI/Modules/Authentication/ServerSelection/Coordinator/AuthenticationServerSelectionCoordinator.swift # RiotSwiftUI/Modules/Authentication/ServerSelection/View/AuthenticationServerSelectionScreen.swift # RiotSwiftUI/Modules/Room/CompletionSuggestion/Service/CompletionSuggestionService.swift # fastlane/Fastfile
74 lines
2.1 KiB
Swift
74 lines
2.1 KiB
Swift
//
|
|
// Copyright 2024 New Vector Ltd.
|
|
// Copyright 2020 Vector Creations Ltd
|
|
// Copyright (c) 2021 BWI GmbH
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
// Please see LICENSE files in the repository root for full details.
|
|
//
|
|
|
|
import Foundation
|
|
import KeychainAccess
|
|
import MatrixSDK
|
|
|
|
@objcMembers
|
|
final class PushNotificationStore: NSObject {
|
|
|
|
// MARK: - Constants
|
|
|
|
private struct PushNotificationConstants {
|
|
static let pushNotificationKeychainService: String = BuildSettings.baseBundleIdentifier + ".pushnotification-service"
|
|
}
|
|
|
|
private struct StoreKeys {
|
|
static let pushToken: String = "pushtoken"
|
|
}
|
|
|
|
private let vault: KeyValueVault
|
|
|
|
override init() {
|
|
vault = KeychainVault(Keychain(service: PushNotificationConstants.pushNotificationKeychainService,
|
|
accessGroup: BuildSettings.keychainAccessGroup))
|
|
super.init()
|
|
}
|
|
|
|
/// Saved PushKit token
|
|
var pushKitToken: Data? {
|
|
get {
|
|
do {
|
|
return try vault.data(forKey: StoreKeys.pushToken)
|
|
} catch let error {
|
|
MXLog.debug("[PinCodePreferences] Error when reading push token from vault: \(error)")
|
|
return nil
|
|
}
|
|
} set {
|
|
do {
|
|
try vault.set(newValue, forKey: StoreKeys.pushToken)
|
|
} catch let error {
|
|
MXLog.debug("[PinCodePreferences] Error when storing push token to the vault: \(error)")
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
func callInvite(forEventId eventId: String) -> MXEvent? {
|
|
guard let data = try? vault.data(forKey: eventId) else {
|
|
return nil
|
|
}
|
|
return NSKeyedUnarchiver.unarchiveObject(with: data) as? MXEvent
|
|
}
|
|
|
|
func storeCallInvite(_ event: MXEvent) {
|
|
let data = NSKeyedArchiver.archivedData(withRootObject: event)
|
|
try? vault.set(data, forKey: event.eventId)
|
|
}
|
|
|
|
func removeCallInvite(withEventId eventId: String) {
|
|
try? vault.removeObject(forKey: eventId)
|
|
}
|
|
|
|
func reset() {
|
|
try? vault.reset()
|
|
}
|
|
}
|