@ -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
internal 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