Accounts finishing done_with_errors showed only a count and a single
last_error. This adds a modal listing every concrete error of the
account's most recent run.
- migration 0005: account_errors table (kind folder|message|account,
folder, message_ref, error, created_at; ON DELETE CASCADE; indexed)
- store: AddAccountError / ClearAccountErrors / ListAccountErrors
- copy: OnError callback captures per-message error text (previously
only counted), with a "UID N: subject" reference
- orchestrator: clear errors at run start; persist folder/message/
account errors; cap 500 rows/account/run with a suppressed-note row
- api: GET /api/tasks/{id}/accounts/{accountId}/errors
- web: AccountErrorsModal, clickable ERRORS count, api + styles
Verified: migration applies on Postgres 18; store add/list/clear and
cascade tests pass against real pg; backend build/vet/test green; web
tsc+vite build and oxlint clean.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01U9Eq4JtWjyNTv5qat3B3mM
42 lines
2.0 KiB
Go
42 lines
2.0 KiB
Go
package httpapi
|
|
|
|
import "net/http"
|
|
|
|
func (s *Server) Router() http.Handler {
|
|
mux := http.NewServeMux()
|
|
|
|
// открытые
|
|
mux.HandleFunc("GET /healthz", func(w http.ResponseWriter, r *http.Request) { w.WriteHeader(200) })
|
|
mux.HandleFunc("POST /api/login", s.handleLogin)
|
|
mux.HandleFunc("POST /api/logout", s.handleLogout)
|
|
|
|
// защищённые
|
|
api := http.NewServeMux()
|
|
api.HandleFunc("GET /api/endpoints", s.handleListEndpoints)
|
|
api.HandleFunc("POST /api/endpoints", s.handleCreateEndpoint)
|
|
api.HandleFunc("PUT /api/endpoints/{id}", s.handleUpdateEndpoint)
|
|
api.HandleFunc("GET /api/tasks", s.handleListTasks)
|
|
api.HandleFunc("POST /api/tasks", s.handleCreateTask)
|
|
api.HandleFunc("GET /api/tasks/{id}", s.handleGetTask)
|
|
api.HandleFunc("DELETE /api/tasks/{id}", s.handleDeleteTask)
|
|
api.HandleFunc("POST /api/tasks/{id}/accounts", s.handleCreateAccount)
|
|
api.HandleFunc("POST /api/tasks/{id}/probe", s.handleProbeFolders)
|
|
api.HandleFunc("PUT /api/tasks/{id}/folder-mapping", s.handleSetFolderMapping)
|
|
api.HandleFunc("PUT /api/tasks/{id}/schedule", s.handleSetSchedule)
|
|
api.HandleFunc("GET /api/tasks/{id}/runs", s.handleListRuns)
|
|
api.HandleFunc("GET /api/tasks/{id}/accounts/{accountId}/errors", s.handleListAccountErrors)
|
|
api.HandleFunc("DELETE /api/tasks/{id}/accounts/{accountId}", s.handleDeleteAccount)
|
|
api.HandleFunc("POST /api/tasks/{id}/import", s.handleImportCSV)
|
|
api.HandleFunc("POST /api/tasks/{id}/test", s.handleTestAccounts)
|
|
api.HandleFunc("POST /api/tasks/{id}/run", s.handleRun)
|
|
api.HandleFunc("POST /api/tasks/{id}/accounts/{accountId}/cancel", s.handleCancelAccount)
|
|
api.HandleFunc("POST /api/tasks/{id}/accounts/{accountId}/probe", s.handleProbeAccountFolders)
|
|
api.HandleFunc("PUT /api/tasks/{id}/accounts/{accountId}/folder-mapping", s.handleSetAccountFolderMapping)
|
|
mux.Handle("/api/", s.requireAuth(api))
|
|
mux.Handle("/ws", s.requireAuth(http.HandlerFunc(s.handleWS)))
|
|
|
|
// SPA static (fallback)
|
|
mux.Handle("/", s.staticHandler())
|
|
return mux
|
|
}
|