merge(fix2): system proxy revert on page exit (Group A)

This commit is contained in:
diegosouzapw
2026-05-28 11:38:13 -03:00
5 changed files with 265 additions and 3 deletions

View File

@@ -1,11 +1,12 @@
"use client";
import { useCallback, useRef, useState } from "react";
import { useCallback, useEffect, useRef, useState } from "react";
import type { InterceptedRequest } from "@/mitm/inspector/types";
import { useTrafficStream } from "./hooks/useTrafficStream";
import { useTrafficFilters } from "./hooks/useTrafficFilters";
import { useResizablePanels } from "./hooks/useResizablePanels";
import { useSessionRecorder } from "./hooks/useSessionRecorder";
import { useSystemProxyExitGuard } from "./hooks/useSystemProxyExitGuard";
import { CaptureModesToolbar } from "./components/CaptureModesToolbar";
import { TopBarControls } from "./components/TopBarControls";
import { RequestStreamingList } from "./components/RequestStreamingList";
@@ -22,6 +23,26 @@ export function TrafficInspectorPageClient() {
const [{ listWidth, collapsed }, { startDrag, toggleCollapse }] = useResizablePanels();
const [streamState, streamActions] = useTrafficStream(filters);
const recorder = useSessionRecorder();
const [captureModes, setCaptureModes] = useState<{ systemProxy?: { applied: boolean } } | null>(
null
);
useEffect(() => {
let cancelled = false;
fetch("/api/tools/traffic-inspector/capture-modes")
.then((r) => (r.ok ? r.json() : null))
.then((data: { systemProxy?: { applied: boolean } } | null) => {
if (!cancelled) setCaptureModes(data);
})
.catch(() => {
/* best-effort */
});
return () => {
cancelled = true;
};
}, []);
useSystemProxyExitGuard({ applied: captureModes?.systemProxy?.applied ?? false });
const listContainerCallback = useCallback((el: HTMLDivElement | null) => {
listContainerRef.current = el;

View File

@@ -0,0 +1,57 @@
"use client";
import { useEffect, useRef } from "react";
interface UseSystemProxyExitGuardOpts {
applied: boolean; // current state (from GET capture-modes)
endpoint?: string; // POST /capture-modes/system-proxy
}
/**
* On unmount / page hide / beforeunload, if system proxy is applied,
* silently fires a revert request via navigator.sendBeacon (best-effort,
* survives unload) AND attaches a beforeunload listener that prompts the
* user with a native confirm dialog (browser default — text is ignored
* by most browsers but the prompt itself appears).
*/
export function useSystemProxyExitGuard(opts: UseSystemProxyExitGuardOpts): void {
// 1. Track latest 'applied' in a ref so the listener always sees fresh value
const appliedRef = useRef(opts.applied);
useEffect(() => {
appliedRef.current = opts.applied;
}, [opts.applied]);
useEffect(() => {
const endpoint =
opts.endpoint ?? "/api/tools/traffic-inspector/capture-modes/system-proxy";
const body = JSON.stringify({ action: "revert" });
const blob = new Blob([body], { type: "application/json" });
const beforeUnload = (e: BeforeUnloadEvent) => {
if (!appliedRef.current) return;
// Best-effort revert via sendBeacon (survives navigation)
try {
navigator.sendBeacon(endpoint, blob);
} catch {
/* ignore */
}
// Show confirmation prompt
e.preventDefault();
e.returnValue = "System-wide proxy still active — leave page anyway?";
return e.returnValue;
};
window.addEventListener("beforeunload", beforeUnload);
return () => {
window.removeEventListener("beforeunload", beforeUnload);
// On component unmount (SPA navigation), fire revert too
if (appliedRef.current) {
try {
navigator.sendBeacon(endpoint, blob);
} catch {
/* ignore */
}
}
};
}, [opts.endpoint]);
}

View File

@@ -7451,6 +7451,7 @@
"llmMessages": "Messages",
"llmStream": "Stream",
"llmMappedTo": "Mapped to",
"llmCostEstimate": "Cost estimate"
"llmCostEstimate": "Cost estimate",
"systemProxyExitWarning": "System-wide proxy still active — leave page anyway?"
}
}

View File

@@ -7441,6 +7441,7 @@
"llmMessages": "Mensagens",
"llmStream": "Stream",
"llmMappedTo": "Mapeado para",
"llmCostEstimate": "Estimativa de custo"
"llmCostEstimate": "Estimativa de custo",
"systemProxyExitWarning": "Proxy do sistema ainda está ativo — sair mesmo assim?"
}
}

View File

@@ -0,0 +1,182 @@
/**
* Tests for useSystemProxyExitGuard — beforeunload listener + sendBeacon revert.
*
* Strategy: test the hook logic directly without React — we exercise the same
* branches as the hook by simulating mount/unmount via the cleanup pattern.
* This matches how use-traffic-stream.test.tsx tests hook logic (pure logic,
* no React renderer needed).
*/
import { describe, it, before, after, beforeEach, afterEach, mock } from "node:test";
import assert from "node:assert/strict";
// ---------------------------------------------------------------------------
// Minimal beforeunload event simulation
// ---------------------------------------------------------------------------
type BeforeUnloadListener = (e: {
preventDefault: () => void;
returnValue: string;
}) => void;
let registeredListeners: Array<{ type: string; fn: BeforeUnloadListener }> = [];
let beaconCalls: Array<{ url: string; body: string }> = [];
const mockWindow = {
addEventListener(type: string, fn: BeforeUnloadListener) {
registeredListeners.push({ type, fn });
},
removeEventListener(type: string, fn: BeforeUnloadListener) {
registeredListeners = registeredListeners.filter((l) => l.type !== type || l.fn !== fn);
},
};
const mockNavigator = {
sendBeacon(url: string, data: Blob | string | null) {
let body = "";
if (typeof data === "string") {
body = data;
} else if (data instanceof Blob) {
// In Node test env, Blob is available (Node 18+). We synchronously read
// the content by constructing from JSON directly via the known test data.
// We store the URL for assertion — exact body checked separately.
body = "<blob>";
}
beaconCalls.push({ url, body });
return true;
},
};
// ---------------------------------------------------------------------------
// Simulate the hook logic (mirrors useSystemProxyExitGuard implementation)
// to make it testable without jsdom / React.
// ---------------------------------------------------------------------------
interface GuardOpts {
applied: boolean;
endpoint?: string;
}
function mountGuard(opts: GuardOpts): () => void {
let appliedRef = opts.applied;
const endpoint =
opts.endpoint ?? "/api/tools/traffic-inspector/capture-modes/system-proxy";
const body = JSON.stringify({ action: "revert" });
const blob = new Blob([body], { type: "application/json" });
const beforeUnload: BeforeUnloadListener = (e) => {
if (!appliedRef) return;
try {
mockNavigator.sendBeacon(endpoint, blob);
} catch {
/* ignore */
}
e.preventDefault();
e.returnValue = "System-wide proxy still active — leave page anyway?";
};
mockWindow.addEventListener("beforeunload", beforeUnload);
// Return cleanup (simulates useEffect cleanup / unmount)
const cleanup = () => {
mockWindow.removeEventListener("beforeunload", beforeUnload);
if (appliedRef) {
try {
mockNavigator.sendBeacon(endpoint, blob);
} catch {
/* ignore */
}
}
};
// Expose a way to update appliedRef (simulates re-render with new prop)
(cleanup as unknown as { setApplied: (v: boolean) => void }).setApplied = (v: boolean) => {
appliedRef = v;
};
return cleanup;
}
// ---------------------------------------------------------------------------
// Tests
// ---------------------------------------------------------------------------
describe("useSystemProxyExitGuard hook logic", () => {
beforeEach(() => {
registeredListeners = [];
beaconCalls = [];
});
it("adds beforeunload listener on mount", () => {
const cleanup = mountGuard({ applied: false });
assert.equal(registeredListeners.length, 1);
assert.equal(registeredListeners[0].type, "beforeunload");
cleanup();
});
it("fires sendBeacon with correct endpoint and body when applied=true on beforeunload", () => {
const endpoint = "/api/tools/traffic-inspector/capture-modes/system-proxy";
const cleanup = mountGuard({ applied: true, endpoint });
// Simulate browser firing beforeunload
const fakeEvent = { preventDefault: () => {}, returnValue: "" };
registeredListeners[0].fn(fakeEvent);
assert.equal(beaconCalls.length, 1);
assert.equal(beaconCalls[0].url, endpoint);
cleanup();
});
it("does NOT fire sendBeacon on beforeunload when applied=false", () => {
const cleanup = mountGuard({ applied: false });
const fakeEvent = { preventDefault: () => {}, returnValue: "" };
registeredListeners[0].fn(fakeEvent);
assert.equal(beaconCalls.length, 0);
cleanup();
});
it("removes beforeunload listener on unmount", () => {
const cleanup = mountGuard({ applied: false });
assert.equal(registeredListeners.length, 1);
cleanup();
assert.equal(registeredListeners.length, 0);
});
it("fires sendBeacon on unmount when applied=true (SPA navigation revert)", () => {
const cleanup = mountGuard({ applied: true });
// No beforeunload triggered — just unmount (SPA navigation)
cleanup();
assert.equal(beaconCalls.length, 1);
assert.equal(
beaconCalls[0].url,
"/api/tools/traffic-inspector/capture-modes/system-proxy"
);
});
it("does NOT fire sendBeacon on unmount when applied=false", () => {
const cleanup = mountGuard({ applied: false });
cleanup();
assert.equal(beaconCalls.length, 0);
});
it("uses custom endpoint when provided", () => {
const customEndpoint = "/api/custom/system-proxy";
const cleanup = mountGuard({ applied: true, endpoint: customEndpoint });
cleanup();
assert.equal(beaconCalls[0].url, customEndpoint);
});
it("sets returnValue on beforeunload event when applied=true", () => {
const cleanup = mountGuard({ applied: true });
const fakeEvent = { preventDefault: () => {}, returnValue: "" };
registeredListeners[0].fn(fakeEvent);
assert.equal(fakeEvent.returnValue, "System-wide proxy still active — leave page anyway?");
cleanup();
});
});