| "use client"; |
|
|
| import { useState, useEffect, useRef, useCallback } from "react"; |
| import PropTypes from "prop-types"; |
| import { Card, Button, Input, Modal, CardSkeleton, Toggle, ConfirmModal } from "@/shared/components"; |
| import { useCopyToClipboard } from "@/shared/hooks/useCopyToClipboard"; |
| import { getCurrentLocale, onLocaleChange } from "@/i18n/runtime"; |
| import { |
| WENYAN_LOCALES, |
| TUNNEL_BENEFITS, |
| TUNNEL_PING_INTERVAL_MS, |
| TUNNEL_PING_MAX_MS, |
| STATUS_POLL_FAST_MS, |
| REACHABLE_MISS_THRESHOLD, |
| CLIENT_PING_FAST_MS, |
| CAVEMAN_LEVELS, |
| } from "./endpointConstants"; |
| import { clientPingUrl, clientPingAny } from "./endpointPing"; |
| import EndpointRow from "./components/EndpointRow"; |
| import StatusAlert from "./components/StatusAlert"; |
| import Tooltip from "./components/Tooltip"; |
| import SecurityWarning from "./components/SecurityWarning"; |
| export default function APIPageClient({ machineId }) { |
| const [keys, setKeys] = useState([]); |
| const [loading, setLoading] = useState(true); |
| const [showAddModal, setShowAddModal] = useState(false); |
| const [newKeyName, setNewKeyName] = useState(""); |
| const [createdKey, setCreatedKey] = useState(null); |
| const [confirmState, setConfirmState] = useState(null); |
|
|
| const [requireApiKey, setRequireApiKey] = useState(false); |
| const [requireLogin, setRequireLogin] = useState(true); |
| const [hasPassword, setHasPassword] = useState(true); |
| const [tunnelDashboardAccess, setTunnelDashboardAccess] = useState(false); |
| const [rtkEnabled, setRtkEnabledState] = useState(true); |
| const [cavemanEnabled, setCavemanEnabled] = useState(false); |
| const [cavemanLevel, setCavemanLevel] = useState("full"); |
| const [locale, setLocale] = useState("en"); |
|
|
| |
| const [tunnelChecking, setTunnelChecking] = useState(true); |
| const [tunnelEnabled, setTunnelEnabled] = useState(false); |
| const [tunnelReachable, setTunnelReachable] = useState(false); |
| const [tunnelUrl, setTunnelUrl] = useState(""); |
| const [tunnelPublicUrl, setTunnelPublicUrl] = useState(""); |
| const [tunnelLoading, setTunnelLoading] = useState(false); |
| const [tunnelProgress, setTunnelProgress] = useState(""); |
| const [tunnelStatus, setTunnelStatus] = useState(null); |
| const [showEnableTunnelModal, setShowEnableTunnelModal] = useState(false); |
| const [showDisableTunnelModal, setShowDisableTunnelModal] = useState(false); |
|
|
| |
| const [tsEnabled, setTsEnabled] = useState(false); |
| const [tsReachable, setTsReachable] = useState(false); |
| const [tsUrl, setTsUrl] = useState(""); |
| const [tsLoading, setTsLoading] = useState(false); |
| const [tsProgress, setTsProgress] = useState(""); |
| const [tsStatus, setTsStatus] = useState(null); |
| const [tsAuthUrl, setTsAuthUrl] = useState(""); |
| const [tsAuthLabel, setTsAuthLabel] = useState(""); |
| const [tsInstalled, setTsInstalled] = useState(null); |
| const [tsInstalling, setTsInstalling] = useState(false); |
| const [tsInstallLog, setTsInstallLog] = useState([]); |
| const [tsSudoPassword, setTsSudoPassword] = useState(""); |
| const [tsConnecting, setTsConnecting] = useState(false); |
| const [showTsModal, setShowTsModal] = useState(false); |
| const [showDisableTsModal, setShowDisableTsModal] = useState(false); |
| const tsLogRef = useRef(null); |
|
|
| |
| |
| const tunnelMissRef = useRef(0); |
| const tsMissRef = useRef(0); |
| |
| const tunnelClientReachableRef = useRef(false); |
| const tsClientReachableRef = useRef(false); |
| |
| |
| const tunnelEverReachableRef = useRef(false); |
| const tsEverReachableRef = useRef(false); |
| const [tunnelEverReachable, setTunnelEverReachable] = useState(false); |
| const [tsEverReachable, setTsEverReachable] = useState(false); |
|
|
| |
| const [visibleKeys, setVisibleKeys] = useState(new Set()); |
|
|
| |
| const [isRemoteHost, setIsRemoteHost] = useState(false); |
| useEffect(() => { |
| if (typeof window !== "undefined") |
| setIsRemoteHost(!["localhost", "127.0.0.1", "::1"].includes(window.location.hostname)); |
| }, []); |
|
|
| |
| useEffect(() => { |
| setLocale(getCurrentLocale()); |
| return onLocaleChange(() => setLocale(getCurrentLocale())); |
| }, []); |
|
|
| const isWenyanLocale = WENYAN_LOCALES.includes(locale); |
| const visibleCavemanLevels = isWenyanLocale |
| ? CAVEMAN_LEVELS |
| : CAVEMAN_LEVELS.filter((lvl) => !lvl.wenyan); |
|
|
| |
| useEffect(() => { |
| const current = CAVEMAN_LEVELS.find((lvl) => lvl.id === cavemanLevel); |
| if (current?.wenyan && !isWenyanLocale) { |
| setCavemanLevel("ultra"); |
| patchSetting({ cavemanLevel: "ultra" }); |
| } |
| }, [isWenyanLocale, cavemanLevel]); |
|
|
| const { copied, copy } = useCopyToClipboard(); |
|
|
| |
| const isLoginUnsafe = !requireLogin || !hasPassword; |
| const unsafeReason = !requireLogin |
| ? "Enable \"Require login\" and set a custom password before activating the tunnel." |
| : "Change the default dashboard password before activating the tunnel."; |
|
|
| |
| useEffect(() => { |
| if (tsLogRef.current) tsLogRef.current.scrollTop = tsLogRef.current.scrollHeight; |
| }, [tsInstallLog]); |
|
|
| useEffect(() => { |
| fetchData(); |
| loadSettings(); |
| }, []); |
|
|
| |
| |
| useEffect(() => { |
| const anyEnabled = tunnelEnabled || tsEnabled; |
| if (!anyEnabled) return; |
| const tunnelHealthy = !tunnelEnabled || tunnelReachable; |
| const tsHealthy = !tsEnabled || tsReachable; |
| const allHealthy = tunnelHealthy && tsHealthy; |
| const onVisible = () => { if (!document.hidden) syncTunnelStatus(); }; |
| document.addEventListener("visibilitychange", onVisible); |
| if (allHealthy) return () => document.removeEventListener("visibilitychange", onVisible); |
| const timer = setInterval(() => { if (!document.hidden) syncTunnelStatus(); }, STATUS_POLL_FAST_MS); |
| return () => { |
| clearInterval(timer); |
| document.removeEventListener("visibilitychange", onVisible); |
| }; |
| }, [tunnelEnabled, tsEnabled, tunnelReachable, tsReachable]); |
|
|
| |
| |
| |
| useEffect(() => { |
| const probeBoth = async () => { |
| if (document.hidden) return; |
| if (tunnelEnabled && (tunnelUrl || tunnelPublicUrl)) { |
| const ok = await clientPingAny(tunnelPublicUrl, tunnelUrl); |
| tunnelClientReachableRef.current = ok; |
| if (ok) { tunnelMissRef.current = 0; setTunnelReachable(true); if (!tunnelEverReachableRef.current) { tunnelEverReachableRef.current = true; setTunnelEverReachable(true); } } |
| else { tunnelMissRef.current += 1; if (tunnelMissRef.current >= REACHABLE_MISS_THRESHOLD) setTunnelReachable(false); } |
| } else { |
| tunnelClientReachableRef.current = false; |
| } |
| if (tsEnabled && tsUrl) { |
| const ok = await clientPingUrl(tsUrl); |
| tsClientReachableRef.current = ok; |
| if (ok) { tsMissRef.current = 0; setTsReachable(true); if (!tsEverReachableRef.current) { tsEverReachableRef.current = true; setTsEverReachable(true); } } |
| else { tsMissRef.current += 1; if (tsMissRef.current >= REACHABLE_MISS_THRESHOLD) setTsReachable(false); } |
| } else { |
| tsClientReachableRef.current = false; |
| } |
| }; |
| const anyEnabled = (tunnelEnabled && (tunnelUrl || tunnelPublicUrl)) || (tsEnabled && tsUrl); |
| if (!anyEnabled) return; |
| probeBoth(); |
| const tunnelHealthy = !tunnelEnabled || tunnelReachable; |
| const tsHealthy = !tsEnabled || tsReachable; |
| if (tunnelHealthy && tsHealthy) return; |
| const id = setInterval(probeBoth, CLIENT_PING_FAST_MS); |
| return () => clearInterval(id); |
| }, [tunnelEnabled, tunnelUrl, tunnelPublicUrl, tsEnabled, tsUrl, tunnelReachable, tsReachable]); |
|
|
| |
| |
| const updateReachable = useCallback((_unused, clientRef, missRef, setter, everRef, everSetter) => { |
| const reachable = clientRef.current; |
| if (reachable) { |
| missRef.current = 0; |
| setter(true); |
| if (!everRef.current) { |
| everRef.current = true; |
| everSetter(true); |
| } |
| } else { |
| missRef.current += 1; |
| if (missRef.current >= REACHABLE_MISS_THRESHOLD) setter(false); |
| } |
| }, []); |
|
|
| |
| const syncTunnelStatus = async () => { |
| try { |
| const statusRes = await fetch("/api/tunnel/status", { cache: "no-store" }); |
| if (!statusRes.ok) return; |
| const data = await statusRes.json(); |
| const tEnabled = data.tunnel?.settingsEnabled ?? data.tunnel?.enabled ?? false; |
| const tUrl = data.tunnel?.tunnelUrl || ""; |
| setTunnelUrl(tUrl); |
| setTunnelPublicUrl(data.tunnel?.publicUrl || ""); |
| setTunnelEnabled(tEnabled); |
| updateReachable(null, tunnelClientReachableRef, tunnelMissRef, setTunnelReachable, tunnelEverReachableRef, setTunnelEverReachable); |
|
|
| const tsEn = data.tailscale?.settingsEnabled ?? data.tailscale?.enabled ?? false; |
| const tsUrlVal = data.tailscale?.tunnelUrl || ""; |
| setTsUrl(tsUrlVal); |
| setTsEnabled(tsEn); |
| updateReachable(null, tsClientReachableRef, tsMissRef, setTsReachable, tsEverReachableRef, setTsEverReachable); |
| } catch { } |
| }; |
|
|
| const loadSettings = async () => { |
| setTunnelChecking(true); |
| try { |
| const [settingsRes, statusRes] = await Promise.all([ |
| fetch("/api/settings"), |
| fetch("/api/tunnel/status", { cache: "no-store" }) |
| ]); |
| if (settingsRes.ok) { |
| const data = await settingsRes.json(); |
| setRequireApiKey(data.requireApiKey || false); |
| setRequireLogin(data.requireLogin !== false); |
| setHasPassword(data.hasPassword || false); |
| setTunnelDashboardAccess(data.tunnelDashboardAccess || false); |
| setRtkEnabledState(data.rtkEnabled !== false); |
| setCavemanEnabled(!!data.cavemanEnabled); |
| setCavemanLevel(data.cavemanLevel || "full"); |
| } |
| if (statusRes.ok) { |
| const data = await statusRes.json(); |
| const tEnabled = data.tunnel?.settingsEnabled ?? data.tunnel?.enabled ?? false; |
| const tUrl = data.tunnel?.tunnelUrl || ""; |
| setTunnelUrl(tUrl); |
| setTunnelPublicUrl(data.tunnel?.publicUrl || ""); |
| setTunnelEnabled(tEnabled); |
| updateReachable(null, tunnelClientReachableRef, tunnelMissRef, setTunnelReachable, tunnelEverReachableRef, setTunnelEverReachable); |
|
|
| const tsEn = data.tailscale?.settingsEnabled ?? data.tailscale?.enabled ?? false; |
| const tsUrlVal = data.tailscale?.tunnelUrl || ""; |
| setTsUrl(tsUrlVal); |
| setTsEnabled(tsEn); |
| updateReachable(null, tsClientReachableRef, tsMissRef, setTsReachable, tsEverReachableRef, setTsEverReachable); |
| } |
| } catch (error) { |
| console.log("Error loading settings:", error); |
| } finally { |
| setTunnelChecking(false); |
| } |
| }; |
|
|
| const handleTunnelDashboardAccess = async (value) => { |
| try { |
| const res = await fetch("/api/settings", { |
| method: "PATCH", |
| headers: { "Content-Type": "application/json" }, |
| body: JSON.stringify({ tunnelDashboardAccess: value }), |
| }); |
| if (res.ok) setTunnelDashboardAccess(value); |
| } catch (error) { |
| console.log("Error updating tunnelDashboardAccess:", error); |
| } |
| }; |
|
|
| const handleRequireApiKey = async (value) => { |
| try { |
| const res = await fetch("/api/settings", { |
| method: "PATCH", |
| headers: { "Content-Type": "application/json" }, |
| body: JSON.stringify({ requireApiKey: value }), |
| }); |
| if (res.ok) setRequireApiKey(value); |
| } catch (error) { |
| console.log("Error updating requireApiKey:", error); |
| } |
| }; |
|
|
| const handleRtkEnabled = async (value) => { |
| try { |
| const res = await fetch("/api/settings", { |
| method: "PATCH", |
| headers: { "Content-Type": "application/json" }, |
| body: JSON.stringify({ rtkEnabled: value }), |
| }); |
| if (res.ok) setRtkEnabledState(value); |
| } catch (error) { |
| console.log("Error updating rtkEnabled:", error); |
| } |
| }; |
|
|
| const patchSetting = async (patch) => { |
| try { |
| await fetch("/api/settings", { |
| method: "PATCH", |
| headers: { "Content-Type": "application/json" }, |
| body: JSON.stringify(patch), |
| }); |
| } catch (error) { |
| console.log("Error updating setting:", error); |
| } |
| }; |
|
|
| const handleCavemanEnabled = (value) => { |
| setCavemanEnabled(value); |
| patchSetting({ cavemanEnabled: value }); |
| }; |
|
|
| const handleCavemanLevel = (level) => { |
| setCavemanLevel(level); |
| patchSetting({ cavemanLevel: level }); |
| }; |
|
|
| const fetchData = async () => { |
| try { |
| const keysRes = await fetch("/api/keys"); |
| const keysData = await keysRes.json(); |
| if (keysRes.ok) { |
| setKeys(keysData.keys || []); |
| } |
| } catch (error) { |
| console.log("Error fetching data:", error); |
| } finally { |
| setLoading(false); |
| } |
| }; |
|
|
| |
| |
| const pingTunnelHealth = async (...urls) => { |
| setTunnelLoading(true); |
| setTunnelProgress("Waiting for tunnel ready..."); |
| const targets = urls.filter(Boolean).map((u) => `${u}/api/health`); |
| const start = Date.now(); |
| while (Date.now() - start < TUNNEL_PING_MAX_MS) { |
| await new Promise((r) => setTimeout(r, TUNNEL_PING_INTERVAL_MS)); |
| const ok = await Promise.any(targets.map(async (h) => { |
| const p = await fetch(h, { mode: "cors", cache: "no-store" }); |
| if (p.ok) return true; |
| throw new Error("not ready"); |
| })).catch(() => false); |
| if (ok) { |
| setTunnelEnabled(true); |
| setTunnelLoading(false); |
| setTunnelProgress(""); |
| return true; |
| } |
| |
| if ((Date.now() - start) % 10000 < TUNNEL_PING_INTERVAL_MS) { |
| try { |
| const statusRes = await fetch("/api/tunnel/status"); |
| if (statusRes.ok) { |
| const status = await statusRes.json(); |
| if (!status.tunnel?.enabled) { |
| setTunnelStatus({ type: "error", message: "Tunnel process stopped unexpectedly." }); |
| setTunnelLoading(false); |
| setTunnelProgress(""); |
| return false; |
| } |
| } |
| } catch { } |
| } |
| } |
| setTunnelStatus({ type: "error", message: "Tunnel created but not reachable. Please try again." }); |
| setTunnelLoading(false); |
| setTunnelProgress(""); |
| return false; |
| }; |
|
|
| const handleEnableTunnel = async () => { |
| setShowEnableTunnelModal(false); |
| setTunnelLoading(true); |
| setTunnelStatus(null); |
| setTunnelProgress("Creating tunnel..."); |
|
|
| |
| let polling = true; |
| const pollProgress = async () => { |
| while (polling) { |
| try { |
| const r = await fetch("/api/tunnel/status"); |
| if (r.ok) { |
| const s = await r.json(); |
| if (s.download?.downloading) { |
| setTunnelProgress(`Downloading cloudflared... ${s.download.progress}%`); |
| } else if (polling) { |
| setTunnelProgress("Creating tunnel..."); |
| } |
| } |
| } catch { } |
| await new Promise((r) => setTimeout(r, 1000)); |
| } |
| }; |
| pollProgress(); |
|
|
| try { |
| const res = await fetch("/api/tunnel/enable", { method: "POST" }); |
| polling = false; |
| const data = await res.json(); |
| if (!res.ok) { |
| setTunnelStatus({ type: "error", message: data.error || "Failed to enable tunnel" }); |
| return; |
| } |
|
|
| const url = data.tunnelUrl; |
| if (!url) { |
| setTunnelStatus({ type: "error", message: "No tunnel URL returned" }); |
| return; |
| } |
|
|
| setTunnelUrl(url); |
| setTunnelPublicUrl(data.publicUrl || ""); |
| await pingTunnelHealth(data.publicUrl, url); |
| } catch (error) { |
| setTunnelStatus({ type: "error", message: error.message }); |
| } finally { |
| polling = false; |
| setTunnelLoading(false); |
| setTunnelProgress(""); |
| } |
| }; |
|
|
| const handleDisableTunnel = async () => { |
| setTunnelLoading(true); |
| setTunnelStatus(null); |
| try { |
| const res = await fetch("/api/tunnel/disable", { method: "POST" }); |
| const data = await res.json(); |
| if (res.ok) { |
| setTunnelEnabled(false); |
| setTunnelUrl(""); |
| setShowDisableTunnelModal(false); |
| setTunnelStatus({ type: "success", message: "Tunnel disabled" }); |
| } else { |
| setTunnelStatus({ type: "error", message: data.error || "Failed to disable tunnel" }); |
| } |
| } catch (error) { |
| setTunnelStatus({ type: "error", message: error.message }); |
| } finally { |
| setTunnelLoading(false); |
| } |
| }; |
|
|
| |
| const checkTailscaleInstalled = async () => { |
| setTsInstalled(null); |
| try { |
| const res = await fetch("/api/tunnel/tailscale-check"); |
| if (res.ok) { |
| const data = await res.json(); |
| setTsInstalled(data.installed); |
| return data; |
| } |
| } catch { } |
| setTsInstalled(false); |
| return { installed: false }; |
| }; |
|
|
| const handleInstallTailscale = async () => { |
| setTsInstalling(true); |
| setTsStatus(null); |
| setTsInstallLog([]); |
| try { |
| const res = await fetch("/api/tunnel/tailscale-install", { |
| method: "POST", |
| headers: { "Content-Type": "application/json" }, |
| body: JSON.stringify({ sudoPassword: tsSudoPassword }), |
| }); |
| setTsSudoPassword(""); |
|
|
| const reader = res.body.getReader(); |
| const decoder = new TextDecoder(); |
| let buffer = ""; |
|
|
| while (true) { |
| const { done, value } = await reader.read(); |
| if (done) break; |
| buffer += decoder.decode(value, { stream: true }); |
| const parts = buffer.split("\n\n"); |
| buffer = parts.pop() || ""; |
| for (const part of parts) { |
| const lines = part.split("\n"); |
| let event = "progress"; |
| let data = null; |
| for (const line of lines) { |
| if (line.startsWith("event: ")) event = line.slice(7).trim(); |
| if (line.startsWith("data: ")) { |
| try { data = JSON.parse(line.slice(6)); } catch { } |
| } |
| } |
| if (!data) continue; |
| if (event === "progress") { |
| setTsInstallLog((prev) => [...prev.slice(-50), data.message]); |
| } else if (event === "done") { |
| setTsInstalled(true); |
| setTsInstalling(false); |
| setShowTsModal(false); |
| handleConnectTailscale(); |
| return; |
| } else if (event === "error") { |
| setTsStatus({ type: "error", message: data.error || "Install failed" }); |
| } |
| } |
| } |
| } catch (e) { |
| setTsStatus({ type: "error", message: e.message }); |
| } finally { |
| setTsInstalling(false); |
| } |
| }; |
|
|
| |
| const pingTsHealth = async (url) => { |
| setTsProgress("Waiting for Tailscale ready..."); |
| const healthUrl = `${url}/api/health`; |
| const start = Date.now(); |
| while (Date.now() - start < TUNNEL_PING_MAX_MS) { |
| await new Promise((r) => setTimeout(r, TUNNEL_PING_INTERVAL_MS)); |
| try { |
| const ping = await fetch(healthUrl, { mode: "no-cors", cache: "no-store" }); |
| if (ping.ok || ping.type === "opaque") return true; |
| } catch { } |
| } |
| return false; |
| }; |
|
|
| |
| |
| const requestUserAuth = (url, label) => { |
| setTsAuthUrl(url); |
| setTsAuthLabel(label); |
| }; |
|
|
| const clearUserAuth = () => { |
| setTsAuthUrl(""); |
| setTsAuthLabel(""); |
| }; |
|
|
| const handleConnectTailscale = async () => { |
| setShowTsModal(false); |
| setTsConnecting(true); |
| setTsLoading(true); |
| setTsStatus(null); |
| setTsProgress("Connecting..."); |
| clearUserAuth(); |
| try { |
| const res = await fetch("/api/tunnel/tailscale-enable", { method: "POST" }); |
| const data = await res.json(); |
|
|
| if (res.ok && data.success) { |
| setTsUrl(data.tunnelUrl || ""); |
| const reachable = await pingTsHealth(data.tunnelUrl); |
| setTsEnabled(true); |
| setTsStatus(reachable ? null : { type: "warning", message: "Connected but not reachable yet." }); |
| return; |
| } |
|
|
| if (data.needsLogin && data.authUrl) { |
| requestUserAuth(data.authUrl, "Open Login Page"); |
| setTsProgress("Login required — click \"Open Login Page\" to continue"); |
| for (let i = 0; i < 40; i++) { |
| await new Promise((r) => setTimeout(r, 3000)); |
| try { |
| const r2 = await fetch("/api/tunnel/tailscale-check"); |
| if (r2.ok) { |
| const check = await r2.json(); |
| if (check.loggedIn) { |
| clearUserAuth(); |
| setTsProgress("Starting funnel..."); |
| const res2 = await fetch("/api/tunnel/tailscale-enable", { method: "POST" }); |
| const data2 = await res2.json(); |
| if (res2.ok && data2.success) { |
| setTsUrl(data2.tunnelUrl || ""); |
| const ok2 = await pingTsHealth(data2.tunnelUrl); |
| setTsEnabled(true); |
| setTsStatus(ok2 ? null : { type: "warning", message: "Connected but not reachable yet." }); |
| } else if (data2.funnelNotEnabled && data2.enableUrl) { |
| await pollFunnelEnable(data2.enableUrl); |
| } else { |
| setTsStatus({ type: "error", message: data2.error || "Failed to start funnel" }); |
| } |
| return; |
| } |
| } |
| } catch { } |
| } |
| clearUserAuth(); |
| setTsStatus({ type: "error", message: "Login timed out. Please try again." }); |
| return; |
| } |
|
|
| if (data.funnelNotEnabled && data.enableUrl) { |
| await pollFunnelEnable(data.enableUrl); |
| return; |
| } |
|
|
| setTsStatus({ type: "error", message: data.error || "Failed to connect" }); |
| } catch (error) { |
| setTsStatus({ type: "error", message: error.message }); |
| } finally { |
| setTsLoading(false); |
| setTsConnecting(false); |
| setTsProgress(""); |
| clearUserAuth(); |
| } |
| }; |
|
|
| const pollFunnelEnable = async (enableUrl) => { |
| requestUserAuth(enableUrl, "Open Funnel Settings"); |
| setTsProgress("Click \"Open Funnel Settings\" to enable Funnel..."); |
| for (let i = 0; i < 40; i++) { |
| await new Promise((r) => setTimeout(r, 3000)); |
| try { |
| const res = await fetch("/api/tunnel/tailscale-enable", { method: "POST" }); |
| const data = await res.json(); |
| if (res.ok && data.success) { |
| clearUserAuth(); |
| setTsUrl(data.tunnelUrl || ""); |
| const ok3 = await pingTsHealth(data.tunnelUrl); |
| setTsEnabled(true); |
| setTsStatus(ok3 ? null : { type: "warning", message: "Connected but not reachable yet." }); |
| return; |
| } |
| if (data.funnelNotEnabled) continue; |
| if (data.error) { |
| clearUserAuth(); |
| setTsStatus({ type: "error", message: data.error }); |
| return; |
| } |
| } catch { } |
| } |
| clearUserAuth(); |
| setTsStatus({ type: "error", message: "Timed out waiting for Funnel to be enabled." }); |
| }; |
|
|
| const handleDisableTailscale = async () => { |
| setTsLoading(true); |
| setTsStatus(null); |
| try { |
| const res = await fetch("/api/tunnel/tailscale-disable", { method: "POST" }); |
| const data = await res.json(); |
| if (res.ok) { |
| setTsEnabled(false); |
| setTsUrl(""); |
| setShowDisableTsModal(false); |
| setTsStatus({ type: "success", message: "Tailscale disabled" }); |
| } else { |
| setTsStatus({ type: "error", message: data.error || "Failed to disable Tailscale" }); |
| } |
| } catch (e) { |
| setTsStatus({ type: "error", message: e.message }); |
| } finally { |
| setTsLoading(false); |
| } |
| }; |
|
|
| const handleOpenTsModal = async () => { |
| setTsStatus(null); |
| setTsInstallLog([]); |
| const data = await checkTailscaleInstalled(); |
| if (data?.installed && data?.hasCachedPassword) { |
| handleConnectTailscale(); |
| } else { |
| setShowTsModal(true); |
| } |
| }; |
|
|
| const handleCreateKey = async () => { |
| if (!newKeyName.trim()) return; |
|
|
| try { |
| const res = await fetch("/api/keys", { |
| method: "POST", |
| headers: { "Content-Type": "application/json" }, |
| body: JSON.stringify({ name: newKeyName }), |
| }); |
| const data = await res.json(); |
|
|
| if (res.ok) { |
| setCreatedKey(data.key); |
| await fetchData(); |
| setNewKeyName(""); |
| setShowAddModal(false); |
| } |
| } catch (error) { |
| console.log("Error creating key:", error); |
| } |
| }; |
|
|
| const handleDeleteKey = async (id) => { |
| setConfirmState({ |
| title: "Delete API Key", |
| message: "Delete this API key?", |
| onConfirm: async () => { |
| setConfirmState(null); |
| try { |
| const res = await fetch(`/api/keys/${id}`, { method: "DELETE" }); |
| if (res.ok) { |
| setKeys(keys.filter((k) => k.id !== id)); |
| setVisibleKeys(prev => { |
| const next = new Set(prev); |
| next.delete(id); |
| return next; |
| }); |
| } |
| } catch (error) { |
| console.log("Error deleting key:", error); |
| } |
| } |
| }); |
| }; |
|
|
| const handleToggleKey = async (id, isActive) => { |
| try { |
| const res = await fetch(`/api/keys/${id}`, { |
| method: "PUT", |
| headers: { "Content-Type": "application/json" }, |
| body: JSON.stringify({ isActive }), |
| }); |
| if (res.ok) { |
| setKeys(prev => prev.map(k => k.id === id ? { ...k, isActive } : k)); |
| } |
| } catch (error) { |
| console.log("Error toggling key:", error); |
| } |
| }; |
|
|
| const maskKey = (fullKey) => { |
| if (!fullKey || fullKey.length <= 10) return fullKey || ""; |
| return fullKey.slice(0, 6) + "•".repeat(fullKey.length - 10) + fullKey.slice(-4); |
| }; |
|
|
| const toggleKeyVisibility = (keyId) => { |
| setVisibleKeys(prev => { |
| const next = new Set(prev); |
| if (next.has(keyId)) next.delete(keyId); |
| else next.add(keyId); |
| return next; |
| }); |
| }; |
|
|
| const [baseUrl, setBaseUrl] = useState("/v1"); |
|
|
| |
| useEffect(() => { |
| if (typeof window !== "undefined") { |
| setBaseUrl(`${window.location.origin}/v1`); |
| } |
| }, []); |
|
|
| if (loading) { |
| return ( |
| <div className="flex flex-col gap-8"> |
| <CardSkeleton /> |
| <CardSkeleton /> |
| </div> |
| ); |
| } |
|
|
| const currentEndpoint = baseUrl; |
|
|
| return ( |
| <div className="flex flex-col gap-8"> |
| {/* Endpoint Card */} |
| <Card> |
| <h2 className="text-lg font-semibold mb-4 flex items-center gap-2"> |
| <span className="material-symbols-outlined text-primary">api</span> |
| API Endpoint |
| </h2> |
| |
| {/* Endpoint rows */} |
| <div className="flex flex-col gap-2"> |
| {/* Local */} |
| <EndpointRow |
| label="Local" |
| url={currentEndpoint} |
| copyId="local_url" |
| copied={copied} |
| onCopy={copy} |
| /> |
| {/* Cloudflare Tunnel */} |
| <div className="flex items-center gap-2"> |
| <span className={`text-xs font-mono px-1.5 py-0.5 rounded shrink-0 min-w-[88px] text-center ${ |
| tunnelEnabled ? "bg-primary/10 text-primary" : "bg-surface-2 text-text-muted" |
| }`}>Tunnel</span> |
| {tunnelEnabled && !tunnelLoading && tunnelReachable ? ( |
| <> |
| <Input value={`${tunnelPublicUrl || tunnelUrl}/v1`} readOnly className="flex-1 font-mono text-sm" /> |
| <button |
| onClick={() => copy(`${tunnelPublicUrl || tunnelUrl}/v1`, "tunnel_url")} |
| className="p-2 hover:bg-black/5 dark:hover:bg-white/5 rounded text-text-muted hover:text-primary transition-colors shrink-0" |
| > |
| <span className="material-symbols-outlined text-[18px]">{copied === "tunnel_url" ? "check" : "content_copy"}</span> |
| </button> |
| <button |
| onClick={() => setShowDisableTunnelModal(true)} |
| className="p-2 hover:bg-red-500/10 rounded text-red-500 transition-colors shrink-0" |
| title="Disable Tunnel" |
| > |
| <span className="material-symbols-outlined text-[18px]">power_settings_new</span> |
| </button> |
| </> |
| ) : tunnelEnabled && !tunnelLoading && !tunnelReachable ? ( |
| <> |
| <div className="flex-1 flex items-center gap-2 px-3 py-1.5 rounded border border-amber-300 dark:border-amber-800 bg-amber-500/5 text-sm text-amber-600 dark:text-amber-400"> |
| <span className="material-symbols-outlined animate-spin text-sm">progress_activity</span> |
| {tunnelEverReachable ? "Tunnel reconnecting..." : "Tunnel checking..."} |
| </div> |
| <button |
| onClick={() => setShowDisableTunnelModal(true)} |
| className="p-2 hover:bg-red-500/10 rounded text-red-500 transition-colors shrink-0" |
| title="Disable Tunnel" |
| > |
| <span className="material-symbols-outlined text-[18px]">power_settings_new</span> |
| </button> |
| </> |
| ) : tunnelLoading ? ( |
| <> |
| <div className="flex-1 flex items-center gap-2 px-3 py-1.5 rounded border border-border bg-input text-sm text-text-muted"> |
| <span className="material-symbols-outlined animate-spin text-sm">progress_activity</span> |
| {tunnelProgress || "Creating tunnel..."} |
| </div> |
| <button |
| onClick={() => { setTunnelLoading(false); setTunnelProgress(""); }} |
| className="p-2 hover:bg-red-500/10 rounded text-red-500 transition-colors shrink-0" |
| title="Stop" |
| > |
| <span className="material-symbols-outlined text-[18px]">power_settings_new</span> |
| </button> |
| </> |
| ) : tunnelStatus?.type === "error" ? ( |
| <> |
| <div className="flex-1 flex items-center gap-2 px-3 py-1.5 rounded border border-red-300 dark:border-red-800 bg-red-500/5 text-sm text-red-600 dark:text-red-400"> |
| <span className="material-symbols-outlined text-sm">error</span> |
| {tunnelStatus.message} |
| </div> |
| <Button size="sm" icon="cloud_upload" onClick={() => setShowEnableTunnelModal(true)}>Enable</Button> |
| </> |
| ) : tunnelChecking ? ( |
| <> |
| <div className="flex-1 flex items-center gap-2 px-3 py-1.5 rounded border border-border bg-input text-sm text-text-muted"> |
| <span className="material-symbols-outlined animate-spin text-sm">progress_activity</span> |
| Checking... |
| </div> |
| <button |
| onClick={() => setTunnelChecking(false)} |
| className="p-2 hover:bg-red-500/10 rounded text-red-500 transition-colors shrink-0" |
| title="Stop" |
| > |
| <span className="material-symbols-outlined text-[18px]">power_settings_new</span> |
| </button> |
| </> |
| ) : ( |
| <Button |
| size="sm" |
| icon="cloud_upload" |
| onClick={() => { |
| if (isLoginUnsafe) { |
| setTunnelStatus({ type: "error", message: `Security required: ${unsafeReason}` }); |
| return; |
| } |
| if (!requireApiKey) { |
| setTunnelStatus({ type: "error", message: "Security required: Enable \"Require API key\" before activating the tunnel." }); |
| return; |
| } |
| setShowEnableTunnelModal(true); |
| }} |
| > |
| Enable |
| </Button> |
| )} |
| </div> |
| {} |
| <div className="flex items-center gap-2"> |
| <span className={`text-xs font-mono px-1.5 py-0.5 rounded shrink-0 min-w-[88px] text-center ${ |
| tsEnabled ? "bg-primary/10 text-primary" : "bg-surface-2 text-text-muted" |
| }`}>Tailscale</span> |
| {tsEnabled && !tsLoading && tsReachable ? ( |
| <> |
| <Input value={`${tsUrl}/v1`} readOnly className="flex-1 font-mono text-sm" /> |
| <button |
| onClick={() => copy(`${tsUrl}/v1`, "ts_url")} |
| className="p-2 hover:bg-black/5 dark:hover:bg-white/5 rounded text-text-muted hover:text-primary transition-colors shrink-0" |
| > |
| <span className="material-symbols-outlined text-[18px]">{copied === "ts_url" ? "check" : "content_copy"}</span> |
| </button> |
| <button |
| onClick={() => setShowDisableTsModal(true)} |
| className="p-2 hover:bg-red-500/10 rounded text-red-500 transition-colors shrink-0" |
| title="Disable Tailscale" |
| > |
| <span className="material-symbols-outlined text-[18px]">power_settings_new</span> |
| </button> |
| </> |
| ) : tsEnabled && !tsLoading && !tsReachable ? ( |
| <> |
| <div className="flex-1 flex items-center gap-2 px-3 py-1.5 rounded border border-amber-300 dark:border-amber-800 bg-amber-500/5 text-sm text-amber-600 dark:text-amber-400"> |
| <span className="material-symbols-outlined animate-spin text-sm">progress_activity</span> |
| {tsEverReachable ? "Tailscale reconnecting..." : "Tailscale checking..."} |
| </div> |
| <button |
| onClick={() => setShowDisableTsModal(true)} |
| className="p-2 hover:bg-red-500/10 rounded text-red-500 transition-colors shrink-0" |
| title="Disable Tailscale" |
| > |
| <span className="material-symbols-outlined text-[18px]">power_settings_new</span> |
| </button> |
| </> |
| ) : (tsLoading || tsConnecting) ? ( |
| <> |
| <div className="flex-1 flex items-center gap-2 px-3 py-1.5 rounded border border-border bg-input text-sm text-text-muted"> |
| <span className="material-symbols-outlined animate-spin text-sm">progress_activity</span> |
| {tsProgress || "Connecting..."} |
| </div> |
| {tsAuthUrl && ( |
| <Button |
| size="sm" |
| icon="open_in_new" |
| onClick={() => window.open(tsAuthUrl, "tailscale_auth", "width=600,height=700,noopener,noreferrer")} |
| > |
| {tsAuthLabel || "Open"} |
| </Button> |
| )} |
| <button |
| onClick={() => { setTsLoading(false); setTsConnecting(false); setTsProgress(""); clearUserAuth(); }} |
| className="p-2 hover:bg-red-500/10 rounded text-red-500 transition-colors shrink-0" |
| title="Stop" |
| > |
| <span className="material-symbols-outlined text-[18px]">power_settings_new</span> |
| </button> |
| </> |
| ) : tsStatus?.type === "error" ? ( |
| <> |
| <div className="flex-1 flex items-center gap-2 px-3 py-1.5 rounded border border-red-300 dark:border-red-800 bg-red-500/5 text-sm text-red-600 dark:text-red-400"> |
| <span className="material-symbols-outlined text-sm">error</span> |
| {tsStatus.message} |
| </div> |
| <Button size="sm" icon="vpn_lock" onClick={handleOpenTsModal}>Enable</Button> |
| </> |
| ) : ( |
| <Button |
| size="sm" |
| icon="vpn_lock" |
| onClick={() => { |
| if (isLoginUnsafe) { |
| setTsStatus({ type: "error", message: `Security required: ${unsafeReason}` }); |
| return; |
| } |
| handleOpenTsModal(); |
| }} |
| className="bg-linear-to-r from-indigo-500 to-purple-500 hover:from-indigo-600 hover:to-purple-600 text-white!" |
| > |
| Enable |
| </Button> |
| )} |
| </div> |
| </div> |
|
|
| {} |
| {isLoginUnsafe && !tunnelEnabled && !tsEnabled && ( |
| <div className="mt-4"> |
| <SecurityWarning |
| message={unsafeReason} |
| action={{ label: "Open settings", href: "/dashboard/profile" }} |
| /> |
| </div> |
| )} |
|
|
| {} |
| {(tunnelEnabled || tsEnabled) && ( |
| <div className="mt-4 flex flex-col gap-2"> |
| {!requireApiKey && ( |
| <SecurityWarning |
| message="Require API key is disabled — your endpoint is publicly accessible without authentication." |
| action={{ label: "Enable", href: "#require-api-key" }} |
| /> |
| )} |
| {(!requireLogin || !hasPassword) && ( |
| <SecurityWarning |
| message={ |
| !requireLogin |
| ? "Require login is disabled — anyone can access your dashboard via tunnel." |
| : "Dashboard uses the default password — change it in Profile settings." |
| } |
| action={{ |
| label: !requireLogin ? "Enable" : "Change password", |
| href: "/dashboard/profile", |
| }} |
| /> |
| )} |
| </div> |
| )} |
|
|
| {} |
| {(tunnelEnabled || tsEnabled) && ( |
| <div className="mt-4 pt-4 border-t border-border flex items-center gap-3"> |
| <Toggle |
| checked={tunnelDashboardAccess} |
| onChange={() => handleTunnelDashboardAccess(!tunnelDashboardAccess)} |
| /> |
| <div className="flex items-center gap-1.5"> |
| <p className="font-medium text-sm">Allow dashboard access via tunnel</p> |
| <Tooltip text="When enabled, the dashboard can be accessed through your tunnel or Tailscale URL (login still required). When disabled, dashboard access via tunnel/Tailscale is completely blocked." /> |
| </div> |
| </div> |
| )} |
| </Card> |
|
|
| {} |
| <Card id="rtk"> |
| <div className="flex items-center justify-between mb-2"> |
| <h2 className="text-lg font-semibold flex items-center gap-2"> |
| <span className="material-symbols-outlined text-primary">bolt</span> |
| Token Saver |
| </h2> |
| </div> |
| <div className="flex items-center justify-between pt-2 pb-4 border-b border-border gap-4"> |
| <div className="min-w-0 flex-1"> |
| <p className="font-medium"> |
| Compress tool output{" "} |
| <a |
| href="https://github.com/rtk-ai/rtk" |
| target="_blank" |
| rel="noreferrer" |
| className="text-xs font-normal text-primary underline hover:opacity-80" |
| > |
| (RTK) |
| </a> |
| </p> |
| <p className="text-sm text-text-muted"> |
| git/grep/ls/tree/logs → 60-90% fewer input tokens |
| </p> |
| </div> |
| <Toggle |
| checked={rtkEnabled} |
| onChange={() => handleRtkEnabled(!rtkEnabled)} |
| /> |
| </div> |
| <div className="flex items-center justify-between pt-4 gap-4 flex-wrap"> |
| <div className="min-w-0 flex-1"> |
| <p className="font-medium"> |
| Compress LLM output{" "} |
| <a |
| href="https://github.com/JuliusBrussee/caveman" |
| target="_blank" |
| rel="noreferrer" |
| className="text-xs font-normal text-primary underline hover:opacity-80" |
| > |
| (Caveman) |
| </a> |
| </p> |
| <p className="text-sm text-text-muted"> |
| Terse-style system prompt → ~65% fewer output tokens (up to 87%) |
| </p> |
| </div> |
| <div className="flex items-center gap-3 shrink-0"> |
| {cavemanEnabled && ( |
| <div className="flex flex-col items-end gap-1"> |
| <div className="flex items-center gap-1.5"> |
| {visibleCavemanLevels.map((lvl) => ( |
| <button |
| key={lvl.id} |
| onClick={() => handleCavemanLevel(lvl.id)} |
| className={`px-3 py-1.5 rounded text-xs font-medium border transition-colors ${ |
| cavemanLevel === lvl.id |
| ? "bg-primary text-white border-primary" |
| : "bg-transparent border-border text-text-muted hover:bg-surface-2" |
| }`} |
| title={lvl.desc} |
| > |
| {lvl.label} |
| </button> |
| ))} |
| </div> |
| <p className="text-xs text-primary"> |
| {CAVEMAN_LEVELS.find((lvl) => lvl.id === cavemanLevel)?.desc} |
| </p> |
| </div> |
| )} |
| <Toggle |
| checked={cavemanEnabled} |
| onChange={() => handleCavemanEnabled(!cavemanEnabled)} |
| /> |
| </div> |
| </div> |
| </Card> |
|
|
| {} |
| <Card id="require-api-key"> |
| <div className="flex items-center justify-between mb-4"> |
| <h2 className="text-lg font-semibold flex items-center gap-2"> |
| <span className="material-symbols-outlined text-primary">vpn_key</span> |
| API Keys |
| </h2> |
| <Button icon="add" onClick={() => setShowAddModal(true)}> |
| Create Key |
| </Button> |
| </div> |
|
|
| <div className="flex items-center justify-between pb-4 mb-4 border-b border-border"> |
| <div> |
| <p className="font-medium">Require API key</p> |
| <p className="text-sm text-text-muted"> |
| Requests without a valid key will be rejected |
| </p> |
| </div> |
| <Toggle |
| checked={requireApiKey} |
| onChange={() => handleRequireApiKey(!requireApiKey)} |
| /> |
| </div> |
|
|
| {isRemoteHost && !requireApiKey && ( |
| <div className="mb-4 -mt-2"> |
| <SecurityWarning message="Endpoint is exposed without an API key." /> |
| </div> |
| )} |
|
|
| {keys.length === 0 ? ( |
| <div className="text-center py-12"> |
| <div className="inline-flex items-center justify-center w-16 h-16 rounded-full bg-primary/10 text-primary mb-4"> |
| <span className="material-symbols-outlined text-[32px]">vpn_key</span> |
| </div> |
| <p className="text-text-main font-medium mb-1">No API keys yet</p> |
| <p className="text-sm text-text-muted mb-4">Create your first API key to get started</p> |
| <Button icon="add" onClick={() => setShowAddModal(true)}> |
| Create Key |
| </Button> |
| </div> |
| ) : ( |
| <div className="flex flex-col"> |
| {keys.map((key) => ( |
| <div |
| key={key.id} |
| className={`group flex items-center justify-between py-3 border-b border-black/[0.03] dark:border-white/[0.03] last:border-b-0 ${key.isActive === false ? "opacity-60" : ""}`} |
| > |
| <div className="flex-1 min-w-0"> |
| <p className="text-sm font-medium">{key.name}</p> |
| <div className="flex items-center gap-2 mt-1"> |
| <code className="text-xs text-text-muted font-mono"> |
| {visibleKeys.has(key.id) ? key.key : maskKey(key.key)} |
| </code> |
| <button |
| onClick={() => toggleKeyVisibility(key.id)} |
| className="p-1 hover:bg-black/5 dark:hover:bg-white/5 rounded text-text-muted hover:text-primary opacity-100 sm:opacity-0 sm:group-hover:opacity-100 transition-all" |
| title={visibleKeys.has(key.id) ? "Hide key" : "Show key"} |
| > |
| <span className="material-symbols-outlined text-[14px]"> |
| {visibleKeys.has(key.id) ? "visibility_off" : "visibility"} |
| </span> |
| </button> |
| <button |
| onClick={() => copy(key.key, key.id)} |
| className="p-1 hover:bg-black/5 dark:hover:bg-white/5 rounded text-text-muted hover:text-primary opacity-100 sm:opacity-0 sm:group-hover:opacity-100 transition-all" |
| > |
| <span className="material-symbols-outlined text-[14px]"> |
| {copied === key.id ? "check" : "content_copy"} |
| </span> |
| </button> |
| </div> |
| <p className="text-xs text-text-muted mt-1"> |
| Created {new Date(key.createdAt).toLocaleDateString()} |
| </p> |
| {key.isActive === false && ( |
| <p className="text-xs text-orange-500 mt-1">Paused</p> |
| )} |
| </div> |
| <div className="flex items-center gap-2"> |
| <Toggle |
| size="sm" |
| checked={key.isActive ?? true} |
| onChange={(checked) => { |
| if (key.isActive && !checked) { |
| setConfirmState({ |
| title: "Pause API Key", |
| message: `Pause API key "${key.name}"?\n\nThis key will stop working immediately but can be resumed later.`, |
| onConfirm: async () => { |
| setConfirmState(null); |
| handleToggleKey(key.id, checked); |
| } |
| }); |
| } else { |
| handleToggleKey(key.id, checked); |
| } |
| }} |
| title={key.isActive ? "Pause key" : "Resume key"} |
| /> |
| <button |
| onClick={() => handleDeleteKey(key.id)} |
| className="p-2 hover:bg-red-500/10 rounded text-red-500 opacity-100 sm:opacity-0 sm:group-hover:opacity-100 transition-all" |
| > |
| <span className="material-symbols-outlined text-[18px]">delete</span> |
| </button> |
| </div> |
| </div> |
| ))} |
| </div> |
| )} |
| </Card> |
|
|
| {} |
| <Modal |
| isOpen={showAddModal} |
| title="Create API Key" |
| onClose={() => { |
| setShowAddModal(false); |
| setNewKeyName(""); |
| }} |
| > |
| <div className="flex flex-col gap-4"> |
| <Input |
| label="Key Name" |
| value={newKeyName} |
| onChange={(e) => setNewKeyName(e.target.value)} |
| placeholder="Production Key" |
| /> |
| <div className="flex gap-2"> |
| <Button onClick={handleCreateKey} fullWidth disabled={!newKeyName.trim()}> |
| Create |
| </Button> |
| <Button |
| onClick={() => { |
| setShowAddModal(false); |
| setNewKeyName(""); |
| }} |
| variant="ghost" |
| fullWidth |
| > |
| Cancel |
| </Button> |
| </div> |
| </div> |
| </Modal> |
|
|
| {} |
| <Modal |
| isOpen={!!createdKey} |
| title="API Key Created" |
| onClose={() => setCreatedKey(null)} |
| > |
| <div className="flex flex-col gap-4"> |
| <div className="bg-yellow-50 dark:bg-yellow-900/20 border border-yellow-200 dark:border-yellow-800 rounded-lg p-4"> |
| <p className="text-sm text-yellow-800 dark:text-yellow-200 mb-2 font-medium"> |
| Save this key now! |
| </p> |
| <p className="text-sm text-yellow-700 dark:text-yellow-300"> |
| This is the only time you will see this key. Store it securely. |
| </p> |
| </div> |
| <div className="flex gap-2"> |
| <Input |
| value={createdKey || ""} |
| readOnly |
| className="flex-1 font-mono text-sm" |
| /> |
| <Button |
| variant="secondary" |
| icon={copied === "created_key" ? "check" : "content_copy"} |
| onClick={() => copy(createdKey, "created_key")} |
| > |
| {copied === "created_key" ? "Copied!" : "Copy"} |
| </Button> |
| </div> |
| <Button onClick={() => setCreatedKey(null)} fullWidth> |
| Done |
| </Button> |
| </div> |
| </Modal> |
|
|
| {} |
| <Modal |
| isOpen={showEnableTunnelModal} |
| title="Enable Tunnel" |
| onClose={() => setShowEnableTunnelModal(false)} |
| > |
| <div className="flex flex-col gap-4"> |
| <div className="bg-surface-2 border border-border-subtle rounded-lg p-4"> |
| <div className="flex items-start gap-3"> |
| <span className="material-symbols-outlined text-primary">cloud_upload</span> |
| <div> |
| <p className="text-sm text-text-main font-medium mb-1"> |
| Cloudflare Tunnel |
| </p> |
| <p className="text-sm text-text-muted"> |
| Expose your local 9Router to the internet. No port forwarding, no static IP needed. Share endpoint URL with your team or use it in Cursor, Cline, and other AI tools from anywhere. |
| </p> |
| </div> |
| </div> |
| </div> |
| |
| <div className="grid grid-cols-2 gap-3"> |
| {TUNNEL_BENEFITS.map((benefit) => ( |
| <div key={benefit.title} className="flex flex-col items-center text-center p-3 rounded-lg bg-sidebar/50"> |
| <span className="material-symbols-outlined text-xl text-primary mb-1">{benefit.icon}</span> |
| <p className="text-xs font-semibold">{benefit.title}</p> |
| <p className="text-xs text-text-muted">{benefit.desc}</p> |
| </div> |
| ))} |
| </div> |
| |
| <p className="text-xs text-text-muted"> |
| Requires outbound port 7844 (TCP/UDP). Connection may take 10-30s. |
| </p> |
| |
| <div className="flex gap-2"> |
| <Button onClick={handleEnableTunnel} fullWidth> |
| Start Tunnel |
| </Button> |
| <Button onClick={() => setShowEnableTunnelModal(false)} variant="ghost" fullWidth>Cancel</Button> |
| </div> |
| </div> |
| </Modal> |
|
|
| {} |
| <Modal |
| isOpen={showDisableTunnelModal} |
| title="Disable Tunnel" |
| onClose={() => !tunnelLoading && setShowDisableTunnelModal(false)} |
| > |
| <div className="flex flex-col gap-4"> |
| <p className="text-sm text-text-muted">The Cloudflare tunnel will be disconnected. Remote access via tunnel URL will stop working.</p> |
| <div className="flex gap-2"> |
| <Button onClick={handleDisableTunnel} fullWidth disabled={tunnelLoading} variant="danger"> |
| {tunnelLoading ? "Disabling..." : "Disable"} |
| </Button> |
| <Button onClick={() => setShowDisableTunnelModal(false)} variant="ghost" fullWidth disabled={tunnelLoading}>Cancel</Button> |
| </div> |
| </div> |
| </Modal> |
|
|
| {} |
| <Modal |
| isOpen={showTsModal} |
| title="Tailscale Funnel" |
| onClose={() => { if (!tsInstalling) { setShowTsModal(false); setTsSudoPassword(""); setTsStatus(null); } }} |
| > |
| <div className="flex flex-col gap-4"> |
| {/* Checking state */} |
| {tsInstalled === null && ( |
| <p className="text-sm text-text-muted flex items-center gap-2"> |
| <span className="material-symbols-outlined animate-spin text-sm">progress_activity</span> |
| Checking... |
| </p> |
| )} |
| |
| {/* Not installed */} |
| {tsInstalled === false && !tsInstalling && ( |
| <div className="flex flex-col gap-3"> |
| <p className="text-sm text-text-muted">Tailscale is not installed. Install it to enable Funnel.</p> |
| <div className="flex gap-2"> |
| <Button onClick={handleInstallTailscale} fullWidth> |
| Install Tailscale |
| </Button> |
| <Button onClick={() => setShowTsModal(false)} variant="ghost" fullWidth>Cancel</Button> |
| </div> |
| </div> |
| )} |
| |
| {/* Installing with progress log */} |
| {tsInstalling && ( |
| <div className="flex flex-col gap-2"> |
| <div className="flex items-center gap-2 text-sm text-text-muted"> |
| <span className="material-symbols-outlined animate-spin text-sm">progress_activity</span> |
| Installing Tailscale... |
| </div> |
| {tsInstallLog.length > 0 && ( |
| <div ref={tsLogRef} className="bg-black/5 dark:bg-white/5 rounded p-2 max-h-40 overflow-y-auto font-mono text-xs text-text-muted"> |
| {tsInstallLog.map((line, i) => ( |
| <div key={i}>{line}</div> |
| ))} |
| </div> |
| )} |
| </div> |
| )} |
| |
| {/* Installed: show Connect button */} |
| {tsInstalled === true && !tsInstalling && ( |
| <div className="flex flex-col gap-3"> |
| <div className="flex items-center gap-2 text-sm text-green-600 dark:text-green-400"> |
| <span className="material-symbols-outlined text-[16px]">check_circle</span> |
| Tailscale installed |
| </div> |
| <div className="flex gap-2"> |
| <Button |
| onClick={() => handleConnectTailscale()} |
| fullWidth |
| > |
| Connect |
| </Button> |
| <Button onClick={() => setShowTsModal(false)} variant="ghost" fullWidth>Cancel</Button> |
| </div> |
| </div> |
| )} |
| |
| {tsStatus && <StatusAlert status={tsStatus} />} |
| </div> |
| </Modal> |
|
|
| {} |
| <Modal |
| isOpen={showDisableTsModal} |
| title="Disable Tailscale" |
| onClose={() => !tsLoading && setShowDisableTsModal(false)} |
| > |
| <div className="flex flex-col gap-4"> |
| <p className="text-sm text-text-muted">Tailscale Funnel will be stopped. Remote access via Tailscale URL will stop working.</p> |
| <div className="flex gap-2"> |
| <Button onClick={handleDisableTailscale} fullWidth disabled={tsLoading} variant="danger"> |
| {tsLoading ? "Disabling..." : "Disable"} |
| </Button> |
| <Button onClick={() => setShowDisableTsModal(false)} variant="ghost" fullWidth disabled={tsLoading}>Cancel</Button> |
| </div> |
| </div> |
| </Modal> |
|
|
| {} |
| <ConfirmModal |
| isOpen={!!confirmState} |
| onClose={() => setConfirmState(null)} |
| onConfirm={confirmState?.onConfirm} |
| title={confirmState?.title || "Confirm"} |
| message={confirmState?.message} |
| variant="danger" |
| /> |
| </div> |
| ); |
| } |
|
|
|
|
| APIPageClient.propTypes = { |
| machineId: PropTypes.string.isRequired, |
| }; |
|
|