mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
122 lines
4.2 KiB
Swift
122 lines
4.2 KiB
Swift
import Foundation
|
|
import UIKit
|
|
import TelegramCore
|
|
import Postbox
|
|
import SwiftSignalKit
|
|
import TelegramUIPreferences
|
|
import MediaResources
|
|
|
|
private enum LegacyPreferencesKeyValues: Int32 {
|
|
case cacheStorageSettings = 1
|
|
case localizationSettings = 2
|
|
case proxySettings = 5
|
|
|
|
var key: ValueBoxKey {
|
|
let key = ValueBoxKey(length: 4)
|
|
key.setInt32(0, value: self.rawValue)
|
|
return key
|
|
}
|
|
}
|
|
|
|
private enum UpgradedSharedDataKeyValues: Int32 {
|
|
case cacheStorageSettings = 2
|
|
case localizationSettings = 3
|
|
case proxySettings = 4
|
|
|
|
var key: ValueBoxKey {
|
|
let key = ValueBoxKey(length: 4)
|
|
key.setInt32(0, value: self.rawValue)
|
|
return key
|
|
}
|
|
}
|
|
|
|
private enum LegacyApplicationSpecificPreferencesKeyValues: Int32 {
|
|
case inAppNotificationSettings = 0
|
|
case presentationPasscodeSettings = 1
|
|
case automaticMediaDownloadSettings = 2
|
|
case generatedMediaStoreSettings = 3
|
|
case voiceCallSettings = 4
|
|
case presentationThemeSettings = 5
|
|
case instantPagePresentationSettings = 6
|
|
case callListSettings = 7
|
|
case experimentalSettings = 8
|
|
case musicPlaybackSettings = 9
|
|
case mediaInputSettings = 10
|
|
case experimentalUISettings = 11
|
|
case contactSynchronizationSettings = 12
|
|
case stickerSettings = 13
|
|
case watchPresetSettings = 14
|
|
case webSearchSettings = 15
|
|
case voipDerivedState = 16
|
|
|
|
var key: ValueBoxKey {
|
|
return applicationSpecificPreferencesKey(self.rawValue)
|
|
}
|
|
}
|
|
|
|
private enum UpgradedApplicationSpecificSharedDataKeyValues: Int32 {
|
|
case inAppNotificationSettings = 0
|
|
case presentationPasscodeSettings = 1
|
|
case automaticMediaDownloadSettings = 2
|
|
case generatedMediaStoreSettings = 3
|
|
case voiceCallSettings = 4
|
|
case presentationThemeSettings = 5
|
|
case instantPagePresentationSettings = 6
|
|
case callListSettings = 7
|
|
case experimentalSettings = 8
|
|
case musicPlaybackSettings = 9
|
|
case mediaInputSettings = 10
|
|
case experimentalUISettings = 11
|
|
case stickerSettings = 12
|
|
case watchPresetSettings = 13
|
|
case webSearchSettings = 14
|
|
case contactSynchronizationSettings = 15
|
|
|
|
var key: ValueBoxKey {
|
|
return applicationSpecificSharedDataKey(self.rawValue)
|
|
}
|
|
}
|
|
|
|
private let preferencesKeyMapping: [LegacyPreferencesKeyValues: UpgradedSharedDataKeyValues] = [
|
|
.cacheStorageSettings: .cacheStorageSettings,
|
|
.localizationSettings: .localizationSettings,
|
|
.proxySettings: .proxySettings
|
|
]
|
|
|
|
private let applicationSpecificPreferencesKeyMapping: [LegacyApplicationSpecificPreferencesKeyValues: UpgradedApplicationSpecificSharedDataKeyValues] = [
|
|
.inAppNotificationSettings: .inAppNotificationSettings,
|
|
.presentationPasscodeSettings: .presentationPasscodeSettings,
|
|
.automaticMediaDownloadSettings: .automaticMediaDownloadSettings,
|
|
.generatedMediaStoreSettings: .generatedMediaStoreSettings,
|
|
.voiceCallSettings: .voiceCallSettings,
|
|
.presentationThemeSettings: .presentationThemeSettings,
|
|
.instantPagePresentationSettings: .instantPagePresentationSettings,
|
|
.callListSettings: .callListSettings,
|
|
.experimentalSettings: .experimentalSettings,
|
|
.musicPlaybackSettings: .musicPlaybackSettings,
|
|
.mediaInputSettings: .mediaInputSettings,
|
|
.experimentalUISettings: .experimentalUISettings,
|
|
.stickerSettings: .stickerSettings,
|
|
.watchPresetSettings: .watchPresetSettings,
|
|
.webSearchSettings: .webSearchSettings,
|
|
.contactSynchronizationSettings: .contactSynchronizationSettings
|
|
]
|
|
|
|
private func upgradedSharedDataValue(_ value: PreferencesEntry?) -> PreferencesEntry? {
|
|
return value
|
|
}
|
|
|
|
public func upgradedAccounts(accountManager: AccountManager<TelegramAccountManagerTypes>, rootPath: String, encryptionParameters: ValueBoxEncryptionParameters) -> Signal<Float, NoError> {
|
|
return accountManager.transaction { transaction -> (Int32?, AccountRecordId?) in
|
|
return (transaction.getVersion(), transaction.getCurrent()?.0)
|
|
}
|
|
|> mapToSignal { version, currentId -> Signal<Float, NoError> in
|
|
return accountManager.transaction { transaction -> Void in
|
|
transaction.setVersion(4)
|
|
}
|
|
|> ignoreValues
|
|
|> mapToSignal { _ -> Signal<Float, NoError> in
|
|
}
|
|
}
|
|
}
|