|
|
|
@ -2,8 +2,8 @@ import PromiseKit
|
|
|
|
|
|
|
|
|
|
@objc public final class LokiMessagingAPI : NSObject {
|
|
|
|
|
|
|
|
|
|
private static let baseURL = "http://13.238.53.205"
|
|
|
|
|
private static let port = "8080"
|
|
|
|
|
private static let baseURL = "http://13.238.53.205" // TODO: Temporary
|
|
|
|
|
private static let port = "8080" // TODO: Temporary
|
|
|
|
|
private static let apiVersion = "v1"
|
|
|
|
|
public static let defaultTTL: UInt64 = 4 * 24 * 60 * 60
|
|
|
|
|
|
|
|
|
@ -13,7 +13,7 @@ import PromiseKit
|
|
|
|
|
case sendMessage = "store"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public typealias RawResponse = TSNetworkManager.NetworkManagerResult
|
|
|
|
|
public typealias RawResponse = Any
|
|
|
|
|
|
|
|
|
|
public enum Error : LocalizedError {
|
|
|
|
|
case proofOfWorkCalculationFailed
|
|
|
|
@ -32,11 +32,11 @@ import PromiseKit
|
|
|
|
|
private static func invoke(_ method: Method, parameters: [String:String] = [:]) -> Promise<RawResponse> {
|
|
|
|
|
let url = URL(string: "\(baseURL):\(port)/\(apiVersion)/storage_rpc")!
|
|
|
|
|
let request = TSRequest(url: url, method: "POST", parameters: [ "method" : method.rawValue, "params" : parameters ])
|
|
|
|
|
return TSNetworkManager.shared().makePromise(request: request)
|
|
|
|
|
return TSNetworkManager.shared().makePromise(request: request).map { $0.responseObject }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static func sendSignalMessage(_ signalMessage: SignalMessage, to destination: String, requiringPOW isPOWRequired: Bool) -> Promise<RawResponse> {
|
|
|
|
|
return LokiMessage.fromSignalMessage(signalMessage, requiringPOW: isPOWRequired).then(sendMessage)
|
|
|
|
|
public static func sendSignalMessage(_ signalMessage: SignalMessage, to destination: String, requiringPoW isPoWRequired: Bool) -> Promise<RawResponse> {
|
|
|
|
|
return LokiMessage.fromSignalMessage(signalMessage, requiringPoW: isPoWRequired).then(sendMessage)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static func sendMessage(_ lokiMessage: LokiMessage) -> Promise<RawResponse> {
|
|
|
|
@ -52,7 +52,7 @@ import PromiseKit
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// MARK: Obj-C API
|
|
|
|
|
@objc public static func sendSignalMessage(_ signalMessage: SignalMessage, to destination: String, requiringPOW isPOWRequired: Bool, completionHandler: ((Any?, NSError?) -> Void)? = nil) {
|
|
|
|
|
sendSignalMessage(signalMessage, to: destination, requiringPOW: isPOWRequired).done { completionHandler?($0.responseObject, nil) }.catch { completionHandler?(nil, $0 as NSError) }
|
|
|
|
|
@objc public static func sendSignalMessage(_ signalMessage: SignalMessage, to destination: String, requiringPoW isPoWRequired: Bool, completionHandler: ((Any?, NSError?) -> Void)? = nil) {
|
|
|
|
|
sendSignalMessage(signalMessage, to: destination, requiringPoW: isPoWRequired).done { completionHandler?($0, nil) }.catch { completionHandler?(nil, $0 as NSError) }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|