Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for network visualiser when connected to shared instance #14

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions meshchat.py
Original file line number Diff line number Diff line change
Expand Up @@ -1093,22 +1093,23 @@ async def index(request):
if "transport_id" in interface_stats:
interface_stats["transport_id"] = interface_stats["transport_id"].hex()

# ensure probe_responder is hex as json_response can't serialize bytes
if "probe_responder" in interface_stats:
interface_stats["probe_responder"] = interface_stats["probe_responder"].hex()

# ensure ifac_signature is hex as json_response can't serialize bytes
for interface in interface_stats["interfaces"]:
interface["interface_name"] = interface["short_name"]

# add interface hashes
interface_instance = self.find_interface_by_name(interface["name"])
if interface_instance is not None:
interface["type"] = type(interface_instance).__name__
interface["hash"] = interface_instance.get_hash().hex()
interface["interface_name"] = interface_instance.name
if hasattr(interface_instance, "parent_interface") and interface_instance.parent_interface is not None:
interface["parent_interface_name"] = str(interface_instance.parent_interface)
interface["parent_interface_hash"] = interface_instance.parent_interface.get_hash().hex()
if "parent_interface_name" in interface and interface["parent_interface_name"] != None:
interface["parent_interface_hash"] = interface["parent_interface_hash"].hex()

if "ifac_signature" in interface and interface["ifac_signature"]:
interface["ifac_signature"] = interface["ifac_signature"].hex()

if "hash" in interface and interface["hash"]:
interface["hash"] = interface["hash"].hex()

return web.json_response({
"interface_stats": interface_stats,
})
Expand Down