37 lines
1023 B
Swift
37 lines
1023 B
Swift
//
|
|
// Copyright 2018 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
public import SignalServiceKit
|
|
|
|
public class DefaultDisappearingMessageTimerInteraction: TSInteraction {
|
|
|
|
override public var isDynamicInteraction: Bool {
|
|
true
|
|
}
|
|
|
|
override public var interactionType: OWSInteractionType {
|
|
.defaultDisappearingMessageTimer
|
|
}
|
|
|
|
public init(thread: TSThread, timestamp: UInt64) {
|
|
// Include timestamp in uniqueId to ensure invariant that
|
|
// interactions don't move in the chat history ordering.
|
|
super.init(
|
|
customUniqueId: "DefaultDisappearingMessageTimer_\(timestamp)",
|
|
timestamp: timestamp,
|
|
receivedAtTimestamp: 0,
|
|
thread: thread,
|
|
)
|
|
}
|
|
|
|
override public var shouldBeSaved: Bool {
|
|
return false
|
|
}
|
|
|
|
override public func anyWillInsert(with transaction: DBWriteTransaction) {
|
|
owsFailDebug("The transient interaction should not be saved in the database.")
|
|
}
|
|
}
|