%!
import datetime
from dateutil import tz
def relative_time(timestamp):
seconds = (datetime.datetime.now(tz.UTC) - datetime.datetime.fromisoformat(timestamp)).seconds
days = hours = minutes = 0
if seconds > 86400:
days, seconds = divmod(seconds, 86400)
if seconds > 3600:
hours, seconds = divmod(seconds, 3600)
if seconds > 60:
minutes, seconds = divmod(seconds, 60)
return f"{days}d, {hours:02d}:{minutes:02d}:{seconds:02d}"
%>
<%def name="blockdata(disabled, blocked_ips, blocked_keys)">
% if disabled:
The server is currently disabled!
% endif
% if blocked_ips:
Blocked IPs
% for ip in blocked_ips:
- ${ip}
% endfor
% endif
% if blocked_keys:
Disabled Keys
% for streamkey in blocked_keys:
- ${streamkey}
% endfor
% endif
% if disabled or blocked_ips or blocked_keys:
% endif
%def>
<%def name="stream_buttons(vhost, app, stream)">
%def>
${blockdata(DISABLED, BLOCKED_IPS, DISABLED_KEYS)}
% for vhost_name, vhost_data in data["vhosts"].items():
${vhost_name} vhost
% for vhost_k, vhost_v in vhost_data.items():
% if vhost_k != "apps":
${vhost_k} | ${vhost_v} |
% endif
% endfor
% for app_name, app_data in vhost_data.get("apps", {}).items():
${app_name}
% for app_k, app_v in app_data.items():
% if app_k != "streams":
${app_k} | ${app_v} |
% endif
% endfor
% for stream_name, stream_data in app_data.get("streams", {}).items():
${app_name}/${stream_name}
% for stream_k, stream_v in stream_data.items():
<%
if stream_k == "has_bframes" and stream_v:
classname = 'class="alert"'
else:
classname = ''
if stream_k == "fps_actual":
stream_v = f"{stream_v:.1f}"
elif stream_k.startswith("bitrate_"):
stream_v = f"{stream_v / 1000:.0f}kbps"
elif stream_k == "created":
stream_v = f"{relative_time(stream_v)} ago"
%>
${stream_k} | ${stream_v} |
% endfor
${stream_buttons(vhost_name, app_name, stream_name)}
% endfor
% endfor
% endfor