-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
data_renderer.py
40 lines (30 loc) · 1.39 KB
/
data_renderer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python3
import asyncio
import json
from encoders import _JSONEncoder
class DataRenderer:
def __init__(self, config, data):
self.config = config
self.data = data
async def render(self):
await asyncio.to_thread(self._render)
def _render(self):
self.save_file("chat.json", self.data.chat)
print(f"Saved {len(self.data.chat['channels']['0']['messages'])} chat messages to file ({self.config['paths']['data']}/chat.json)")
nodes = {}
for id, node in self.data.nodes.items():
if id.startswith('!'):
id = id.replace('!', '')
if len(id) != 8: # 8 hex chars required, if not, we abandon it
continue
nodes[id] = node
self.save_file("nodes.json", nodes)
print(f"Saved {len(nodes)} nodes to file ({self.config['paths']['data']}/nodes.json)")
self.save_file("telemetry.json", self.data.telemetry)
print(f"Saved {len(self.data.telemetry)} telemetry to file ({self.config['paths']['data']}/telemetry.json)")
self.save_file("traceroutes.json", self.data.traceroutes)
print(f"Saved {len(self.data.traceroutes)} traceroutes to file ({self.config['paths']['data']}/traceroutes.json)")
def save_file(self, filename, data):
print(f"Saving {filename}")
with open(f"{self.config['paths']['data']}/{filename}", "w", encoding='utf-8') as f:
json.dump(data, f, indent=2, sort_keys=True, cls=_JSONEncoder)