mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
Implement contact storage
This commit is contained in:
parent
6b0909b41b
commit
9b3f71172b
3 changed files with 23 additions and 1 deletions
18
SessionMessagingKit/Database/Storage+Contacts.swift
Normal file
18
SessionMessagingKit/Database/Storage+Contacts.swift
Normal file
|
@ -0,0 +1,18 @@
|
|||
import SessionProtocolKit
|
||||
|
||||
extension Storage {
|
||||
|
||||
private static let contactCollection = "LokiContactCollection"
|
||||
|
||||
public func getContact(with sessionID: String) -> Contact? {
|
||||
var result: Contact?
|
||||
Storage.read { transaction in
|
||||
result = transaction.object(forKey: sessionID, inCollection: Storage.contactCollection) as? Contact
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
public func setContact(_ contact: Contact, using transaction: Any) {
|
||||
(transaction as! YapDatabaseReadWriteTransaction).setObject(contact, forKey: contact.sessionID, inCollection: Storage.contactCollection)
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
public extension VisibleMessage {
|
||||
|
||||
@objc(SNContact)
|
||||
@objc(SNMessageContact)
|
||||
class Contact : NSObject, NSCoding {
|
||||
|
||||
public required init?(coder: NSCoder) { }
|
||||
|
|
|
@ -283,6 +283,7 @@
|
|||
B8A14D702589CE9000E70D57 /* KeyPairMigrationSuccessSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8A14D6F2589CE9000E70D57 /* KeyPairMigrationSuccessSheet.swift */; };
|
||||
B8B26C8F234D629C004ED98C /* MentionCandidateSelectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8B26C8E234D629C004ED98C /* MentionCandidateSelectionView.swift */; };
|
||||
B8B32021258B1A650020074B /* Contact.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8B32020258B1A650020074B /* Contact.swift */; };
|
||||
B8B32033258B235D0020074B /* Storage+Contacts.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8B32032258B235D0020074B /* Storage+Contacts.swift */; };
|
||||
B8BB82A5238F627000BA5194 /* HomeVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8BB82A4238F627000BA5194 /* HomeVC.swift */; };
|
||||
B8BC00C0257D90E30032E807 /* General.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8BC00BF257D90E30032E807 /* General.swift */; };
|
||||
B8C2B2C82563685C00551B4D /* CircleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8C2B2C72563685C00551B4D /* CircleView.swift */; };
|
||||
|
@ -1377,6 +1378,7 @@
|
|||
B8A14D6F2589CE9000E70D57 /* KeyPairMigrationSuccessSheet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KeyPairMigrationSuccessSheet.swift; sourceTree = "<group>"; };
|
||||
B8B26C8E234D629C004ED98C /* MentionCandidateSelectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MentionCandidateSelectionView.swift; sourceTree = "<group>"; };
|
||||
B8B32020258B1A650020074B /* Contact.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Contact.swift; sourceTree = "<group>"; };
|
||||
B8B32032258B235D0020074B /* Storage+Contacts.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Storage+Contacts.swift"; sourceTree = "<group>"; };
|
||||
B8B5BCEB2394D869003823C9 /* Button.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Button.swift; sourceTree = "<group>"; };
|
||||
B8BB829F238F322400BA5194 /* Colors.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Colors.swift; sourceTree = "<group>"; };
|
||||
B8BB82A1238F356100BA5194 /* Values.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Values.swift; sourceTree = "<group>"; };
|
||||
|
@ -2857,6 +2859,7 @@
|
|||
C33FDAB9255A580100E217F9 /* OWSStorage+Subclass.h */,
|
||||
C33FDAB1255A580000E217F9 /* OWSStorage.m */,
|
||||
B8D8F1372566120F0092EF10 /* Storage+ClosedGroups.swift */,
|
||||
B8B32032258B235D0020074B /* Storage+Contacts.swift */,
|
||||
B8D8F17625661AFA0092EF10 /* Storage+Jobs.swift */,
|
||||
B8D8F19225661BF80092EF10 /* Storage+Messaging.swift */,
|
||||
B8D8F18825661BA50092EF10 /* Storage+OpenGroups.swift */,
|
||||
|
@ -5208,6 +5211,7 @@
|
|||
B8856CEE256F1054001CE70E /* OWSAudioPlayer.m in Sources */,
|
||||
C32C5EDC256DF501003C73A2 /* YapDatabaseConnection+OWS.m in Sources */,
|
||||
C3BBE0762554CDA60050F1E3 /* Configuration.swift in Sources */,
|
||||
B8B32033258B235D0020074B /* Storage+Contacts.swift in Sources */,
|
||||
B8856D69256F141F001CE70E /* OWSWindowManager.m in Sources */,
|
||||
C32C5F5F256DFD90003C73A2 /* TSInvalidIdentityKeyErrorMessage.m in Sources */,
|
||||
C3D9E3BE25676AD70040E4F3 /* TSAttachmentPointer.m in Sources */,
|
||||
|
|
Loading…
Reference in a new issue