184 lines
5.6 KiB
Swift
184 lines
5.6 KiB
Swift
//
|
|
// Copyright 2022 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
public import LibSignalClient
|
|
|
|
// MARK: -
|
|
|
|
extension TSGroupThread {
|
|
public var groupIdentifier: GroupIdentifier {
|
|
get throws {
|
|
return try GroupIdentifier(contents: [UInt8](self.groupId))
|
|
}
|
|
}
|
|
|
|
public static func fetch(forGroupId groupId: GroupIdentifier, tx: SDSAnyReadTransaction) -> TSGroupThread? {
|
|
return fetch(groupId: groupId.serialize().asData, transaction: tx)
|
|
}
|
|
}
|
|
|
|
// MARK: -
|
|
|
|
public extension TSGroupThread {
|
|
func updateWithStorySendEnabled(
|
|
_ storySendEnabled: Bool,
|
|
transaction: SDSAnyWriteTransaction,
|
|
updateStorageService: Bool = true
|
|
) {
|
|
let wasStorySendEnabled = self.isStorySendExplicitlyEnabled
|
|
updateWithStoryViewMode(storySendEnabled ? .explicit : .disabled, transaction: transaction)
|
|
|
|
if updateStorageService {
|
|
SSKEnvironment.shared.storageServiceManagerRef.recordPendingUpdates(groupModel: groupModel)
|
|
}
|
|
|
|
if !wasStorySendEnabled, storySendEnabled {
|
|
// When enabling after being disabled, always unhide the story context.
|
|
if
|
|
let storyContextAssociatedData = StoryFinder.associatedData(for: self, transaction: transaction),
|
|
storyContextAssociatedData.isHidden
|
|
{
|
|
storyContextAssociatedData.update(
|
|
updateStorageService: updateStorageService,
|
|
isHidden: false,
|
|
transaction: transaction
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
var isStorySendExplicitlyEnabled: Bool {
|
|
storyViewMode == .explicit
|
|
}
|
|
|
|
func isStorySendEnabled(transaction: SDSAnyReadTransaction) -> Bool {
|
|
if isStorySendExplicitlyEnabled { return true }
|
|
return StoryFinder.latestStoryForThread(self, transaction: transaction) != nil
|
|
}
|
|
}
|
|
|
|
// MARK: -
|
|
|
|
public extension TSThreadStoryViewMode {
|
|
var storageServiceMode: StorageServiceProtoGroupV2RecordStorySendMode {
|
|
switch self {
|
|
case .default:
|
|
return .default
|
|
case .explicit:
|
|
return .enabled
|
|
case .disabled:
|
|
return .disabled
|
|
case .blockList:
|
|
owsFailDebug("Unexpected story mode")
|
|
return .default
|
|
}
|
|
}
|
|
|
|
init(storageServiceMode: StorageServiceProtoGroupV2RecordStorySendMode) {
|
|
switch storageServiceMode {
|
|
case .default:
|
|
self = .default
|
|
case .disabled:
|
|
self = .disabled
|
|
case .enabled:
|
|
self = .explicit
|
|
case .UNRECOGNIZED(let value):
|
|
owsFailDebug("Unexpected story mode \(value)")
|
|
self = .default
|
|
}
|
|
}
|
|
}
|
|
|
|
// MARK: -
|
|
|
|
extension TSGroupThread {
|
|
override open func update(
|
|
withInsertedMessage message: TSInteraction,
|
|
transaction tx: SDSAnyWriteTransaction
|
|
) {
|
|
super.update(withInsertedMessage: message, transaction: tx)
|
|
|
|
let senderAddress: SignalServiceAddress? = {
|
|
if message is TSOutgoingMessage {
|
|
return DependenciesBridge.shared.tsAccountManager.localIdentifiers(tx: tx.asV2Read)?.aciAddress
|
|
} else if let incomingMessage = message as? TSIncomingMessage {
|
|
return incomingMessage.authorAddress
|
|
}
|
|
|
|
return nil
|
|
}()
|
|
|
|
guard let senderAddress else { return }
|
|
|
|
guard let groupMember = TSGroupMember.groupMember(
|
|
for: senderAddress, in: uniqueId, transaction: tx
|
|
) else {
|
|
owsFailDebug("Unexpectedly missing group member record!")
|
|
return
|
|
}
|
|
|
|
groupMember.anyUpdateWith(
|
|
lastInteractionTimestamp: message.timestamp,
|
|
transaction: tx
|
|
)
|
|
}
|
|
}
|
|
|
|
// MARK: - Testable build
|
|
|
|
#if TESTABLE_BUILD
|
|
|
|
extension TSGroupThread {
|
|
|
|
public static func forUnitTest(
|
|
groupId: UInt8 = 0,
|
|
groupMembers: [SignalServiceAddress] = []
|
|
) -> TSGroupThread {
|
|
let groupId = Data(repeating: groupId, count: 32)
|
|
let groupThreadId = TSGroupThread.defaultThreadId(forGroupId: groupId)
|
|
let groupThread = TSGroupThread(
|
|
grdbId: 1,
|
|
uniqueId: groupThreadId,
|
|
conversationColorNameObsolete: "",
|
|
creationDate: nil,
|
|
editTargetTimestamp: nil,
|
|
isArchivedObsolete: false,
|
|
isMarkedUnreadObsolete: false,
|
|
lastInteractionRowId: 1,
|
|
lastSentStoryTimestamp: nil,
|
|
lastVisibleSortIdObsolete: 0,
|
|
lastVisibleSortIdOnScreenPercentageObsolete: 0,
|
|
mentionNotificationMode: .default,
|
|
messageDraft: nil,
|
|
messageDraftBodyRanges: nil,
|
|
mutedUntilDateObsolete: nil,
|
|
mutedUntilTimestampObsolete: 0,
|
|
shouldThreadBeVisible: true,
|
|
storyViewMode: .default,
|
|
groupModel: TSGroupModelV2(
|
|
groupId: groupId,
|
|
name: "Example Group",
|
|
descriptionText: nil,
|
|
avatarData: nil,
|
|
groupMembership: GroupMembership(membersForTest: groupMembers),
|
|
groupAccess: .defaultForV2,
|
|
revision: 1,
|
|
secretParamsData: Data(count: 1),
|
|
avatarUrlPath: nil,
|
|
inviteLinkPassword: nil,
|
|
isAnnouncementsOnly: false,
|
|
isJoinRequestPlaceholder: false,
|
|
wasJustMigrated: false,
|
|
didJustAddSelfViaGroupLink: false,
|
|
addedByAddress: nil,
|
|
droppedMembers: []
|
|
)
|
|
)
|
|
groupThread.clearRowId()
|
|
return groupThread
|
|
}
|
|
}
|
|
|
|
#endif
|