|
|
|
@ -5,6 +5,7 @@ import SignalCoreKit
|
|
|
|
|
public final class AttachmentDownloadJob : NSObject, Job, NSCoding { // NSObject/NSCoding conformance is needed for YapDatabase compatibility
|
|
|
|
|
public let attachmentID: String
|
|
|
|
|
public let tsMessageID: String
|
|
|
|
|
public let threadID: String
|
|
|
|
|
public var delegate: JobDelegate?
|
|
|
|
|
public var id: String?
|
|
|
|
|
public var failureCount: UInt = 0
|
|
|
|
@ -27,18 +28,21 @@ public final class AttachmentDownloadJob : NSObject, Job, NSCoding { // NSObject
|
|
|
|
|
public static let maxFailureCount: UInt = 20
|
|
|
|
|
|
|
|
|
|
// MARK: Initialization
|
|
|
|
|
public init(attachmentID: String, tsMessageID: String) {
|
|
|
|
|
public init(attachmentID: String, tsMessageID: String, threadID: String) {
|
|
|
|
|
self.attachmentID = attachmentID
|
|
|
|
|
self.tsMessageID = tsMessageID
|
|
|
|
|
self.threadID = threadID
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// MARK: Coding
|
|
|
|
|
public init?(coder: NSCoder) {
|
|
|
|
|
guard let attachmentID = coder.decodeObject(forKey: "attachmentID") as! String?,
|
|
|
|
|
let tsMessageID = coder.decodeObject(forKey: "tsIncomingMessageID") as! String?,
|
|
|
|
|
let threadID = coder.decodeObject(forKey: "threadID") as! String?,
|
|
|
|
|
let id = coder.decodeObject(forKey: "id") as! String? else { return nil }
|
|
|
|
|
self.attachmentID = attachmentID
|
|
|
|
|
self.tsMessageID = tsMessageID
|
|
|
|
|
self.threadID = threadID
|
|
|
|
|
self.id = id
|
|
|
|
|
self.failureCount = coder.decodeObject(forKey: "failureCount") as! UInt? ?? 0
|
|
|
|
|
self.isDeferred = coder.decodeBool(forKey: "isDeferred")
|
|
|
|
@ -47,6 +51,7 @@ public final class AttachmentDownloadJob : NSObject, Job, NSCoding { // NSObject
|
|
|
|
|
public func encode(with coder: NSCoder) {
|
|
|
|
|
coder.encode(attachmentID, forKey: "attachmentID")
|
|
|
|
|
coder.encode(tsMessageID, forKey: "tsIncomingMessageID")
|
|
|
|
|
coder.encode(threadID, forKey: "threadID")
|
|
|
|
|
coder.encode(id, forKey: "id")
|
|
|
|
|
coder.encode(failureCount, forKey: "failureCount")
|
|
|
|
|
coder.encode(isDeferred, forKey: "isDeferred")
|
|
|
|
|