mirror of https://github.com/oxen-io/session-ios
Updated the code to cache the retrieval of the user public key
parent
d3e9fff893
commit
2e10ccf99d
@ -1,7 +1,25 @@
|
||||
import Foundation
|
||||
|
||||
public enum General {
|
||||
public enum Cache {
|
||||
public static var cachedEncodedPublicKey: String? = nil
|
||||
}
|
||||
}
|
||||
|
||||
@objc(SNGeneralUtilities)
|
||||
public class GeneralUtilities: NSObject {
|
||||
@objc public static func getUserPublicKey() -> String {
|
||||
return getUserHexEncodedPublicKey()
|
||||
}
|
||||
}
|
||||
|
||||
public func getUserHexEncodedPublicKey() -> String {
|
||||
if let cachedKey: String = General.Cache.cachedEncodedPublicKey { return cachedKey }
|
||||
|
||||
if let keyPair = OWSIdentityManager.shared().identityKeyPair() { // Can be nil under some circumstances
|
||||
General.Cache.cachedEncodedPublicKey = keyPair.hexEncodedPublicKey
|
||||
return keyPair.hexEncodedPublicKey
|
||||
}
|
||||
|
||||
return ""
|
||||
}
|
||||
|
@ -1,11 +0,0 @@
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface SNGeneralUtilities : NSObject
|
||||
|
||||
+ (NSString *)getUserPublicKey;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
@ -1,16 +0,0 @@
|
||||
#import <SessionUtilitiesKit/SessionUtilitiesKit.h>
|
||||
#import "GeneralUtilities.h"
|
||||
#import "OWSIdentityManager.h"
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@implementation SNGeneralUtilities
|
||||
|
||||
+ (NSString *)getUserPublicKey
|
||||
{
|
||||
return OWSIdentityManager.sharedManager.identityKeyPair.hexEncodedPublicKey;
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
Loading…
Reference in New Issue