File size: 8,381 Bytes
6a7089a d286842 6a7089a d286842 6a7089a | 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 | package dashboard
import (
"context"
"embed"
"encoding/json"
"fmt"
"io/fs"
"net/http"
"os"
"strings"
"sync"
"time"
"github.com/pinchtab/pinchtab/internal/bridge"
)
type DashboardConfig struct {
IdleTimeout time.Duration
DisconnectTimeout time.Duration
ReaperInterval time.Duration
SSEBufferSize int
}
//go:embed dashboard/*
var dashboardFS embed.FS
// AgentEvent is sent via SSE when an agent performs an action.
type AgentEvent struct {
AgentID string `json:"agentId"`
Profile string `json:"profile,omitempty"`
Action string `json:"action"`
URL string `json:"url,omitempty"`
TabID string `json:"tabId,omitempty"`
Detail string `json:"detail,omitempty"`
Status int `json:"status"`
DurationMs int64 `json:"durationMs"`
Timestamp time.Time `json:"timestamp"`
}
// SystemEvent is sent for instance lifecycle changes.
type SystemEvent struct {
Type string `json:"type"` // "instance.started", "instance.stopped", "instance.error"
Instance interface{} `json:"instance,omitempty"`
}
// InstanceLister returns running instances (provided by Orchestrator).
type InstanceLister interface {
List() []bridge.Instance
}
type Dashboard struct {
cfg DashboardConfig
sseConns map[chan AgentEvent]struct{}
sysConns map[chan SystemEvent]struct{}
cancel context.CancelFunc
instances InstanceLister
monitoring MonitoringSource
serverMetrics ServerMetricsProvider
childAuthToken string
mu sync.RWMutex
}
// BroadcastSystemEvent sends a system event to all SSE clients.
func (d *Dashboard) BroadcastSystemEvent(evt SystemEvent) {
d.mu.RLock()
chans := make([]chan SystemEvent, 0, len(d.sysConns))
for ch := range d.sysConns {
chans = append(chans, ch)
}
d.mu.RUnlock()
for _, ch := range chans {
select {
case ch <- evt:
default:
}
}
}
// SetInstanceLister sets the orchestrator for managing instances.
func (d *Dashboard) SetInstanceLister(il InstanceLister) {
d.instances = il
}
func NewDashboard(cfg *DashboardConfig) *Dashboard {
c := DashboardConfig{
IdleTimeout: 30 * time.Second,
DisconnectTimeout: 5 * time.Minute,
ReaperInterval: 10 * time.Second,
SSEBufferSize: 64,
}
if cfg != nil {
if cfg.IdleTimeout > 0 {
c.IdleTimeout = cfg.IdleTimeout
}
if cfg.DisconnectTimeout > 0 {
c.DisconnectTimeout = cfg.DisconnectTimeout
}
if cfg.ReaperInterval > 0 {
c.ReaperInterval = cfg.ReaperInterval
}
if cfg.SSEBufferSize > 0 {
c.SSEBufferSize = cfg.SSEBufferSize
}
}
_, cancel := context.WithCancel(context.Background())
d := &Dashboard{
cfg: c,
sseConns: make(map[chan AgentEvent]struct{}),
sysConns: make(map[chan SystemEvent]struct{}),
cancel: cancel,
childAuthToken: os.Getenv("PINCHTAB_TOKEN"),
}
return d
}
func (d *Dashboard) Shutdown() { d.cancel() }
func (d *Dashboard) RegisterHandlers(mux *http.ServeMux) {
// API endpoints
mux.HandleFunc("GET /api/events", d.handleSSE)
// Static files served at /dashboard/
sub, _ := fs.Sub(dashboardFS, "dashboard")
fileServer := http.FileServer(http.FS(sub))
// Serve static assets under /dashboard/ with long cache (hashed filenames)
mux.Handle("GET /dashboard/assets/", http.StripPrefix("/dashboard", d.withLongCache(fileServer)))
mux.Handle("GET /dashboard/favicon.png", http.StripPrefix("/dashboard", d.withLongCache(fileServer)))
// SPA: serve dashboard.html for /, /login, and /dashboard/*
mux.Handle("GET /{$}", d.withNoCache(http.HandlerFunc(d.handleDashboardUI)))
mux.Handle("GET /login", d.withNoCache(http.HandlerFunc(d.handleDashboardUI)))
mux.Handle("GET /dashboard", d.withNoCache(http.HandlerFunc(d.handleDashboardUI)))
mux.Handle("GET /dashboard/{path...}", d.withNoCache(http.HandlerFunc(d.handleDashboardUI)))
}
func (d *Dashboard) handleSSE(w http.ResponseWriter, r *http.Request) {
flusher, ok := w.(http.Flusher)
if !ok {
http.Error(w, "streaming not supported", http.StatusInternalServerError)
return
}
// SSE connections are intentionally long-lived. Clear the server-level write
// deadline for this response so the stream is not terminated after
// http.Server.WriteTimeout elapses.
if err := http.NewResponseController(w).SetWriteDeadline(time.Time{}); err != nil {
http.Error(w, "streaming deadline unsupported", http.StatusInternalServerError)
return
}
w.Header().Set("Content-Type", "text/event-stream")
w.Header().Set("Cache-Control", "no-cache")
w.Header().Set("Connection", "keep-alive")
w.Header().Set("X-Accel-Buffering", "no")
agentCh := make(chan AgentEvent, d.cfg.SSEBufferSize)
sysCh := make(chan SystemEvent, d.cfg.SSEBufferSize)
d.mu.Lock()
d.sseConns[agentCh] = struct{}{}
d.sysConns[sysCh] = struct{}{}
d.mu.Unlock()
defer func() {
d.mu.Lock()
delete(d.sseConns, agentCh)
delete(d.sysConns, sysCh)
d.mu.Unlock()
}()
includeMemory := r.URL.Query().Get("memory") == "1"
// Send initial empty agent list
data, _ := json.Marshal([]interface{}{})
_, _ = fmt.Fprintf(w, "event: init\ndata: %s\n\n", data)
flusher.Flush()
if d.monitoring != nil || d.instances != nil {
data, _ = json.Marshal(d.monitoringSnapshot(includeMemory))
_, _ = fmt.Fprintf(w, "event: monitoring\ndata: %s\n\n", data)
flusher.Flush()
}
keepalive := time.NewTicker(30 * time.Second)
monitoring := time.NewTicker(5 * time.Second)
defer keepalive.Stop()
defer monitoring.Stop()
for {
select {
case evt := <-agentCh:
data, _ := json.Marshal(evt)
_, _ = fmt.Fprintf(w, "event: action\ndata: %s\n\n", data)
flusher.Flush()
case evt := <-sysCh:
data, _ := json.Marshal(evt)
_, _ = fmt.Fprintf(w, "event: system\ndata: %s\n\n", data)
flusher.Flush()
if d.monitoring != nil || d.instances != nil {
data, _ = json.Marshal(d.monitoringSnapshot(includeMemory))
_, _ = fmt.Fprintf(w, "event: monitoring\ndata: %s\n\n", data)
flusher.Flush()
}
case <-monitoring.C:
if d.monitoring != nil || d.instances != nil {
data, _ = json.Marshal(d.monitoringSnapshot(includeMemory))
_, _ = fmt.Fprintf(w, "event: monitoring\ndata: %s\n\n", data)
flusher.Flush()
}
case <-keepalive.C:
_, _ = fmt.Fprintf(w, ": keepalive\n\n")
flusher.Flush()
case <-r.Context().Done():
return
}
}
}
const fallbackHTML = `<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1.0"/>
<title>PinchTab Dashboard</title>
<style>body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;display:flex;justify-content:center;align-items:center;min-height:100vh;margin:0;background:#0a0a0a;color:#e0e0e0}.c{text-align:center;max-width:480px;padding:2rem}h1{font-size:1.5rem;margin-bottom:.5rem}p{color:#888;line-height:1.6}code{background:#1a1a2e;padding:2px 8px;border-radius:4px;font-size:.9em}</style>
</head><body><div class="c"><h1>🦀 Dashboard not built</h1>
<p>The React dashboard needs to be compiled before use.<br/>
Run <code>./dev build</code> or <code>./scripts/build-dashboard.sh</code> then rebuild the Go binary.</p>
</div></body></html>`
func (d *Dashboard) handleDashboardUI(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/html")
w.Header().Set("Cache-Control", "no-store")
w.Header().Set("Pragma", "no-cache")
w.Header().Set("Expires", "0")
data, err := dashboardFS.ReadFile("dashboard/dashboard.html")
if err != nil {
_, _ = w.Write([]byte(fallbackHTML))
return
}
htmlStr := string(data)
token := os.Getenv("PINCHTAB_TOKEN")
if token == "" {
token = os.Getenv("BEARER_TOKEN")
}
htmlStr = strings.ReplaceAll(htmlStr, "{{PINCHTAB_TOKEN_INJECT}}", token)
_, _ = w.Write([]byte(htmlStr))
}
func (d *Dashboard) withNoCache(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Cache-Control", "no-store")
w.Header().Set("Pragma", "no-cache")
w.Header().Set("Expires", "0")
next.ServeHTTP(w, r)
})
}
func (d *Dashboard) withLongCache(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
// Assets have hashes in filenames - cache for 1 year
w.Header().Set("Cache-Control", "public, max-age=31536000, immutable")
next.ServeHTTP(w, r)
})
}
|