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.
95 lines
4.1 KiB
Swift
95 lines
4.1 KiB
Swift
import PromiseKit
|
|
|
|
public extension LokiAPI {
|
|
|
|
// MARK: Settings
|
|
private static let minimumSnodeCount = 2 // TODO: For debugging purposes
|
|
private static let targetSnodeCount = 3 // TODO: For debugging purposes
|
|
private static let defaultSnodePort: UInt16 = 8080
|
|
|
|
// MARK: Caching
|
|
private static let swarmCacheKey = "swarmCacheKey"
|
|
private static let swarmCacheCollection = "swarmCacheCollection"
|
|
|
|
internal static var swarmCache: [String:[LokiAPITarget]] {
|
|
get {
|
|
var result: [String:[LokiAPITarget]]? = nil
|
|
storage.dbReadConnection.read { transaction in
|
|
result = transaction.object(forKey: swarmCacheKey, inCollection: swarmCacheCollection) as! [String:[LokiAPITarget]]?
|
|
}
|
|
return result ?? [:]
|
|
}
|
|
set {
|
|
storage.dbReadWriteConnection.readWrite { transaction in
|
|
transaction.setObject(newValue, forKey: swarmCacheKey, inCollection: swarmCacheCollection)
|
|
}
|
|
}
|
|
}
|
|
|
|
internal static func dropIfNeeded(_ target: LokiAPITarget, hexEncodedPublicKey: String) {
|
|
let swarm = LokiAPI.swarmCache[hexEncodedPublicKey]
|
|
if var swarm = swarm, let index = swarm.firstIndex(of: target) {
|
|
swarm.remove(at: index)
|
|
LokiAPI.swarmCache[hexEncodedPublicKey] = swarm
|
|
}
|
|
}
|
|
|
|
// MARK: Internal API
|
|
private static func getRandomSnode() -> Promise<LokiAPITarget> {
|
|
return Promise<LokiAPITarget> { seal in
|
|
seal.fulfill(LokiAPITarget(address: "http://13.236.173.190", port: defaultSnodePort)) // TODO: For debugging purposes
|
|
}
|
|
}
|
|
|
|
internal static func getSwarm(for hexEncodedPublicKey: String) -> Promise<[LokiAPITarget]> {
|
|
if let cachedSwarm = swarmCache[hexEncodedPublicKey], cachedSwarm.count >= minimumSnodeCount {
|
|
return Promise<[LokiAPITarget]> { $0.fulfill(cachedSwarm) }
|
|
} else {
|
|
let parameters: [String:Any] = [ "pubKey" : hexEncodedPublicKey ]
|
|
return getRandomSnode().then { invoke(.getSwarm, on: $0, associatedWith: hexEncodedPublicKey, parameters: parameters) }.map { parseTargets(from: $0) }.get { swarmCache[hexEncodedPublicKey] = $0 }
|
|
}
|
|
}
|
|
|
|
// MARK: Public API
|
|
internal static func getTargetSnodes(for hexEncodedPublicKey: String) -> Promise<[LokiAPITarget]> {
|
|
// shuffled() uses the system's default random generator, which is cryptographically secure
|
|
return getSwarm(for: hexEncodedPublicKey).map { Array($0.shuffled().prefix(targetSnodeCount)) }
|
|
}
|
|
|
|
// MARK: Parsing
|
|
private static func parseTargets(from rawResponse: Any) -> [LokiAPITarget] {
|
|
// TODO: For debugging purposes
|
|
// ========
|
|
let target = LokiAPITarget(address: "http://13.236.173.190", port: defaultSnodePort)
|
|
return Array(repeating: target, count: 3)
|
|
// ========
|
|
// guard let json = rawResponse as? JSON, let addresses = json["snodes"] as? [String] else {
|
|
// Logger.warn("[Loki] Failed to parse targets from: \(rawResponse).")
|
|
// return []
|
|
// }
|
|
// return addresses.map { Target(address: $0, port: defaultSnodePort) }
|
|
}
|
|
}
|
|
|
|
// MARK: Error Handling
|
|
internal extension Promise {
|
|
|
|
internal func handlingSwarmSpecificErrorsIfNeeded(for target: LokiAPITarget, associatedWith hexEncodedPublicKey: String) -> Promise<T> {
|
|
return recover { error -> Promise<T> in
|
|
if let error = error as? NetworkManagerError {
|
|
switch error.statusCode {
|
|
case 0:
|
|
// The snode is unreachable; usually a problem with LokiNet
|
|
Logger.warn("[Loki] Couldn't reach snode at: \(target.address):\(target.port).")
|
|
case 421:
|
|
// The snode isn't associated with the given public key anymore
|
|
Logger.warn("[Loki] Invalidating swarm for: \(hexEncodedPublicKey).")
|
|
LokiAPI.dropIfNeeded(target, hexEncodedPublicKey: hexEncodedPublicKey)
|
|
default: break
|
|
}
|
|
}
|
|
throw error
|
|
}
|
|
}
|
|
}
|