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.
71 lines
3.0 KiB
Swift
71 lines
3.0 KiB
Swift
import PromiseKit
|
|
|
|
extension LokiAPI {
|
|
|
|
// MARK: Settings
|
|
private static let targetSnodeCount = 2
|
|
private static let defaultSnodePort: UInt16 = 8080
|
|
|
|
// MARK: Caching
|
|
fileprivate static var swarmCache: [String:[Target]] = [:] // TODO: Persist on disk
|
|
|
|
// MARK: Internal API
|
|
private static func getRandomSnode() -> Promise<Target> {
|
|
return Promise<Target> { seal in
|
|
seal.fulfill(Target(address: "http://13.238.53.205", port: 8080)) // TODO: For debugging purposes
|
|
}
|
|
}
|
|
|
|
private static func getSwarm(for hexEncodedPublicKey: String) -> Promise<[Target]> {
|
|
if let cachedSwarm = swarmCache[hexEncodedPublicKey], cachedSwarm.count >= targetSnodeCount {
|
|
return Promise<[Target]> { $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 }
|
|
}
|
|
}
|
|
|
|
internal static func getTargetSnodes(for hexEncodedPublicKey: String) -> Promise<[Target]> {
|
|
// 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) -> [Target] {
|
|
// TODO: For debugging purposes
|
|
// ========
|
|
let target = Target(address: "http://13.238.53.205", 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) }
|
|
}
|
|
}
|
|
|
|
internal extension Promise {
|
|
|
|
func handlingSwarmSpecificErrorsIfNeeded(for target: LokiAPI.Target, 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] There appears to be a problem with LokiNet.")
|
|
case 421:
|
|
// The snode isn't associated with the given public key anymore
|
|
let swarm = LokiAPI.swarmCache[hexEncodedPublicKey]
|
|
if var swarm = swarm, let index = swarm.firstIndex(of: target) {
|
|
swarm.remove(at: index)
|
|
LokiAPI.swarmCache[hexEncodedPublicKey] = swarm
|
|
}
|
|
default: break
|
|
}
|
|
}
|
|
throw error
|
|
}
|
|
}
|
|
}
|