forge-guard 0.3.3

Pre-deployment smart contract auditing framework for Foundry
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
//! `forge-guard dashboard` — local web dashboard for audit results.
//!
//! Starts a self-contained HTTP server (default `http://127.0.0.1:9090`)
//! that displays the last audit result with:
//!
//! * an overall score gauge and per-category score bars,
//! * severity distribution charts,
//! * an interactive, filterable finding list with expandable details,
//! * WebSocket auto-refresh — the page live-updates whenever the cached
//!   audit result changes (e.g. after a re-audit, or with `--watch`).
//!
//! The dashboard reads the same `.forge-guard-cache/last_audit.json` that
//! `forge-guard report` uses, so no extra setup is required after an audit.

use crate::cli::DashboardArgs;
use crate::core::ProjectConfig;

use anyhow::{Context, Result};
use axum::{
    extract::{
        ws::{Message, WebSocket, WebSocketUpgrade},
        State,
    },
    response::{Html, IntoResponse, Response},
    routing::get,
    Router,
};
use colored::*;
use std::path::PathBuf;
use std::time::Duration;
use tokio::sync::broadcast;

/// Shared server state: where the cached audit lives and a channel for
/// broadcasting updates to all connected WebSocket clients.
#[derive(Clone)]
struct AppState {
    cache_file: PathBuf,
    tx: broadcast::Sender<String>,
}

/// Entry point for `forge-guard dashboard`.
pub fn run(args: &DashboardArgs) -> Result<()> {
    let mut config = ProjectConfig::from_default_location();
    config.project_root = args.shared.project.clone();

    let cache_file = config
        .project_root
        .join(&config.cache.directory)
        .join("last_audit.json");

    let (tx, _) = broadcast::channel(64);
    let state = AppState {
        cache_file: cache_file.clone(),
        tx,
    };

    // Build the tokio runtime and run the server.
    let host = args.host.clone();
    let port = args.port;
    let open = args.open;
    let watch = args.watch;
    let dirs = args.dirs.clone();
    let debounce_ms = args.debounce_ms;
    let shared = args.shared.clone();
    let full = args.full;

    let rt = tokio::runtime::Builder::new_multi_thread()
        .enable_all()
        .build()
        .context("Failed to start tokio runtime")?;

    rt.block_on(async move {
        // Watch the cache file for changes and broadcast updates.
        tokio::spawn(watch_cache_file(state.clone()));

        // Optionally re-audit on source changes (like `forge-guard watch`),
        // which updates the cache file and triggers a WebSocket broadcast.
        if watch {
            tokio::spawn(watch_and_reaudit(
                state.clone(),
                shared,
                dirs.clone(),
                debounce_ms,
                full,
            ));
        }

        let app = Router::new()
            .route("/", get(index))
            .route("/api/audit", get(api_audit))
            .route("/ws", get(ws_handler))
            .with_state(state);

        let addr = format!("{host}:{port}");
        let listener = tokio::net::TcpListener::bind(&addr)
            .await
            .with_context(|| format!("Failed to bind dashboard server on {addr}"))?;

        eprintln!("{}", "📊 Forge Guard — Dashboard Mode".bold());
        eprintln!(
            "   Serving:  {}",
            format!("http://{addr}").cyan().underline()
        );
        eprintln!("   Result:   {}", cache_file.display().to_string().dimmed());
        if watch {
            eprintln!("   Watching: {dirs} (re-audit on change)");
        }
        eprintln!("   {}", "Press Ctrl+C to stop".dimmed());

        if open {
            open_browser(&addr);
        }

        axum::serve(listener, app)
            .await
            .context("Dashboard server error")
    })
}

/// Poll the cached audit file; when it changes, broadcast the new JSON to
/// every connected WebSocket client.
async fn watch_cache_file(state: AppState) {
    let mut last_modified = file_mtime(&state.cache_file);
    loop {
        tokio::time::sleep(Duration::from_millis(1000)).await;
        let now = file_mtime(&state.cache_file);
        if now != last_modified {
            last_modified = now;
            if let Ok(content) = std::fs::read_to_string(&state.cache_file) {
                // Best-effort: only broadcast if it parses as an audit result.
                if serde_json::from_str::<crate::core::AuditResult>(&content).is_ok() {
                    let _ = state.tx.send(content);
                }
            }
        }
    }
}

/// Poll source directories and re-audit on change — mirroring
/// `forge-guard watch`, so the dashboard live-updates as you edit.
async fn watch_and_reaudit(
    _state: AppState,
    shared: crate::cli::SharedFlags,
    dirs: String,
    debounce_ms: u64,
    full: bool,
) {
    let watch_dirs: Vec<PathBuf> = dirs
        .split(',')
        .map(|s| {
            let p = PathBuf::from(s.trim());
            if p.is_relative() {
                shared.project.join(p)
            } else {
                p
            }
        })
        .collect();

    if watch_dirs.iter().any(|d| !d.exists()) {
        eprintln!(
            "{}",
            "⚠️  Watch directory missing — re-audit disabled".yellow()
        );
        return;
    }

    let mut last_mod = last_modification(&watch_dirs);
    let mut last_trigger = std::time::Instant::now();
    let debounce = Duration::from_millis(debounce_ms);

    loop {
        tokio::time::sleep(Duration::from_millis(200)).await;
        let current_mod = last_modification(&watch_dirs);
        if current_mod > last_mod && last_trigger.elapsed() >= debounce {
            eprintln!("\n{}", "🔄 Change detected, re-auditing...".bold());
            let audit_args = crate::cli::AuditArgs {
                shared: shared.clone(),
                full,
                quick: false,
                summary: false,
                exploit: full,
                gas: full,
                all_chains: false,
                max_parallel_chains: 4,
                sources: dirs.clone(),
                exclude: None,
                ai: false,
                ai_provider: "openai".into(),
                ai_model: "gpt-4".into(),
                ai_api_key: None,
                ollama_endpoint: None,
                ai_full: false,
                template: None,
                list_templates: false,
                suppressions: None,
                show_suppressed: false,
                generate_suppressions: false,
                notify: false,
                enable_history: false,
            };
            if let Err(e) = crate::cli::audit::run(&audit_args) {
                eprintln!("{} Audit error: {}", "⚠️".yellow(), e);
            }
            last_mod = current_mod;
            last_trigger = std::time::Instant::now();
        }
    }
}

/// Latest modification time of a file, or `UNIX_EPOCH` when missing.
fn file_mtime(path: &std::path::Path) -> std::time::SystemTime {
    std::fs::metadata(path)
        .and_then(|m| m.modified())
        .unwrap_or(std::time::UNIX_EPOCH)
}

/// Latest modification time across a set of directories (recursive).
fn last_modification(dirs: &[PathBuf]) -> std::time::SystemTime {
    let mut latest = std::time::UNIX_EPOCH;
    for dir in dirs {
        for entry in walkdir::WalkDir::new(dir)
            .into_iter()
            .filter_map(|e| e.ok())
        {
            if entry.file_type().is_file() {
                if let Ok(metadata) = entry.metadata() {
                    if let Ok(modified) = metadata.modified() {
                        if modified > latest {
                            latest = modified;
                        }
                    }
                }
            }
        }
    }
    latest
}

/// Try to open the dashboard in the default browser (best-effort).
fn open_browser(addr: &str) {
    let url = format!("http://{addr}");
    #[cfg(target_os = "macos")]
    let _ = std::process::Command::new("open").arg(&url).spawn();
    #[cfg(target_os = "windows")]
    let _ = std::process::Command::new("cmd")
        .args(["/C", "start", "", &url])
        .spawn();
    #[cfg(not(any(target_os = "macos", target_os = "windows")))]
    let _ = std::process::Command::new("xdg-open").arg(&url).spawn();
}

// ─────────────────────────────────────────────────────────────────
// HTTP handlers
// ─────────────────────────────────────────────────────────────────

/// Serve the dashboard HTML page.
async fn index() -> Html<&'static str> {
    Html(DASHBOARD_HTML)
}

/// Serve the current audit result as JSON (404 with a hint when absent).
async fn api_audit(State(state): State<AppState>) -> Response {
    match std::fs::read_to_string(&state.cache_file) {
        Ok(content) => {
            let status = axum::http::StatusCode::OK;
            (
                status,
                [(axum::http::header::CONTENT_TYPE, "application/json")],
                content,
            )
                .into_response()
        }
        Err(_) => {
            let msg = "{\"error\":\"No audit result yet. Run `forge-guard audit` first.\"}";
            (
                axum::http::StatusCode::NOT_FOUND,
                [(axum::http::header::CONTENT_TYPE, "application/json")],
                msg,
            )
                .into_response()
        }
    }
}

/// WebSocket handler: sends the current result on connect, then pushes
/// updates whenever the cache file changes.
async fn ws_handler(ws: WebSocketUpgrade, State(state): State<AppState>) -> Response {
    ws.on_upgrade(move |socket| handle_socket(socket, state))
}

async fn handle_socket(mut socket: WebSocket, state: AppState) {
    // Send the current result immediately.
    if let Ok(content) = std::fs::read_to_string(&state.cache_file) {
        let _ = socket.send(Message::Text(content.into())).await;
    }

    let mut rx = state.tx.subscribe();
    loop {
        tokio::select! {
            // Broadcast channel → forward to the client.
            msg = rx.recv() => {
                match msg {
                    Ok(json) => {
                        if socket.send(Message::Text(json.into())).await.is_err() {
                            return;
                        }
                    }
                    Err(tokio::sync::broadcast::error::RecvError::Lagged(_)) => continue,
                    Err(tokio::sync::broadcast::error::RecvError::Closed) => return,
                }
            }
            // Client messages: respond to pings, exit on close.
            msg = socket.recv() => {
                match msg {
                    Some(Ok(Message::Ping(payload))) => {
                        if socket.send(Message::Pong(payload)).await.is_err() {
                            return;
                        }
                    }
                    Some(Ok(Message::Close(_))) | None => return,
                    Some(Err(_)) => return,
                    _ => {}
                }
            }
        }
    }
}

// ─────────────────────────────────────────────────────────────────
// Embedded dashboard page
// ─────────────────────────────────────────────────────────────────

const DASHBOARD_HTML: &str = r##"<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forge Guard — Dashboard</title>
<style>
  :root {
    --bg: #0d1117; --panel: #161b22; --panel-2: #1c2129; --border: #2d333b;
    --text: #e6edf3; --muted: #8b949e; --accent: #58a6ff;
    --crit: #f85149; --high: #ff7b72; --med: #d29922; --low: #58a6ff; --info: #8b949e;
    --good: #3fb950;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { background: var(--bg); color: var(--text); font: 14px/1.5 -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
  .wrap { max-width: 1100px; margin: 0 auto; padding: 24px 20px 60px; }
  header { display: flex; align-items: center; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 22px; flex-wrap: wrap; }
  .logo { font-size: 20px; font-weight: 700; }
  .logo span { color: var(--muted); font-weight: 400; }
  .meta { margin-left: auto; text-align: right; color: var(--muted); font-size: 12px; }
  .meta b { color: var(--text); }
  #conn { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--muted); margin-right: 6px; }
  #conn.on { background: var(--good); }
  .grid { display: grid; grid-template-columns: 320px 1fr; gap: 20px; }
  @media (max-width: 900px) { .grid { grid-template-columns: 1fr; } }
  .panel { background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 18px; margin-bottom: 20px; }
  .panel h2 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 14px; }
  /* Score gauge */
  .gauge { position: relative; width: 200px; height: 120px; margin: 0 auto 10px; }
  .gauge svg { width: 100%; height: 100%; }
  .gauge .arc-bg { fill: none; stroke: var(--panel-2); stroke-width: 14; }
  .gauge .arc { fill: none; stroke-width: 14; stroke-linecap: round; transition: stroke-dashoffset .6s ease, stroke .6s; }
  .gauge .val { position: absolute; inset: 0; top: 60px; text-align: center; font-size: 34px; font-weight: 700; }
  .gauge .lbl { position: absolute; inset: 0; top: 96px; text-align: center; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
  .stat { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed var(--border); font-size: 13px; }
  .stat:last-child { border-bottom: none; }
  .stat .k { color: var(--muted); }
  .stat .v { font-weight: 600; }
  .pass { color: var(--good); } .fail { color: var(--crit); }
  /* Severity bars */
  .sev-row { display: grid; grid-template-columns: 90px 1fr 34px; align-items: center; gap: 10px; margin-bottom: 9px; }
  .sev-row .lbl { font-size: 12px; color: var(--muted); text-transform: capitalize; }
  .sev-track { height: 10px; background: var(--panel-2); border-radius: 5px; overflow: hidden; }
  .sev-fill { height: 100%; border-radius: 5px; transition: width .5s ease; }
  .sev-row .n { font-weight: 700; text-align: right; font-size: 13px; }
  /* Category scores */
  .cat { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; font-size: 12.5px; border-bottom: 1px dashed var(--border); }
  .cat:last-child { border-bottom: none; }
  .cat .name { color: var(--muted); text-transform: capitalize; }
  .cat .bar { flex: 1; height: 6px; background: var(--panel-2); border-radius: 3px; margin: 0 12px; overflow: hidden; }
  .cat .bar i { display: block; height: 100%; border-radius: 3px; transition: width .5s ease; }
  .cat .score { font-weight: 700; width: 34px; text-align: right; }
  /* Filters */
  .filters { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 14px; }
  .chip { padding: 4px 12px; border-radius: 20px; border: 1px solid var(--border); background: var(--panel-2); color: var(--muted); cursor: pointer; font-size: 12.5px; user-select: none; }
  .chip.active { color: #fff; border-color: transparent; }
  .chip.crit.active { background: var(--crit); } .chip.high.active { background: var(--high); }
  .chip.med.active { background: var(--med); } .chip.low.active { background: var(--low); }
  .chip.info.active { background: var(--info); } .chip.all.active { background: var(--accent); }
  .chip .cnt { opacity: .8; font-size: 11px; margin-left: 4px; }
  input[type=search] { flex: 1; min-width: 180px; padding: 6px 12px; border-radius: 6px; border: 1px solid var(--border); background: var(--panel-2); color: var(--text); font-size: 13px; }
  input[type=search]:focus { outline: 1px solid var(--accent); }
  select { padding: 6px 10px; border-radius: 6px; border: 1px solid var(--border); background: var(--panel-2); color: var(--text); font-size: 13px; }
  /* Findings */
  .finding { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 10px; background: var(--panel); overflow: hidden; }
  .finding .head { display: flex; align-items: center; gap: 10px; padding: 10px 14px; cursor: pointer; }
  .finding .head:hover { background: var(--panel-2); }
  .sev { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 2px 8px; border-radius: 4px; color: #fff; flex-shrink: 0; }
  .finding .title { font-weight: 600; font-size: 13.5px; }
  .finding .loc { color: var(--muted); font-size: 12px; margin-left: auto; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 260px; }
  .finding .body { display: none; padding: 12px 14px; border-top: 1px solid var(--border); font-size: 13px; }
  .finding.open .body { display: block; }
  .finding .body h4 { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 12px 0 4px; }
  .finding .body pre { background: var(--panel-2); border: 1px solid var(--border); border-radius: 6px; padding: 10px; overflow-x: auto; font-size: 12px; margin-top: 4px; }
  .finding .body .chain-tag { display: inline-block; background: var(--panel-2); border: 1px solid var(--border); border-radius: 4px; padding: 1px 8px; font-size: 11px; color: var(--accent); margin-bottom: 6px; }
  .arrow { color: var(--muted); transition: transform .15s; font-size: 11px; }
  .finding.open .arrow { transform: rotate(90deg); }
  .empty { color: var(--muted); text-align: center; padding: 30px 0; }
  .empty .big { font-size: 34px; display: block; margin-bottom: 10px; }
  a { color: var(--accent); }
</style>
</head>
<body>
<div class="wrap">
  <header>
    <div class="logo">🔒 Forge Guard <span>Dashboard</span></div>
    <div class="meta">
      <div><span id="conn"></span><span id="connText">connecting…</span></div>
      <div>updated <b id="updated">—</b></div>
    </div>
  </header>

  <div class="grid">
    <div>
      <div class="panel">
        <h2>Overall Score</h2>
        <div class="gauge">
          <svg viewBox="0 0 200 120">
            <path class="arc-bg" d="M 20 105 A 80 80 0 0 1 180 105"/>
            <path class="arc" id="arc" d="M 20 105 A 80 80 0 0 1 180 105" stroke="#58a6ff"/>
          </svg>
          <div class="val" id="score">—</div>
          <div class="lbl" id="risk">—</div>
        </div>
        <div id="stats"></div>
      </div>
      <div class="panel">
        <h2>Severity Distribution</h2>
        <div id="sevBars"></div>
      </div>
    </div>

    <div>
      <div class="panel">
        <h2>Category Scores</h2>
        <div id="cats"></div>
      </div>
      <div class="panel">
        <h2>Findings</h2>
        <div class="filters">
          <span class="chip all active" data-sev="all">All <span class="cnt" id="cAll"></span></span>
          <span class="chip crit" data-sev="critical">Critical <span class="cnt" id="cCrit"></span></span>
          <span class="chip high" data-sev="high">High <span class="cnt" id="cHigh"></span></span>
          <span class="chip med" data-sev="medium">Medium <span class="cnt" id="cMed"></span></span>
          <span class="chip low" data-sev="low">Low <span class="cnt" id="cLow"></span></span>
          <span class="chip info" data-sev="info">Info <span class="cnt" id="cInfo"></span></span>
          <input type="search" id="search" placeholder="Search title, file, id…">
          <select id="chainFilter" style="display:none"></select>
        </div>
        <div id="findings"></div>
      </div>
    </div>
  </div>
</div>

<script>
const SEV_COLORS = { critical: "#f85149", high: "#ff7b72", medium: "#d29922", low: "#58a6ff", info: "#8b949e" };
const CAT_KEYS = ["access_control","security","fuzzing","gas","architecture","upgradeability",
                  "dependencies","deployment","proxy_safety","chain_compatibility","production_readiness","exploit_resistance"];
let result = null;
let sevFilter = "all";
let chainFilter = "all";

function esc(s) {
  return String(s ?? "").replace(/[&<>"']/g, c => ({ "&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;" }[c]));
}
function scoreColor(v) { return v >= 80 ? "#3fb950" : v >= 60 ? "#d29922" : "#f85149"; }
function severityOf(f) { return (f.severity || "info").toLowerCase(); }

function gauge(score) {
  const c = scoreColor(score);
  const circ = 2 * Math.PI * 80;
  const arc = document.getElementById("arc");
  arc.style.strokeDasharray = circ;
  arc.style.strokeDashoffset = circ * (1 - Math.min(score, 100) / 100);
  arc.style.stroke = c;
  document.getElementById("score").textContent = score;
  document.getElementById("score").style.color = c;
}

function render() {
  if (!result) return;
  const findings = result.findings || [];
  const summary = result.summary || {};
  const counts = { critical: summary.critical_count || 0, high: summary.high_count || 0,
                   medium: summary.medium_count || 0, low: summary.low_count || 0, info: summary.info_count || 0 };
  const total = findings.length || Object.values(counts).reduce((a, b) => a + b, 0);
  document.getElementById("cAll").textContent = total;
  document.getElementById("cCrit").textContent = counts.critical;
  document.getElementById("cHigh").textContent = counts.high;
  document.getElementById("cMed").textContent = counts.medium;
  document.getElementById("cLow").textContent = counts.low;
  document.getElementById("cInfo").textContent = counts.info;

  gauge(result.overall_score || 0);
  document.getElementById("risk").textContent = result.risk_level || "—";

  document.getElementById("stats").innerHTML =
    stat("Project", result.project_name) +
    stat("Chain", result.chains && result.chains.length > 1 ? result.chains.length + " chains" : (result.chain || "—")) +
    stat("Duration", (result.duration_seconds ?? 0).toFixed(2) + "s") +
    stat("Files", summary.files_analyzed ?? 0) +
    stat("Production ready", result.production_ready ? '<span class="pass">✅ YES</span>' : '<span class="fail">❌ NO</span>') +
    stat("Deployment", result.deployment_approved ? '<span class="pass">✅ APPROVED</span>' : '<span class="fail">❌ BLOCKED</span>');

  document.getElementById("sevBars").innerHTML =
    sevBar("critical", counts.critical, total) + sevBar("high", counts.high, total) +
    sevBar("medium", counts.medium, total) + sevBar("low", counts.low, total) + sevBar("info", counts.info, total);

  document.getElementById("cats").innerHTML = (result.scores ? CAT_KEYS : [])
    .filter(k => result.scores[k] !== undefined)
    .map(k => {
      const v = result.scores[k];
      return '<div class="cat"><span class="name">' + esc(k.replace(/_/g, " ")) +
        '</span><span class="bar"><i style="width:' + v + '%;background:' + scoreColor(v) + '"></i></span>' +
        '<span class="score" style="color:' + scoreColor(v) + '">' + v + '</span></div>';
    }).join("") || '<div class="empty"><span class="big">📭</span>No score data</div>';

  // Chain filter (multi-chain audits only)
  const chains = [...new Set(findings.map(f => f.chain).filter(Boolean))];
  const cf = document.getElementById("chainFilter");
  if (chains.length > 1) {
    cf.style.display = "";
    cf.innerHTML = '<option value="all">All chains</option>' + chains.map(c => '<option value="' + esc(c) + '">' + esc(c) + "</option>").join("");
  } else {
    cf.style.display = "none";
    cf.innerHTML = "";
  }
  chainFilter = "all";
  cf.value = "all";

  renderFindings(findings);
}

function stat(k, v) { return '<div class="stat"><span class="k">' + esc(k) + '</span><span class="v">' + v + "</span></div>"; }
function sevBar(sev, n, total) {
  const pct = total ? Math.round(n / total * 100) : 0;
  return '<div class="sev-row"><span class="lbl">' + sev + '</span><span class="sev-track"><span class="sev-fill" style="width:' + pct + '%;background:' + SEV_COLORS[sev] + '"></span></span><span class="n" style="color:' + SEV_COLORS[sev] + '">' + n + "</span></div>";
}

function renderFindings(findings) {
  const q = (document.getElementById("search").value || "").toLowerCase();
  const list = findings.filter(f => {
    if (sevFilter !== "all" && severityOf(f) !== sevFilter) return false;
    if (chainFilter !== "all" && (f.chain || "") !== chainFilter) return false;
    if (q) {
      const hay = (f.title + " " + (f.file || "") + " " + f.id + " " + (f.description || "")).toLowerCase();
      if (!hay.includes(q)) return false;
    }
    return true;
  });

  const el = document.getElementById("findings");
  if (!list.length) {
    el.innerHTML = '<div class="empty"><span class="big">🔍</span>No findings match</div>';
    return;
  }
  el.innerHTML = list.map(f => {
    const sev = severityOf(f);
    const loc = f.file ? (esc(f.file) + (f.line ? ":" + f.line : "")) : "";
    const chain = f.chain ? '<span class="chain-tag">⛓️ ' + esc(f.chain) + "</span>" : "";
    const refs = (f.references || []).length ? "<h4>References</h4><ul>" + f.references.map(r => "<li>" + esc(r) + "</li>").join("") + "</ul>" : "";
    const exploit = (f.exploit_path && f.exploit_path.length) ? "<h4>Exploit path</h4><ol>" + f.exploit_path.map(s => "<li>" + esc(s) + "</li>").join("") + "</ol>" : "";
    return '<div class="finding" data-idx="' + findings.indexOf(f) + '">' +
      '<div class="head"><span class="sev" style="background:' + SEV_COLORS[sev] + '">' + sev + "</span>" +
      '<span class="title">' + esc(f.title) + "</span>" +
      '<span class="loc">' + loc + '</span><span class="arrow">▶</span></div>' +
      '<div class="body">' + chain +
      "<h4>Description</h4><p>" + esc(f.description || "—") + "</p>" +
      (f.code_snippet ? "<h4>Code</h4><pre>" + esc(f.code_snippet) + "</pre>" : "") +
      "<h4>Recommendation</h4><p>" + esc(f.recommendation || "—") + "</p>" +
      (f.blocks_deployment ? '<p style="color:var(--crit);margin-top:8px">⛔ Blocks deployment</p>' : "") +
      exploit + refs + "</div></div>";
  }).join("");

  el.querySelectorAll(".finding .head").forEach(h => {
    h.addEventListener("click", () => h.parentElement.classList.toggle("open"));
  });
}

document.querySelectorAll(".chip").forEach(chip => {
  chip.addEventListener("click", () => {
    document.querySelectorAll(".chip").forEach(c => c.classList.remove("active"));
    chip.classList.add("active");
    sevFilter = chip.dataset.sev;
    if (result) renderFindings(result.findings || []);
  });
});
document.getElementById("search").addEventListener("input", () => result && renderFindings(result.findings || []));
document.getElementById("chainFilter").addEventListener("change", e => {
  chainFilter = e.target.value;
  if (result) renderFindings(result.findings || []);
});

function apply(data) {
  result = data;
  document.getElementById("updated").textContent = new Date().toLocaleTimeString();
  render();
}

// Initial load + WebSocket live updates.
fetch("/api/audit").then(r => r.ok ? r.json() : null).then(d => { if (d) apply(d); }).catch(() => {});
const wsProto = location.protocol === "https:" ? "wss" : "ws";
let ws = null;
function connect() {
  ws = new WebSocket(wsProto + "://" + location.host + "/ws");
  ws.onopen = () => { document.getElementById("conn").classList.add("on"); document.getElementById("connText").textContent = "live"; };
  ws.onmessage = e => { try { apply(JSON.parse(e.data)); } catch (_) {} };
  ws.onclose = () => { document.getElementById("conn").classList.remove("on"); document.getElementById("connText").textContent = "reconnecting…"; setTimeout(connect, 2000); };
  ws.onerror = () => ws.close();
}
connect();
</script>
</body>
</html>
"##;

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_dashboard_html_has_core_elements() {
        assert!(DASHBOARD_HTML.contains("Forge Guard"));
        assert!(DASHBOARD_HTML.contains("gauge"));
        assert!(DASHBOARD_HTML.contains("WebSocket"));
        assert!(DASHBOARD_HTML.contains("/api/audit"));
        assert!(DASHBOARD_HTML.contains("/ws"));
        assert!(DASHBOARD_HTML.contains("severity"));
    }

    #[test]
    fn test_dashboard_html_has_charts_and_filters() {
        assert!(
            DASHBOARD_HTML.contains("sevBars"),
            "severity distribution chart"
        );
        assert!(DASHBOARD_HTML.contains("Category Scores"));
        assert!(
            DASHBOARD_HTML.contains("chainFilter"),
            "chain filter for multi-chain"
        );
        assert!(
            DASHBOARD_HTML.contains("exploit_path"),
            "expandable exploit details"
        );
    }

    #[test]
    fn test_dashboard_html_escapes_user_content() {
        // The JS escaper must be present to avoid XSS from audit findings.
        assert!(DASHBOARD_HTML.contains("replace(/[&<>\"']/g"));
    }
}