Skip to content

Commit ba1cd3d

Browse files
committed
Fixes the last alert message on the webUI. Only the latest entry should be shown.
1 parent 0e5b23c commit ba1cd3d

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

linde_manager.py

+9-4
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,13 @@ def get_data(self):
176176

177177
def start_data_collection(self):
178178
self.get_data()
179-
threading.Timer(3600, self.start_data_collection).start() # Schedule to run every hour
179+
threading.Timer(3600, self.start_data_collection).start() # Scheduled to run every hour
180180

181181
def send_alert_email(self, bank):
182182
msg = MIMEMultipart()
183183
msg['From'] = self.credentials['username']
184184
msg['To'] = self.credentials['BOC_address']
185+
msg['CC'] = self.credentials['username']
185186
msg['Subject'] = "Please deliver 40-VK to the cage between SECB and Flowers."
186187

187188
body = (f"Dear BOC team,\n\n"
@@ -312,11 +313,15 @@ def get_icon(value):
312313
right_icon = get_icon(right_content)
313314

314315
# Read the last alert date and time
315-
last_alert_time = 'No alerts sent yet'
316+
last_alert_message = 'No alerts sent yet'
316317
last_alert_file = os.path.join(_DATADIR, 'last_alert.log')
317318
if os.path.exists(last_alert_file):
318319
with open(last_alert_file, 'r') as file:
319-
last_alert_time = file.read().strip()
320+
lines = file.readlines()
321+
last_entry = lines[-1].strip() # Get the latest entry
322+
last_alert_time, bank_side = last_entry.split(',') # Split the entry into time and bank side
323+
last_alert_message = f"The last alert was sent on {last_alert_time} for the {bank_side} bank"
324+
320325

321326
html = f"""
322327
<html>
@@ -344,7 +349,7 @@ def get_icon(value):
344349
</head>
345350
<body>
346351
<h2 class="center">FlyRoom CO2 Bank Status</h2>
347-
<p class="center">Last alert sent: {last_alert_time}</p>
352+
<p class="center">{last_alert_message}</p>
348353
<table>
349354
<tr>
350355
<th>Bank</th>

0 commit comments

Comments
 (0)