-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
memory_data_store.py
375 lines (329 loc) · 16.4 KB
/
memory_data_store.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
#!/usr/bin/env python3
import copy
from datetime import datetime, timedelta
import glob
import json
import os
import shutil
from zoneinfo import ZoneInfo
import aiohttp
from data_renderer import DataRenderer
from encoders import _JSONDecoder
from models.node import Node
from static_html_renderer import StaticHTMLRenderer
import utils
class MemoryDataStore:
def __init__(self, config):
self.config = config
self.chat: dict = {}
self.chat['channels'] = {
'0': {
'name': 'General',
'messages': []
}
}
self.graph: dict|None = {}
self.messages: list = []
self.mqtt_messages: list = []
self.mqtt_connect_time: datetime = self.config['server']['start_time']
self.nodes: dict = {}
self.telemetry: list = []
self.telemetry_by_node: dict = {}
self.traceroutes: list = []
self.traceroutes_by_node: dict = {}
def update(self, key, value):
self.__dict__[key] = value
def update_node(self, id: str, node):
n = node.copy()
if n['position'] is None:
n['position'] = {}
if self.config['integrations']['geocoding']['enabled']:
if 'geocoded' not in n['position']:
n['position']['geocoded'] = None
if 'latitude_i' in n['position'] and 'longitude_i' in n['position'] and n['position']['latitude_i'] is not None and n['position']['longitude_i'] is not None:
if n['position']['geocoded'] is None or n['position']['last_geocoding'] is None or n['position']['last_geocoding'] < datetime.now().astimezone(ZoneInfo(self.config['server']['timezone'])) - timedelta(minutes=60):
try:
geocoded = utils.geocode_position(self.config['integrations']['geocoding']['geocode.maps.co']['api_key'], n['position']['latitude_i'] / 10000000, n['position']['longitude_i'] / 10000000)
if geocoded is not None:
n['position']['geocoded'] = geocoded
n['position']['last_geocoding'] = datetime.now().astimezone(ZoneInfo(self.config['server']['timezone']))
except Exception as e:
print(f"Failed to geocode position: {e}")
n['active'] = True
if 'last_seen' in n and n['last_seen'] is not None and isinstance(n['last_seen'], str):
n['last_seen'] = datetime.fromisoformat(n['last_seen']).astimezone(ZoneInfo(self.config['server']['timezone']))
n['since'] = datetime.now().astimezone(ZoneInfo(self.config['server']['timezone'])) - n['last_seen']
n['last_seen'] = datetime.now().astimezone(ZoneInfo(self.config['server']['timezone']))
self.nodes[id] = n
def load(self):
try:
nodes = self.load_json_file(f"{self.config['paths']['data']}/nodes.json")
if nodes is not None:
for id, node in nodes.items():
if id.startswith('!'):
id = id.replace('!', '')
if len(id) != 8: # 8 hex chars required, if not, we abandon it
continue
if node['active'] is None:
node['active'] = False
if 'last_seen' not in node:
node['last_seen'] = None
if 'since' not in node:
node['since'] = None
nodes[id] = node
self.nodes = nodes
print(f"Loaded {len(self.nodes)} existing nodes from file ({self.config['paths']['data']}/nodes.json)")
except FileNotFoundError:
self.nodes = {}
if self.config['server']['node_id'] not in self.nodes:
self.nodes[self.config['server']['node_id']] = Node.default_node(self.config['server']['node_id'])
self.nodes['ffffffff'] = Node.default_node('ffffffff')
try:
nodes_overrides: dict|None = self.load_json_file(f"{self.config['paths']['data']}/nodes-overrides.json")
if nodes_overrides is not None:
for id, node_override in nodes_overrides.items():
if id in self.nodes:
print(f"Overriding node {id}")
node = self.nodes[id]
if 'position' in node_override:
print("Overriding node position")
node['position'] = node_override['position']
self.nodes[id] = node
print(f"Loaded {len(nodes_overrides.keys())} nodes overrides from file ({self.config['paths']['data']}/nodes-overrides.json)")
except FileNotFoundError:
pass
try:
chat = self.load_json_file(f"{self.config['paths']['data']}/chat.json")
if chat is not None:
self.chat = chat
print(f"Loaded {len(self.chat['channels']['0']['messages'])} chat messages from file ({self.config['paths']['data']}/chat.json)")
except FileNotFoundError:
self.chat = {
'channels': {
'0': {
'name': 'General',
'messages': []
}
}
}
try:
telemetry = self.load_json_file(f"{self.config['paths']['data']}/telemetry.json")
if telemetry is not None:
self.telemetry = telemetry
else:
self.telemetry = []
if self.telemetry_by_node is None or len(self.telemetry_by_node) == 0:
self.telemetry_by_node = {}
for msg in self.telemetry:
id = msg['from']
if id not in self.telemetry_by_node:
self.telemetry_by_node[id] = []
self.telemetry_by_node[id].insert(0, msg)
print(f"Loaded {len(self.telemetry)} telemetry messages from file ({self.config['paths']['data']}/telemetry.json)")
print(f"Loaded telemetry data for {len(self.telemetry_by_node)} nodes")
except FileNotFoundError:
self.telemetry = []
self.telemetry_by_node = {}
try:
traceroutes = self.load_json_file(f"{self.config['paths']['data']}/traceroutes.json")
if traceroutes is not None:
self.traceroutes = traceroutes
else:
self.traceroutes = []
if self.traceroutes_by_node is None or len(self.traceroutes_by_node) == 0:
self.traceroutes_by_node = {}
for msg in self.traceroutes:
id = msg['from']
if id not in self.traceroutes_by_node:
self.traceroutes_by_node[id] = []
self.traceroutes_by_node[id].insert(0, msg)
print(f"Loaded {len(self.traceroutes)} traceroutes from file ({self.config['paths']['data']}/traceroutes.json)")
print(f"Loaded traceroutes data for {len(self.traceroutes_by_node)} nodes")
except FileNotFoundError:
self.traceroutes = []
self.traceroutes_by_node = {}
def load_json_file(self, filename):
if os.path.exists(filename):
with open(filename, "r", encoding='utf-8') as f:
n = json.load(f, cls=_JSONDecoder)
return n
else:
return None
async def save(self):
save_start = datetime.now(ZoneInfo(self.config['server']['timezone']))
last_data = self.config['server']['last_data_save'] if 'last_data_save' in self.config['server'] else self.config['server']['start_time']
since_last_data = (save_start - last_data).total_seconds()
last_render = self.config['server']['last_render'] if 'last_render' in self.config['server'] else self.config['server']['start_time']
since_last_render = (save_start - last_render).total_seconds()
last_backfill = self.config['server']['last_backfill'] if 'last_backfill' in self.config['server'] else self.config['server']['start_time']
since_last_backfill = (save_start - last_backfill).total_seconds()
last_backup = self.config['server']['last_backup'] if 'last_backup' in self.config['server'] else self.config['server']['start_time']
since_last_backup = (save_start - last_backup).total_seconds()
print(f"Save (since last): data: {since_last_data} (threshhold: {self.config['server']['intervals']['data_save']}), render: {since_last_render} (threshhold: {self.config['server']['intervals']['render']}), enrich: {since_last_backfill} (threshhold: {self.config['server']['enrich']['interval']}), backup: {since_last_backup} (threshhold: {self.config['server']['backups']['interval']})")
if 'enrich' in self.config['server'] and self.config['server']['enrich']['enabled']:
if since_last_backfill >= self.config['server']['enrich']['interval']:
await self.backfill_node_infos()
end = datetime.now(ZoneInfo(self.config['server']['timezone']))
print(f"Enriched in {round(end.timestamp() - save_start.timestamp(), 2)} seconds")
self.config['server']['last_backfill'] = end
if since_last_data >= self.config['server']['intervals']['data_save']:
data_renderer = DataRenderer(self.config, copy.deepcopy(self))
await data_renderer.render()
end = datetime.now(ZoneInfo(self.config['server']['timezone']))
print(f"Saved json data in {round(end.timestamp() - save_start.timestamp(), 2)} seconds")
self.config['server']['last_data_save'] = end
self.graph = self.graph_node(self.config['server']['node_id'])
if since_last_render >= self.config['server']['intervals']['render']:
static_html_renderer = StaticHTMLRenderer(self.config, copy.deepcopy(self))
await static_html_renderer.render()
end = datetime.now(ZoneInfo(self.config['server']['timezone']))
print(f"Rendered in {round(end.timestamp() - save_start.timestamp(), 2)} seconds")
self.config['server']['last_render'] = end
if 'backups' in self.config['server'] and self.config['server']['backups']['enabled']:
if since_last_backup >= self.config['server']['backups']['interval']:
await self.backup()
end = datetime.now(ZoneInfo(self.config['server']['timezone']))
print(f"Backed up in {round(end.timestamp() - save_start.timestamp(), 2)} seconds")
self.config['server']['last_backup'] = end
### helpers
async def backup(self):
now = f"{datetime.now(ZoneInfo(self.config['server']['timezone'])).strftime('%Y%m%d-%H%M%S')}"
base_name = f"{self.config['paths']['backups']}/backup-{now}"
tmp_path = f"/tmp/meshinfo/backup-{now}"
print(f"Backing up to {base_name}.tar.bz2")
os.makedirs(tmp_path, exist_ok=True)
shutil.copytree("output/data", f"{tmp_path}/data")
shutil.copytree("output/static-html", f"{tmp_path}/static-html")
shutil.copyfile("config.json", f"{tmp_path}/config.json")
shutil.make_archive(
base_name,
'bztar',
root_dir=tmp_path,
base_dir=".",
verbose=True)
print(f"Backed up to {base_name}.tar.bz2")
shutil.rmtree(tmp_path)
if 'max_backups' in self.config['server']['backups'] and self.config['server']['backups']['max_backups'] > 0:
files = glob.glob(f"{self.config['paths']['backups']}/*")
files.sort(key=os.path.getmtime)
print(f"Deleting old backups (max {self.config['server']['backups']['max_backups']}, found {len(files)})")
for file in files[:-self.config['server']['backups']['max_backups']]:
print(f"Deleting old backup: {file}")
os.remove(file)
async def backfill_node_infos(self):
nodes_needing_enrichment = {}
for id, node in self.nodes.items():
if 'shortname' not in node or 'longname' not in node or node['shortname'] == 'UNK' or node['longname'] == 'Unknown':
nodes_needing_enrichment[id] = node
print(f"Nodes needing enrichment: {len(nodes_needing_enrichment)}")
if len(nodes_needing_enrichment) > 0:
await self.enrich_nodes(nodes_needing_enrichment)
async def enrich_nodes(self, node_to_enrich):
async with aiohttp.ClientSession() as session:
node_ids = list(node_to_enrich.keys())
print(f"Enriching nodes: {','.join(node_ids)}")
if self.config['server']['enrich']['provider'] == 'bayme':
for node_id in node_ids:
print(f"Enriching {node_id}")
url = f"https://data.bayme.sh/api/node/infos?ids={node_id}"
try:
async with session.get(url) as response:
# print(f"Response code: {response.status_code}")
if response.status == 200:
data = await response.json()
for node_id, node_info in data.items():
print(f"Got info for {node_id}")
if node_id in self.nodes:
print(f"Enriched {node_id}")
node = self.nodes[node_id]
node['shortname'] = node_info['shortName']
node['longname'] = node_info['longName']
self.nodes[node_id] = node
else:
print(f"Failed to get info for {node_id}")
except Exception as e:
print(f"Failed to get info for {node_id}")
print(e)
elif self.config['server']['enrich']['provider'] == 'world.meshinfo.network':
url = f"https://world.meshinfo.network/api/v1/nodes?ids={','.join(node_ids)}"
try:
async with session.get(url) as response:
if response.status == 200:
data = await response.json()
for node_id, node_info in data.items():
print(f"Got info for {node_id}")
if node_id in self.nodes:
print(f"Enriched {node_id}")
node = self.nodes[node_id]
node['shortname'] = node_info['shortName']
node['longname'] = node_info['longName']
self.nodes[node_id] = node
else:
print(f"Failed to get info for {node_ids}")
except Exception as e:
print(f"Failed to get info for {node_ids}")
print(e)
def find_node_by_int_id(self, id: int):
return self.nodes.get(utils.convert_node_id_from_int_to_hex(id), None)
def find_node_by_hex_id(self, id: str, include_neighbors: bool = False):
if not isinstance(id, str) or len(id) != 8:
return None
n = self.nodes.get(id, None)
if n is None:
return None
node = n.copy()
if include_neighbors:
neighbors_heard = []
if 'neighborinfo' in node and node['neighborinfo'] is not None and 'neighbors' in node['neighborinfo'] and len(node['neighborinfo']['neighbors']) > 0:
for neighbor in node['neighborinfo']['neighbors']:
nn = self.find_node_by_hex_id(utils.convert_node_id_from_int_to_hex(neighbor["node_id"]), include_neighbors=False)
if nn is not None:
neighbors_heard.append(nn.copy())
neighbors_heard_by = []
for nid, n in self.nodes.items():
if 'neighborinfo' in n and n['neighborinfo'] is not None and 'neighbors' in n['neighborinfo'] and len(n['neighborinfo']['neighbors']) > 0:
if id in n['neighborinfo']['neighbors']:
nn = self.find_node_by_hex_id(utils.convert_node_id_from_int_to_hex(nid), include_neighbors=False)
if nn is not None:
neighbors_heard_by.append(nn.copy())
node['neighbors_heard'] = neighbors_heard
node['neighbors_heard_by'] = neighbors_heard_by
return node
def find_node_by_short_name(self, sn: str):
for _id, node in self.nodes.items():
if node['shortname'] == sn:
return node
return None
def find_node_by_longname(self, ln: str):
for _id, node in self.nodes.items():
if node['longname'] == ln:
return node
return None
def graph_node(self, node_id: str) -> dict|None:
if self.config['debug']:
print(f"Graphing node: {node_id}")
visited = set() # Set to keep track of visited nodes
def recursive_graph_node(node_id, start_id="", level=0) -> dict|None:
node = self.find_node_by_hex_id(node_id, include_neighbors=True)
if node is None:
return None
if level > 1 and node_id in visited:
return node # Return the node if it has already been visited
if self.config['debug']:
print("%s - %s" % (" " * level, node_id))
visited.add(node_id) # Mark the node as visited
neighbors_heard = []
neighbors_heard_by = []
if node['neighborinfo'] and node['neighborinfo']['neighbors']:
# print(f"Node {node_id} has {len(node['neighborinfo']['neighbors'])} neighbors")
for neighbor in node['neighborinfo']['neighbors']:
nid = utils.convert_node_id_from_int_to_hex(neighbor["node_id"])
if start_id is not None and start_id == nid or (self.config['server']['graph']['max_depth'] is not None and level >= self.config['server']['graph']['max_depth']):
continue
nn = recursive_graph_node(nid, start_id=start_id, level=level+1)
if nn is not None:
neighbors_heard.append(nn.copy())
node['neighbors_heard'] = neighbors_heard
node['neighbors_heard_by'] = neighbors_heard_by
return node
return recursive_graph_node(node_id, start_id=node_id)