mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-17 11:00:07 +00:00
85 lines
3.4 KiB
Swift
85 lines
3.4 KiB
Swift
import Foundation
|
|
#if os(macOS)
|
|
import PostboxMac
|
|
#else
|
|
import Postbox
|
|
#endif
|
|
|
|
public final class CachedUserData: CachedPeerData {
|
|
public let about: String?
|
|
public let botInfo: BotInfo?
|
|
public let reportStatus: PeerReportStatus
|
|
public let isBlocked: Bool
|
|
public let commonGroupCount: Int32
|
|
|
|
public let peerIds = Set<PeerId>()
|
|
|
|
init() {
|
|
self.about = nil
|
|
self.botInfo = nil
|
|
self.reportStatus = .unknown
|
|
self.isBlocked = false
|
|
self.commonGroupCount = 0
|
|
}
|
|
|
|
init(about: String?, botInfo: BotInfo?, reportStatus: PeerReportStatus, isBlocked: Bool, commonGroupCount: Int32) {
|
|
self.about = about
|
|
self.botInfo = botInfo
|
|
self.reportStatus = reportStatus
|
|
self.isBlocked = isBlocked
|
|
self.commonGroupCount = commonGroupCount
|
|
}
|
|
|
|
public init(decoder: Decoder) {
|
|
self.about = decoder.decodeStringForKey("a")
|
|
self.botInfo = decoder.decodeObjectForKey("bi") as? BotInfo
|
|
self.reportStatus = PeerReportStatus(rawValue: decoder.decodeInt32ForKey("r"))!
|
|
self.isBlocked = decoder.decodeInt32ForKey("b") != 0
|
|
self.commonGroupCount = decoder.decodeInt32ForKey("cg")
|
|
}
|
|
|
|
public func encode(_ encoder: Encoder) {
|
|
if let about = self.about {
|
|
encoder.encodeString(about, forKey: "a")
|
|
} else {
|
|
encoder.encodeNil(forKey: "a")
|
|
}
|
|
if let botInfo = self.botInfo {
|
|
encoder.encodeObject(botInfo, forKey: "bi")
|
|
} else {
|
|
encoder.encodeNil(forKey: "bi")
|
|
}
|
|
encoder.encodeInt32(self.reportStatus.rawValue, forKey: "r")
|
|
encoder.encodeInt32(self.isBlocked ? 1 : 0, forKey: "b")
|
|
encoder.encodeInt32(self.commonGroupCount, forKey: "cg")
|
|
}
|
|
|
|
public func isEqual(to: CachedPeerData) -> Bool {
|
|
guard let other = to as? CachedUserData else {
|
|
return false
|
|
}
|
|
|
|
return other.about == self.about && other.botInfo == self.botInfo && self.reportStatus == other.reportStatus && self.isBlocked == other.isBlocked && self.commonGroupCount == other.commonGroupCount
|
|
}
|
|
|
|
func withUpdatedAbout(_ about: String?) -> CachedUserData {
|
|
return CachedUserData(about: about, botInfo: self.botInfo, reportStatus: self.reportStatus, isBlocked: self.isBlocked, commonGroupCount: self.commonGroupCount)
|
|
}
|
|
|
|
func withUpdatedBotInfo(_ botInfo: BotInfo?) -> CachedUserData {
|
|
return CachedUserData(about: self.about, botInfo: botInfo, reportStatus: self.reportStatus, isBlocked: self.isBlocked, commonGroupCount: self.commonGroupCount)
|
|
}
|
|
|
|
func withUpdatedReportStatus(_ reportStatus: PeerReportStatus) -> CachedUserData {
|
|
return CachedUserData(about: self.about, botInfo: self.botInfo, reportStatus: reportStatus, isBlocked: self.isBlocked, commonGroupCount: self.commonGroupCount)
|
|
}
|
|
|
|
func withUpdatedIsBlocked(_ isBlocked: Bool) -> CachedUserData {
|
|
return CachedUserData(about: self.about, botInfo: self.botInfo, reportStatus: self.reportStatus, isBlocked: isBlocked, commonGroupCount: self.commonGroupCount)
|
|
}
|
|
|
|
func withUpdatedCommonGroupCount(_ commonGroupCount: Int32) -> CachedUserData {
|
|
return CachedUserData(about: self.about, botInfo: self.botInfo, reportStatus: self.reportStatus, isBlocked: self.isBlocked, commonGroupCount: commonGroupCount)
|
|
}
|
|
}
|