mirror of https://github.com/oxen-io/session-ios
Refactor
parent
7e6d0a7dd2
commit
a41b670bb5
@ -1,5 +1,5 @@
|
||||
|
||||
final class SeedVCV2 : UIViewController {
|
||||
final class SeedVC : UIViewController {
|
||||
|
||||
private let mnemonic: String = {
|
||||
let identityManager = OWSIdentityManager.shared()
|
@ -0,0 +1,4 @@
|
||||
|
||||
public func getUserHexEncodedPublicKey() -> String {
|
||||
return OWSIdentityManager.shared().identityKeyPair()!.hexEncodedPublicKey
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
|
||||
public enum GroupUtilities {
|
||||
|
||||
public static func getClosedGroupMembers(_ closedGroup: TSGroupThread) -> [String] {
|
||||
var result: [String]!
|
||||
OWSPrimaryStorage.shared().dbReadConnection.read { transaction in
|
||||
result = getClosedGroupMembers(closedGroup, with: transaction)
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
public static func getClosedGroupMembers(_ closedGroup: TSGroupThread, with transaction: YapDatabaseReadTransaction) -> [String] {
|
||||
let userHexEncodedPublicKey = getUserHexEncodedPublicKey()
|
||||
let linkedDeviceHexEncodedPublicKeys = LokiDatabaseUtilities.getLinkedDeviceHexEncodedPublicKeys(for: userHexEncodedPublicKey, in: transaction)
|
||||
return closedGroup.groupModel.groupMemberIds.filter { !linkedDeviceHexEncodedPublicKeys.contains($0) }
|
||||
}
|
||||
|
||||
public static func getClosedGroupMemberCount(_ closedGroup: TSGroupThread) -> Int {
|
||||
return getClosedGroupMembers(closedGroup).count
|
||||
}
|
||||
|
||||
public static func getClosedGroupMemberCount(_ closedGroup: TSGroupThread, with transaction: YapDatabaseReadTransaction) -> Int {
|
||||
return getClosedGroupMembers(closedGroup, with: transaction).count
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue