|
|
|
@ -75,7 +75,6 @@ class DeveloperSettingsViewModel: SessionTableViewModel, NavigatableStateHolder,
|
|
|
|
|
case resetSnodeCache
|
|
|
|
|
case pushNotificationService
|
|
|
|
|
|
|
|
|
|
case updatedDisappearingMessages
|
|
|
|
|
case debugDisappearingMessageDurations
|
|
|
|
|
|
|
|
|
|
case updatedGroups
|
|
|
|
@ -113,7 +112,6 @@ class DeveloperSettingsViewModel: SessionTableViewModel, NavigatableStateHolder,
|
|
|
|
|
case .resetSnodeCache: return "resetSnodeCache"
|
|
|
|
|
case .pushNotificationService: return "pushNotificationService"
|
|
|
|
|
|
|
|
|
|
case .updatedDisappearingMessages: return "updatedDisappearingMessages"
|
|
|
|
|
case .debugDisappearingMessageDurations: return "debugDisappearingMessageDurations"
|
|
|
|
|
|
|
|
|
|
case .updatedGroups: return "updatedGroups"
|
|
|
|
@ -154,7 +152,6 @@ class DeveloperSettingsViewModel: SessionTableViewModel, NavigatableStateHolder,
|
|
|
|
|
case .resetSnodeCache: result.append(.resetSnodeCache); fallthrough
|
|
|
|
|
case .pushNotificationService: result.append(.pushNotificationService); fallthrough
|
|
|
|
|
|
|
|
|
|
case .updatedDisappearingMessages: result.append(.updatedDisappearingMessages); fallthrough
|
|
|
|
|
case .debugDisappearingMessageDurations: result.append(.debugDisappearingMessageDurations); fallthrough
|
|
|
|
|
|
|
|
|
|
case .updatedGroups: result.append(.updatedGroups); fallthrough
|
|
|
|
@ -196,7 +193,6 @@ class DeveloperSettingsViewModel: SessionTableViewModel, NavigatableStateHolder,
|
|
|
|
|
let pushNotificationService: PushNotificationAPI.Service
|
|
|
|
|
|
|
|
|
|
let debugDisappearingMessageDurations: Bool
|
|
|
|
|
let updatedDisappearingMessages: Bool
|
|
|
|
|
|
|
|
|
|
let updatedGroups: Bool
|
|
|
|
|
let legacyGroupsDeprecated: Bool
|
|
|
|
@ -231,7 +227,6 @@ class DeveloperSettingsViewModel: SessionTableViewModel, NavigatableStateHolder,
|
|
|
|
|
pushNotificationService: dependencies[feature: .pushNotificationService],
|
|
|
|
|
|
|
|
|
|
debugDisappearingMessageDurations: dependencies[feature: .debugDisappearingMessageDurations],
|
|
|
|
|
updatedDisappearingMessages: dependencies[feature: .updatedDisappearingMessages],
|
|
|
|
|
|
|
|
|
|
updatedGroups: dependencies[feature: .updatedGroups],
|
|
|
|
|
legacyGroupsDeprecated: dependencies[feature: .legacyGroupsDeprecated],
|
|
|
|
@ -491,23 +486,6 @@ class DeveloperSettingsViewModel: SessionTableViewModel, NavigatableStateHolder,
|
|
|
|
|
to: !current.debugDisappearingMessageDurations
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
),
|
|
|
|
|
SessionCell.Info(
|
|
|
|
|
id: .updatedDisappearingMessages,
|
|
|
|
|
title: "Use Updated Disappearing Messages",
|
|
|
|
|
subtitle: """
|
|
|
|
|
Controls whether legacy or updated disappearing messages should be used.
|
|
|
|
|
""",
|
|
|
|
|
trailingAccessory: .toggle(
|
|
|
|
|
current.updatedDisappearingMessages,
|
|
|
|
|
oldValue: previous?.updatedDisappearingMessages
|
|
|
|
|
),
|
|
|
|
|
onTap: { [weak self] in
|
|
|
|
|
self?.updateFlag(
|
|
|
|
|
for: .updatedDisappearingMessages,
|
|
|
|
|
to: !current.updatedDisappearingMessages
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
]
|
|
|
|
|
)
|
|
|
|
@ -790,40 +768,107 @@ class DeveloperSettingsViewModel: SessionTableViewModel, NavigatableStateHolder,
|
|
|
|
|
TableItem.allCases.forEach { item in
|
|
|
|
|
switch item {
|
|
|
|
|
case .developerMode: break // Not a feature
|
|
|
|
|
case .animationsEnabled: updateFlag(for: .animationsEnabled, to: nil)
|
|
|
|
|
case .showStringKeys: updateFlag(for: .showStringKeys, to: nil)
|
|
|
|
|
case .animationsEnabled:
|
|
|
|
|
guard dependencies.hasSet(feature: .animationsEnabled) else { return }
|
|
|
|
|
|
|
|
|
|
updateFlag(for: .animationsEnabled, to: nil)
|
|
|
|
|
|
|
|
|
|
case .showStringKeys:
|
|
|
|
|
guard dependencies.hasSet(feature: .showStringKeys) else { return }
|
|
|
|
|
|
|
|
|
|
updateFlag(for: .showStringKeys, to: nil)
|
|
|
|
|
|
|
|
|
|
case .resetSnodeCache: break // Not a feature
|
|
|
|
|
case .exportDatabase: break // Not a feature
|
|
|
|
|
case .importDatabase: break // Not a feature
|
|
|
|
|
case .advancedLogging: break // Not a feature
|
|
|
|
|
|
|
|
|
|
case .defaultLogLevel: updateDefaulLogLevel(to: nil)
|
|
|
|
|
case .loggingCategory: resetLoggingCategories()
|
|
|
|
|
case .defaultLogLevel: updateDefaulLogLevel(to: nil) // Always reset
|
|
|
|
|
case .loggingCategory: resetLoggingCategories() // Always reset
|
|
|
|
|
|
|
|
|
|
case .serviceNetwork: updateServiceNetwork(to: nil)
|
|
|
|
|
case .forceOffline: updateFlag(for: .forceOffline, to: nil)
|
|
|
|
|
case .pushNotificationService: updatePushNotificationService(to: nil)
|
|
|
|
|
case .serviceNetwork:
|
|
|
|
|
guard dependencies.hasSet(feature: .serviceNetwork) else { return }
|
|
|
|
|
|
|
|
|
|
updateServiceNetwork(to: nil)
|
|
|
|
|
|
|
|
|
|
case .forceOffline:
|
|
|
|
|
guard dependencies.hasSet(feature: .forceOffline) else { return }
|
|
|
|
|
|
|
|
|
|
updateFlag(for: .forceOffline, to: nil)
|
|
|
|
|
|
|
|
|
|
case .pushNotificationService:
|
|
|
|
|
guard dependencies.hasSet(feature: .pushNotificationService) else { return }
|
|
|
|
|
|
|
|
|
|
updatePushNotificationService(to: nil)
|
|
|
|
|
|
|
|
|
|
case .debugDisappearingMessageDurations:
|
|
|
|
|
guard dependencies.hasSet(feature: .debugDisappearingMessageDurations) else { return }
|
|
|
|
|
|
|
|
|
|
updateFlag(for: .debugDisappearingMessageDurations, to: nil)
|
|
|
|
|
case .updatedDisappearingMessages: updateFlag(for: .updatedDisappearingMessages, to: nil)
|
|
|
|
|
|
|
|
|
|
case .updatedGroups:
|
|
|
|
|
guard dependencies.hasSet(feature: .updatedGroups) else { return }
|
|
|
|
|
|
|
|
|
|
updateFlag(for: .updatedGroups, to: nil)
|
|
|
|
|
|
|
|
|
|
case .legacyGroupsDeprecated:
|
|
|
|
|
guard dependencies.hasSet(feature: .legacyGroupsDeprecated) else { return }
|
|
|
|
|
|
|
|
|
|
case .updatedGroups: updateFlag(for: .updatedGroups, to: nil)
|
|
|
|
|
case .legacyGroupsDeprecated: updateLegacyGroupsDeprecated(to: nil)
|
|
|
|
|
case .updatedGroupsDisableAutoApprove: updateFlag(for: .updatedGroupsDisableAutoApprove, to: nil)
|
|
|
|
|
case .updatedGroupsRemoveMessagesOnKick: updateFlag(for: .updatedGroupsRemoveMessagesOnKick, to: nil)
|
|
|
|
|
updateLegacyGroupsDeprecated(to: nil)
|
|
|
|
|
|
|
|
|
|
case .updatedGroupsDisableAutoApprove:
|
|
|
|
|
guard dependencies.hasSet(feature: .updatedGroupsDisableAutoApprove) else { return }
|
|
|
|
|
|
|
|
|
|
updateFlag(for: .updatedGroupsDisableAutoApprove, to: nil)
|
|
|
|
|
|
|
|
|
|
case .updatedGroupsRemoveMessagesOnKick:
|
|
|
|
|
guard dependencies.hasSet(feature: .updatedGroupsRemoveMessagesOnKick) else { return }
|
|
|
|
|
|
|
|
|
|
updateFlag(for: .updatedGroupsRemoveMessagesOnKick, to: nil)
|
|
|
|
|
|
|
|
|
|
case .updatedGroupsAllowHistoricAccessOnInvite:
|
|
|
|
|
guard dependencies.hasSet(feature: .updatedGroupsAllowHistoricAccessOnInvite) else {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
updateFlag(for: .updatedGroupsAllowHistoricAccessOnInvite, to: nil)
|
|
|
|
|
case .updatedGroupsAllowDisplayPicture: updateFlag(for: .updatedGroupsAllowDisplayPicture, to: nil)
|
|
|
|
|
|
|
|
|
|
case .updatedGroupsAllowDisplayPicture:
|
|
|
|
|
guard dependencies.hasSet(feature: .updatedGroupsAllowDisplayPicture) else { return }
|
|
|
|
|
|
|
|
|
|
updateFlag(for: .updatedGroupsAllowDisplayPicture, to: nil)
|
|
|
|
|
|
|
|
|
|
case .updatedGroupsAllowDescriptionEditing:
|
|
|
|
|
guard dependencies.hasSet(feature: .updatedGroupsAllowDescriptionEditing) else { return }
|
|
|
|
|
|
|
|
|
|
updateFlag(for: .updatedGroupsAllowDescriptionEditing, to: nil)
|
|
|
|
|
case .updatedGroupsAllowPromotions: updateFlag(for: .updatedGroupsAllowPromotions, to: nil)
|
|
|
|
|
case .updatedGroupsAllowInviteById: updateFlag(for: .updatedGroupsAllowInviteById, to: nil)
|
|
|
|
|
case .updatedGroupsDeleteBeforeNow: updateFlag(for: .updatedGroupsDeleteBeforeNow, to: nil)
|
|
|
|
|
case .updatedGroupsDeleteAttachmentsBeforeNow: updateFlag(for: .updatedGroupsDeleteAttachmentsBeforeNow, to: nil)
|
|
|
|
|
|
|
|
|
|
case .forceSlowDatabaseQueries: updateFlag(for: .forceSlowDatabaseQueries, to: nil)
|
|
|
|
|
case .updatedGroupsAllowPromotions:
|
|
|
|
|
guard dependencies.hasSet(feature: .updatedGroupsAllowPromotions) else { return }
|
|
|
|
|
|
|
|
|
|
updateFlag(for: .updatedGroupsAllowPromotions, to: nil)
|
|
|
|
|
|
|
|
|
|
case .updatedGroupsAllowInviteById:
|
|
|
|
|
guard dependencies.hasSet(feature: .updatedGroupsAllowInviteById) else { return }
|
|
|
|
|
|
|
|
|
|
updateFlag(for: .updatedGroupsAllowInviteById, to: nil)
|
|
|
|
|
|
|
|
|
|
case .updatedGroupsDeleteBeforeNow:
|
|
|
|
|
guard dependencies.hasSet(feature: .updatedGroupsDeleteBeforeNow) else { return }
|
|
|
|
|
|
|
|
|
|
updateFlag(for: .updatedGroupsDeleteBeforeNow, to: nil)
|
|
|
|
|
|
|
|
|
|
case .updatedGroupsDeleteAttachmentsBeforeNow:
|
|
|
|
|
guard dependencies.hasSet(feature: .updatedGroupsDeleteAttachmentsBeforeNow) else {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
updateFlag(for: .updatedGroupsDeleteAttachmentsBeforeNow, to: nil)
|
|
|
|
|
|
|
|
|
|
case .forceSlowDatabaseQueries:
|
|
|
|
|
guard dependencies.hasSet(feature: .forceSlowDatabaseQueries) else { return }
|
|
|
|
|
|
|
|
|
|
updateFlag(for: .forceSlowDatabaseQueries, to: nil)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|