-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmqtt.py
413 lines (336 loc) · 12.9 KB
/
mqtt.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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
#!/usr/bin/env python3
import base64
import logging
import os
import sqlite3
import string
import sys
import threading
import time
import warnings
import paho.mqtt.client as paho
import requests
import yaml
from cachetools import TTLCache
from cryptography.hazmat.backends import default_backend
from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
from collections import OrderedDict
from meshtastic import BROADCAST_NUM
from meshtastic.protobuf import mesh_pb2, mqtt_pb2, portnums_pb2, telemetry_pb2
DEFAULT_KEY = "1PG7OiApB1nwvP+rz05pAQ==" # AQ==, expanded
CONFIG = {}
SIGNAL_MISSING = ":no_entry_sign:"
SIGNAL_NONE = ":red_circle:"
SIGNAL_BAD = ":orange_circle:"
SIGNAL_FAIR = ":yellow_circle:"
SIGNAL_GOOD = ":green_circle:"
hist = TTLCache(maxsize=1000, ttl=3600) # Cache up to 1000 messages for 1 hour
conn = None
lock = threading.Lock()
def sender_id(mp: mesh_pb2.MeshPacket):
"""
Given a MeshPacket, return the "sender id" which is a hex
representation of the last 8 bytes of the MAC address.
For example, !ff11ff22
"""
return "!" + "{0:#0{1}x}".format(getattr(mp, "from"), 8)[2:]
def discord_message_key(se: mqtt_pb2.ServiceEnvelope, mp: mesh_pb2.MeshPacket):
"""
Rudimentary key to deduplicate messages.
TODO: See what Meshtastic does here to deduplicate packets, maybe we can do the same?
"""
return f"{se.channel_id}::{sender_id(mp)}::{mp.decoded.payload.decode('utf-8')}"
class DiscordMessage:
"""
Object representing the information we want to expose via Discord messages.
We store this object in memory so we can update messages as more nodes
report hearing them.
"""
def __init__(self, channel_id: str, gateway_id: str, mp: mesh_pb2.MeshPacket):
"""
Construct discord message from Meshtastic protobuf.
"""
self.mesh_packets = OrderedDict()
self.discord_message_id = None
self.from_id = sender_id(mp)
self.from_mac = getattr(mp, "from")
self.channel_id = channel_id
self.message_text = mp.decoded.payload.decode("utf-8")
self.add_meshpacket(gateway_id, mp)
def add_meshpacket(self, gateway_id: str, mp: mesh_pb2.MeshPacket):
self.mesh_packets[gateway_id] = mp
def render(self):
"""
Renders the message out as a Discord-compatible dictionary.
"""
primary_embed = {
"description": "```" + self.message_text.replace("`", "'") + " ```",
"author": {
"name": node_long_name(conn, self.from_id),
},
"footer": {
"text": f"{self.channel_id}",
},
}
if "map_url_prefix" in CONFIG["mqtt"]:
primary_embed["author"]["url"] = CONFIG["mqtt"]["map_url_prefix"] + str(
self.from_mac
)
stats_desc = ""
index = 1
for gateway_id, mp in self.mesh_packets.items():
if gateway_id == self.from_id:
stats_desc += f"{index}. self-gated\n"
else:
hops_used = max(0, mp.hop_start - mp.hop_limit)
hops_available = mp.hop_limit
rssi_color = get_rssi_color(mp.rx_rssi)
snr_color = get_snr_color(mp.rx_snr)
stats_desc += f"{index}. {node_long_name(conn, gateway_id)} (Hops: {hops_used} with {hops_available} remaining, SNR: {mp.rx_snr} {snr_color}, RSSI: {mp.rx_rssi} {rssi_color})\n"
stats_embed = {
"author": {"name": "Heard by..."},
"description": stats_desc,
}
discord_data = {"embeds": [primary_embed, stats_embed]}
return discord_data
def publish(self, config) -> str:
"""
Posts the message to Discord channel with the provided config.
"""
query_params = {
"thread_id": config.get("thread", None),
"wait": True,
}
url = config["webhook"]
if self.discord_message_id:
url += f"/messages/{self.discord_message_id}"
response = requests.patch(url, params=query_params, json=self.render())
else:
response = requests.post(url, params=query_params, json=self.render())
if response.status_code == 200:
self.discord_message_id = response.json()["id"]
else:
logging.info(f"Failed to send message. Status code: {response.status_code}")
logging.info(response.text)
def on_message(mosq, obj, msg):
with lock:
se = mqtt_pb2.ServiceEnvelope()
try:
se.ParseFromString(msg.payload)
mp = se.packet
except Exception as e:
logging.info(f"Error parsing ServiceEnvelope: {str(e)}")
return
from_node_id = sender_id(mp)
from_node_name = node_long_name(conn, from_node_id)
gateway_node_id = se.gateway_id
gateway_node_name = node_long_name(conn, se.gateway_id)
# What do we know about this channel?
channel_config = CONFIG["channels"].get(se.channel_id, CONFIG["catch_all"])
# Decrypt the message if possible
if mp.HasField("encrypted") and not mp.HasField("decoded"):
decode_encrypted(mp, channel_config.get("key", DEFAULT_KEY))
if not mp.HasField("decoded"):
# Decoding failed.
logging.info(
f"ServiceEnvelope: '{gateway_node_name}' ({gateway_node_id}) published encrypted packet for '{from_node_name} ({from_node_id})"
)
return
portnum_type = portnums_pb2.PortNum.Name(mp.decoded.portnum)
logging.info(
f"ServiceEnvelope: '{gateway_node_name}' ({gateway_node_id}) published {portnum_type} for '{from_node_name}' ({from_node_id})"
)
if mp.decoded.portnum == portnums_pb2.TEXT_MESSAGE_APP:
try:
if mp.to != BROADCAST_NUM: # Broadcast
return
if "webhook" not in channel_config:
# Nowhere to post
warnings.warn(
"No webhook configured for channel '" + se.channel_id + "'"
)
return
if from_node_id in CONFIG["blocked_senders"]:
logging.info(
f"Dropping message from blocked sender: {from_node_id}"
)
return
history_key = discord_message_key(se, mp)
if history_key not in hist:
logging.info(f"New {portnum_type}: key={history_key}")
discord_msg = DiscordMessage(se.channel_id, se.gateway_id, mp)
hist[history_key] = discord_msg
else:
# We've seen this message before, update the existing message
if gateway_node_id not in hist[history_key].mesh_packets:
logging.info(f"Existing {portnum_type}: key={history_key}")
discord_msg = hist[history_key]
discord_msg.add_meshpacket(se.gateway_id, mp)
else:
# We've seen this message from this gateway before, ignore it and bail out
logging.info(
f"Duplicate {portnum_type}: key={history_key}, gateway={gateway_node_id}"
)
return
discord_msg.publish(channel_config)
except Exception as e:
logging.info(f"*** Error while processing TEXT_MESSAGE_APP: {str(e)}")
elif mp.decoded.portnum == portnums_pb2.NODEINFO_APP:
info = mesh_pb2.User()
try:
info.ParseFromString(mp.decoded.payload)
public_key = base64.b64encode(info.public_key)
hw_model = mesh_pb2.HardwareModel.Name(info.hw_model)
logging.info(
f"{portnum_type}: id={info.id}, long_name='{info.long_name}', short_name={info.short_name}, hw_model={hw_model}, public_key={str(public_key)}"
)
insert_db(
conn,
info.id,
info.long_name,
info.short_name,
info.hw_model,
public_key,
)
except Exception as e:
logging.info(f"*** Error processing NODEINFO_APP: {str(e)}")
def on_publish(mosq, obj, mid, reason_codes, properties):
print("Publish")
def on_connect(client, userdata, flags, reason_code, properties):
print(f"Connected with result code {reason_code}")
def decode_encrypted(mp, key):
"""Decrypt a meshtastic message."""
try:
# Expand the default key
if key == "AQ==":
key = DEFAULT_KEY
# Convert key to bytes
key_bytes = base64.b64decode(key.encode("ascii"))
nonce_packet_id = getattr(mp, "id").to_bytes(8, "little")
nonce_from_node = getattr(mp, "from").to_bytes(8, "little")
# Put both parts into a single byte array.
nonce = nonce_packet_id + nonce_from_node
cipher = Cipher(
algorithms.AES(key_bytes), modes.CTR(nonce), backend=default_backend()
)
decryptor = cipher.decryptor()
decrypted_bytes = (
decryptor.update(getattr(mp, "encrypted")) + decryptor.finalize()
)
data = mesh_pb2.Data()
data.ParseFromString(decrypted_bytes)
mp.decoded.CopyFrom(data)
except Exception as e:
print(f"*** Decryption failed: {str(e)}")
def create_db(conn):
cursor = conn.cursor()
cursor.execute(
"""
CREATE TABLE IF NOT EXISTS Nodes (
id TEXT NOT NULL PRIMARY KEY,
timestamp INTEGER,
long_name TEXT,
short_name TEXT,
hw_model INTEGER,
public_key TEXT
);
"""
)
conn.commit()
cursor.close()
def insert_db(conn, nodeid, long_name, short_name, hw_model, public_key):
cursor = conn.cursor()
cursor.execute(
"""
INSERT OR REPLACE INTO Nodes
(id, timestamp, long_name, short_name, hw_model, public_key)
VALUES (?, ?, ?, ?, ?, ?);
""",
(nodeid, time.time(), long_name, short_name, hw_model, public_key),
)
conn.commit()
cursor.close()
def node_lookup(conn, nodeid):
cursor = conn.cursor()
cursor.execute(
"SELECT id, timestamp, long_name, short_name, hw_model, public_key FROM Nodes WHERE id = ?",
(nodeid,),
)
row = cursor.fetchone()
result = None
if row:
result = {
"id": row[0],
"timestamp": row[1],
"long_name": row[2],
"short_name": row[3],
"hw_model": row[4],
"public_key": row[5],
}
cursor.close()
return result
def node_long_name(conn, nodeid):
db_res = node_lookup(conn, nodeid)
if db_res:
return db_res["long_name"]
else:
return nodeid
# https://github.com/meshtastic/Meshtastic-Apple/blob/main/Meshtastic/Views/Helpers/LoRaSignalStrengthIndicator.swift
def get_rssi_color(rssi):
# rssi == 0 when not available
if not rssi:
return SIGNAL_MISSING
elif rssi > -115:
return SIGNAL_GOOD
elif rssi > -120:
return SIGNAL_FAIR
elif rssi > -126:
return SIGNAL_BAD
else:
return SIGNAL_NONE
def get_snr_color(snr):
snr_limit = -17.5 # Assumes LONG_FAST
if snr > snr_limit:
return SIGNAL_GOOD
elif snr > snr_limit - 5.5:
return SIGNAL_FAIR
elif snr > snr_limit - 7.5:
return SIGNAL_BAD
return SIGNAL_NONE
if __name__ == "__main__":
# Setup logging
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s - %(levelname)s - %(message)s",
handlers=[logging.StreamHandler(sys.stdout)],
)
# Load the YAML config file, replacing environment variables
def string_constructor(loader, node):
t = string.Template(node.value)
value = t.safe_substitute(os.environ)
return value
l = yaml.SafeLoader
l.add_constructor("tag:yaml.org,2002:str", string_constructor)
token_re = string.Template.pattern
l.add_implicit_resolver("tag:yaml.org,2002:str", token_re, None)
with open("config.yaml", "r") as file:
CONFIG = yaml.load(file, Loader=l)
# Fold the channel list into a dictionary
d = {}
for c in CONFIG["channels"]:
d[c["name"]] = c
CONFIG["channels"] = d
# Read the nodes database
conn = sqlite3.connect("nodes.db")
create_db(conn)
# Start the MQTT client
client = paho.Client(paho.CallbackAPIVersion.VERSION2, client_id="meshobserv-7362")
client.on_message = on_message
client.on_publish = on_publish
client.on_connect = on_connect
client.username_pw_set(CONFIG["mqtt"]["user"], CONFIG["mqtt"]["password"])
client.connect(CONFIG["mqtt"]["address"], CONFIG["mqtt"]["port"], 60)
client.subscribe(CONFIG["mqtt"]["subscription"], 0)
while client.loop() == 0:
pass
conn.close()