| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 1 | // Package server provides HTTP server functionality for the sketch loop. |
| 2 | package server |
| 3 | |
| 4 | import ( |
| Sean McCullough | baa2b59 | 2025-04-23 10:40:08 -0700 | [diff] [blame] | 5 | "context" |
| Philip Zeyliger | f84e88c | 2025-05-14 23:19:01 +0000 | [diff] [blame] | 6 | "crypto/rand" |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 7 | "encoding/base64" |
| Philip Zeyliger | f84e88c | 2025-05-14 23:19:01 +0000 | [diff] [blame] | 8 | "encoding/hex" |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 9 | "encoding/json" |
| Josh Bleecher Snyder | 5c29b3e | 2025-07-08 18:07:28 +0000 | [diff] [blame] | 10 | "errors" |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 11 | "fmt" |
| 12 | "html" |
| 13 | "io" |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 14 | "log/slog" |
| 15 | "net/http" |
| Philip Zeyliger | a9710d7 | 2025-07-02 02:50:14 +0000 | [diff] [blame] | 16 | "net/http/httputil" |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 17 | "net/http/pprof" |
| Philip Zeyliger | a9710d7 | 2025-07-02 02:50:14 +0000 | [diff] [blame] | 18 | "net/url" |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 19 | "os" |
| 20 | "os/exec" |
| Philip Zeyliger | f84e88c | 2025-05-14 23:19:01 +0000 | [diff] [blame] | 21 | "path/filepath" |
| Philip Zeyliger | 8d8b7ac | 2025-05-21 09:57:23 -0700 | [diff] [blame] | 22 | "runtime/debug" |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 23 | "strconv" |
| 24 | "strings" |
| 25 | "sync" |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 26 | "time" |
| 27 | |
| 28 | "github.com/creack/pty" |
| Philip Zeyliger | 33d282f | 2025-05-03 04:01:54 +0000 | [diff] [blame] | 29 | "sketch.dev/claudetool/browse" |
| Josh Bleecher Snyder | 1c18ec9 | 2025-07-08 10:55:54 -0700 | [diff] [blame] | 30 | "sketch.dev/embedded" |
| 31 | "sketch.dev/git_tools" |
| Josh Bleecher Snyder | 4f84ab7 | 2025-04-22 16:40:54 -0700 | [diff] [blame] | 32 | "sketch.dev/llm/conversation" |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 33 | "sketch.dev/loop" |
| Josh Bleecher Snyder | 1c18ec9 | 2025-07-08 10:55:54 -0700 | [diff] [blame] | 34 | "sketch.dev/loop/server/gzhandler" |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 35 | ) |
| 36 | |
| 37 | // terminalSession represents a terminal session with its PTY and the event channel |
| 38 | type terminalSession struct { |
| 39 | pty *os.File |
| 40 | eventsClients map[chan []byte]bool |
| 41 | lastEventClientID int |
| 42 | eventsClientsMutex sync.Mutex |
| 43 | cmd *exec.Cmd |
| 44 | } |
| 45 | |
| 46 | // TerminalMessage represents a message sent from the client for terminal resize events |
| 47 | type TerminalMessage struct { |
| 48 | Type string `json:"type"` |
| 49 | Cols uint16 `json:"cols"` |
| 50 | Rows uint16 `json:"rows"` |
| 51 | } |
| 52 | |
| 53 | // TerminalResponse represents the response for a new terminal creation |
| 54 | type TerminalResponse struct { |
| 55 | SessionID string `json:"sessionId"` |
| 56 | } |
| 57 | |
| Josh Bleecher Snyder | 112b923 | 2025-05-23 11:26:33 -0700 | [diff] [blame] | 58 | // TodoItem represents a single todo item for task management |
| 59 | type TodoItem struct { |
| 60 | ID string `json:"id"` |
| 61 | Task string `json:"task"` |
| 62 | Status string `json:"status"` // queued, in-progress, completed |
| 63 | } |
| 64 | |
| 65 | // TodoList represents a collection of todo items |
| 66 | type TodoList struct { |
| 67 | Items []TodoItem `json:"items"` |
| 68 | } |
| 69 | |
| Sean McCullough | d9f1337 | 2025-04-21 15:08:49 -0700 | [diff] [blame] | 70 | type State struct { |
| Philip Zeyliger | d03318d | 2025-05-08 13:09:12 -0700 | [diff] [blame] | 71 | // null or 1: "old" |
| 72 | // 2: supports SSE for message updates |
| 73 | StateVersion int `json:"state_version"` |
| Josh Bleecher Snyder | 4f84ab7 | 2025-04-22 16:40:54 -0700 | [diff] [blame] | 74 | MessageCount int `json:"message_count"` |
| 75 | TotalUsage *conversation.CumulativeUsage `json:"total_usage,omitempty"` |
| 76 | InitialCommit string `json:"initial_commit"` |
| Josh Bleecher Snyder | 19969a9 | 2025-06-05 14:34:02 -0700 | [diff] [blame] | 77 | Slug string `json:"slug,omitempty"` |
| Josh Bleecher Snyder | 4f84ab7 | 2025-04-22 16:40:54 -0700 | [diff] [blame] | 78 | BranchName string `json:"branch_name,omitempty"` |
| Philip Zeyliger | be7802a | 2025-06-04 20:15:25 +0000 | [diff] [blame] | 79 | BranchPrefix string `json:"branch_prefix,omitempty"` |
| Josh Bleecher Snyder | 4f84ab7 | 2025-04-22 16:40:54 -0700 | [diff] [blame] | 80 | Hostname string `json:"hostname"` // deprecated |
| 81 | WorkingDir string `json:"working_dir"` // deprecated |
| 82 | OS string `json:"os"` // deprecated |
| 83 | GitOrigin string `json:"git_origin,omitempty"` |
| banksean | cad67b0 | 2025-06-27 21:57:05 +0000 | [diff] [blame] | 84 | GitUsername string `json:"git_username,omitempty"` |
| Josh Bleecher Snyder | 4f84ab7 | 2025-04-22 16:40:54 -0700 | [diff] [blame] | 85 | OutstandingLLMCalls int `json:"outstanding_llm_calls"` |
| 86 | OutstandingToolCalls []string `json:"outstanding_tool_calls"` |
| 87 | SessionID string `json:"session_id"` |
| 88 | SSHAvailable bool `json:"ssh_available"` |
| 89 | SSHError string `json:"ssh_error,omitempty"` |
| 90 | InContainer bool `json:"in_container"` |
| 91 | FirstMessageIndex int `json:"first_message_index"` |
| 92 | AgentState string `json:"agent_state,omitempty"` |
| 93 | OutsideHostname string `json:"outside_hostname,omitempty"` |
| 94 | InsideHostname string `json:"inside_hostname,omitempty"` |
| 95 | OutsideOS string `json:"outside_os,omitempty"` |
| 96 | InsideOS string `json:"inside_os,omitempty"` |
| 97 | OutsideWorkingDir string `json:"outside_working_dir,omitempty"` |
| 98 | InsideWorkingDir string `json:"inside_working_dir,omitempty"` |
| philip.zeyliger | 8773e68 | 2025-06-11 21:36:21 -0700 | [diff] [blame] | 99 | TodoContent string `json:"todo_content,omitempty"` // Contains todo list JSON data |
| 100 | SkabandAddr string `json:"skaband_addr,omitempty"` // URL of the skaband server |
| 101 | LinkToGitHub bool `json:"link_to_github,omitempty"` // Enable GitHub branch linking in UI |
| 102 | SSHConnectionString string `json:"ssh_connection_string,omitempty"` // SSH connection string for container |
| Philip Zeyliger | 64f6046 | 2025-06-16 13:57:10 -0700 | [diff] [blame] | 103 | DiffLinesAdded int `json:"diff_lines_added"` // Lines added from sketch-base to HEAD |
| 104 | DiffLinesRemoved int `json:"diff_lines_removed"` // Lines removed from sketch-base to HEAD |
| Philip Zeyliger | 5f26a34 | 2025-07-04 01:30:29 +0000 | [diff] [blame] | 105 | OpenPorts []Port `json:"open_ports,omitempty"` // Currently open TCP ports |
| banksean | 5ab8fb8 | 2025-07-09 12:34:55 -0700 | [diff] [blame] | 106 | TokenContextWindow int `json:"token_context_window,omitempty"` |
| Philip Zeyliger | 5f26a34 | 2025-07-04 01:30:29 +0000 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | // Port represents an open TCP port |
| 110 | type Port struct { |
| 111 | Proto string `json:"proto"` // "tcp" or "udp" |
| 112 | Port uint16 `json:"port"` // port number |
| 113 | Process string `json:"process"` // optional process name |
| 114 | Pid int `json:"pid"` // process ID |
| Sean McCullough | d9f1337 | 2025-04-21 15:08:49 -0700 | [diff] [blame] | 115 | } |
| 116 | |
| Sean McCullough | baa2b59 | 2025-04-23 10:40:08 -0700 | [diff] [blame] | 117 | type InitRequest struct { |
| Philip Zeyliger | bc8c8dc | 2025-05-21 13:19:13 -0700 | [diff] [blame] | 118 | // Passed to agent so that the URL it prints in the termui prompt is correct (when skaband is not used) |
| 119 | HostAddr string `json:"host_addr"` |
| 120 | |
| 121 | // POST /init will start the SSH server with these configs |
| Sean McCullough | 7013e9e | 2025-05-14 02:03:58 +0000 | [diff] [blame] | 122 | SSHAuthorizedKeys []byte `json:"ssh_authorized_keys"` |
| 123 | SSHServerIdentity []byte `json:"ssh_server_identity"` |
| 124 | SSHContainerCAKey []byte `json:"ssh_container_ca_key"` |
| 125 | SSHHostCertificate []byte `json:"ssh_host_certificate"` |
| 126 | SSHAvailable bool `json:"ssh_available"` |
| 127 | SSHError string `json:"ssh_error,omitempty"` |
| Sean McCullough | baa2b59 | 2025-04-23 10:40:08 -0700 | [diff] [blame] | 128 | } |
| 129 | |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 130 | // Server serves sketch HTTP. Server implements http.Handler. |
| 131 | type Server struct { |
| 132 | mux *http.ServeMux |
| 133 | agent loop.CodingAgent |
| 134 | hostname string |
| 135 | logFile *os.File |
| 136 | // Mutex to protect terminalSessions |
| 137 | ptyMutex sync.Mutex |
| 138 | terminalSessions map[string]*terminalSession |
| Philip Zeyliger | c72fff5 | 2025-04-29 20:17:54 +0000 | [diff] [blame] | 139 | sshAvailable bool |
| 140 | sshError string |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) { |
| Philip Zeyliger | a9710d7 | 2025-07-02 02:50:14 +0000 | [diff] [blame] | 144 | // Check if Host header matches "p<port>.localhost" pattern and proxy to that port |
| 145 | if port := s.ParsePortProxyHost(r.Host); port != "" { |
| 146 | s.proxyToPort(w, r, port) |
| 147 | return |
| 148 | } |
| 149 | |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 150 | s.mux.ServeHTTP(w, r) |
| 151 | } |
| 152 | |
| Philip Zeyliger | a9710d7 | 2025-07-02 02:50:14 +0000 | [diff] [blame] | 153 | // ParsePortProxyHost checks if host matches "p<port>.localhost" pattern and returns the port |
| 154 | func (s *Server) ParsePortProxyHost(host string) string { |
| 155 | // Remove port suffix if present (e.g., "p8000.localhost:8080" -> "p8000.localhost") |
| 156 | hostname := host |
| 157 | if idx := strings.LastIndex(host, ":"); idx > 0 { |
| 158 | hostname = host[:idx] |
| 159 | } |
| 160 | |
| 161 | // Check if hostname matches p<port>.localhost pattern |
| 162 | if strings.HasSuffix(hostname, ".localhost") { |
| 163 | prefix := strings.TrimSuffix(hostname, ".localhost") |
| 164 | if strings.HasPrefix(prefix, "p") && len(prefix) > 1 { |
| 165 | port := prefix[1:] // Remove 'p' prefix |
| 166 | // Basic validation - port should be numeric and in valid range |
| 167 | if portNum, err := strconv.Atoi(port); err == nil && portNum > 0 && portNum <= 65535 { |
| 168 | return port |
| 169 | } |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | return "" |
| 174 | } |
| 175 | |
| 176 | // proxyToPort proxies the request to localhost:<port> |
| 177 | func (s *Server) proxyToPort(w http.ResponseWriter, r *http.Request, port string) { |
| 178 | // Create a reverse proxy to localhost:<port> |
| 179 | target, err := url.Parse(fmt.Sprintf("http://localhost:%s", port)) |
| 180 | if err != nil { |
| 181 | http.Error(w, "Failed to parse proxy target", http.StatusInternalServerError) |
| 182 | return |
| 183 | } |
| 184 | |
| 185 | proxy := httputil.NewSingleHostReverseProxy(target) |
| 186 | |
| 187 | // Customize the Director to modify the request |
| 188 | originalDirector := proxy.Director |
| 189 | proxy.Director = func(req *http.Request) { |
| 190 | originalDirector(req) |
| 191 | // Set the target host |
| 192 | req.URL.Host = target.Host |
| 193 | req.URL.Scheme = target.Scheme |
| 194 | req.Host = target.Host |
| 195 | } |
| 196 | |
| 197 | // Handle proxy errors |
| 198 | proxy.ErrorHandler = func(w http.ResponseWriter, r *http.Request, err error) { |
| 199 | slog.Error("Proxy error", "error", err, "target", target.String(), "port", port) |
| 200 | http.Error(w, "Proxy error: "+err.Error(), http.StatusBadGateway) |
| 201 | } |
| 202 | |
| 203 | proxy.ServeHTTP(w, r) |
| 204 | } |
| 205 | |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 206 | // New creates a new HTTP server. |
| 207 | func New(agent loop.CodingAgent, logFile *os.File) (*Server, error) { |
| 208 | s := &Server{ |
| 209 | mux: http.NewServeMux(), |
| 210 | agent: agent, |
| 211 | hostname: getHostname(), |
| 212 | logFile: logFile, |
| 213 | terminalSessions: make(map[string]*terminalSession), |
| Philip Zeyliger | c72fff5 | 2025-04-29 20:17:54 +0000 | [diff] [blame] | 214 | sshAvailable: false, |
| 215 | sshError: "", |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 216 | } |
| 217 | |
| Philip Zeyliger | 25f6ff1 | 2025-05-02 04:24:10 +0000 | [diff] [blame] | 218 | s.mux.HandleFunc("/stream", s.handleSSEStream) |
| Philip Zeyliger | d3ac112 | 2025-05-14 02:54:18 +0000 | [diff] [blame] | 219 | |
| 220 | // Git tool endpoints |
| 221 | s.mux.HandleFunc("/git/rawdiff", s.handleGitRawDiff) |
| 222 | s.mux.HandleFunc("/git/show", s.handleGitShow) |
| Philip Zeyliger | 272a90e | 2025-05-16 14:49:51 -0700 | [diff] [blame] | 223 | s.mux.HandleFunc("/git/cat", s.handleGitCat) |
| 224 | s.mux.HandleFunc("/git/save", s.handleGitSave) |
| Philip Zeyliger | d3ac112 | 2025-05-14 02:54:18 +0000 | [diff] [blame] | 225 | s.mux.HandleFunc("/git/recentlog", s.handleGitRecentLog) |
| 226 | |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 227 | s.mux.HandleFunc("/diff", func(w http.ResponseWriter, r *http.Request) { |
| 228 | // Check if a specific commit hash was requested |
| 229 | commit := r.URL.Query().Get("commit") |
| 230 | |
| 231 | // Get the diff, optionally for a specific commit |
| 232 | var diff string |
| 233 | var err error |
| 234 | if commit != "" { |
| 235 | // Validate the commit hash format |
| 236 | if !isValidGitSHA(commit) { |
| 237 | http.Error(w, fmt.Sprintf("Invalid git commit SHA format: %s", commit), http.StatusBadRequest) |
| 238 | return |
| 239 | } |
| 240 | |
| 241 | diff, err = agent.Diff(&commit) |
| 242 | } else { |
| 243 | diff, err = agent.Diff(nil) |
| 244 | } |
| 245 | |
| 246 | if err != nil { |
| 247 | http.Error(w, fmt.Sprintf("Error generating diff: %v", err), http.StatusInternalServerError) |
| 248 | return |
| 249 | } |
| 250 | |
| 251 | w.Header().Set("Content-Type", "text/plain") |
| 252 | w.Write([]byte(diff)) |
| 253 | }) |
| 254 | |
| 255 | // Handler for initialization called by host sketch binary when inside docker. |
| 256 | s.mux.HandleFunc("/init", func(w http.ResponseWriter, r *http.Request) { |
| 257 | defer func() { |
| 258 | if err := recover(); err != nil { |
| 259 | slog.ErrorContext(r.Context(), "/init panic", slog.Any("recovered_err", err)) |
| 260 | |
| 261 | // Return an error response to the client |
| 262 | http.Error(w, fmt.Sprintf("panic: %v\n", err), http.StatusInternalServerError) |
| 263 | } |
| 264 | }() |
| 265 | |
| 266 | if r.Method != "POST" { |
| 267 | http.Error(w, "POST required", http.StatusBadRequest) |
| 268 | return |
| 269 | } |
| 270 | |
| 271 | body, err := io.ReadAll(r.Body) |
| 272 | r.Body.Close() |
| 273 | if err != nil { |
| 274 | http.Error(w, "failed to read request body: "+err.Error(), http.StatusBadRequest) |
| 275 | return |
| 276 | } |
| Sean McCullough | baa2b59 | 2025-04-23 10:40:08 -0700 | [diff] [blame] | 277 | |
| 278 | m := &InitRequest{} |
| 279 | if err := json.Unmarshal(body, m); err != nil { |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 280 | http.Error(w, "bad request body: "+err.Error(), http.StatusBadRequest) |
| 281 | return |
| 282 | } |
| Sean McCullough | baa2b59 | 2025-04-23 10:40:08 -0700 | [diff] [blame] | 283 | |
| Philip Zeyliger | c72fff5 | 2025-04-29 20:17:54 +0000 | [diff] [blame] | 284 | // Store SSH availability info |
| 285 | s.sshAvailable = m.SSHAvailable |
| 286 | s.sshError = m.SSHError |
| 287 | |
| Sean McCullough | baa2b59 | 2025-04-23 10:40:08 -0700 | [diff] [blame] | 288 | // Start the SSH server if the init request included ssh keys. |
| 289 | if len(m.SSHAuthorizedKeys) > 0 && len(m.SSHServerIdentity) > 0 { |
| 290 | go func() { |
| 291 | ctx := context.Background() |
| Sean McCullough | 7013e9e | 2025-05-14 02:03:58 +0000 | [diff] [blame] | 292 | if err := s.ServeSSH(ctx, m.SSHServerIdentity, m.SSHAuthorizedKeys, m.SSHContainerCAKey, m.SSHHostCertificate); err != nil { |
| Sean McCullough | baa2b59 | 2025-04-23 10:40:08 -0700 | [diff] [blame] | 293 | slog.ErrorContext(r.Context(), "/init ServeSSH", slog.String("err", err.Error())) |
| Philip Zeyliger | c72fff5 | 2025-04-29 20:17:54 +0000 | [diff] [blame] | 294 | // Update SSH error if server fails to start |
| 295 | s.sshAvailable = false |
| 296 | s.sshError = err.Error() |
| Sean McCullough | baa2b59 | 2025-04-23 10:40:08 -0700 | [diff] [blame] | 297 | } |
| 298 | }() |
| 299 | } |
| 300 | |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 301 | ini := loop.AgentInit{ |
| Philip Zeyliger | bc8c8dc | 2025-05-21 13:19:13 -0700 | [diff] [blame] | 302 | InDocker: true, |
| 303 | HostAddr: m.HostAddr, |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 304 | } |
| 305 | if err := agent.Init(ini); err != nil { |
| 306 | http.Error(w, "init failed: "+err.Error(), http.StatusInternalServerError) |
| 307 | return |
| 308 | } |
| 309 | w.Header().Set("Content-Type", "application/json") |
| 310 | io.WriteString(w, "{}\n") |
| 311 | }) |
| 312 | |
| 313 | // Handler for /messages?start=N&end=M (start/end are optional) |
| 314 | s.mux.HandleFunc("/messages", func(w http.ResponseWriter, r *http.Request) { |
| 315 | w.Header().Set("Content-Type", "application/json") |
| 316 | |
| 317 | // Extract query parameters for range |
| 318 | var start, end int |
| 319 | var err error |
| 320 | |
| 321 | currentCount := agent.MessageCount() |
| 322 | |
| 323 | startParam := r.URL.Query().Get("start") |
| 324 | if startParam != "" { |
| 325 | start, err = strconv.Atoi(startParam) |
| 326 | if err != nil { |
| 327 | http.Error(w, "Invalid 'start' parameter", http.StatusBadRequest) |
| 328 | return |
| 329 | } |
| 330 | } |
| 331 | |
| 332 | endParam := r.URL.Query().Get("end") |
| 333 | if endParam != "" { |
| 334 | end, err = strconv.Atoi(endParam) |
| 335 | if err != nil { |
| 336 | http.Error(w, "Invalid 'end' parameter", http.StatusBadRequest) |
| 337 | return |
| 338 | } |
| 339 | } else { |
| 340 | end = currentCount |
| 341 | } |
| 342 | |
| 343 | if start < 0 || start > end || end > currentCount { |
| 344 | http.Error(w, fmt.Sprintf("Invalid range: start %d end %d currentCount %d", start, end, currentCount), http.StatusBadRequest) |
| 345 | return |
| 346 | } |
| 347 | |
| 348 | start = max(0, start) |
| 349 | end = min(agent.MessageCount(), end) |
| 350 | messages := agent.Messages(start, end) |
| 351 | |
| 352 | // Create a JSON encoder with indentation for pretty-printing |
| 353 | encoder := json.NewEncoder(w) |
| 354 | encoder.SetIndent("", " ") // Two spaces for each indentation level |
| 355 | |
| 356 | err = encoder.Encode(messages) |
| 357 | if err != nil { |
| 358 | http.Error(w, err.Error(), http.StatusInternalServerError) |
| 359 | } |
| 360 | }) |
| 361 | |
| 362 | // Handler for /logs - displays the contents of the log file |
| 363 | s.mux.HandleFunc("/logs", func(w http.ResponseWriter, r *http.Request) { |
| 364 | if s.logFile == nil { |
| 365 | http.Error(w, "log file not set", http.StatusNotFound) |
| 366 | return |
| 367 | } |
| 368 | logContents, err := os.ReadFile(s.logFile.Name()) |
| 369 | if err != nil { |
| 370 | http.Error(w, "error reading log file: "+err.Error(), http.StatusInternalServerError) |
| 371 | return |
| 372 | } |
| 373 | w.Header().Set("Content-Type", "text/html; charset=utf-8") |
| 374 | fmt.Fprintf(w, "<!DOCTYPE html>\n<html>\n<head>\n<title>Sketchy Log File</title>\n</head>\n<body>\n") |
| 375 | fmt.Fprintf(w, "<pre>%s</pre>\n", html.EscapeString(string(logContents))) |
| 376 | fmt.Fprintf(w, "</body>\n</html>") |
| 377 | }) |
| 378 | |
| 379 | // Handler for /download - downloads both messages and status as a JSON file |
| 380 | s.mux.HandleFunc("/download", func(w http.ResponseWriter, r *http.Request) { |
| 381 | // Set headers for file download |
| 382 | w.Header().Set("Content-Type", "application/octet-stream") |
| 383 | |
| 384 | // Generate filename with format: sketch-YYYYMMDD-HHMMSS.json |
| 385 | timestamp := time.Now().Format("20060102-150405") |
| 386 | filename := fmt.Sprintf("sketch-%s.json", timestamp) |
| 387 | |
| 388 | w.Header().Set("Content-Disposition", fmt.Sprintf("attachment; filename=\"%s\"", filename)) |
| 389 | |
| 390 | // Get all messages |
| 391 | messageCount := agent.MessageCount() |
| 392 | messages := agent.Messages(0, messageCount) |
| 393 | |
| 394 | // Get status information (usage and other metadata) |
| 395 | totalUsage := agent.TotalUsage() |
| 396 | hostname := getHostname() |
| 397 | workingDir := getWorkingDir() |
| 398 | |
| 399 | // Create a combined structure with all information |
| 400 | downloadData := struct { |
| Josh Bleecher Snyder | 4f84ab7 | 2025-04-22 16:40:54 -0700 | [diff] [blame] | 401 | Messages []loop.AgentMessage `json:"messages"` |
| 402 | MessageCount int `json:"message_count"` |
| 403 | TotalUsage conversation.CumulativeUsage `json:"total_usage"` |
| 404 | Hostname string `json:"hostname"` |
| 405 | WorkingDir string `json:"working_dir"` |
| 406 | DownloadTime string `json:"download_time"` |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 407 | }{ |
| 408 | Messages: messages, |
| 409 | MessageCount: messageCount, |
| 410 | TotalUsage: totalUsage, |
| 411 | Hostname: hostname, |
| 412 | WorkingDir: workingDir, |
| 413 | DownloadTime: time.Now().Format(time.RFC3339), |
| 414 | } |
| 415 | |
| 416 | // Marshal the JSON with indentation for better readability |
| 417 | jsonData, err := json.MarshalIndent(downloadData, "", " ") |
| 418 | if err != nil { |
| 419 | http.Error(w, err.Error(), http.StatusInternalServerError) |
| 420 | return |
| 421 | } |
| 422 | w.Write(jsonData) |
| 423 | }) |
| 424 | |
| 425 | // The latter doesn't return until the number of messages has changed (from seen |
| 426 | // or from when this was called.) |
| 427 | s.mux.HandleFunc("/state", func(w http.ResponseWriter, r *http.Request) { |
| 428 | pollParam := r.URL.Query().Get("poll") |
| 429 | seenParam := r.URL.Query().Get("seen") |
| 430 | |
| 431 | // Get the client's current message count (if provided) |
| 432 | clientMessageCount := -1 |
| 433 | var err error |
| 434 | if seenParam != "" { |
| 435 | clientMessageCount, err = strconv.Atoi(seenParam) |
| 436 | if err != nil { |
| 437 | http.Error(w, "Invalid 'seen' parameter", http.StatusBadRequest) |
| 438 | return |
| 439 | } |
| 440 | } |
| 441 | |
| 442 | serverMessageCount := agent.MessageCount() |
| 443 | |
| 444 | // Let lazy clients not have to specify this. |
| 445 | if clientMessageCount == -1 { |
| 446 | clientMessageCount = serverMessageCount |
| 447 | } |
| 448 | |
| 449 | if pollParam == "true" { |
| 450 | ch := make(chan string) |
| 451 | go func() { |
| Philip Zeyliger | b7c5875 | 2025-05-01 10:10:17 -0700 | [diff] [blame] | 452 | it := agent.NewIterator(r.Context(), clientMessageCount) |
| 453 | it.Next() |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 454 | close(ch) |
| Philip Zeyliger | b7c5875 | 2025-05-01 10:10:17 -0700 | [diff] [blame] | 455 | it.Close() |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 456 | }() |
| 457 | select { |
| 458 | case <-r.Context().Done(): |
| 459 | slog.DebugContext(r.Context(), "abandoned poll request") |
| 460 | return |
| 461 | case <-time.After(90 * time.Second): |
| 462 | // Let the user call /state again to get the latest to limit how long our long polls hang out. |
| 463 | slog.DebugContext(r.Context(), "longish poll request") |
| 464 | break |
| 465 | case <-ch: |
| 466 | break |
| 467 | } |
| 468 | } |
| 469 | |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 470 | w.Header().Set("Content-Type", "application/json") |
| 471 | |
| Philip Zeyliger | 25f6ff1 | 2025-05-02 04:24:10 +0000 | [diff] [blame] | 472 | // Use the shared getState function |
| 473 | state := s.getState() |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 474 | |
| 475 | // Create a JSON encoder with indentation for pretty-printing |
| 476 | encoder := json.NewEncoder(w) |
| 477 | encoder.SetIndent("", " ") // Two spaces for each indentation level |
| 478 | |
| 479 | err = encoder.Encode(state) |
| 480 | if err != nil { |
| 481 | http.Error(w, err.Error(), http.StatusInternalServerError) |
| 482 | } |
| 483 | }) |
| 484 | |
| Josh Bleecher Snyder | 1c18ec9 | 2025-07-08 10:55:54 -0700 | [diff] [blame] | 485 | s.mux.Handle("/static/", http.StripPrefix("/static/", gzhandler.New(embedded.WebUIFS()))) |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 486 | |
| 487 | // Terminal WebSocket handler |
| 488 | // Terminal endpoints - predefined terminals 1-9 |
| 489 | // TODO: The UI doesn't actually know how to use terminals 2-9! |
| 490 | s.mux.HandleFunc("/terminal/events/", func(w http.ResponseWriter, r *http.Request) { |
| 491 | if r.Method != http.MethodGet { |
| 492 | http.Error(w, "Method not allowed", http.StatusMethodNotAllowed) |
| 493 | return |
| 494 | } |
| 495 | pathParts := strings.Split(r.URL.Path, "/") |
| 496 | if len(pathParts) < 4 { |
| 497 | http.Error(w, "Invalid terminal ID", http.StatusBadRequest) |
| 498 | return |
| 499 | } |
| 500 | |
| 501 | sessionID := pathParts[3] |
| 502 | // Validate that the terminal ID is between 1-9 |
| 503 | if len(sessionID) != 1 || sessionID[0] < '1' || sessionID[0] > '9' { |
| 504 | http.Error(w, "Terminal ID must be between 1 and 9", http.StatusBadRequest) |
| 505 | return |
| 506 | } |
| 507 | |
| 508 | s.handleTerminalEvents(w, r, sessionID) |
| 509 | }) |
| 510 | |
| 511 | s.mux.HandleFunc("/terminal/input/", func(w http.ResponseWriter, r *http.Request) { |
| 512 | if r.Method != http.MethodPost { |
| 513 | http.Error(w, "Method not allowed", http.StatusMethodNotAllowed) |
| 514 | return |
| 515 | } |
| 516 | pathParts := strings.Split(r.URL.Path, "/") |
| 517 | if len(pathParts) < 4 { |
| 518 | http.Error(w, "Invalid terminal ID", http.StatusBadRequest) |
| 519 | return |
| 520 | } |
| 521 | sessionID := pathParts[3] |
| 522 | s.handleTerminalInput(w, r, sessionID) |
| 523 | }) |
| 524 | |
| Josh Bleecher Snyder | 1c18ec9 | 2025-07-08 10:55:54 -0700 | [diff] [blame] | 525 | // Handler for interface selection via URL parameters (?m for mobile) |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 526 | s.mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { |
| Josh Bleecher Snyder | 1c18ec9 | 2025-07-08 10:55:54 -0700 | [diff] [blame] | 527 | webuiFS := embedded.WebUIFS() |
| 528 | appShell := "sketch-app-shell.html" |
| 529 | if r.URL.Query().Has("m") { |
| 530 | appShell = "mobile-app-shell.html" |
| Philip Zeyliger | e08c7ff | 2025-06-06 13:22:12 -0700 | [diff] [blame] | 531 | } |
| Josh Bleecher Snyder | 1c18ec9 | 2025-07-08 10:55:54 -0700 | [diff] [blame] | 532 | http.ServeFileFS(w, r, webuiFS, appShell) |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 533 | }) |
| 534 | |
| Philip Zeyliger | 2c4db09 | 2025-04-28 16:57:50 -0700 | [diff] [blame] | 535 | // Handler for /commit-description - returns the description of a git commit |
| 536 | s.mux.HandleFunc("/commit-description", func(w http.ResponseWriter, r *http.Request) { |
| 537 | if r.Method != http.MethodGet { |
| 538 | http.Error(w, "Method not allowed", http.StatusMethodNotAllowed) |
| 539 | return |
| 540 | } |
| 541 | |
| 542 | // Get the revision parameter |
| 543 | revision := r.URL.Query().Get("revision") |
| 544 | if revision == "" { |
| 545 | http.Error(w, "Missing revision parameter", http.StatusBadRequest) |
| 546 | return |
| 547 | } |
| 548 | |
| 549 | // Run git command to get commit description |
| 550 | cmd := exec.Command("git", "log", "--oneline", "--decorate", "-n", "1", revision) |
| 551 | // Use the working directory from the agent |
| 552 | cmd.Dir = s.agent.WorkingDir() |
| 553 | |
| 554 | output, err := cmd.CombinedOutput() |
| 555 | if err != nil { |
| 556 | http.Error(w, "Failed to get commit description: "+err.Error(), http.StatusInternalServerError) |
| 557 | return |
| 558 | } |
| 559 | |
| 560 | // Prepare the response |
| 561 | resp := map[string]string{ |
| 562 | "description": strings.TrimSpace(string(output)), |
| 563 | } |
| 564 | |
| 565 | w.Header().Set("Content-Type", "application/json") |
| 566 | if err := json.NewEncoder(w).Encode(resp); err != nil { |
| 567 | slog.ErrorContext(r.Context(), "Error encoding commit description response", slog.Any("err", err)) |
| 568 | } |
| 569 | }) |
| 570 | |
| Philip Zeyliger | 33d282f | 2025-05-03 04:01:54 +0000 | [diff] [blame] | 571 | // Handler for /screenshot/{id} - serves screenshot images |
| 572 | s.mux.HandleFunc("/screenshot/", func(w http.ResponseWriter, r *http.Request) { |
| 573 | if r.Method != http.MethodGet { |
| 574 | http.Error(w, "Method not allowed", http.StatusMethodNotAllowed) |
| 575 | return |
| 576 | } |
| 577 | |
| 578 | // Extract the screenshot ID from the path |
| 579 | pathParts := strings.Split(r.URL.Path, "/") |
| 580 | if len(pathParts) < 3 { |
| 581 | http.Error(w, "Invalid screenshot ID", http.StatusBadRequest) |
| 582 | return |
| 583 | } |
| 584 | |
| 585 | screenshotID := pathParts[2] |
| 586 | |
| 587 | // Validate the ID format (prevent directory traversal) |
| 588 | if strings.Contains(screenshotID, "/") || strings.Contains(screenshotID, "\\") { |
| 589 | http.Error(w, "Invalid screenshot ID format", http.StatusBadRequest) |
| 590 | return |
| 591 | } |
| 592 | |
| 593 | // Get the screenshot file path |
| 594 | filePath := browse.GetScreenshotPath(screenshotID) |
| 595 | |
| 596 | // Check if the file exists |
| 597 | if _, err := os.Stat(filePath); os.IsNotExist(err) { |
| 598 | http.Error(w, "Screenshot not found", http.StatusNotFound) |
| 599 | return |
| 600 | } |
| 601 | |
| 602 | // Serve the file |
| 603 | w.Header().Set("Content-Type", "image/png") |
| 604 | w.Header().Set("Cache-Control", "max-age=3600") // Cache for an hour |
| 605 | http.ServeFile(w, r, filePath) |
| 606 | }) |
| 607 | |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 608 | // Handler for POST /chat |
| 609 | s.mux.HandleFunc("/chat", func(w http.ResponseWriter, r *http.Request) { |
| 610 | if r.Method != http.MethodPost { |
| 611 | http.Error(w, "Method not allowed", http.StatusMethodNotAllowed) |
| 612 | return |
| 613 | } |
| 614 | |
| 615 | // Parse the request body |
| 616 | var requestBody struct { |
| 617 | Message string `json:"message"` |
| 618 | } |
| 619 | |
| 620 | decoder := json.NewDecoder(r.Body) |
| 621 | if err := decoder.Decode(&requestBody); err != nil { |
| 622 | http.Error(w, "Invalid request body: "+err.Error(), http.StatusBadRequest) |
| 623 | return |
| 624 | } |
| 625 | defer r.Body.Close() |
| 626 | |
| 627 | if requestBody.Message == "" { |
| 628 | http.Error(w, "Message cannot be empty", http.StatusBadRequest) |
| 629 | return |
| 630 | } |
| 631 | |
| 632 | agent.UserMessage(r.Context(), requestBody.Message) |
| 633 | |
| 634 | w.WriteHeader(http.StatusOK) |
| 635 | }) |
| 636 | |
| Philip Zeyliger | f84e88c | 2025-05-14 23:19:01 +0000 | [diff] [blame] | 637 | // Handler for POST /upload - uploads a file to /tmp |
| 638 | s.mux.HandleFunc("/upload", func(w http.ResponseWriter, r *http.Request) { |
| 639 | if r.Method != http.MethodPost { |
| 640 | http.Error(w, "Method not allowed", http.StatusMethodNotAllowed) |
| 641 | return |
| 642 | } |
| 643 | |
| 644 | // Limit to 10MB file size |
| 645 | r.Body = http.MaxBytesReader(w, r.Body, 10*1024*1024) |
| 646 | |
| 647 | // Parse the multipart form |
| 648 | if err := r.ParseMultipartForm(10 * 1024 * 1024); err != nil { |
| 649 | http.Error(w, "Failed to parse form: "+err.Error(), http.StatusBadRequest) |
| 650 | return |
| 651 | } |
| 652 | |
| 653 | // Get the file from the multipart form |
| 654 | file, handler, err := r.FormFile("file") |
| 655 | if err != nil { |
| 656 | http.Error(w, "Failed to get uploaded file: "+err.Error(), http.StatusBadRequest) |
| 657 | return |
| 658 | } |
| 659 | defer file.Close() |
| 660 | |
| 661 | // Generate a unique ID (8 random bytes converted to 16 hex chars) |
| 662 | randBytes := make([]byte, 8) |
| 663 | if _, err := rand.Read(randBytes); err != nil { |
| 664 | http.Error(w, "Failed to generate random filename: "+err.Error(), http.StatusInternalServerError) |
| 665 | return |
| 666 | } |
| 667 | |
| 668 | // Get file extension from the original filename |
| 669 | ext := filepath.Ext(handler.Filename) |
| 670 | |
| 671 | // Create a unique filename in the /tmp directory |
| 672 | filename := fmt.Sprintf("/tmp/sketch_file_%s%s", hex.EncodeToString(randBytes), ext) |
| 673 | |
| 674 | // Create the destination file |
| 675 | destFile, err := os.Create(filename) |
| 676 | if err != nil { |
| 677 | http.Error(w, "Failed to create destination file: "+err.Error(), http.StatusInternalServerError) |
| 678 | return |
| 679 | } |
| 680 | defer destFile.Close() |
| 681 | |
| 682 | // Copy the file contents to the destination file |
| 683 | if _, err := io.Copy(destFile, file); err != nil { |
| 684 | http.Error(w, "Failed to save file: "+err.Error(), http.StatusInternalServerError) |
| 685 | return |
| 686 | } |
| 687 | |
| 688 | // Return the path to the saved file |
| 689 | w.Header().Set("Content-Type", "application/json") |
| 690 | json.NewEncoder(w).Encode(map[string]string{"path": filename}) |
| 691 | }) |
| 692 | |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 693 | // Handler for /cancel - cancels the current inner loop in progress |
| 694 | s.mux.HandleFunc("/cancel", func(w http.ResponseWriter, r *http.Request) { |
| 695 | if r.Method != http.MethodPost { |
| 696 | http.Error(w, "Method not allowed", http.StatusMethodNotAllowed) |
| 697 | return |
| 698 | } |
| 699 | |
| 700 | // Parse the request body (optional) |
| 701 | var requestBody struct { |
| 702 | Reason string `json:"reason"` |
| 703 | ToolCallID string `json:"tool_call_id"` |
| 704 | } |
| 705 | |
| 706 | decoder := json.NewDecoder(r.Body) |
| 707 | if err := decoder.Decode(&requestBody); err != nil && err != io.EOF { |
| 708 | http.Error(w, "Invalid request body: "+err.Error(), http.StatusBadRequest) |
| 709 | return |
| 710 | } |
| 711 | defer r.Body.Close() |
| 712 | |
| 713 | cancelReason := "user requested cancellation" |
| 714 | if requestBody.Reason != "" { |
| 715 | cancelReason = requestBody.Reason |
| 716 | } |
| 717 | |
| 718 | if requestBody.ToolCallID != "" { |
| 719 | err := agent.CancelToolUse(requestBody.ToolCallID, fmt.Errorf("%s", cancelReason)) |
| 720 | if err != nil { |
| 721 | http.Error(w, err.Error(), http.StatusBadRequest) |
| 722 | return |
| 723 | } |
| 724 | // Return a success response |
| 725 | w.Header().Set("Content-Type", "application/json") |
| 726 | json.NewEncoder(w).Encode(map[string]string{ |
| 727 | "status": "cancelled", |
| 728 | "too_use_id": requestBody.ToolCallID, |
| Philip Zeyliger | 8d50d7b | 2025-04-23 13:12:40 -0700 | [diff] [blame] | 729 | "reason": cancelReason, |
| 730 | }) |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 731 | return |
| 732 | } |
| Sean McCullough | edc88dc | 2025-04-30 02:55:01 +0000 | [diff] [blame] | 733 | // Call the CancelTurn method |
| 734 | agent.CancelTurn(fmt.Errorf("%s", cancelReason)) |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 735 | // Return a success response |
| 736 | w.Header().Set("Content-Type", "application/json") |
| 737 | json.NewEncoder(w).Encode(map[string]string{"status": "cancelled", "reason": cancelReason}) |
| 738 | }) |
| 739 | |
| Pokey Rule | 397871d | 2025-05-19 15:02:45 +0100 | [diff] [blame] | 740 | // Handler for /end - shuts down the inner sketch process |
| 741 | s.mux.HandleFunc("/end", func(w http.ResponseWriter, r *http.Request) { |
| 742 | if r.Method != http.MethodPost { |
| 743 | http.Error(w, "Method not allowed", http.StatusMethodNotAllowed) |
| 744 | return |
| 745 | } |
| 746 | |
| 747 | // Parse the request body (optional) |
| 748 | var requestBody struct { |
| Philip Zeyliger | b573940 | 2025-06-02 07:04:34 -0700 | [diff] [blame] | 749 | Reason string `json:"reason"` |
| 750 | Happy *bool `json:"happy,omitempty"` |
| 751 | Comment string `json:"comment,omitempty"` |
| Pokey Rule | 397871d | 2025-05-19 15:02:45 +0100 | [diff] [blame] | 752 | } |
| 753 | |
| 754 | decoder := json.NewDecoder(r.Body) |
| 755 | if err := decoder.Decode(&requestBody); err != nil && err != io.EOF { |
| 756 | http.Error(w, "Invalid request body: "+err.Error(), http.StatusBadRequest) |
| 757 | return |
| 758 | } |
| 759 | defer r.Body.Close() |
| 760 | |
| 761 | endReason := "user requested end of session" |
| 762 | if requestBody.Reason != "" { |
| 763 | endReason = requestBody.Reason |
| 764 | } |
| 765 | |
| 766 | // Send success response before exiting |
| 767 | w.Header().Set("Content-Type", "application/json") |
| 768 | json.NewEncoder(w).Encode(map[string]string{"status": "ending", "reason": endReason}) |
| 769 | if f, ok := w.(http.Flusher); ok { |
| 770 | f.Flush() |
| 771 | } |
| 772 | |
| 773 | // Log that we're shutting down |
| 774 | slog.Info("Ending session", "reason", endReason) |
| 775 | |
| philip.zeyliger | 28e39ac | 2025-06-16 22:04:35 +0000 | [diff] [blame] | 776 | // Give a brief moment for the response to be sent before exiting |
| Pokey Rule | 397871d | 2025-05-19 15:02:45 +0100 | [diff] [blame] | 777 | go func() { |
| philip.zeyliger | 28e39ac | 2025-06-16 22:04:35 +0000 | [diff] [blame] | 778 | time.Sleep(100 * time.Millisecond) |
| Pokey Rule | 397871d | 2025-05-19 15:02:45 +0100 | [diff] [blame] | 779 | os.Exit(0) |
| 780 | }() |
| 781 | }) |
| 782 | |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 783 | debugMux := initDebugMux() |
| 784 | s.mux.HandleFunc("/debug/", func(w http.ResponseWriter, r *http.Request) { |
| 785 | debugMux.ServeHTTP(w, r) |
| 786 | }) |
| 787 | |
| 788 | return s, nil |
| 789 | } |
| 790 | |
| 791 | // Utility functions |
| 792 | func getHostname() string { |
| 793 | hostname, err := os.Hostname() |
| 794 | if err != nil { |
| 795 | return "unknown" |
| 796 | } |
| 797 | return hostname |
| 798 | } |
| 799 | |
| 800 | func getWorkingDir() string { |
| 801 | wd, err := os.Getwd() |
| 802 | if err != nil { |
| 803 | return "unknown" |
| 804 | } |
| 805 | return wd |
| 806 | } |
| 807 | |
| 808 | // createTerminalSession creates a new terminal session with the given ID |
| 809 | func (s *Server) createTerminalSession(sessionID string) (*terminalSession, error) { |
| 810 | // Start a new shell process |
| 811 | shellPath := getShellPath() |
| 812 | cmd := exec.Command(shellPath) |
| 813 | |
| 814 | // Get working directory from the agent if possible |
| 815 | workDir := getWorkingDir() |
| 816 | cmd.Dir = workDir |
| 817 | |
| 818 | // Set up environment |
| 819 | cmd.Env = append(os.Environ(), "TERM=xterm-256color") |
| 820 | |
| 821 | // Start the command with a pty |
| 822 | ptmx, err := pty.Start(cmd) |
| 823 | if err != nil { |
| 824 | slog.Error("Failed to start pty", "error", err) |
| 825 | return nil, err |
| 826 | } |
| 827 | |
| 828 | // Create the terminal session |
| 829 | session := &terminalSession{ |
| 830 | pty: ptmx, |
| 831 | eventsClients: make(map[chan []byte]bool), |
| 832 | cmd: cmd, |
| 833 | } |
| 834 | |
| 835 | // Start goroutine to read from pty and broadcast to all connected SSE clients |
| 836 | go s.readFromPtyAndBroadcast(sessionID, session) |
| 837 | |
| 838 | return session, nil |
| David Crawshaw | b843146 | 2025-07-09 13:10:32 +1000 | [diff] [blame] | 839 | } |
| 840 | |
| 841 | // handleTerminalEvents handles SSE connections for terminal output |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 842 | func (s *Server) handleTerminalEvents(w http.ResponseWriter, r *http.Request, sessionID string) { |
| 843 | // Check if the session exists, if not, create it |
| 844 | s.ptyMutex.Lock() |
| 845 | session, exists := s.terminalSessions[sessionID] |
| 846 | |
| 847 | if !exists { |
| 848 | // Create a new terminal session |
| 849 | var err error |
| 850 | session, err = s.createTerminalSession(sessionID) |
| 851 | if err != nil { |
| 852 | s.ptyMutex.Unlock() |
| 853 | http.Error(w, fmt.Sprintf("Failed to create terminal: %v", err), http.StatusInternalServerError) |
| 854 | return |
| 855 | } |
| 856 | |
| 857 | // Store the new session |
| 858 | s.terminalSessions[sessionID] = session |
| 859 | } |
| 860 | s.ptyMutex.Unlock() |
| 861 | |
| 862 | // Set headers for SSE |
| 863 | w.Header().Set("Content-Type", "text/event-stream") |
| 864 | w.Header().Set("Cache-Control", "no-cache") |
| 865 | w.Header().Set("Connection", "keep-alive") |
| 866 | w.Header().Set("Access-Control-Allow-Origin", "*") |
| 867 | |
| 868 | // Create a channel for this client |
| 869 | events := make(chan []byte, 4096) // Buffer to prevent blocking |
| 870 | |
| 871 | // Register this client's channel |
| 872 | session.eventsClientsMutex.Lock() |
| 873 | clientID := session.lastEventClientID + 1 |
| 874 | session.lastEventClientID = clientID |
| 875 | session.eventsClients[events] = true |
| 876 | session.eventsClientsMutex.Unlock() |
| 877 | |
| 878 | // When the client disconnects, remove their channel |
| 879 | defer func() { |
| 880 | session.eventsClientsMutex.Lock() |
| 881 | delete(session.eventsClients, events) |
| 882 | close(events) |
| 883 | session.eventsClientsMutex.Unlock() |
| 884 | }() |
| 885 | |
| 886 | // Flush to send headers to client immediately |
| 887 | if f, ok := w.(http.Flusher); ok { |
| 888 | f.Flush() |
| 889 | } |
| 890 | |
| 891 | // Send events to the client as they arrive |
| 892 | for { |
| 893 | select { |
| 894 | case <-r.Context().Done(): |
| 895 | return |
| 896 | case data := <-events: |
| 897 | // Format as SSE with base64 encoding |
| 898 | fmt.Fprintf(w, "data: %s\n\n", base64.StdEncoding.EncodeToString(data)) |
| 899 | |
| 900 | // Flush the data immediately |
| 901 | if f, ok := w.(http.Flusher); ok { |
| 902 | f.Flush() |
| 903 | } |
| 904 | } |
| 905 | } |
| 906 | } |
| 907 | |
| 908 | // handleTerminalInput processes input to the terminal |
| 909 | func (s *Server) handleTerminalInput(w http.ResponseWriter, r *http.Request, sessionID string) { |
| 910 | // Check if the session exists |
| 911 | s.ptyMutex.Lock() |
| 912 | session, exists := s.terminalSessions[sessionID] |
| 913 | s.ptyMutex.Unlock() |
| 914 | |
| 915 | if !exists { |
| 916 | http.Error(w, "Terminal session not found", http.StatusNotFound) |
| 917 | return |
| 918 | } |
| 919 | |
| 920 | // Read the request body (terminal input or resize command) |
| 921 | body, err := io.ReadAll(r.Body) |
| 922 | if err != nil { |
| 923 | http.Error(w, "Failed to read request body", http.StatusBadRequest) |
| 924 | return |
| 925 | } |
| 926 | |
| 927 | // Check if it's a resize message |
| 928 | if len(body) > 0 && body[0] == '{' { |
| 929 | var msg TerminalMessage |
| 930 | if err := json.Unmarshal(body, &msg); err == nil && msg.Type == "resize" { |
| 931 | if msg.Cols > 0 && msg.Rows > 0 { |
| 932 | pty.Setsize(session.pty, &pty.Winsize{ |
| 933 | Cols: msg.Cols, |
| 934 | Rows: msg.Rows, |
| 935 | }) |
| 936 | |
| 937 | // Respond with success |
| 938 | w.WriteHeader(http.StatusOK) |
| 939 | return |
| 940 | } |
| 941 | } |
| 942 | } |
| 943 | |
| 944 | // Regular terminal input |
| 945 | _, err = session.pty.Write(body) |
| 946 | if err != nil { |
| 947 | slog.Error("Failed to write to pty", "error", err) |
| 948 | http.Error(w, "Failed to write to terminal", http.StatusInternalServerError) |
| 949 | return |
| 950 | } |
| 951 | |
| 952 | // Respond with success |
| 953 | w.WriteHeader(http.StatusOK) |
| 954 | } |
| 955 | |
| 956 | // readFromPtyAndBroadcast reads output from the PTY and broadcasts it to all connected clients |
| 957 | func (s *Server) readFromPtyAndBroadcast(sessionID string, session *terminalSession) { |
| 958 | buf := make([]byte, 4096) |
| 959 | defer func() { |
| 960 | // Clean up when done |
| 961 | s.ptyMutex.Lock() |
| 962 | delete(s.terminalSessions, sessionID) |
| 963 | s.ptyMutex.Unlock() |
| 964 | |
| 965 | // Close the PTY |
| 966 | session.pty.Close() |
| 967 | |
| 968 | // Ensure process is terminated |
| 969 | if session.cmd.Process != nil { |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 970 | session.cmd.Process.Kill() |
| 971 | } |
| David Crawshaw | b843146 | 2025-07-09 13:10:32 +1000 | [diff] [blame] | 972 | session.cmd.Wait() |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 973 | |
| 974 | // Close all client channels |
| 975 | session.eventsClientsMutex.Lock() |
| 976 | for ch := range session.eventsClients { |
| 977 | delete(session.eventsClients, ch) |
| 978 | close(ch) |
| 979 | } |
| 980 | session.eventsClientsMutex.Unlock() |
| 981 | }() |
| 982 | |
| 983 | for { |
| 984 | n, err := session.pty.Read(buf) |
| 985 | if err != nil { |
| 986 | if err != io.EOF { |
| 987 | slog.Error("Failed to read from pty", "error", err) |
| 988 | } |
| 989 | break |
| 990 | } |
| 991 | |
| 992 | // Make a copy of the data for each client |
| 993 | data := make([]byte, n) |
| 994 | copy(data, buf[:n]) |
| 995 | |
| 996 | // Broadcast to all connected clients |
| 997 | session.eventsClientsMutex.Lock() |
| 998 | for ch := range session.eventsClients { |
| 999 | // Try to send, but don't block if channel is full |
| 1000 | select { |
| 1001 | case ch <- data: |
| 1002 | default: |
| 1003 | // Channel is full, drop the message for this client |
| 1004 | } |
| 1005 | } |
| 1006 | session.eventsClientsMutex.Unlock() |
| 1007 | } |
| 1008 | } |
| 1009 | |
| 1010 | // getShellPath returns the path to the shell to use |
| 1011 | func getShellPath() string { |
| 1012 | // Try to use the user's preferred shell |
| 1013 | shell := os.Getenv("SHELL") |
| 1014 | if shell != "" { |
| 1015 | return shell |
| 1016 | } |
| 1017 | |
| 1018 | // Default to bash on Unix-like systems |
| 1019 | if _, err := os.Stat("/bin/bash"); err == nil { |
| 1020 | return "/bin/bash" |
| 1021 | } |
| 1022 | |
| 1023 | // Fall back to sh |
| 1024 | return "/bin/sh" |
| 1025 | } |
| 1026 | |
| 1027 | func initDebugMux() *http.ServeMux { |
| 1028 | mux := http.NewServeMux() |
| Philip Zeyliger | 8d8b7ac | 2025-05-21 09:57:23 -0700 | [diff] [blame] | 1029 | build := "unknown build" |
| 1030 | bi, ok := debug.ReadBuildInfo() |
| 1031 | if ok { |
| 1032 | build = fmt.Sprintf("%s@%v\n", bi.Path, bi.Main.Version) |
| 1033 | } |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 1034 | mux.HandleFunc("GET /debug/{$}", func(w http.ResponseWriter, r *http.Request) { |
| 1035 | w.Header().Set("Content-Type", "text/html; charset=utf-8") |
| Philip Zeyliger | 2c4db09 | 2025-04-28 16:57:50 -0700 | [diff] [blame] | 1036 | // TODO: pid is not as useful as "outside pid" |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 1037 | fmt.Fprintf(w, `<!doctype html> |
| 1038 | <html><head><title>sketch debug</title></head><body> |
| 1039 | <h1>sketch debug</h1> |
| Philip Zeyliger | 8d8b7ac | 2025-05-21 09:57:23 -0700 | [diff] [blame] | 1040 | pid %d<br> |
| 1041 | build %s<br> |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 1042 | <ul> |
| Philip Zeyliger | a14b018 | 2025-06-30 14:31:18 -0700 | [diff] [blame] | 1043 | <li><a href="pprof/cmdline">pprof/cmdline</a></li> |
| 1044 | <li><a href="pprof/profile">pprof/profile</a></li> |
| 1045 | <li><a href="pprof/symbol">pprof/symbol</a></li> |
| 1046 | <li><a href="pprof/trace">pprof/trace</a></li> |
| 1047 | <li><a href="pprof/goroutine?debug=1">pprof/goroutine?debug=1</a></li> |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 1048 | </ul> |
| 1049 | </body> |
| 1050 | </html> |
| Philip Zeyliger | 8d8b7ac | 2025-05-21 09:57:23 -0700 | [diff] [blame] | 1051 | `, os.Getpid(), build) |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 1052 | }) |
| 1053 | mux.HandleFunc("GET /debug/pprof/", pprof.Index) |
| 1054 | mux.HandleFunc("GET /debug/pprof/cmdline", pprof.Cmdline) |
| 1055 | mux.HandleFunc("GET /debug/pprof/profile", pprof.Profile) |
| 1056 | mux.HandleFunc("GET /debug/pprof/symbol", pprof.Symbol) |
| 1057 | mux.HandleFunc("GET /debug/pprof/trace", pprof.Trace) |
| 1058 | return mux |
| 1059 | } |
| 1060 | |
| 1061 | // isValidGitSHA validates if a string looks like a valid git SHA hash. |
| 1062 | // Git SHAs are hexadecimal strings of at least 4 characters but typically 7, 8, or 40 characters. |
| 1063 | func isValidGitSHA(sha string) bool { |
| 1064 | // Git SHA must be a hexadecimal string with at least 4 characters |
| 1065 | if len(sha) < 4 || len(sha) > 40 { |
| 1066 | return false |
| 1067 | } |
| 1068 | |
| 1069 | // Check if the string only contains hexadecimal characters |
| 1070 | for _, char := range sha { |
| 1071 | if !(char >= '0' && char <= '9') && !(char >= 'a' && char <= 'f') && !(char >= 'A' && char <= 'F') { |
| 1072 | return false |
| 1073 | } |
| 1074 | } |
| 1075 | |
| 1076 | return true |
| 1077 | } |
| Philip Zeyliger | 25f6ff1 | 2025-05-02 04:24:10 +0000 | [diff] [blame] | 1078 | |
| 1079 | // /stream?from=N endpoint for Server-Sent Events |
| 1080 | func (s *Server) handleSSEStream(w http.ResponseWriter, r *http.Request) { |
| 1081 | w.Header().Set("Content-Type", "text/event-stream") |
| 1082 | w.Header().Set("Cache-Control", "no-cache") |
| 1083 | w.Header().Set("Connection", "keep-alive") |
| 1084 | w.Header().Set("Access-Control-Allow-Origin", "*") |
| 1085 | |
| 1086 | // Extract the 'from' parameter |
| 1087 | fromParam := r.URL.Query().Get("from") |
| 1088 | var fromIndex int |
| 1089 | var err error |
| 1090 | if fromParam != "" { |
| 1091 | fromIndex, err = strconv.Atoi(fromParam) |
| 1092 | if err != nil { |
| 1093 | http.Error(w, "Invalid 'from' parameter", http.StatusBadRequest) |
| 1094 | return |
| 1095 | } |
| 1096 | } |
| 1097 | |
| 1098 | // Ensure 'from' is valid |
| 1099 | currentCount := s.agent.MessageCount() |
| 1100 | if fromIndex < 0 { |
| 1101 | fromIndex = 0 |
| 1102 | } else if fromIndex > currentCount { |
| 1103 | fromIndex = currentCount |
| 1104 | } |
| 1105 | |
| 1106 | // Send the current state immediately |
| 1107 | state := s.getState() |
| 1108 | |
| 1109 | // Create JSON encoder |
| 1110 | encoder := json.NewEncoder(w) |
| 1111 | |
| 1112 | // Send state as an event |
| 1113 | fmt.Fprintf(w, "event: state\n") |
| 1114 | fmt.Fprintf(w, "data: ") |
| 1115 | encoder.Encode(state) |
| 1116 | fmt.Fprintf(w, "\n\n") |
| 1117 | |
| 1118 | if f, ok := w.(http.Flusher); ok { |
| 1119 | f.Flush() |
| 1120 | } |
| 1121 | |
| 1122 | // Create a context for the SSE stream |
| 1123 | ctx := r.Context() |
| 1124 | |
| Philip Zeyliger | 25f6ff1 | 2025-05-02 04:24:10 +0000 | [diff] [blame] | 1125 | // Setup heartbeat timer |
| 1126 | heartbeatTicker := time.NewTicker(45 * time.Second) |
| 1127 | defer heartbeatTicker.Stop() |
| 1128 | |
| 1129 | // Create a channel for messages |
| 1130 | messageChan := make(chan *loop.AgentMessage, 10) |
| 1131 | |
| Philip Zeyliger | eab12de | 2025-05-14 02:35:53 +0000 | [diff] [blame] | 1132 | // Create a channel for state transitions |
| 1133 | stateChan := make(chan *loop.StateTransition, 10) |
| 1134 | |
| Philip Zeyliger | 25f6ff1 | 2025-05-02 04:24:10 +0000 | [diff] [blame] | 1135 | // Start a goroutine to read messages without blocking the heartbeat |
| 1136 | go func() { |
| Pokey Rule | 9d7f0cc | 2025-05-20 11:43:26 +0100 | [diff] [blame] | 1137 | // Create an iterator to receive new messages as they arrive |
| 1138 | iterator := s.agent.NewIterator(ctx, fromIndex) // Start from the requested index |
| 1139 | defer iterator.Close() |
| Philip Zeyliger | 25f6ff1 | 2025-05-02 04:24:10 +0000 | [diff] [blame] | 1140 | defer close(messageChan) |
| 1141 | for { |
| 1142 | // This can block, but it's in its own goroutine |
| 1143 | newMessage := iterator.Next() |
| 1144 | if newMessage == nil { |
| 1145 | // No message available (likely due to context cancellation) |
| 1146 | slog.InfoContext(ctx, "No more messages available, ending message stream") |
| 1147 | return |
| 1148 | } |
| 1149 | |
| 1150 | select { |
| 1151 | case messageChan <- newMessage: |
| 1152 | // Message sent to channel |
| 1153 | case <-ctx.Done(): |
| 1154 | // Context cancelled |
| 1155 | return |
| 1156 | } |
| 1157 | } |
| 1158 | }() |
| 1159 | |
| Philip Zeyliger | eab12de | 2025-05-14 02:35:53 +0000 | [diff] [blame] | 1160 | // Start a goroutine to read state transitions |
| 1161 | go func() { |
| Pokey Rule | 9d7f0cc | 2025-05-20 11:43:26 +0100 | [diff] [blame] | 1162 | // Create an iterator to receive state transitions |
| 1163 | stateIterator := s.agent.NewStateTransitionIterator(ctx) |
| 1164 | defer stateIterator.Close() |
| Philip Zeyliger | eab12de | 2025-05-14 02:35:53 +0000 | [diff] [blame] | 1165 | defer close(stateChan) |
| 1166 | for { |
| 1167 | // This can block, but it's in its own goroutine |
| 1168 | newTransition := stateIterator.Next() |
| 1169 | if newTransition == nil { |
| 1170 | // No transition available (likely due to context cancellation) |
| 1171 | slog.InfoContext(ctx, "No more state transitions available, ending state stream") |
| 1172 | return |
| 1173 | } |
| 1174 | |
| 1175 | select { |
| 1176 | case stateChan <- newTransition: |
| 1177 | // Transition sent to channel |
| 1178 | case <-ctx.Done(): |
| 1179 | // Context cancelled |
| 1180 | return |
| 1181 | } |
| 1182 | } |
| 1183 | }() |
| 1184 | |
| Philip Zeyliger | 25f6ff1 | 2025-05-02 04:24:10 +0000 | [diff] [blame] | 1185 | // Stay connected and stream real-time updates |
| 1186 | for { |
| 1187 | select { |
| 1188 | case <-heartbeatTicker.C: |
| 1189 | // Send heartbeat event |
| 1190 | fmt.Fprintf(w, "event: heartbeat\n") |
| 1191 | fmt.Fprintf(w, "data: %d\n\n", time.Now().Unix()) |
| 1192 | |
| 1193 | // Flush to send the heartbeat immediately |
| 1194 | if f, ok := w.(http.Flusher); ok { |
| 1195 | f.Flush() |
| 1196 | } |
| 1197 | |
| 1198 | case <-ctx.Done(): |
| 1199 | // Client disconnected |
| 1200 | slog.InfoContext(ctx, "Client disconnected from SSE stream") |
| 1201 | return |
| 1202 | |
| Philip Zeyliger | eab12de | 2025-05-14 02:35:53 +0000 | [diff] [blame] | 1203 | case _, ok := <-stateChan: |
| 1204 | if !ok { |
| 1205 | // Channel closed |
| 1206 | slog.InfoContext(ctx, "State transition channel closed, ending SSE stream") |
| 1207 | return |
| 1208 | } |
| 1209 | |
| 1210 | // Get updated state |
| 1211 | state = s.getState() |
| 1212 | |
| 1213 | // Send updated state after the state transition |
| 1214 | fmt.Fprintf(w, "event: state\n") |
| 1215 | fmt.Fprintf(w, "data: ") |
| 1216 | encoder.Encode(state) |
| 1217 | fmt.Fprintf(w, "\n\n") |
| 1218 | |
| 1219 | // Flush to send the state immediately |
| 1220 | if f, ok := w.(http.Flusher); ok { |
| 1221 | f.Flush() |
| 1222 | } |
| 1223 | |
| Philip Zeyliger | 25f6ff1 | 2025-05-02 04:24:10 +0000 | [diff] [blame] | 1224 | case newMessage, ok := <-messageChan: |
| 1225 | if !ok { |
| 1226 | // Channel closed |
| 1227 | slog.InfoContext(ctx, "Message channel closed, ending SSE stream") |
| 1228 | return |
| 1229 | } |
| 1230 | |
| 1231 | // Send the new message as an event |
| 1232 | fmt.Fprintf(w, "event: message\n") |
| 1233 | fmt.Fprintf(w, "data: ") |
| 1234 | encoder.Encode(newMessage) |
| 1235 | fmt.Fprintf(w, "\n\n") |
| 1236 | |
| 1237 | // Get updated state |
| 1238 | state = s.getState() |
| 1239 | |
| 1240 | // Send updated state after the message |
| 1241 | fmt.Fprintf(w, "event: state\n") |
| 1242 | fmt.Fprintf(w, "data: ") |
| 1243 | encoder.Encode(state) |
| 1244 | fmt.Fprintf(w, "\n\n") |
| 1245 | |
| 1246 | // Flush to send the message and state immediately |
| 1247 | if f, ok := w.(http.Flusher); ok { |
| 1248 | f.Flush() |
| 1249 | } |
| 1250 | } |
| 1251 | } |
| 1252 | } |
| 1253 | |
| 1254 | // Helper function to get the current state |
| 1255 | func (s *Server) getState() State { |
| 1256 | serverMessageCount := s.agent.MessageCount() |
| 1257 | totalUsage := s.agent.TotalUsage() |
| 1258 | |
| Philip Zeyliger | 64f6046 | 2025-06-16 13:57:10 -0700 | [diff] [blame] | 1259 | // Get diff stats |
| 1260 | diffAdded, diffRemoved := s.agent.DiffStats() |
| 1261 | |
| Philip Zeyliger | 25f6ff1 | 2025-05-02 04:24:10 +0000 | [diff] [blame] | 1262 | return State{ |
| Philip Zeyliger | 49edc92 | 2025-05-14 09:45:45 -0700 | [diff] [blame] | 1263 | StateVersion: 2, |
| 1264 | MessageCount: serverMessageCount, |
| 1265 | TotalUsage: &totalUsage, |
| 1266 | Hostname: s.hostname, |
| 1267 | WorkingDir: getWorkingDir(), |
| 1268 | // TODO: Rename this field to sketch-base? |
| 1269 | InitialCommit: s.agent.SketchGitBase(), |
| Josh Bleecher Snyder | 19969a9 | 2025-06-05 14:34:02 -0700 | [diff] [blame] | 1270 | Slug: s.agent.Slug(), |
| Philip Zeyliger | 25f6ff1 | 2025-05-02 04:24:10 +0000 | [diff] [blame] | 1271 | BranchName: s.agent.BranchName(), |
| Philip Zeyliger | be7802a | 2025-06-04 20:15:25 +0000 | [diff] [blame] | 1272 | BranchPrefix: s.agent.BranchPrefix(), |
| Philip Zeyliger | 25f6ff1 | 2025-05-02 04:24:10 +0000 | [diff] [blame] | 1273 | OS: s.agent.OS(), |
| 1274 | OutsideHostname: s.agent.OutsideHostname(), |
| 1275 | InsideHostname: s.hostname, |
| 1276 | OutsideOS: s.agent.OutsideOS(), |
| 1277 | InsideOS: s.agent.OS(), |
| 1278 | OutsideWorkingDir: s.agent.OutsideWorkingDir(), |
| 1279 | InsideWorkingDir: getWorkingDir(), |
| 1280 | GitOrigin: s.agent.GitOrigin(), |
| banksean | cad67b0 | 2025-06-27 21:57:05 +0000 | [diff] [blame] | 1281 | GitUsername: s.agent.GitUsername(), |
| Philip Zeyliger | 25f6ff1 | 2025-05-02 04:24:10 +0000 | [diff] [blame] | 1282 | OutstandingLLMCalls: s.agent.OutstandingLLMCallCount(), |
| 1283 | OutstandingToolCalls: s.agent.OutstandingToolCalls(), |
| 1284 | SessionID: s.agent.SessionID(), |
| 1285 | SSHAvailable: s.sshAvailable, |
| 1286 | SSHError: s.sshError, |
| 1287 | InContainer: s.agent.IsInContainer(), |
| 1288 | FirstMessageIndex: s.agent.FirstMessageIndex(), |
| 1289 | AgentState: s.agent.CurrentStateName(), |
| Josh Bleecher Snyder | 112b923 | 2025-05-23 11:26:33 -0700 | [diff] [blame] | 1290 | TodoContent: s.agent.CurrentTodoContent(), |
| Philip Zeyliger | 0113be5 | 2025-06-07 23:53:41 +0000 | [diff] [blame] | 1291 | SkabandAddr: s.agent.SkabandAddr(), |
| philip.zeyliger | 6d3de48 | 2025-06-10 19:38:14 -0700 | [diff] [blame] | 1292 | LinkToGitHub: s.agent.LinkToGitHub(), |
| philip.zeyliger | 8773e68 | 2025-06-11 21:36:21 -0700 | [diff] [blame] | 1293 | SSHConnectionString: s.agent.SSHConnectionString(), |
| Philip Zeyliger | 64f6046 | 2025-06-16 13:57:10 -0700 | [diff] [blame] | 1294 | DiffLinesAdded: diffAdded, |
| 1295 | DiffLinesRemoved: diffRemoved, |
| Philip Zeyliger | 5f26a34 | 2025-07-04 01:30:29 +0000 | [diff] [blame] | 1296 | OpenPorts: s.getOpenPorts(), |
| banksean | 5ab8fb8 | 2025-07-09 12:34:55 -0700 | [diff] [blame] | 1297 | TokenContextWindow: s.agent.TokenContextWindow(), |
| Philip Zeyliger | 25f6ff1 | 2025-05-02 04:24:10 +0000 | [diff] [blame] | 1298 | } |
| 1299 | } |
| Philip Zeyliger | d3ac112 | 2025-05-14 02:54:18 +0000 | [diff] [blame] | 1300 | |
| Philip Zeyliger | 5f26a34 | 2025-07-04 01:30:29 +0000 | [diff] [blame] | 1301 | // getOpenPorts retrieves the current open ports from the agent |
| 1302 | func (s *Server) getOpenPorts() []Port { |
| 1303 | ports := s.agent.GetPorts() |
| 1304 | if ports == nil { |
| 1305 | return nil |
| 1306 | } |
| 1307 | |
| 1308 | result := make([]Port, len(ports)) |
| 1309 | for i, port := range ports { |
| 1310 | result[i] = Port{ |
| 1311 | Proto: port.Proto, |
| 1312 | Port: port.Port, |
| 1313 | Process: port.Process, |
| 1314 | Pid: port.Pid, |
| 1315 | } |
| 1316 | } |
| 1317 | return result |
| 1318 | } |
| 1319 | |
| Philip Zeyliger | d3ac112 | 2025-05-14 02:54:18 +0000 | [diff] [blame] | 1320 | func (s *Server) handleGitRawDiff(w http.ResponseWriter, r *http.Request) { |
| 1321 | if r.Method != "GET" { |
| 1322 | w.WriteHeader(http.StatusMethodNotAllowed) |
| 1323 | return |
| 1324 | } |
| 1325 | |
| Josh Bleecher Snyder | c5848f3 | 2025-05-28 18:50:58 +0000 | [diff] [blame] | 1326 | // Get the git repository root directory from agent |
| 1327 | repoDir := s.agent.RepoRoot() |
| Philip Zeyliger | d3ac112 | 2025-05-14 02:54:18 +0000 | [diff] [blame] | 1328 | |
| 1329 | // Parse query parameters |
| 1330 | query := r.URL.Query() |
| 1331 | commit := query.Get("commit") |
| 1332 | from := query.Get("from") |
| 1333 | to := query.Get("to") |
| 1334 | |
| 1335 | // If commit is specified, use commit^ and commit as from and to |
| 1336 | if commit != "" { |
| 1337 | from = commit + "^" |
| 1338 | to = commit |
| 1339 | } |
| 1340 | |
| 1341 | // Check if we have enough parameters |
| Philip Zeyliger | 272a90e | 2025-05-16 14:49:51 -0700 | [diff] [blame] | 1342 | if from == "" { |
| 1343 | http.Error(w, "Missing required parameter: either 'commit' or at least 'from'", http.StatusBadRequest) |
| Philip Zeyliger | d3ac112 | 2025-05-14 02:54:18 +0000 | [diff] [blame] | 1344 | return |
| 1345 | } |
| Philip Zeyliger | 272a90e | 2025-05-16 14:49:51 -0700 | [diff] [blame] | 1346 | // Note: 'to' can be empty to indicate working directory (unstaged changes) |
| Philip Zeyliger | d3ac112 | 2025-05-14 02:54:18 +0000 | [diff] [blame] | 1347 | |
| 1348 | // Call the git_tools function |
| 1349 | diff, err := git_tools.GitRawDiff(repoDir, from, to) |
| 1350 | if err != nil { |
| 1351 | http.Error(w, fmt.Sprintf("Error getting git diff: %v", err), http.StatusInternalServerError) |
| 1352 | return |
| 1353 | } |
| 1354 | |
| 1355 | // Return the result as JSON |
| 1356 | w.Header().Set("Content-Type", "application/json") |
| 1357 | if err := json.NewEncoder(w).Encode(diff); err != nil { |
| 1358 | http.Error(w, fmt.Sprintf("Error encoding response: %v", err), http.StatusInternalServerError) |
| 1359 | return |
| 1360 | } |
| 1361 | } |
| 1362 | |
| 1363 | func (s *Server) handleGitShow(w http.ResponseWriter, r *http.Request) { |
| 1364 | if r.Method != "GET" { |
| 1365 | w.WriteHeader(http.StatusMethodNotAllowed) |
| 1366 | return |
| 1367 | } |
| 1368 | |
| Josh Bleecher Snyder | c5848f3 | 2025-05-28 18:50:58 +0000 | [diff] [blame] | 1369 | // Get the git repository root directory from agent |
| 1370 | repoDir := s.agent.RepoRoot() |
| Philip Zeyliger | d3ac112 | 2025-05-14 02:54:18 +0000 | [diff] [blame] | 1371 | |
| 1372 | // Parse query parameters |
| 1373 | hash := r.URL.Query().Get("hash") |
| 1374 | if hash == "" { |
| 1375 | http.Error(w, "Missing required parameter: 'hash'", http.StatusBadRequest) |
| 1376 | return |
| 1377 | } |
| 1378 | |
| 1379 | // Call the git_tools function |
| 1380 | show, err := git_tools.GitShow(repoDir, hash) |
| 1381 | if err != nil { |
| 1382 | http.Error(w, fmt.Sprintf("Error running git show: %v", err), http.StatusInternalServerError) |
| 1383 | return |
| 1384 | } |
| 1385 | |
| 1386 | // Create a JSON response |
| 1387 | response := map[string]string{ |
| 1388 | "hash": hash, |
| 1389 | "output": show, |
| 1390 | } |
| 1391 | |
| 1392 | // Return the result as JSON |
| 1393 | w.Header().Set("Content-Type", "application/json") |
| 1394 | if err := json.NewEncoder(w).Encode(response); err != nil { |
| 1395 | http.Error(w, fmt.Sprintf("Error encoding response: %v", err), http.StatusInternalServerError) |
| 1396 | return |
| 1397 | } |
| 1398 | } |
| 1399 | |
| 1400 | func (s *Server) handleGitRecentLog(w http.ResponseWriter, r *http.Request) { |
| 1401 | if r.Method != "GET" { |
| 1402 | w.WriteHeader(http.StatusMethodNotAllowed) |
| 1403 | return |
| 1404 | } |
| 1405 | |
| Josh Bleecher Snyder | c5848f3 | 2025-05-28 18:50:58 +0000 | [diff] [blame] | 1406 | // Get the git repository root directory and initial commit from agent |
| 1407 | repoDir := s.agent.RepoRoot() |
| Philip Zeyliger | d3ac112 | 2025-05-14 02:54:18 +0000 | [diff] [blame] | 1408 | initialCommit := s.agent.SketchGitBaseRef() |
| 1409 | |
| 1410 | // Call the git_tools function |
| 1411 | log, err := git_tools.GitRecentLog(repoDir, initialCommit) |
| 1412 | if err != nil { |
| 1413 | http.Error(w, fmt.Sprintf("Error getting git log: %v", err), http.StatusInternalServerError) |
| 1414 | return |
| 1415 | } |
| 1416 | |
| 1417 | // Return the result as JSON |
| 1418 | w.Header().Set("Content-Type", "application/json") |
| 1419 | if err := json.NewEncoder(w).Encode(log); err != nil { |
| 1420 | http.Error(w, fmt.Sprintf("Error encoding response: %v", err), http.StatusInternalServerError) |
| 1421 | return |
| 1422 | } |
| 1423 | } |
| Philip Zeyliger | 272a90e | 2025-05-16 14:49:51 -0700 | [diff] [blame] | 1424 | |
| 1425 | func (s *Server) handleGitCat(w http.ResponseWriter, r *http.Request) { |
| 1426 | if r.Method != "GET" { |
| 1427 | w.WriteHeader(http.StatusMethodNotAllowed) |
| 1428 | return |
| 1429 | } |
| 1430 | |
| Josh Bleecher Snyder | c5848f3 | 2025-05-28 18:50:58 +0000 | [diff] [blame] | 1431 | // Get the git repository root directory from agent |
| 1432 | repoDir := s.agent.RepoRoot() |
| Philip Zeyliger | 272a90e | 2025-05-16 14:49:51 -0700 | [diff] [blame] | 1433 | |
| 1434 | // Parse query parameters |
| 1435 | query := r.URL.Query() |
| 1436 | path := query.Get("path") |
| 1437 | |
| 1438 | // Check if path is provided |
| 1439 | if path == "" { |
| 1440 | http.Error(w, "Missing required parameter: path", http.StatusBadRequest) |
| 1441 | return |
| 1442 | } |
| 1443 | |
| 1444 | // Get file content using GitCat |
| 1445 | content, err := git_tools.GitCat(repoDir, path) |
| Josh Bleecher Snyder | fadffe3 | 2025-07-10 00:08:38 +0000 | [diff] [blame^] | 1446 | switch { |
| 1447 | case err == nil: |
| 1448 | // continued below |
| 1449 | case errors.Is(err, os.ErrNotExist), strings.Contains(err.Error(), "not tracked by git"): |
| Josh Bleecher Snyder | 5c29b3e | 2025-07-08 18:07:28 +0000 | [diff] [blame] | 1450 | w.WriteHeader(http.StatusNoContent) |
| 1451 | return |
| Josh Bleecher Snyder | fadffe3 | 2025-07-10 00:08:38 +0000 | [diff] [blame^] | 1452 | default: |
| 1453 | http.Error(w, fmt.Sprintf("error reading file: %v", err), http.StatusInternalServerError) |
| Philip Zeyliger | 272a90e | 2025-05-16 14:49:51 -0700 | [diff] [blame] | 1454 | return |
| 1455 | } |
| 1456 | |
| 1457 | // Return the content as JSON for consistency with other endpoints |
| 1458 | w.Header().Set("Content-Type", "application/json") |
| 1459 | if err := json.NewEncoder(w).Encode(map[string]string{"output": content}); err != nil { |
| 1460 | http.Error(w, fmt.Sprintf("Error encoding response: %v", err), http.StatusInternalServerError) |
| 1461 | return |
| 1462 | } |
| 1463 | } |
| 1464 | |
| 1465 | func (s *Server) handleGitSave(w http.ResponseWriter, r *http.Request) { |
| 1466 | if r.Method != "POST" { |
| 1467 | w.WriteHeader(http.StatusMethodNotAllowed) |
| 1468 | return |
| 1469 | } |
| 1470 | |
| Josh Bleecher Snyder | c5848f3 | 2025-05-28 18:50:58 +0000 | [diff] [blame] | 1471 | // Get the git repository root directory from agent |
| 1472 | repoDir := s.agent.RepoRoot() |
| Philip Zeyliger | 272a90e | 2025-05-16 14:49:51 -0700 | [diff] [blame] | 1473 | |
| 1474 | // Parse request body |
| 1475 | var requestBody struct { |
| 1476 | Path string `json:"path"` |
| 1477 | Content string `json:"content"` |
| 1478 | } |
| 1479 | |
| 1480 | if err := json.NewDecoder(r.Body).Decode(&requestBody); err != nil { |
| 1481 | http.Error(w, fmt.Sprintf("Error parsing request body: %v", err), http.StatusBadRequest) |
| 1482 | return |
| 1483 | } |
| 1484 | defer r.Body.Close() |
| 1485 | |
| 1486 | // Check if path is provided |
| 1487 | if requestBody.Path == "" { |
| 1488 | http.Error(w, "Missing required parameter: path", http.StatusBadRequest) |
| 1489 | return |
| 1490 | } |
| 1491 | |
| 1492 | // Save file content using GitSaveFile |
| 1493 | err := git_tools.GitSaveFile(repoDir, requestBody.Path, requestBody.Content) |
| 1494 | if err != nil { |
| 1495 | http.Error(w, fmt.Sprintf("Error saving file: %v", err), http.StatusInternalServerError) |
| 1496 | return |
| 1497 | } |
| 1498 | |
| Philip Zeyliger | 75bd37d | 2025-05-22 18:49:14 +0000 | [diff] [blame] | 1499 | // Auto-commit the changes |
| 1500 | err = git_tools.AutoCommitDiffViewChanges(r.Context(), repoDir, requestBody.Path) |
| 1501 | if err != nil { |
| 1502 | http.Error(w, fmt.Sprintf("Error auto-committing changes: %v", err), http.StatusInternalServerError) |
| 1503 | return |
| 1504 | } |
| 1505 | |
| 1506 | // Detect git changes to push and notify user |
| Philip Zeyliger | 9bca61e | 2025-05-22 12:40:06 -0700 | [diff] [blame] | 1507 | if err = s.agent.DetectGitChanges(r.Context()); err != nil { |
| 1508 | http.Error(w, fmt.Sprintf("Error detecting git changes: %v", err), http.StatusInternalServerError) |
| 1509 | return |
| 1510 | } |
| Philip Zeyliger | 75bd37d | 2025-05-22 18:49:14 +0000 | [diff] [blame] | 1511 | |
| Philip Zeyliger | 272a90e | 2025-05-16 14:49:51 -0700 | [diff] [blame] | 1512 | // Return simple success response |
| 1513 | w.WriteHeader(http.StatusOK) |
| 1514 | w.Write([]byte("ok")) |
| 1515 | } |