From a274d1a0f6c97a9502fa410a529de329b753f184 Mon Sep 17 00:00:00 2001
From: Trysdyn Black <trysdyn@voidfox.com>
Date: Fri, 7 Mar 2025 22:10:42 -0800
Subject: [PATCH] Report cached stream list in management

The stream list caching issues should be fixed, but this is useful for
sniffing out possible future issues.
---
 management.py            |  1 +
 template/management.mako | 16 ++++++++++++++++
 2 files changed, 17 insertions(+)

diff --git a/management.py b/management.py
index 95ad191..dbbcc97 100644
--- a/management.py
+++ b/management.py
@@ -134,5 +134,6 @@ class Management:
             DISABLED=config.DISABLED,
             BLOCKED_IPS=config.BLOCKED_IPS,
             DISABLED_KEYS=config.DISABLED_KEYS,
+            STREAM_LIST=config.LAST_STREAM_LIST,
             data=data,
         )
diff --git a/template/management.mako b/template/management.mako
index 1966f3f..cdbff85 100644
--- a/template/management.mako
+++ b/template/management.mako
@@ -16,6 +16,18 @@
       return f"{days}d, {hours:02d}:{minutes:02d}:{seconds:02d}"
 %>
 
+<%def name="cachedata(stream_list)">
+  <h3>Stream Cache <a title="This is a list of every stream that the middleware thinks is live. It should match the list of live streams reported by the OvenMediaEngine API above. If they don't match, there's a bug in OvenEmprex's cache handling and some streams may not appear properly."><u>[?]</u></a></h3>
+  <ul>
+  % if not stream_list:
+    <li>No Live Streams</li>
+  % endif
+  % for stream in stream_list:
+    <li>${stream[0]}:${stream[1]}:${stream[2]}</li>
+  % endfor
+  </ul>
+</%def>
+
 <%def name="blockdata(disabled, blocked_ips, blocked_keys)">
   % if disabled:
     <h2 class="warning">The server is currently disabled!</h2>
@@ -139,5 +151,9 @@ td.left {
     % endfor
     </details>
   % endfor
+  <hr>
+  <details><summary>Debug Info</summary>
+    ${cachedata(STREAM_LIST)}
+  </details>
 </body>
 <html>