|
|
|
@ -88,6 +88,14 @@ object SnodeAPI {
|
|
|
|
|
|
|
|
|
|
const val useTestnet = false
|
|
|
|
|
|
|
|
|
|
const val KEY_IP = "public_ip"
|
|
|
|
|
const val KEY_PORT = "storage_port"
|
|
|
|
|
const val KEY_X25519 = "pubkey_x25519"
|
|
|
|
|
const val KEY_ED25519 = "pubkey_ed25519"
|
|
|
|
|
const val KEY_VERSION = "storage_server_version"
|
|
|
|
|
|
|
|
|
|
const val EMPTY_VERSION = "0.0.0"
|
|
|
|
|
|
|
|
|
|
// Error
|
|
|
|
|
sealed class Error(val description: String) : Exception(description) {
|
|
|
|
|
object Generic : Error("An error occurred.")
|
|
|
|
@ -146,6 +154,7 @@ object SnodeAPI {
|
|
|
|
|
|
|
|
|
|
internal fun getRandomSnode(): Promise<Snode, Exception> {
|
|
|
|
|
val snodePool = this.snodePool
|
|
|
|
|
|
|
|
|
|
if (snodePool.count() < minimumSnodePoolCount) {
|
|
|
|
|
val target = seedNodePool.random()
|
|
|
|
|
val url = "$target/json_rpc"
|
|
|
|
@ -154,8 +163,11 @@ object SnodeAPI {
|
|
|
|
|
"method" to "get_n_service_nodes",
|
|
|
|
|
"params" to mapOf(
|
|
|
|
|
"active_only" to true,
|
|
|
|
|
"limit" to 256,
|
|
|
|
|
"fields" to mapOf("public_ip" to true, "storage_port" to true, "pubkey_x25519" to true, "pubkey_ed25519" to true)
|
|
|
|
|
"fields" to mapOf(
|
|
|
|
|
KEY_IP to true, KEY_PORT to true,
|
|
|
|
|
KEY_X25519 to true, KEY_ED25519 to true,
|
|
|
|
|
KEY_VERSION to true
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
val deferred = deferred<Snode, Exception>()
|
|
|
|
@ -173,12 +185,22 @@ object SnodeAPI {
|
|
|
|
|
if (rawSnodes != null) {
|
|
|
|
|
val snodePool = rawSnodes.mapNotNull { rawSnode ->
|
|
|
|
|
val rawSnodeAsJSON = rawSnode as? Map<*, *>
|
|
|
|
|
val address = rawSnodeAsJSON?.get("public_ip") as? String
|
|
|
|
|
val port = rawSnodeAsJSON?.get("storage_port") as? Int
|
|
|
|
|
val ed25519Key = rawSnodeAsJSON?.get("pubkey_ed25519") as? String
|
|
|
|
|
val x25519Key = rawSnodeAsJSON?.get("pubkey_x25519") as? String
|
|
|
|
|
if (address != null && port != null && ed25519Key != null && x25519Key != null && address != "0.0.0.0") {
|
|
|
|
|
Snode("https://$address", port, Snode.KeySet(ed25519Key, x25519Key))
|
|
|
|
|
val address = rawSnodeAsJSON?.get(KEY_IP) as? String
|
|
|
|
|
val port = rawSnodeAsJSON?.get(KEY_PORT) as? Int
|
|
|
|
|
val ed25519Key = rawSnodeAsJSON?.get(KEY_ED25519) as? String
|
|
|
|
|
val x25519Key = rawSnodeAsJSON?.get(KEY_X25519) as? String
|
|
|
|
|
val version = (rawSnodeAsJSON?.get(KEY_VERSION) as? ArrayList<*>)
|
|
|
|
|
?.filterIsInstance<Int>() // get the array as Integers
|
|
|
|
|
?.joinToString(separator = ".") // turn it int a version string
|
|
|
|
|
|
|
|
|
|
if (address != null && port != null && ed25519Key != null && x25519Key != null
|
|
|
|
|
&& address != "0.0.0.0" && version != null) {
|
|
|
|
|
Snode(
|
|
|
|
|
address = "https://$address",
|
|
|
|
|
port = port,
|
|
|
|
|
publicKeySet = Snode.KeySet(ed25519Key, x25519Key),
|
|
|
|
|
version = version
|
|
|
|
|
)
|
|
|
|
|
} else {
|
|
|
|
|
Log.d("Loki", "Failed to parse: ${rawSnode?.prettifiedDescription()}.")
|
|
|
|
|
null
|
|
|
|
@ -206,6 +228,10 @@ object SnodeAPI {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private fun extractVersionString(jsonVersion: String): String{
|
|
|
|
|
return jsonVersion.removeSurrounding("[", "]").split(", ").joinToString(separator = ".")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal fun dropSnodeFromSwarmIfNeeded(snode: Snode, publicKey: String) {
|
|
|
|
|
val swarm = database.getSwarm(publicKey)?.toMutableSet()
|
|
|
|
|
if (swarm != null && swarm.contains(snode)) {
|
|
|
|
@ -716,10 +742,11 @@ object SnodeAPI {
|
|
|
|
|
val address = rawSnodeAsJSON?.get("ip") as? String
|
|
|
|
|
val portAsString = rawSnodeAsJSON?.get("port") as? String
|
|
|
|
|
val port = portAsString?.toInt()
|
|
|
|
|
val ed25519Key = rawSnodeAsJSON?.get("pubkey_ed25519") as? String
|
|
|
|
|
val x25519Key = rawSnodeAsJSON?.get("pubkey_x25519") as? String
|
|
|
|
|
val ed25519Key = rawSnodeAsJSON?.get(KEY_ED25519) as? String
|
|
|
|
|
val x25519Key = rawSnodeAsJSON?.get(KEY_X25519) as? String
|
|
|
|
|
|
|
|
|
|
if (address != null && port != null && ed25519Key != null && x25519Key != null && address != "0.0.0.0") {
|
|
|
|
|
Snode("https://$address", port, Snode.KeySet(ed25519Key, x25519Key))
|
|
|
|
|
Snode("https://$address", port, Snode.KeySet(ed25519Key, x25519Key), EMPTY_VERSION)
|
|
|
|
|
} else {
|
|
|
|
|
Log.d("Loki", "Failed to parse snode from: ${rawSnode?.prettifiedDescription()}.")
|
|
|
|
|
null
|
|
|
|
|