mirror of
https://git.wownero.com/wowlet/wowlet-backend.git
synced 2024-08-15 01:03:13 +00:00
118 lines
3.9 KiB
Python
118 lines
3.9 KiB
Python
|
# SPDX-License-Identifier: BSD-3-Clause
|
||
|
# Copyright (c) 2020, The Monero Project.
|
||
|
# Copyright (c) 2020, dsc@xmr.pm
|
||
|
|
||
|
import json
|
||
|
from typing import List
|
||
|
|
||
|
import settings
|
||
|
from fapi.utils import httpget, popularity_contest
|
||
|
from fapi.tasks import FeatherTask
|
||
|
|
||
|
|
||
|
class RPCNodeCheckTask(FeatherTask):
|
||
|
def __init__(self, interval: int = 60):
|
||
|
super(RPCNodeCheckTask, self).__init__(interval)
|
||
|
|
||
|
self._cache_key = "rpc_nodes"
|
||
|
self._cache_expiry = None
|
||
|
|
||
|
self._websocket_cmd = "nodes"
|
||
|
|
||
|
self._http_timeout = 5
|
||
|
self._http_timeout_onion = 10
|
||
|
|
||
|
async def task(self) -> List[dict]:
|
||
|
"""Check RPC nodes status"""
|
||
|
from fapi.factory import app, rpc_nodes, cache
|
||
|
|
||
|
try:
|
||
|
heights = json.loads(await cache.get("blockheights"))
|
||
|
except:
|
||
|
heights = {}
|
||
|
|
||
|
nodes = []
|
||
|
for network_type_coin, _ in rpc_nodes.items():
|
||
|
data = []
|
||
|
|
||
|
for network_type, _nodes in _.items():
|
||
|
for node in _nodes:
|
||
|
try:
|
||
|
blob = await self.node_check(node, network_type=network_type)
|
||
|
data.append(blob)
|
||
|
except Exception as ex:
|
||
|
app.logger.warning(f"node {node} not reachable; {ex}")
|
||
|
data.append(self._bad_node(**{
|
||
|
"address": node,
|
||
|
"nettype": network_type_coin,
|
||
|
"type": network_type,
|
||
|
"height": 0
|
||
|
}))
|
||
|
|
||
|
# not neccesary for stagenet/testnet nodes to be validated
|
||
|
if network_type_coin != "mainnet":
|
||
|
nodes += data
|
||
|
continue
|
||
|
|
||
|
if not data:
|
||
|
continue
|
||
|
|
||
|
# Filter out nodes affected by < v0.17.1.3 sybil attack
|
||
|
data = list(map(lambda node: node if node['target_height'] <= node['height']
|
||
|
else self._bad_node(**node), data))
|
||
|
|
||
|
allowed_offset = 3
|
||
|
valid_heights = []
|
||
|
current_blockheight = heights.get(network_type_coin, 0)
|
||
|
|
||
|
if isinstance(current_blockheight, int) and current_blockheight > 0:
|
||
|
# blockheight from cache has precedence
|
||
|
valid_heights = range(current_blockheight, current_blockheight - allowed_offset, -1)
|
||
|
else:
|
||
|
# popularity contest
|
||
|
common_height = popularity_contest([z['height'] for z in data])
|
||
|
valid_heights = range(common_height, common_height - allowed_offset, -1)
|
||
|
|
||
|
data = list(map(lambda node: node if node['height'] in valid_heights
|
||
|
else self._bad_node(**node), data))
|
||
|
nodes += data
|
||
|
return nodes
|
||
|
|
||
|
async def node_check(self, node, network_type: str) -> dict:
|
||
|
"""Call /get_info on the RPC, return JSON"""
|
||
|
opts = {
|
||
|
"timeout": self._http_timeout,
|
||
|
"json": True
|
||
|
}
|
||
|
|
||
|
if network_type == "tor":
|
||
|
opts["socks5"] = settings.TOR_SOCKS_PROXY
|
||
|
opts["timeout"] = self._http_timeout_onion
|
||
|
|
||
|
blob = await httpget(f"http://{node}/get_info", **opts)
|
||
|
for expect in ["nettype", "height", "target_height"]:
|
||
|
if expect not in blob:
|
||
|
raise Exception(f"Invalid JSON response from RPC; expected key '{expect}'")
|
||
|
|
||
|
height = int(blob.get("height", 0))
|
||
|
target_height = int(blob.get("target_height", 0))
|
||
|
|
||
|
return {
|
||
|
"address": node,
|
||
|
"height": height,
|
||
|
"target_height": target_height,
|
||
|
"online": True,
|
||
|
"nettype": blob["nettype"],
|
||
|
"type": network_type
|
||
|
}
|
||
|
|
||
|
def _bad_node(self, **kwargs):
|
||
|
return {
|
||
|
"address": kwargs['address'],
|
||
|
"height": kwargs['height'],
|
||
|
"target_height": 0,
|
||
|
"online": False,
|
||
|
"nettype": kwargs['nettype'],
|
||
|
"type": kwargs['type']
|
||
|
}
|