mirror of https://github.com/oxen-io/session-ios
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Swift
		
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Swift
		
	
| 
 | |
| enum ContactUtilities {
 | |
| 
 | |
|     static func getAllContacts() -> [String] {
 | |
|         // Collect all contacts
 | |
|         var result: [String] = []
 | |
|         Storage.read { transaction in
 | |
|             TSContactThread.enumerateCollectionObjects(with: transaction) { object, _ in
 | |
|                 guard
 | |
|                     let thread: TSContactThread = object as? TSContactThread,
 | |
|                     thread.shouldBeVisible,
 | |
|                     Storage.shared.getContact(
 | |
|                         with: thread.contactSessionID(),
 | |
|                         using: transaction
 | |
|                     )?.didApproveMe == true
 | |
|                 else {
 | |
|                     return
 | |
|                 }
 | |
|                 
 | |
|                 result.append(thread.contactSessionID())
 | |
|             }
 | |
|         }
 | |
|         func getDisplayName(for publicKey: String) -> String {
 | |
|             return Storage.shared.getContact(with: publicKey)?.displayName(for: .regular) ?? publicKey
 | |
|         }
 | |
|         
 | |
|         // Remove the current user
 | |
|         if let index = result.firstIndex(of: getUserHexEncodedPublicKey()) {
 | |
|             result.remove(at: index)
 | |
|         }
 | |
|         
 | |
|         // Sort alphabetically
 | |
|         return result.sorted { getDisplayName(for: $0) < getDisplayName(for: $1) }
 | |
|     }
 | |
| }
 |