mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-22 22:25:57 +00:00
Refactoring
This commit is contained in:
@@ -0,0 +1,90 @@
|
||||
import Postbox
|
||||
import SyncCore
|
||||
|
||||
public enum AddSynchronizeInstalledStickerPacksOperationContent {
|
||||
case sync
|
||||
case add([ItemCollectionId])
|
||||
case remove([ItemCollectionId])
|
||||
case archive([ItemCollectionId])
|
||||
}
|
||||
|
||||
public func addSynchronizeInstalledStickerPacksOperation(transaction: Transaction, namespace: ItemCollectionId.Namespace, content: AddSynchronizeInstalledStickerPacksOperationContent, noDelay: Bool) {
|
||||
let operationNamespace: SynchronizeInstalledStickerPacksOperationNamespace
|
||||
switch namespace {
|
||||
case Namespaces.ItemCollection.CloudStickerPacks:
|
||||
operationNamespace = .stickers
|
||||
case Namespaces.ItemCollection.CloudMaskPacks:
|
||||
operationNamespace = .masks
|
||||
default:
|
||||
return
|
||||
}
|
||||
addSynchronizeInstalledStickerPacksOperation(transaction: transaction, namespace: operationNamespace, content: content, noDelay: noDelay)
|
||||
}
|
||||
|
||||
func addSynchronizeInstalledStickerPacksOperation(transaction: Transaction, namespace: SynchronizeInstalledStickerPacksOperationNamespace, content: AddSynchronizeInstalledStickerPacksOperationContent, noDelay: Bool) {
|
||||
var updateLocalIndex: Int32?
|
||||
let tag: PeerOperationLogTag
|
||||
let itemCollectionNamespace: ItemCollectionId.Namespace
|
||||
switch namespace {
|
||||
case .stickers:
|
||||
tag = OperationLogTags.SynchronizeInstalledStickerPacks
|
||||
itemCollectionNamespace = Namespaces.ItemCollection.CloudStickerPacks
|
||||
case .masks:
|
||||
tag = OperationLogTags.SynchronizeInstalledMasks
|
||||
itemCollectionNamespace = Namespaces.ItemCollection.CloudMaskPacks
|
||||
}
|
||||
var previousStickerPackIds: [ItemCollectionId]?
|
||||
var archivedPacks: [ItemCollectionId] = []
|
||||
transaction.operationLogEnumerateEntries(peerId: PeerId(0), tag: tag, { entry in
|
||||
updateLocalIndex = entry.tagLocalIndex
|
||||
if let operation = entry.contents as? SynchronizeInstalledStickerPacksOperation {
|
||||
previousStickerPackIds = operation.previousPacks
|
||||
archivedPacks = operation.archivedPacks
|
||||
} else {
|
||||
assertionFailure()
|
||||
}
|
||||
return false
|
||||
})
|
||||
let previousPacks = previousStickerPackIds ?? transaction.getItemCollectionsInfos(namespace: itemCollectionNamespace).map { $0.0 }
|
||||
switch content {
|
||||
case .sync:
|
||||
break
|
||||
case let .add(ids):
|
||||
let idsSet = Set(ids)
|
||||
archivedPacks = archivedPacks.filter({ !idsSet.contains($0) })
|
||||
case let .remove(ids):
|
||||
let idsSet = Set(ids)
|
||||
archivedPacks = archivedPacks.filter({ !idsSet.contains($0) })
|
||||
case let .archive(ids):
|
||||
for id in ids {
|
||||
if !archivedPacks.contains(id) {
|
||||
archivedPacks.append(id)
|
||||
}
|
||||
}
|
||||
}
|
||||
let operationContents = SynchronizeInstalledStickerPacksOperation(previousPacks: previousPacks, archivedPacks: archivedPacks, noDelay: noDelay)
|
||||
if let updateLocalIndex = updateLocalIndex {
|
||||
let _ = transaction.operationLogRemoveEntry(peerId: PeerId(0), tag: tag, tagLocalIndex: updateLocalIndex)
|
||||
}
|
||||
transaction.operationLogAddEntry(peerId: PeerId(0), tag: tag, tagLocalIndex: .automatic, tagMergedIndex: .automatic, contents: operationContents)
|
||||
}
|
||||
|
||||
func addSynchronizeMarkFeaturedStickerPacksAsSeenOperation(transaction: Transaction, ids: [ItemCollectionId]) {
|
||||
var updateLocalIndex: Int32?
|
||||
let tag: PeerOperationLogTag = OperationLogTags.SynchronizeMarkFeaturedStickerPacksAsSeen
|
||||
var previousIds = Set<ItemCollectionId>()
|
||||
transaction.operationLogEnumerateEntries(peerId: PeerId(0), tag: tag, { entry in
|
||||
updateLocalIndex = entry.tagLocalIndex
|
||||
if let operation = entry.contents as? SynchronizeMarkFeaturedStickerPacksAsSeenOperation {
|
||||
previousIds = Set(operation.ids)
|
||||
} else {
|
||||
assertionFailure()
|
||||
}
|
||||
return false
|
||||
})
|
||||
let operationContents = SynchronizeMarkFeaturedStickerPacksAsSeenOperation(ids: Array(previousIds.union(Set(ids))))
|
||||
if let updateLocalIndex = updateLocalIndex {
|
||||
let _ = transaction.operationLogRemoveEntry(peerId: PeerId(0), tag: tag, tagLocalIndex: updateLocalIndex)
|
||||
}
|
||||
transaction.operationLogAddEntry(peerId: PeerId(0), tag: tag, tagLocalIndex: .automatic, tagMergedIndex: .automatic, contents: operationContents)
|
||||
}
|
||||
Reference in New Issue
Block a user