|
|
|
@ -410,6 +410,7 @@ public extension LibSession {
|
|
|
|
|
_ db: Database,
|
|
|
|
|
threadId: String,
|
|
|
|
|
threadVariant: SessionThread.Variant,
|
|
|
|
|
conf: UnsafeMutablePointer<config_object>?,
|
|
|
|
|
using dependencies: Dependencies
|
|
|
|
|
) -> Int32 {
|
|
|
|
|
let userPublicKey: String = getUserHexEncodedPublicKey(db)
|
|
|
|
@ -420,70 +421,81 @@ public extension LibSession {
|
|
|
|
|
}
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
return dependencies.caches[.libSession]
|
|
|
|
|
.config(for: configVariant, publicKey: userPublicKey)
|
|
|
|
|
.wrappedValue
|
|
|
|
|
.map { conf in
|
|
|
|
|
guard var cThreadId: [CChar] = threadId.cString(using: .utf8) else {
|
|
|
|
|
guard let conf: UnsafeMutablePointer<config_object> = conf else {
|
|
|
|
|
return dependencies.caches[.libSession]
|
|
|
|
|
.config(for: configVariant, publicKey: userPublicKey)
|
|
|
|
|
.wrappedValue
|
|
|
|
|
.map { conf in
|
|
|
|
|
LibSession.pinnedPriority(
|
|
|
|
|
db,
|
|
|
|
|
threadId: threadId,
|
|
|
|
|
threadVariant: threadVariant,
|
|
|
|
|
conf: conf,
|
|
|
|
|
using: dependencies
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
.defaulting(to: LibSession.defaultNewThreadPriority)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
guard var cThreadId: [CChar] = threadId.cString(using: .utf8) else {
|
|
|
|
|
return LibSession.defaultNewThreadPriority
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch threadVariant {
|
|
|
|
|
case .contact where threadId == userPublicKey:
|
|
|
|
|
return user_profile_get_nts_priority(conf)
|
|
|
|
|
|
|
|
|
|
case .contact:
|
|
|
|
|
var contact: contacts_contact = contacts_contact()
|
|
|
|
|
|
|
|
|
|
guard contacts_get(conf, &contact, &cThreadId) else {
|
|
|
|
|
LibSessionError.clear(conf)
|
|
|
|
|
return LibSession.defaultNewThreadPriority
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch threadVariant {
|
|
|
|
|
case .contact where threadId == userPublicKey:
|
|
|
|
|
return user_profile_get_nts_priority(conf)
|
|
|
|
|
|
|
|
|
|
case .contact:
|
|
|
|
|
var contact: contacts_contact = contacts_contact()
|
|
|
|
|
|
|
|
|
|
guard contacts_get(conf, &contact, &cThreadId) else {
|
|
|
|
|
LibSessionError.clear(conf)
|
|
|
|
|
return LibSession.defaultNewThreadPriority
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return contact.priority
|
|
|
|
|
|
|
|
|
|
case .community:
|
|
|
|
|
let maybeUrlInfo: OpenGroupUrlInfo? = Storage.shared
|
|
|
|
|
.read { db in try OpenGroupUrlInfo.fetchAll(db, ids: [threadId]) }?
|
|
|
|
|
.first
|
|
|
|
|
|
|
|
|
|
guard
|
|
|
|
|
let urlInfo: OpenGroupUrlInfo = maybeUrlInfo,
|
|
|
|
|
var cBaseUrl: [CChar] = urlInfo.server.cString(using: .utf8),
|
|
|
|
|
var cRoom: [CChar] = urlInfo.roomToken.cString(using: .utf8)
|
|
|
|
|
else { return LibSession.defaultNewThreadPriority }
|
|
|
|
|
|
|
|
|
|
var community: ugroups_community_info = ugroups_community_info()
|
|
|
|
|
let result: Bool = user_groups_get_community(conf, &community, &cBaseUrl, &cRoom)
|
|
|
|
|
LibSessionError.clear(conf)
|
|
|
|
|
|
|
|
|
|
return community.priority
|
|
|
|
|
|
|
|
|
|
case .legacyGroup:
|
|
|
|
|
let groupInfo: UnsafeMutablePointer<ugroups_legacy_group_info>? = user_groups_get_legacy_group(conf, &cThreadId)
|
|
|
|
|
LibSessionError.clear(conf)
|
|
|
|
|
|
|
|
|
|
defer {
|
|
|
|
|
if groupInfo != nil {
|
|
|
|
|
ugroups_legacy_group_free(groupInfo)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (groupInfo?.pointee.priority ?? LibSession.defaultNewThreadPriority)
|
|
|
|
|
|
|
|
|
|
case .group:
|
|
|
|
|
return LibSession.defaultNewThreadPriority // FIXME: Add in groups rebuild
|
|
|
|
|
return contact.priority
|
|
|
|
|
|
|
|
|
|
case .community:
|
|
|
|
|
let maybeUrlInfo: OpenGroupUrlInfo? = Storage.shared
|
|
|
|
|
.read { db in try OpenGroupUrlInfo.fetchAll(db, ids: [threadId]) }?
|
|
|
|
|
.first
|
|
|
|
|
|
|
|
|
|
guard
|
|
|
|
|
let urlInfo: OpenGroupUrlInfo = maybeUrlInfo,
|
|
|
|
|
var cBaseUrl: [CChar] = urlInfo.server.cString(using: .utf8),
|
|
|
|
|
var cRoom: [CChar] = urlInfo.roomToken.cString(using: .utf8)
|
|
|
|
|
else { return LibSession.defaultNewThreadPriority }
|
|
|
|
|
|
|
|
|
|
var community: ugroups_community_info = ugroups_community_info()
|
|
|
|
|
let result: Bool = user_groups_get_community(conf, &community, &cBaseUrl, &cRoom)
|
|
|
|
|
LibSessionError.clear(conf)
|
|
|
|
|
|
|
|
|
|
return community.priority
|
|
|
|
|
|
|
|
|
|
case .legacyGroup:
|
|
|
|
|
let groupInfo: UnsafeMutablePointer<ugroups_legacy_group_info>? = user_groups_get_legacy_group(conf, &cThreadId)
|
|
|
|
|
LibSessionError.clear(conf)
|
|
|
|
|
|
|
|
|
|
defer {
|
|
|
|
|
if groupInfo != nil {
|
|
|
|
|
ugroups_legacy_group_free(groupInfo)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.defaulting(to: LibSession.defaultNewThreadPriority)
|
|
|
|
|
|
|
|
|
|
return (groupInfo?.pointee.priority ?? LibSession.defaultNewThreadPriority)
|
|
|
|
|
|
|
|
|
|
case .group:
|
|
|
|
|
return LibSession.defaultNewThreadPriority // FIXME: Add in groups rebuild
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static func disappearingMessagesConfig(
|
|
|
|
|
_ db: Database,
|
|
|
|
|
threadId: String,
|
|
|
|
|
threadVariant: SessionThread.Variant,
|
|
|
|
|
conf: UnsafeMutablePointer<config_object>?,
|
|
|
|
|
using dependencies: Dependencies
|
|
|
|
|
) throws -> DisappearingMessagesConfiguration? {
|
|
|
|
|
) -> DisappearingMessagesConfiguration? {
|
|
|
|
|
switch threadVariant {
|
|
|
|
|
case .community: return nil
|
|
|
|
|
default: break
|
|
|
|
@ -497,65 +509,75 @@ public extension LibSession {
|
|
|
|
|
}
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
return dependencies.caches[.libSession]
|
|
|
|
|
.config(for: configVariant, publicKey: userPublicKey)
|
|
|
|
|
.wrappedValue
|
|
|
|
|
.map { conf -> DisappearingMessagesConfiguration? in
|
|
|
|
|
guard var cThreadId: [CChar] = threadId.cString(using: .utf8) else { return nil }
|
|
|
|
|
guard let conf: UnsafeMutablePointer<config_object> = conf else {
|
|
|
|
|
return dependencies.caches[.libSession]
|
|
|
|
|
.config(for: configVariant, publicKey: userPublicKey)
|
|
|
|
|
.wrappedValue
|
|
|
|
|
.map { conf in
|
|
|
|
|
LibSession.disappearingMessagesConfig(
|
|
|
|
|
db,
|
|
|
|
|
threadId: threadId,
|
|
|
|
|
threadVariant: threadVariant,
|
|
|
|
|
conf: conf,
|
|
|
|
|
using: dependencies
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
guard var cThreadId: [CChar] = threadId.cString(using: .utf8) else { return nil }
|
|
|
|
|
|
|
|
|
|
switch threadVariant {
|
|
|
|
|
case .community: return nil
|
|
|
|
|
case .contact where threadId == userPublicKey:
|
|
|
|
|
let targetExpiry: Int32 = user_profile_get_nts_expiry(conf)
|
|
|
|
|
let targetIsEnabled: Bool = (targetExpiry > 0)
|
|
|
|
|
|
|
|
|
|
switch threadVariant {
|
|
|
|
|
case .community: return nil
|
|
|
|
|
case .contact where threadId == userPublicKey:
|
|
|
|
|
let targetExpiry: Int32 = user_profile_get_nts_expiry(conf)
|
|
|
|
|
let targetIsEnabled: Bool = (targetExpiry > 0)
|
|
|
|
|
|
|
|
|
|
return DisappearingMessagesConfiguration(
|
|
|
|
|
threadId: threadId,
|
|
|
|
|
isEnabled: targetIsEnabled,
|
|
|
|
|
durationSeconds: TimeInterval(targetExpiry),
|
|
|
|
|
type: targetIsEnabled ? .disappearAfterSend : .unknown
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
case .contact:
|
|
|
|
|
var contact: contacts_contact = contacts_contact()
|
|
|
|
|
|
|
|
|
|
guard contacts_get(conf, &contact, &cThreadId) else {
|
|
|
|
|
LibSessionError.clear(conf)
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return DisappearingMessagesConfiguration(
|
|
|
|
|
threadId: threadId,
|
|
|
|
|
isEnabled: contact.exp_seconds > 0,
|
|
|
|
|
durationSeconds: TimeInterval(contact.exp_seconds),
|
|
|
|
|
type: DisappearingMessagesConfiguration.DisappearingMessageType(
|
|
|
|
|
libSessionType: contact.exp_mode
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
case .legacyGroup:
|
|
|
|
|
let groupInfo: UnsafeMutablePointer<ugroups_legacy_group_info>? = user_groups_get_legacy_group(conf, &cThreadId)
|
|
|
|
|
LibSessionError.clear(conf)
|
|
|
|
|
|
|
|
|
|
defer {
|
|
|
|
|
if groupInfo != nil {
|
|
|
|
|
ugroups_legacy_group_free(groupInfo)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return groupInfo.map { info in
|
|
|
|
|
DisappearingMessagesConfiguration(
|
|
|
|
|
threadId: userPublicKey,
|
|
|
|
|
isEnabled: (info.pointee.disappearing_timer > 0),
|
|
|
|
|
durationSeconds: TimeInterval(info.pointee.disappearing_timer),
|
|
|
|
|
type: .disappearAfterSend
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case .group:
|
|
|
|
|
return nil // FIXME: Add in groups rebuild
|
|
|
|
|
return DisappearingMessagesConfiguration(
|
|
|
|
|
threadId: threadId,
|
|
|
|
|
isEnabled: targetIsEnabled,
|
|
|
|
|
durationSeconds: TimeInterval(targetExpiry),
|
|
|
|
|
type: targetIsEnabled ? .disappearAfterSend : .unknown
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
case .contact:
|
|
|
|
|
var contact: contacts_contact = contacts_contact()
|
|
|
|
|
|
|
|
|
|
guard contacts_get(conf, &contact, &cThreadId) else {
|
|
|
|
|
LibSessionError.clear(conf)
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return DisappearingMessagesConfiguration(
|
|
|
|
|
threadId: threadId,
|
|
|
|
|
isEnabled: contact.exp_seconds > 0,
|
|
|
|
|
durationSeconds: TimeInterval(contact.exp_seconds),
|
|
|
|
|
type: DisappearingMessagesConfiguration.DisappearingMessageType(
|
|
|
|
|
libSessionType: contact.exp_mode
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
case .legacyGroup:
|
|
|
|
|
let groupInfo: UnsafeMutablePointer<ugroups_legacy_group_info>? = user_groups_get_legacy_group(conf, &cThreadId)
|
|
|
|
|
LibSessionError.clear(conf)
|
|
|
|
|
|
|
|
|
|
defer {
|
|
|
|
|
if groupInfo != nil {
|
|
|
|
|
ugroups_legacy_group_free(groupInfo)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return groupInfo.map { info in
|
|
|
|
|
DisappearingMessagesConfiguration(
|
|
|
|
|
threadId: userPublicKey,
|
|
|
|
|
isEnabled: (info.pointee.disappearing_timer > 0),
|
|
|
|
|
durationSeconds: TimeInterval(info.pointee.disappearing_timer),
|
|
|
|
|
type: .disappearAfterSend
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case .group:
|
|
|
|
|
return nil // FIXME: Add in groups rebuild
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static func conversationInConfig(
|
|
|
|
@ -565,8 +587,8 @@ public extension LibSession {
|
|
|
|
|
visibleOnly: Bool,
|
|
|
|
|
using dependencies: Dependencies
|
|
|
|
|
) -> Bool {
|
|
|
|
|
// Currently blinded conversations cannot be contained in the config, so there is no point checking (it'll always be
|
|
|
|
|
// false)
|
|
|
|
|
// Currently blinded conversations cannot be contained in the config, so there is no
|
|
|
|
|
// point checking (it'll always be false)
|
|
|
|
|
guard
|
|
|
|
|
threadVariant == .community || (
|
|
|
|
|
(try? SessionId(from: threadId))?.prefix != .blinded15 &&
|
|
|
|
|