-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmeshbot.py
478 lines (426 loc) · 17.7 KB
/
meshbot.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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
#!python3
# -*- coding: utf-8 -*-
"""
MeshBot
=======================
meshbot.py: A message bot designed for Meshtastic, providing information from modules upon request:
* weather information
* tides information
* whois search
* simple bbs
Author:
- Andy
- April 2024
MIT License
Copyright (c) 2024 Andy
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""
import argparse
import logging
import secrets
import threading
import time
from pathlib import Path
import requests
import yaml
try:
import meshtastic.serial_interface
import meshtastic.tcp_interface
from pubsub import pub
except ImportError:
print(
"ERROR: Missing meshtastic library!\nYou can install it via pip:\npip install meshtastic\n"
)
import serial.tools.list_ports
from modules.bbs import BBS
from modules.tides import TidesScraper
from modules.twin_cipher import TwinHexDecoder, TwinHexEncoder
from modules.whois import Whois
from modules.wttr import WeatherFetcher
def find_serial_ports():
# Use the list_ports module to get a list of available serial ports
ports = [port.device for port in serial.tools.list_ports.comports()]
filtered_ports = [
port for port in ports if "COM" in port.upper() or "USB" in port.upper()
]
return filtered_ports
# Configure logging
logging.basicConfig(
level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s"
)
logger = logging.getLogger()
# GLOBALS
LOCATION = ""
TIDE_LOCATION = ""
MYNODE = ""
MYNODES = ""
DBFILENAME = ""
DM_MODE = ""
FIREWALL = ""
DUTYCYCLE = ""
with open("settings.yaml", "r") as file:
settings = yaml.safe_load(file)
LOCATION = settings.get("LOCATION")
TIDE_LOCATION = settings.get("TIDE_LOCATION")
MYNODE = settings.get("MYNODE")
MYNODES = settings.get("MYNODES")
DBFILENAME = settings.get("DBFILENAME")
DM_MODE = settings.get("DM_MODE")
FIREWALL = settings.get("FIREWALL")
DUTYCYCLE = settings.get("DUTYCYCLE")
logger.info(f"DUTYCYCLE: {DUTYCYCLE}")
logger.info(f"DM_MODE: {DM_MODE}")
logger.info(f"FIREWALL: {FIREWALL}")
# try:
# LOCATION = requests.get("https://ipinfo.io/city").text
# logger.info(f"Setting location to {LOCATION}")
# except:
# logger.warning("Could not calculate location. Using defaults")
weather_fetcher = WeatherFetcher(LOCATION)
tides_scraper = TidesScraper(TIDE_LOCATION)
bbs = BBS()
transmission_count = 0
cooldown = False
kill_all_robots = 0 # Assuming you missed defining kill_all_robots
# Function to periodically refresh weather and tides data
def refresh_data():
while True:
global weather_info
global tides_info
weather_info = weather_fetcher.get_weather()
tides_info = tides_scraper.get_tides()
time.sleep(3 * 60 * 60) # Sleep for 3 hours
def reset_transmission_count():
global transmission_count
transmission_count -= 1
if transmission_count < 0:
transmission_count = 0
logger.info(f"Reducing transmission count {transmission_count}")
threading.Timer(180.0, reset_transmission_count).start()
def reset_cooldown():
global cooldown
cooldown = False
logger.info("Cooldown Disabled.")
threading.Timer(240.0, reset_cooldown).start()
def reset_killallrobots():
global kill_all_robots
kill_all_robots = 0
logger.info("Killbot Disabled.")
threading.Timer(120.0, reset_killallrobots).start()
# Function to handle incoming messages
def message_listener(packet, interface):
global transmission_count
global cooldown
global kill_all_robots
global weather_info
global tides_info
global DBFILENAME
global DM_MODE
global FIREWALL
global DUTYCYCLE
if packet is not None and packet["decoded"].get("portnum") == "TEXT_MESSAGE_APP":
message = packet["decoded"]["text"].lower()
sender_id = packet["from"]
logger.info(f"Message {packet['decoded']['text']} from {packet['from']}")
logger.info(f"transmission count {transmission_count}")
if (
transmission_count < 16 or DUTYCYCLE == False
and (DM_MODE == 0 or str(packet["to"]) == MYNODE)
and (FIREWALL == 0 or any(node in str(packet["from"]) for node in MYNODES))
):
if "#fw" in message:
message_parts = message.split(" ")
if len(message_parts) > 1:
if message_parts[1].lower() == "off":
FIREWALL = False
logger.info("FIREWALL=False")
else:
FIREWALL = True
logger.info("FIREWALL=True")
else:
FIREWALL = True
logger.info("FIREWALL=True")
elif "#dm" in message:
message_parts = message.split(" ")
if len(message_parts) > 1:
if message_parts[1].lower() == "off":
DM_MODE = False
logger.info("DM_MODE=False")
else:
DM_MODE = True
logger.info("DM_MODE=True")
else:
DM_MODE = True
logger.info("DM_MODE=True")
elif "#flipcoin" in message:
transmission_count += 1
interface.sendText(
secrets.choice(["Heads", "Tails"]),
wantAck=True,
destinationId=sender_id,
)
elif "#random" in message:
transmission_count += 1
interface.sendText(
str(secrets.randbelow(10) + 1),
wantAck=True,
destinationId=sender_id,
)
elif "#twin" in message:
message_parts = packet["decoded"]["text"].split(" ")
content = " ".join(message_parts[2:])
if message_parts[1].lower() == "d":
interface.sendText(
TwinHexDecoder().decrypt(content),
wantAck=True,
destinationId=sender_id,
)
else:
interface.sendText(
TwinHexEncoder().encrypt(content),
wantAck=True,
destinationId=sender_id,
)
elif "#weather" in message:
transmission_count += 1
interface.sendText(weather_info, wantAck=True, destinationId=sender_id)
elif "#tides" in message:
transmission_count += 1
interface.sendText(tides_info, wantAck=True, destinationId=sender_id)
elif "#test" in message:
transmission_count += 1
interface.sendText("🟢 ACK", wantAck=True, destinationId=sender_id)
elif "#tst-detail" in message:
transmission_count += 1
testreply = "🟢 ACK."
if "hopStart" in packet:
if (packet["hopStart"] - packet["hopLimit"]) == 0:
testreply += "Received Directly at "
else:
testreply += "Received from " + str(packet["hopStart"] - packet["hopLimit"]) + "hop(s) away at"
testreply += str(packet["rxRssi"]) + "dB, SNR: " + str(packet["rxSnr"]) + "dB (" + str(int(packet["rxSnr"] + 10 * 5)) + "%)"
interface.sendText(testreply, wantAck=True, destinationId=sender_id)
elif "#whois #" in message:
message_parts = message.split("#")
transmission_count += 1
lookup_complete = False
if len(message_parts) > 1:
whois_search = Whois(DBFILENAME)
logger.info(
f"Querying whois DB {DBFILENAME} for: {message_parts[2].strip()}"
)
try:
if (
type(int(message_parts[2].strip(), 16)) == int
or type(int(message_parts[2].strip().upper(), 16)) == int
):
result = whois_search.search_nodes(message_parts[2].strip())
if result:
node_id, long_name, short_name = result
whois_data = f"ID:{node_id}\n"
whois_data += f"Long Name: {long_name}\n"
whois_data += f"Short Name: {short_name}"
logger.info(f"Data: {whois_data}")
interface.sendText(
f"{whois_data}",
wantAck=False,
destinationId=sender_id,
)
else:
interface.sendText(
"No matching record found.",
wantAck=False,
destinationId=sender_id,
)
lookup_complete = True
except:
logger.error("Not a hex string aborting!")
pass
if (
type(message_parts[2].strip()) == str
and lookup_complete == False
):
result = whois_search.search_nodes_sn(message_parts[2].strip())
if result:
node_id, long_name, short_name = result
whois_data = f"ID:{node_id}\n"
whois_data += f"Long Name: {long_name}\n"
whois_data += f"Short Name: {short_name}"
logger.info(f"Data: {whois_data}")
interface.sendText(
f"{whois_data}", wantAck=False, destinationId=sender_id
)
else:
interface.sendText(
"No matching record found.",
wantAck=False,
destinationId=sender_id,
)
else:
interface.sendText(
"No matching record found.",
wantAck=False,
destinationId=sender_id,
)
whois_search.close_connection()
else:
pass
elif "#bbs" in message:
transmission_count += 1
count = 0
message_parts = message.split()
addy = hex(packet["from"]).replace("0x", "!")
if message_parts[1].lower() == "any":
try:
count = bbs.count_messages(addy)
logger.info(f"{count} messages found")
except ValueError as e:
message = "No new messages."
logger.error(f"bbs count messages error: {e}")
if count >= 0:
message = "You have " + str(count) + " messages."
interface.sendText(
message, wantAck=True, destinationId=sender_id
)
if message_parts[1].lower() == "get":
try:
messages = bbs.get_message(addy)
if messages:
for user, message in messages:
logger.info(f"Message for {user}: {message}")
interface.sendText(
message,
wantAck=False,
destinationId=sender_id,
)
bbs.delete_message(addy)
else:
message = "No new messages."
logger.info("No new messages")
interface.sendText(
message,
wantAck=False,
destinationId=sender_id,
)
except Exception as e:
logger.error(f"Error: {e}")
if message_parts[1].lower() == "post":
content = " ".join(
message_parts[3:]
) # Join the remaining parts as the message content
whois_search = Whois(DBFILENAME)
result = whois_search.search_nodes(
hex(packet["from"]).replace("0x", "")
)
if result:
node_id, long_name, short_name = result
else:
short_name = hex(packet["from"])
content = (
content
+ ". From: "
+ short_name
+ "("
+ str(hex(packet["from"])).replace("0x", "!")
+ ")"
)
bbs.post_message(message_parts[2], content)
elif "#kill_all_robots" in message:
transmission_count += 1
if kill_all_robots == 0:
interface.sendText(
"Confirm", wantAck=False, destinationId=sender_id
)
kill_all_robots += 1
if kill_all_robots > 1:
interface.sendText(
"💣 Deactivating all reachable bots... SECRET_SHUTDOWN_STRING",
wantAck=False,
)
transmission_count += 1
kill_all_robots = 0
if transmission_count >= 11 and DUTYCYCLE == True:
if not cooldown:
interface.sendText(
"❌ Bot has reached duty cycle, entering cool down... ❄",
wantAck=False,
)
logger.info("Cooldown enabled.")
cooldown = True
logger.info(
"Duty cycle limit reached. Please wait before transmitting again."
)
else:
# do nothing as not a keyword and message destination was the node
pass
# Main function
def main():
logger.info("Starting program.")
reset_transmission_count()
reset_cooldown()
reset_killallrobots()
cwd = Path.cwd()
global DBFILENAME
parser = argparse.ArgumentParser(description="Meshbot a bot for Meshtastic devices")
parser.add_argument("--port", type=str, help="Specify the serial port to probe")
parser.add_argument("--db", type=str, help="Specify DB: mpowered or liam")
parser.add_argument("--host", type=str, help="Specify meshtastic host (IP address) if using API")
args = parser.parse_args()
if args.port:
serial_ports = [args.port]
logger.info(f"Serial port {serial_ports}\n")
elif args.host:
ip_host = args.host
print(ip_host)
logger.info(f"Meshtastic API host {ip_host}\n")
else:
serial_ports = find_serial_ports()
if serial_ports:
logger.info("Available serial ports:")
for port in serial_ports:
logger.info(port)
logger.info(
"Im not smart enough to work out the correct port, please use the --port argument with a relevent meshtastic port"
)
else:
logger.info("No serial ports found.")
exit(0)
if args.db:
if args.db.lower() == "mpowered":
DBFILENAME = str(cwd) + "/db/nodes.db"
logger.info(f"Setting DB to mpowered data: {DBFILENAME}")
if args.db.lower() == "liam":
DBFILENAME = str(cwd) + "/db/nodes2.db"
logger.info(f"Setting DB to Liam Cottle data: {DBFILENAME}")
else:
logger.info(f"Default DB: {DBFILENAME}")
logger.info(f"Press CTRL-C x2 to terminate the program")
if args.host:
interface = meshtastic.tcp_interface.TCPInterface(hostname=ip_host,noProto=False)
else:
interface = meshtastic.serial_interface.SerialInterface(serial_ports[0])
pub.subscribe(message_listener, "meshtastic.receive")
# Start a separate thread for refreshing data periodically
refresh_thread = threading.Thread(target=refresh_data)
refresh_thread.daemon = True
refresh_thread.start()
# Keep the main thread alive
while True:
# time.sleep(1)
continue
if __name__ == "__main__":
main()