-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
reticulum.py
executable file
·82 lines (58 loc) · 3.82 KB
/
reticulum.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
# Predator
# Copyright (C) 2024 V0LT - Conner Vieira
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by# the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License along with this program (LICENSE)
# If not, see https://www.gnu.org/licenses/ to read the license agreement.
# This script contains functions for interacting with services over the Reticulum network protocol.
import os # Required to interact with certain operating system functions
import json # Required to process JSON data
predator_root_directory = str(os.path.dirname(os.path.realpath(__file__))) # This variable determines the folder path of the root Predator directory. This should usually automatically recognize itself, but it if it doesn't, you can change it manually.
try:
if (os.path.exists(predator_root_directory + "/config.json")):
config = json.load(open(predator_root_directory + "/config.json")) # Load the configuration database from config.json
else:
print("The configuration file doesn't appear to exist at " + predator_root_directory + "/config.json.")
exit()
except:
print("The configuration database couldn't be loaded. It may be corrupted.")
exit()
import LXMF
import RNS
import time
import utils
display_message = utils.display_message
debug_message = utils.debug_message
rns = RNS.Reticulum() # Initialize Reticulum.
lxmf_router = LXMF.LXMRouter(storagepath="/tmp/predatorlxmf")
if (os.path.exists(config["dashcam"]["notifications"]["reticulum"]["identity_file"]) == False):
new_identity = RNS.Identity()
new_identity.to_file(config["dashcam"]["notifications"]["reticulum"]["identity_file"])
debug_message("Loading Reticulum identity file")
identity = RNS.Identity().from_file(config["dashcam"]["notifications"]["reticulum"]["identity_file"])
debug_message("Announcing Reticulum source")
source = lxmf_router.register_delivery_identity(identity, display_name="Predator")
lxmf_router.announce(source.hash) # Announce this instance.
last_announce = time.time()
def lxmf_send_message(message, destination):
global lxmf_router
global config
if (time.time() - last_announce > 30*60):
debug_message("Announcing Reticulum source")
lxmf_router.announce(source.hash) # Announce this instance.
debug_message("Identifying Reticulum destination")
recipient_hash = bytes.fromhex(destination)
if not RNS.Transport.has_path(recipient_hash): # Check to see if the destination is currently unknown.
RNS.Transport.request_path(recipient_hash)
start_time = time.time()
while not RNS.Transport.has_path(recipient_hash): # Wait until the destination is known.
if (time.time() - start_time > 10): # Check to see if the request has been stuck for more than a certain number of seconds.
display_message("Failed to determine Reticulum destination.", 2)
break
time.sleep(0.1)
recipient_identity = RNS.Identity.recall(recipient_hash)
dest = RNS.Destination(recipient_identity, RNS.Destination.OUT, RNS.Destination.SINGLE, "lxmf", "delivery") # Establish the LXMF destination.
debug_message("Sending Reticulum message")
lxmf_request = LXMF.LXMessage(dest, source, message, "Predator", desired_method=LXMF.LXMessage.DIRECT)
lxmf_router.handle_outbound(lxmf_request)
time.sleep(0.01) # Pause for a brief destinationmoment to let the outbound request be processed by Reticulum.