Skip to content

Commit 24bcd5c

Browse files
committedDec 5, 2024
readNews
on demand return of the file news.txt for readnews onair
1 parent 8407512 commit 24bcd5c

File tree

7 files changed

+34
-12
lines changed

7 files changed

+34
-12
lines changed
 

‎README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ Welcome to the Mesh Bot project! This feature-rich bot is designed to enhance yo
4747

4848
### File Monitor Alerts
4949
- **File Mon**: Monitor a flat/text file for changes, brodcast the contents of the message to mesh channel.
50+
- **News File**: on request of news the contents of the file is returned.
5051

5152
### Data Reporting
5253
- **HTML Generator**: Visualize bot traffic and data flows with a built-in HTML generator for [data reporting](logs/README.md).
@@ -216,11 +217,14 @@ signalCycleLimit = 5
216217

217218
### File Monitoring
218219
Some dev notes for ideas of use
220+
219221
```ini
220222
[fileMon]
221-
enabled = True
223+
filemon_enabled = True
222224
file_path = alert.txt
223225
broadcastCh = 2,4
226+
enable_read_news = False
227+
news_file_path = news.txt
224228
```
225229
#### NOAA EAS
226230
To Alert on Mesh with the NOAA EAS API you can set the channels and enable, checks every 30min

‎config.template

+3-1
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,11 @@ signalCooldown = 5
147147
signalCycleLimit = 5
148148

149149
[fileMon]
150-
enabled = False
150+
filemon_enabled = False
151151
file_path = alert.txt
152152
broadcastCh = 2
153+
enable_read_news = False
154+
news_file_path = news.txt
153155

154156
[messagingSettings]
155157
# delay in seconds for response to avoid message collision

‎mesh_bot.py

+3
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ def auto_response(message, snr, rssi, hop, pkiStatus, message_from_id, channel_n
5757
"ping": lambda: handle_ping(message_from_id, deviceID, message, hop, snr, rssi, isDM, channel_number),
5858
"pinging": lambda: handle_ping(message_from_id, deviceID, message, hop, snr, rssi, isDM, channel_number),
5959
"pong": lambda: "🏓PING!!🛜",
60+
"readnews": lambda: read_news(),
6061
"rlist": lambda: handle_repeaterQuery(message_from_id, deviceID, channel_number),
6162
"sitrep": lambda: handle_lheard(message, message_from_id, deviceID, isDM),
6263
"solar": lambda: drap_xray_conditions() + "\n" + solar_conditions(),
@@ -1059,6 +1060,8 @@ async def start_rx():
10591060
logger.debug(f"System: Radio Detection Enabled using rigctld at {rigControlServerAddress} brodcasting to channels: {sigWatchBroadcastCh} for {get_freq_common_name(get_hamlib('f'))}")
10601061
if file_monitor_enabled:
10611062
logger.debug(f"System: File Monitor Enabled for {file_monitor_file_path}, broadcasting to channels: {file_monitor_broadcastCh}")
1063+
if read_news_enabled:
1064+
logger.debug(f"System: File Monitor News Reader Enabled for {news_file_path}")
10621065
if wxAlertBroadcastEnabled:
10631066
logger.debug(f"System: Weather Alert Broadcast Enabled on channels {wxAlertBroadcastChannel}")
10641067
if scheduler_enabled:

‎modules/filemon.py

+15-8
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,22 @@
55
import asyncio
66
import os
77

8+
trap_list_filemon = ("readnews",)
9+
10+
def read_file(file_monitor_file_path):
11+
try:
12+
with open(file_monitor_file_path, 'r') as f:
13+
content = f.read()
14+
return content
15+
except Exception as e:
16+
logger.warning(f"FileMon: Error reading file: {file_monitor_file_path}")
17+
return None
18+
19+
def read_news():
20+
# read the news file on demand
21+
return read_file(news_file_path)
22+
823
async def watch_file():
9-
def read_file(file_monitor_file_path):
10-
try:
11-
with open(file_monitor_file_path, 'r') as f:
12-
content = f.read()
13-
return content
14-
except Exception as e:
15-
logger.warning(f"FileMon: Error reading file: {file_monitor_file_path}")
16-
return None
1724

1825
if not os.path.exists(file_monitor_file_path):
1926
return None

‎modules/settings.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,11 @@
176176
signalCycleLimit = config['radioMon'].getint('signalCycleLimit', 5) # default 5 cycles, used with SIGNAL_COOLDOWN
177177

178178
# file monitor
179-
file_monitor_enabled = config['fileMon'].getboolean('enabled', False)
179+
file_monitor_enabled = config['fileMon'].getboolean('filemon_enabled', False)
180180
file_monitor_file_path = config['fileMon'].get('file_path', 'alert.txt') # default alert.txt
181181
file_monitor_broadcastCh = config['fileMon'].getint('broadcastCh', 2) # default 2
182+
read_news_enabled = config['fileMon'].getboolean('enable_read_news', False) # default disabled
183+
news_file_path = config['fileMon'].get('news_file_path', 'news.txt') # default news.txt
182184

183185
# games
184186
game_hop_limit = config['messagingSettings'].getint('game_hop_limit', 5) # default 3 hops

‎modules/system.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,11 @@
174174
from modules.radio import * # from the spudgunman/meshing-around repo
175175

176176
# File Monitor Configuration
177-
if file_monitor_enabled:
177+
if file_monitor_enabled or read_news_enabled:
178178
from modules.filemon import * # from the spudgunman/meshing-around repo
179+
if read_news_enabled:
180+
trap_list = trap_list + trap_list_filemon # items readnews
181+
help_message = help_message + ", readmail"
179182

180183
# BLE dual interface prevention
181184
if interface1_type == 'ble' and interface2_type == 'ble':

‎news.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
no new news is good news!

0 commit comments

Comments
 (0)
Please sign in to comment.