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

import (
	"context"
	"encoding/json"
	"fmt"
	"log/slog"
	"net/http"
	"os"
	"strings"
	"time"

	"github.com/thepeterstone/claudomator/internal/config"
	"github.com/thepeterstone/claudomator/internal/executor"
	"github.com/thepeterstone/claudomator/internal/notify"
	"github.com/thepeterstone/claudomator/internal/storage"
	"github.com/thepeterstone/claudomator/internal/task"
	webui "github.com/thepeterstone/claudomator/web"
	"github.com/google/uuid"
)

// questionStore is the minimal storage interface needed by handleAnswerQuestion.
type questionStore interface {
	GetTask(id string) (*task.Task, error)
	GetLatestExecution(taskID string) (*storage.Execution, error)
	UpdateTaskQuestion(taskID, questionJSON string) error
	UpdateTaskState(id string, newState task.State) error
	AppendTaskInteraction(taskID string, interaction task.Interaction) error
}

// Server provides the REST API and WebSocket endpoint for Claudomator.
type Server struct {
	store            *storage.DB
	logStore         logStore       // injectable for tests; defaults to store
	taskLogStore     taskLogStore   // injectable for tests; defaults to store
	questionStore    questionStore  // injectable for tests; defaults to store
	pool             *executor.Pool
	hub              *Hub
	logger           *slog.Logger
	mux              *http.ServeMux
	claudeBinPath    string         // path to claude binary; defaults to "claude"
	geminiBinPath    string         // path to gemini binary; defaults to "gemini"
	elaborateCmdPath string         // overrides claudeBinPath; used in tests
	validateCmdPath  string         // overrides claudeBinPath for validate; used in tests
	scripts          ScriptRegistry // optional; maps endpoint name → script path
	workDir          string         // working directory injected into elaborate system prompt
	workspaceRoot    string         // root directory for listing workspaces; defaults to "/workspace"
	notifier         notify.Notifier
	apiToken         string         // if non-empty, required for WebSocket (and REST) connections
	elaborateLimiter *ipRateLimiter // per-IP rate limiter for elaborate/validate endpoints
	webhookSecret    string         // HMAC-SHA256 secret for GitHub webhook validation
	projects         []config.Project // configured projects for webhook routing
	vapidPublicKey   string
	vapidPrivateKey  string
	vapidEmail       string
	pushStore        pushSubscriptionStore
	dropsDir         string
}

// SetAPIToken configures a bearer token that must be supplied to access the API.
func (s *Server) SetAPIToken(token string) {
	s.apiToken = token
}

// SetNotifier configures a notifier that is called on every task completion.
func (s *Server) SetNotifier(n notify.Notifier) {
	s.notifier = n
}

// SetGitHubWebhookConfig configures the GitHub webhook secret and project list.
func (s *Server) SetGitHubWebhookConfig(secret string, projects []config.Project) {
	s.webhookSecret = secret
	s.projects = projects
}

// SetWorkspaceRoot configures the root directory used by handleListWorkspaces.
func (s *Server) SetWorkspaceRoot(path string) {
	s.workspaceRoot = path
}

func NewServer(store *storage.DB, pool *executor.Pool, logger *slog.Logger, claudeBinPath, geminiBinPath string) *Server {
	wd, _ := os.Getwd()
	s := &Server{
		store:         store,
		logStore:      store,
		taskLogStore:  store,
		questionStore: store,
		pool:          pool,
		hub:           NewHub(),
		logger:        logger,
		mux:           http.NewServeMux(),
		claudeBinPath: claudeBinPath,
		geminiBinPath: geminiBinPath,
		workDir:       wd,
		workspaceRoot: "/workspace",
	}
	s.routes()
	return s
}

func (s *Server) Handler() http.Handler {
	return corsMiddleware(s.mux)
}

func (s *Server) StartHub() {
	go s.hub.Run()
	go s.forwardResults()
}

func (s *Server) routes() {
	s.mux.HandleFunc("POST /api/tasks/elaborate", s.handleElaborateTask)
	s.mux.HandleFunc("POST /api/tasks/validate", s.handleValidateTask)
	s.mux.HandleFunc("POST /api/tasks", s.handleCreateTask)
	s.mux.HandleFunc("GET /api/tasks", s.handleListTasks)
	s.mux.HandleFunc("GET /api/tasks/{id}", s.handleGetTask)
	s.mux.HandleFunc("POST /api/tasks/{id}/run", s.handleRunTask)
	s.mux.HandleFunc("POST /api/tasks/{id}/cancel", s.handleCancelTask)
	s.mux.HandleFunc("POST /api/tasks/{id}/accept", s.handleAcceptTask)
	s.mux.HandleFunc("POST /api/tasks/{id}/reject", s.handleRejectTask)
	s.mux.HandleFunc("DELETE /api/tasks/{id}", s.handleDeleteTask)
	s.mux.HandleFunc("GET /api/tasks/{id}/subtasks", s.handleListSubtasks)
	s.mux.HandleFunc("GET /api/tasks/{id}/executions", s.handleListExecutions)
	s.mux.HandleFunc("GET /api/executions", s.handleListRecentExecutions)
	s.mux.HandleFunc("GET /api/agents/status", s.handleGetAgentStatus)
	s.mux.HandleFunc("GET /api/executions/{id}", s.handleGetExecution)
	s.mux.HandleFunc("GET /api/executions/{id}/log", s.handleGetExecutionLog)
	s.mux.HandleFunc("GET /api/tasks/{id}/logs/stream", s.handleStreamTaskLogs)
	s.mux.HandleFunc("GET /api/executions/{id}/logs/stream", s.handleStreamLogs)
	s.mux.HandleFunc("POST /api/tasks/{id}/answer", s.handleAnswerQuestion)
	s.mux.HandleFunc("POST /api/tasks/{id}/resume", s.handleResumeTimedOutTask)
	s.mux.HandleFunc("POST /api/scripts/{name}", s.handleScript)
	s.mux.HandleFunc("GET /api/ws", s.handleWebSocket)
	s.mux.HandleFunc("GET /api/workspaces", s.handleListWorkspaces)
	s.mux.HandleFunc("GET /api/tasks/{id}/deployment-status", s.handleGetDeploymentStatus)
	s.mux.HandleFunc("GET /api/health", s.handleHealth)
	s.mux.HandleFunc("POST /api/webhooks/github", s.handleGitHubWebhook)
	s.mux.HandleFunc("GET /api/push/vapid-key", s.handleGetVAPIDKey)
	s.mux.HandleFunc("GET /api/push/sw.js", s.handleServiceWorker)
	s.mux.HandleFunc("POST /api/push/subscribe", s.handlePushSubscribe)
	s.mux.HandleFunc("DELETE /api/push/subscribe", s.handlePushUnsubscribe)
	s.mux.HandleFunc("GET /api/drops", s.handleListDrops)
	s.mux.HandleFunc("GET /api/drops/{filename}", s.handleGetDrop)
	s.mux.HandleFunc("POST /api/drops", s.handlePostDrop)
	s.mux.Handle("GET /", http.FileServerFS(webui.Files))
}

// forwardResults listens on the executor pool's result channel and broadcasts via WebSocket.
func (s *Server) forwardResults() {
	for result := range s.pool.Results() {
		s.processResult(result)
	}
}

// processResult broadcasts a task completion event via WebSocket and calls the notifier if set.
// It also parses git diff stats from the execution stdout log and persists them.
func (s *Server) processResult(result *executor.Result) {
	if result.Execution.StdoutPath != "" {
		if stats := parseChangestatFromFile(result.Execution.StdoutPath); stats != nil {
			if err := s.store.UpdateExecutionChangestats(result.Execution.ID, stats); err != nil {
				s.logger.Error("failed to store changestats", "execID", result.Execution.ID, "error", err)
			}
		}
	}

	event := map[string]interface{}{
		"type":      "task_completed",
		"task_id":   result.TaskID,
		"status":    result.Execution.Status,
		"exit_code": result.Execution.ExitCode,
		"cost_usd":  result.Execution.CostUSD,
		"error":     result.Execution.ErrorMsg,
		"timestamp": time.Now().UTC(),
	}
	data, _ := json.Marshal(event)
	s.hub.Broadcast(data)

	if s.notifier != nil {
		var taskName string
		if t, err := s.store.GetTask(result.TaskID); err == nil {
			taskName = t.Name
		}
		var dur string
		if !result.Execution.StartTime.IsZero() && !result.Execution.EndTime.IsZero() {
			dur = result.Execution.EndTime.Sub(result.Execution.StartTime).String()
		}
		ne := notify.Event{
			TaskID:   result.TaskID,
			TaskName: taskName,
			Status:   result.Execution.Status,
			CostUSD:  result.Execution.CostUSD,
			Duration: dur,
			Error:    result.Execution.ErrorMsg,
		}
		if err := s.notifier.Notify(ne); err != nil {
			s.logger.Error("notifier failed", "error", err)
		}
	}
}

// BroadcastQuestion sends a task_question event to all WebSocket clients.
func (s *Server) BroadcastQuestion(taskID, toolUseID string, questionData json.RawMessage) {
	event := map[string]interface{}{
		"type":        "task_question",
		"task_id":     taskID,
		"question_id": toolUseID,
		"data":        json.RawMessage(questionData),
		"timestamp":   time.Now().UTC(),
	}
	data, _ := json.Marshal(event)
	s.hub.Broadcast(data)
}

func (s *Server) handleDeleteTask(w http.ResponseWriter, r *http.Request) {
	id := r.PathValue("id")
	t, err := s.store.GetTask(id)
	if err != nil {
		writeJSON(w, http.StatusNotFound, map[string]string{"error": "task not found"})
		return
	}
	if t.State == task.StateRunning || t.State == task.StateQueued {
		writeJSON(w, http.StatusConflict, map[string]string{"error": "cannot delete a running or queued task"})
		return
	}
	if err := s.store.DeleteTask(id); err != nil {
		writeJSON(w, http.StatusInternalServerError, map[string]string{"error": err.Error()})
		return
	}
	w.WriteHeader(http.StatusNoContent)
}

func (s *Server) handleCancelTask(w http.ResponseWriter, r *http.Request) {
	taskID := r.PathValue("id")
	tk, err := s.store.GetTask(taskID)
	if err != nil {
		writeJSON(w, http.StatusNotFound, map[string]string{"error": "task not found"})
		return
	}
	// If the task is actively running in the pool, cancel it there.
	if s.pool.Cancel(taskID) {
		writeJSON(w, http.StatusOK, map[string]string{"message": "task cancellation requested", "task_id": taskID})
		return
	}
	// For non-running tasks (PENDING, QUEUED), transition directly to CANCELLED.
	if !task.ValidTransition(tk.State, task.StateCancelled) {
		writeJSON(w, http.StatusConflict, map[string]string{"error": "task cannot be cancelled from state " + string(tk.State)})
		return
	}
	if err := s.store.UpdateTaskState(taskID, task.StateCancelled); err != nil {
		writeJSON(w, http.StatusInternalServerError, map[string]string{"error": "failed to cancel task"})
		return
	}
	writeJSON(w, http.StatusOK, map[string]string{"message": "task cancelled", "task_id": taskID})
}

func (s *Server) handleAnswerQuestion(w http.ResponseWriter, r *http.Request) {
	taskID := r.PathValue("id")

	tk, err := s.questionStore.GetTask(taskID)
	if err != nil {
		writeJSON(w, http.StatusNotFound, map[string]string{"error": "task not found"})
		return
	}
	if tk.State != task.StateBlocked {
		writeJSON(w, http.StatusConflict, map[string]string{"error": "task is not blocked"})
		return
	}

	var input struct {
		Answer string `json:"answer"`
	}
	if err := json.NewDecoder(r.Body).Decode(&input); err != nil {
		writeJSON(w, http.StatusBadRequest, map[string]string{"error": "invalid JSON: " + err.Error()})
		return
	}
	if input.Answer == "" {
		writeJSON(w, http.StatusBadRequest, map[string]string{"error": "answer is required"})
		return
	}

	// Look up the session ID from the most recent execution.
	latest, err := s.questionStore.GetLatestExecution(taskID)
	if err != nil || latest.SessionID == "" {
		writeJSON(w, http.StatusInternalServerError, map[string]string{"error": "no resumable session found"})
		return
	}

	// Record the Q&A interaction before clearing the question.
	if tk.QuestionJSON != "" {
		var qData struct {
			Text    string   `json:"text"`
			Options []string `json:"options"`
		}
		if jsonErr := json.Unmarshal([]byte(tk.QuestionJSON), &qData); jsonErr == nil {
			interaction := task.Interaction{
				QuestionText: qData.Text,
				Options:      qData.Options,
				Answer:       input.Answer,
				AskedAt:      tk.UpdatedAt,
			}
			if appendErr := s.questionStore.AppendTaskInteraction(taskID, interaction); appendErr != nil {
				s.logger.Error("failed to append interaction", "taskID", taskID, "error", appendErr)
			}
		}
	}

	// Clear the question and transition to QUEUED.
	if err := s.questionStore.UpdateTaskQuestion(taskID, ""); err != nil {
		writeJSON(w, http.StatusInternalServerError, map[string]string{"error": "failed to clear question"})
		return
	}
	if err := s.questionStore.UpdateTaskState(taskID, task.StateQueued); err != nil {
		writeJSON(w, http.StatusInternalServerError, map[string]string{"error": "failed to queue task"})
		return
	}

	// Submit a resume execution. Carry the sandbox path so the runner uses
	// the same working directory where Claude stored its session files.
	resumeExec := &storage.Execution{
		ID:              uuid.New().String(),
		TaskID:          taskID,
		ResumeSessionID: latest.SessionID,
		ResumeAnswer:    input.Answer,
		SandboxDir:      latest.SandboxDir,
	}
	if err := s.pool.SubmitResume(context.Background(), tk, resumeExec); err != nil {
		writeJSON(w, http.StatusServiceUnavailable, map[string]string{"error": err.Error()})
		return
	}

	writeJSON(w, http.StatusOK, map[string]string{"message": "task queued for resume", "task_id": taskID})
}

// resumableStates are the task states from which a session-based resume is valid.
var resumableStates = map[task.State]string{
	task.StateTimedOut:       "Your previous execution timed out. Please continue where you left off and complete the task.",
	task.StateCancelled:      "Your previous execution was cancelled. Please continue where you left off and complete the task.",
	task.StateFailed:         "Your previous execution failed. Please review what happened and continue from where you left off.",
	task.StateBudgetExceeded: "Your previous execution exceeded its budget. Please continue where you left off and complete the task.",
}

func (s *Server) handleResumeTimedOutTask(w http.ResponseWriter, r *http.Request) {
	taskID := r.PathValue("id")

	tk, err := s.store.GetTask(taskID)
	if err != nil {
		writeJSON(w, http.StatusNotFound, map[string]string{"error": "task not found"})
		return
	}

	resumeMsg, resumable := resumableStates[tk.State]
	if !resumable {
		writeJSON(w, http.StatusConflict, map[string]string{"error": "task is not in a resumable state"})
		return
	}

	latest, err := s.store.GetLatestExecution(taskID)
	if err != nil || latest.SessionID == "" {
		writeJSON(w, http.StatusInternalServerError, map[string]string{"error": "no resumable session found"})
		return
	}

	s.store.UpdateTaskState(taskID, task.StateQueued)

	resumeExec := &storage.Execution{
		ID:              uuid.New().String(),
		TaskID:          taskID,
		ResumeSessionID: latest.SessionID,
		ResumeAnswer:    resumeMsg,
	}
	if err := s.pool.SubmitResume(context.Background(), tk, resumeExec); err != nil {
		writeJSON(w, http.StatusServiceUnavailable, map[string]string{"error": err.Error()})
		return
	}

	writeJSON(w, http.StatusAccepted, map[string]string{
		"message": "task queued for resume",
		"task_id": taskID,
	})
}

func (s *Server) handleListWorkspaces(w http.ResponseWriter, r *http.Request) {
	if s.apiToken != "" {
		token := r.URL.Query().Get("token")
		if token == "" {
			auth := r.Header.Get("Authorization")
			if strings.HasPrefix(auth, "Bearer ") {
				token = strings.TrimPrefix(auth, "Bearer ")
			}
		}
		if token != s.apiToken {
			http.Error(w, "unauthorized", http.StatusUnauthorized)
			return
		}
	}

	entries, err := os.ReadDir(s.workspaceRoot)
	if err != nil {
		writeJSON(w, http.StatusInternalServerError, map[string]string{"error": "failed to list workspaces"})
		return
	}
	var dirs []string
	for _, e := range entries {
		if e.IsDir() {
			dirs = append(dirs, s.workspaceRoot+"/"+e.Name())
		}
	}
	writeJSON(w, http.StatusOK, dirs)
}

func (s *Server) handleHealth(w http.ResponseWriter, r *http.Request) {
	lastUpdated, err := s.store.GetMaxUpdatedAt()
	if err != nil {
		s.logger.Error("failed to get max updated_at", "error", err)
		lastUpdated = time.Time{}
	}
	writeJSON(w, http.StatusOK, map[string]interface{}{
		"status":       "ok",
		"last_updated": lastUpdated,
	})
}

func (s *Server) handleCreateTask(w http.ResponseWriter, r *http.Request) {
	var input struct {
		Name             string           `json:"name"`
		Description      string           `json:"description"`
		ElaborationInput string           `json:"elaboration_input"`
		Project          string           `json:"project"`
		RepositoryURL    string           `json:"repository_url"`
		Agent            task.AgentConfig `json:"agent"`
		Claude           task.AgentConfig `json:"claude"` // legacy alias
		Timeout          string           `json:"timeout"`
		Priority         string           `json:"priority"`
		Tags             []string         `json:"tags"`
		ParentTaskID     string           `json:"parent_task_id"`
	}
	if err := json.NewDecoder(r.Body).Decode(&input); err != nil {
		writeJSON(w, http.StatusBadRequest, map[string]string{"error": "invalid JSON: " + err.Error()})
		return
	}

	// Accept legacy "claude" key when "agent" is not provided.
	if input.Agent.Instructions == "" && input.Claude.Instructions != "" {
		input.Agent = input.Claude
	}

	now := time.Now().UTC()
	t := &task.Task{
		ID:               uuid.New().String(),
		Name:             input.Name,
		Description:      input.Description,
		ElaborationInput: input.ElaborationInput,
		Project:          input.Project,
		RepositoryURL:    input.RepositoryURL,
		Agent:            input.Agent,
		Priority:     task.Priority(input.Priority),
		Tags:         input.Tags,
		DependsOn:    []string{},
		Retry:        task.RetryConfig{MaxAttempts: 1, Backoff: "exponential"},
		State:        task.StatePending,
		CreatedAt:    now,
		UpdatedAt:    now,
		ParentTaskID: input.ParentTaskID,
	}

	// Fallback for repository_url if only provided in Agent config
	if t.RepositoryURL == "" && input.Agent.ProjectDir != "" {
		t.RepositoryURL = input.Agent.ProjectDir
	}
	if t.Agent.Type == "" {
		t.Agent.Type = "claude"
	}
	if t.Priority == "" {
		t.Priority = task.PriorityNormal
	}
	if t.Tags == nil {
		t.Tags = []string{}
	}
	if input.Timeout != "" {
		dur, err := time.ParseDuration(input.Timeout)
		if err != nil {
			writeJSON(w, http.StatusBadRequest, map[string]string{"error": "invalid timeout: " + err.Error()})
			return
		}
		t.Timeout.Duration = dur
	}

	if err := task.Validate(t); err != nil {
		writeJSON(w, http.StatusBadRequest, map[string]string{"error": err.Error()})
		return
	}
	if err := s.store.CreateTask(t); err != nil {
		writeJSON(w, http.StatusInternalServerError, map[string]string{"error": err.Error()})
		return
	}

	writeJSON(w, http.StatusCreated, t)
}

// validTaskStates is the set of all known task states for query param validation.
var validTaskStates = map[task.State]bool{
	task.StatePending:        true,
	task.StateQueued:         true,
	task.StateRunning:        true,
	task.StateReady:          true,
	task.StateCompleted:      true,
	task.StateFailed:         true,
	task.StateTimedOut:       true,
	task.StateCancelled:      true,
	task.StateBudgetExceeded: true,
	task.StateBlocked:        true,
}

func (s *Server) handleListTasks(w http.ResponseWriter, r *http.Request) {
	filter := storage.TaskFilter{}
	if state := r.URL.Query().Get("state"); state != "" {
		ts := task.State(state)
		if !validTaskStates[ts] {
			writeJSON(w, http.StatusBadRequest, map[string]string{"error": "invalid state: " + state})
			return
		}
		filter.State = ts
	}
	if since := r.URL.Query().Get("since"); since != "" {
		t, err := time.Parse(time.RFC3339, since)
		if err != nil {
			writeJSON(w, http.StatusBadRequest, map[string]string{"error": "invalid since: " + since})
			return
		}
		filter.Since = t
	}
	tasks, err := s.store.ListTasks(filter)
	if err != nil {
		writeJSON(w, http.StatusInternalServerError, map[string]string{"error": err.Error()})
		return
	}
	if tasks == nil {
		tasks = []*task.Task{}
	}
	views := make([]*taskView, len(tasks))
	for i, tk := range tasks {
		views[i] = s.enrichTask(tk)
	}
	writeJSON(w, http.StatusOK, views)
}

func (s *Server) handleGetTask(w http.ResponseWriter, r *http.Request) {
	id := r.PathValue("id")
	t, err := s.store.GetTask(id)
	if err != nil {
		writeJSON(w, http.StatusNotFound, map[string]string{"error": "task not found"})
		return
	}
	writeJSON(w, http.StatusOK, s.enrichTask(t))
}
func (s *Server) handleRunTask(w http.ResponseWriter, r *http.Request) {
	id := r.PathValue("id")
	agentParam := r.URL.Query().Get("agent") // Use a different name to avoid confusion

	// 1. Retrieve the original task to preserve agent config if not "auto".
	originalTask, err := s.store.GetTask(id)
	if err != nil {
		writeJSON(w, http.StatusNotFound, map[string]string{"error": "task not found"})
		return
	}

	// 2. Reset the task for retry, which clears the agent config.
	t, err := s.store.ResetTaskForRetry(id)
	if err != nil {
		if strings.Contains(err.Error(), "not found") {
			writeJSON(w, http.StatusNotFound, map[string]string{"error": "task not found"})
			return
		}
		if strings.Contains(err.Error(), "invalid state transition") {
			writeJSON(w, http.StatusConflict, map[string]string{"error": err.Error()})
			return
		}
		writeJSON(w, http.StatusInternalServerError, map[string]string{"error": err.Error()})
		return
	}

	// 3. Restore original agent type and model if not explicitly overridden by query parameter.
	// Only restore if original task had a specific agent type set and query parameter is not overriding it.
	if originalTask.Agent.Type != "" && agentParam == "" {
		t.Agent.Type = originalTask.Agent.Type
		t.Agent.Model = originalTask.Agent.Model
	}

	// 4. Handle agent query parameter override.
	if agentParam != "" && agentParam != "auto" {
		t.Agent.Type = agentParam
	}

	// 5. Update task agent in DB if it has changed from the reset (only if originalTask.Agent.Type was explicitly set, or agentParam was set).
	if originalTask.Agent.Type != t.Agent.Type || originalTask.Agent.Model != t.Agent.Model {
		if err := s.store.UpdateTaskAgent(t.ID, t.Agent); err != nil {
			s.logger.Error("failed to update task agent config", "error", err, "taskID", t.ID)
			writeJSON(w, http.StatusInternalServerError, map[string]string{"error": err.Error()})
			return
		}
	}
	// The task `t` now has the correct agent configuration.

	if err := s.pool.Submit(context.Background(), t); err != nil {
		writeJSON(w, http.StatusServiceUnavailable, map[string]string{"error": fmt.Sprintf("executor pool: %v", err)})
		return
	}

	writeJSON(w, http.StatusAccepted, map[string]string{
		"message": "task queued for execution",
		"task_id": id,
	})
}

func (s *Server) handleAcceptTask(w http.ResponseWriter, r *http.Request) {
	id := r.PathValue("id")
	t, err := s.store.GetTask(id)
	if err != nil {
		writeJSON(w, http.StatusNotFound, map[string]string{"error": "task not found"})
		return
	}
	if !task.ValidTransition(t.State, task.StateCompleted) {
		writeJSON(w, http.StatusConflict, map[string]string{
			"error": fmt.Sprintf("task cannot be accepted from state %s", t.State),
		})
		return
	}
	if err := s.store.UpdateTaskState(id, task.StateCompleted); err != nil {
		writeJSON(w, http.StatusInternalServerError, map[string]string{"error": err.Error()})
		return
	}
	writeJSON(w, http.StatusOK, map[string]string{"message": "task accepted", "task_id": id})
}

func (s *Server) handleRejectTask(w http.ResponseWriter, r *http.Request) {
	id := r.PathValue("id")
	t, err := s.store.GetTask(id)
	if err != nil {
		writeJSON(w, http.StatusNotFound, map[string]string{"error": "task not found"})
		return
	}
	if !task.ValidTransition(t.State, task.StatePending) {
		writeJSON(w, http.StatusConflict, map[string]string{
			"error": fmt.Sprintf("task cannot be rejected from state %s", t.State),
		})
		return
	}
	var input struct {
		Comment string `json:"comment"`
	}
	if err := json.NewDecoder(r.Body).Decode(&input); err != nil {
		writeJSON(w, http.StatusBadRequest, map[string]string{"error": "invalid JSON: " + err.Error()})
		return
	}
	if err := s.store.RejectTask(id, input.Comment); err != nil {
		writeJSON(w, http.StatusInternalServerError, map[string]string{"error": err.Error()})
		return
	}
	writeJSON(w, http.StatusOK, map[string]string{"message": "task rejected", "task_id": id})
}

func (s *Server) handleListSubtasks(w http.ResponseWriter, r *http.Request) {
	parentID := r.PathValue("id")
	tasks, err := s.store.ListSubtasks(parentID)
	if err != nil {
		writeJSON(w, http.StatusInternalServerError, map[string]string{"error": err.Error()})
		return
	}
	if tasks == nil {
		tasks = []*task.Task{}
	}
	writeJSON(w, http.StatusOK, tasks)
}

func (s *Server) handleListExecutions(w http.ResponseWriter, r *http.Request) {
	taskID := r.PathValue("id")
	execs, err := s.store.ListExecutions(taskID)
	if err != nil {
		writeJSON(w, http.StatusInternalServerError, map[string]string{"error": err.Error()})
		return
	}
	if execs == nil {
		execs = []*storage.Execution{}
	}
	writeJSON(w, http.StatusOK, execs)
}

func (s *Server) handleGetExecution(w http.ResponseWriter, r *http.Request) {
	id := r.PathValue("id")
	exec, err := s.store.GetExecution(id)
	if err != nil {
		writeJSON(w, http.StatusNotFound, map[string]string{"error": "execution not found"})
		return
	}
	writeJSON(w, http.StatusOK, exec)
}

func writeJSON(w http.ResponseWriter, status int, v interface{}) {
	w.Header().Set("Content-Type", "application/json")
	w.WriteHeader(status)
	json.NewEncoder(w).Encode(v)
}

func corsMiddleware(next http.Handler) http.Handler {
	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
		w.Header().Set("Access-Control-Allow-Origin", "*")
		w.Header().Set("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE, OPTIONS")
		w.Header().Set("Access-Control-Allow-Headers", "Content-Type, Authorization")
		if r.Method == "OPTIONS" {
			w.WriteHeader(http.StatusOK)
			return
		}
		next.ServeHTTP(w, r)
	})
}