a7a281cb11
First-party plugins (host_agent, http, snmp, traefik, unifi, docker) are now tracked under plugins/ and baked into the image, so they version atomically with core — ending the cross-repo import drift the roundtable->steward rename exposed. History for these files is preserved in the archived Roundtable-plugins repo. Plugin discovery becomes multi-root: PLUGIN_DIR (single) -> PLUGIN_DIRS (bundled first, then external) + PLUGIN_INSTALL_DIR. Bundled ships in the image; third-party plugins still mount at runtime into the external root (STEWARD_PLUGIN_DIR, default /data/plugins) and downloads/installs land there. Bundled shadows external on a name collision. - config.py: load_bootstrap returns plugin_dirs + plugin_install_dir - app.py: iterate PLUGIN_DIRS at the migration + load sites - migration_runner.py: discover_all_in() unions every plugin root - plugin_manager.py: resolve_plugin_path() (pure, first-root-wins); load / install / hot-reload span all roots; installs target the external root - settings/routes.py: _discover_plugins scans all roots, dedup bundled-first - Dockerfile: COPY plugins/ ; docker-compose: drop host bind, document external - tests/test_plugin_dirs.py: resolution, multi-root discovery, bootstrap split Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
147 lines
6.2 KiB
HTML
147 lines
6.2 KiB
HTML
{# plugins/unifi/templates/unifi/inventory.html #}
|
|
<div style="column-width:360px;column-count:3;column-gap:1rem;">
|
|
|
|
{# Networks / VLANs #}
|
|
{% if networks %}
|
|
<div class="card" style="break-inside:avoid;margin-bottom:1rem;">
|
|
<div class="section-title" style="margin-bottom:0.75rem;">Networks / VLANs</div>
|
|
<table class="table" style="width:100%;font-size:0.82rem;">
|
|
<tr style="color:var(--text-muted);font-size:0.78rem;">
|
|
<th style="text-align:left;font-weight:normal;padding:0 0.5rem 0.3rem 0;">Name</th>
|
|
<th style="text-align:right;font-weight:normal;padding:0 0.5rem 0.3rem;">VLAN</th>
|
|
<th style="text-align:left;font-weight:normal;padding:0 0 0.3rem;">Subnet</th>
|
|
</tr>
|
|
{% for net in networks %}
|
|
<tr>
|
|
<td style="padding:0.25rem 0.5rem 0.25rem 0;">
|
|
{{ net.name }}
|
|
{% if net.is_guest %}<span style="font-size:0.72rem;color:var(--text-dim);"> guest</span>{% endif %}
|
|
</td>
|
|
<td style="padding:0.25rem 0.5rem;text-align:right;color:var(--text-muted);font-family:monospace;font-size:0.78rem;">
|
|
{{ net.vlan or "—" }}
|
|
</td>
|
|
<td style="padding:0.25rem 0;color:var(--text-dim);font-family:monospace;font-size:0.78rem;">
|
|
{{ net.ip_subnet or "—" }}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{# Port forwards #}
|
|
{% if port_forwards %}
|
|
<div class="card" style="break-inside:avoid;margin-bottom:1rem;">
|
|
<div class="section-title" style="margin-bottom:0.75rem;">Port Forwards</div>
|
|
<table class="table" style="width:100%;font-size:0.82rem;">
|
|
{% for pf in port_forwards %}
|
|
<tr>
|
|
<td style="padding:0.25rem 0.5rem 0.25rem 0;">
|
|
<span style="{% if not pf.enabled %}color:var(--text-dim);{% endif %}">
|
|
{{ pf.name or "—" }}
|
|
</span>
|
|
{% if not pf.enabled %}<span style="font-size:0.72rem;color:var(--text-dim);"> disabled</span>{% endif %}
|
|
</td>
|
|
<td style="padding:0.25rem 0;font-family:monospace;font-size:0.78rem;color:var(--text-muted);white-space:nowrap;">
|
|
{{ pf.proto }}:{{ pf.dst_port }} → {{ pf.fwd_ip }}:{{ pf.fwd_port }}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{# Firewall rules, grouped by ruleset #}
|
|
{% if fw_rules %}
|
|
{% set ns = namespace(current_rs=None) %}
|
|
<div class="card" style="break-inside:avoid;margin-bottom:1rem;">
|
|
<div class="section-title" style="margin-bottom:0.75rem;">Firewall Rules</div>
|
|
<table class="table" style="width:100%;font-size:0.82rem;">
|
|
{% for rule in fw_rules %}
|
|
{% if rule.ruleset != ns.current_rs %}
|
|
{% set ns.current_rs = rule.ruleset %}
|
|
<tr>
|
|
<td colspan="3" style="padding:0.4rem 0 0.2rem;color:var(--text-muted);font-size:0.75rem;font-weight:600;letter-spacing:0.04em;text-transform:uppercase;">
|
|
{{ rule.ruleset }}
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
<tr>
|
|
<td style="padding:0.2rem 0.5rem 0.2rem 0;">
|
|
<span style="{% if not rule.enabled %}color:var(--text-dim);{% endif %}">
|
|
{{ rule.name }}
|
|
</span>
|
|
</td>
|
|
<td style="padding:0.2rem 0.3rem;white-space:nowrap;">
|
|
<span style="font-size:0.75rem;padding:0.1rem 0.35rem;border-radius:3px;background:
|
|
{% if rule.action == 'accept' %}rgba(64,160,64,0.2)
|
|
{% elif rule.action == 'drop' %}rgba(192,64,64,0.2)
|
|
{% else %}rgba(192,128,64,0.2){% endif %};">
|
|
{{ rule.action }}
|
|
</span>
|
|
</td>
|
|
<td style="padding:0.2rem 0;color:var(--text-dim);font-size:0.76rem;">
|
|
{% if rule.protocol %}{{ rule.protocol }}{% endif %}
|
|
{% if rule.src_address %} src:{{ rule.src_address }}{% endif %}
|
|
{% if rule.dst_address %} dst:{{ rule.dst_address }}{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{# Known clients #}
|
|
{% if known_clients %}
|
|
<div class="card" style="break-inside:avoid;margin-bottom:1rem;">
|
|
<div class="section-title" style="margin-bottom:0.75rem;">
|
|
Known Clients
|
|
<span style="float:right;font-weight:normal;font-size:0.78rem;color:var(--text-dim);">{{ known_clients|length }} total</span>
|
|
</div>
|
|
<table class="table" style="width:100%;font-size:0.82rem;">
|
|
<tr style="color:var(--text-muted);font-size:0.78rem;">
|
|
<th style="text-align:left;font-weight:normal;padding:0 0.5rem 0.3rem 0;">Name / MAC</th>
|
|
<th style="text-align:left;font-weight:normal;padding:0 0.5rem 0.3rem;">IP</th>
|
|
<th style="text-align:right;font-weight:normal;padding:0 0 0.3rem;">Last Seen</th>
|
|
</tr>
|
|
{% for kc in known_clients[:50] %}
|
|
<tr>
|
|
<td style="padding:0.2rem 0.5rem 0.2rem 0;">
|
|
<div style="{% if kc.is_blocked %}color:var(--red);{% endif %}">
|
|
{{ kc.name or kc.hostname or kc.mac }}
|
|
{% if kc.is_blocked %}<span style="font-size:0.72rem;"> blocked</span>{% endif %}
|
|
</div>
|
|
{% if kc.name or kc.hostname %}
|
|
<div style="color:var(--text-dim);font-size:0.74rem;font-family:monospace;">{{ kc.mac }}</div>
|
|
{% endif %}
|
|
{% if kc.mac_vendor %}
|
|
<div style="color:var(--text-dim);font-size:0.73rem;">{{ kc.mac_vendor }}</div>
|
|
{% endif %}
|
|
</td>
|
|
<td style="padding:0.2rem 0.3rem;color:var(--text-muted);font-family:monospace;font-size:0.78rem;">
|
|
{{ kc.ip or "—" }}
|
|
</td>
|
|
<td style="padding:0.2rem 0;text-align:right;color:var(--text-dim);font-size:0.75rem;white-space:nowrap;">
|
|
{% if kc.last_seen %}{{ kc.last_seen.strftime("%m-%d %H:%M") }}{% else %}—{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% if known_clients|length > 50 %}
|
|
<tr>
|
|
<td colspan="3" style="padding:0.4rem 0;color:var(--text-dim);font-size:0.78rem;text-align:center;">
|
|
+{{ known_clients|length - 50 }} more
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
</table>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if not networks and not port_forwards and not fw_rules and not known_clients %}
|
|
<div class="card">
|
|
<p style="color:var(--text-muted);">No inventory data yet. This populates on the next poll cycle.</p>
|
|
</div>
|
|
{% endif %}
|
|
|
|
</div>
|