feat(errors): per-account error modal with persisted error list

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
This commit is contained in:
2026-07-05 12:16:12 +07:00
co-authored by Claude Opus 4.8
parent 2623bc8815
commit 45b0ff2358
15 changed files with 448 additions and 12 deletions
+61
View File
@@ -0,0 +1,61 @@
package store
import (
"context"
"time"
)
// AccountError is one concrete error recorded during an account's run —
// folder-level, message-level, or account-level (connect/login).
type AccountError struct {
ID int64 `json:"id"`
AccountID int64 `json:"account_id"`
RunID int64 `json:"run_id"`
Kind string `json:"kind"` // folder | message | account
Folder string `json:"folder"`
MessageRef string `json:"message_ref"`
Error string `json:"error"`
CreatedAt time.Time `json:"created_at"`
}
// AddAccountError appends one error row for an account's current run.
func (s *Store) AddAccountError(ctx context.Context, accountID, runID int64, kind, folder, ref, msg string) error {
_, err := s.Pool.Exec(ctx,
`INSERT INTO account_errors (account_id, run_id, kind, folder, message_ref, error)
VALUES ($1,$2,$3,$4,$5,$6)`,
accountID, runID, kind, folder, ref, msg)
return err
}
// ClearAccountErrors removes an account's errors at the start of a run, so the
// list reflects only the current run (mirrors ResetAccountCounters).
func (s *Store) ClearAccountErrors(ctx context.Context, accountID int64) error {
_, err := s.Pool.Exec(ctx, `DELETE FROM account_errors WHERE account_id=$1`, accountID)
return err
}
// ListAccountErrors returns an account's errors in insertion order, for the
// per-account error modal.
func (s *Store) ListAccountErrors(ctx context.Context, accountID int64) ([]AccountError, error) {
rows, err := s.Pool.Query(ctx,
`SELECT id, account_id, run_id, kind, folder, message_ref, error, created_at
FROM account_errors WHERE account_id=$1 ORDER BY id`, accountID)
if err != nil {
return nil, err
}
defer rows.Close()
out := []AccountError{}
for rows.Next() {
var e AccountError
var runID *int64
if err := rows.Scan(&e.ID, &e.AccountID, &runID, &e.Kind, &e.Folder,
&e.MessageRef, &e.Error, &e.CreatedAt); err != nil {
return nil, err
}
if runID != nil {
e.RunID = *runID
}
out = append(out, e)
}
return out, rows.Err()
}
+75
View File
@@ -0,0 +1,75 @@
package store
import (
"context"
"testing"
)
// AddAccountError persists individual errors; ListAccountErrors returns them in
// insertion order; ClearAccountErrors wipes them for the next run.
func TestAccountErrorsAddListClear(t *testing.T) {
s := testStore(t)
ctx := context.Background()
epSrc, _ := s.CreateEndpoint(ctx, Endpoint{RoleLabel: "src", Host: "a", Port: 993, TLSMode: "ssl"})
epDst, _ := s.CreateEndpoint(ctx, Endpoint{RoleLabel: "dst", Host: "b", Port: 993, TLSMode: "ssl"})
taskID, _ := s.CreateTask(ctx, Task{Name: "t", SrcEndpointID: epSrc, DstEndpointID: epDst})
runID, _ := s.CreateRun(ctx, taskID, "manual")
accID, _ := s.CreateAccount(ctx, Account{TaskID: taskID, SrcLogin: "u", SrcPassEnc: "x", DstLogin: "u2", DstPassEnc: "y"})
if err := s.AddAccountError(ctx, accID, runID, "folder", "INBOX", "", "examine failed"); err != nil {
t.Fatalf("add folder: %v", err)
}
if err := s.AddAccountError(ctx, accID, runID, "message", "INBOX", "UID 42: hi", "append rejected"); err != nil {
t.Fatalf("add message: %v", err)
}
errs, err := s.ListAccountErrors(ctx, accID)
if err != nil {
t.Fatalf("list: %v", err)
}
if len(errs) != 2 {
t.Fatalf("len=%d want 2", len(errs))
}
if errs[0].Kind != "folder" || errs[0].Folder != "INBOX" || errs[0].Error != "examine failed" {
t.Fatalf("errs[0]=%+v", errs[0])
}
if errs[1].Kind != "message" || errs[1].MessageRef != "UID 42: hi" || errs[1].Error != "append rejected" {
t.Fatalf("errs[1]=%+v", errs[1])
}
if errs[0].ID >= errs[1].ID {
t.Fatalf("expected insertion order by id: %d then %d", errs[0].ID, errs[1].ID)
}
if err := s.ClearAccountErrors(ctx, accID); err != nil {
t.Fatalf("clear: %v", err)
}
errs, err = s.ListAccountErrors(ctx, accID)
if err != nil {
t.Fatalf("list after clear: %v", err)
}
if len(errs) != 0 {
t.Fatalf("after clear len=%d want 0", len(errs))
}
}
// Deleting an account cascades its errors (ON DELETE CASCADE).
func TestAccountErrorsCascadeOnAccountDelete(t *testing.T) {
s := testStore(t)
ctx := context.Background()
epSrc, _ := s.CreateEndpoint(ctx, Endpoint{RoleLabel: "src", Host: "a", Port: 993, TLSMode: "ssl"})
epDst, _ := s.CreateEndpoint(ctx, Endpoint{RoleLabel: "dst", Host: "b", Port: 993, TLSMode: "ssl"})
taskID, _ := s.CreateTask(ctx, Task{Name: "t", SrcEndpointID: epSrc, DstEndpointID: epDst})
accID, _ := s.CreateAccount(ctx, Account{TaskID: taskID, SrcLogin: "u", SrcPassEnc: "x", DstLogin: "u2", DstPassEnc: "y"})
_ = s.AddAccountError(ctx, accID, 0, "account", "", "", "login failed")
if err := s.DeleteAccount(ctx, accID); err != nil {
t.Fatalf("delete: %v", err)
}
var n int
if err := s.Pool.QueryRow(ctx, `SELECT count(*) FROM account_errors WHERE account_id=$1`, accID).Scan(&n); err != nil {
t.Fatalf("count: %v", err)
}
if n != 0 {
t.Fatalf("account_errors not cascaded: %d rows", n)
}
}
+1 -1
View File
@@ -17,7 +17,7 @@ func testStore(t *testing.T) *Store {
}
t.Cleanup(func() {
s.Pool.Exec(context.Background(),
`TRUNCATE endpoints, tasks, accounts, runs, migrated_messages RESTART IDENTITY CASCADE`)
`TRUNCATE endpoints, tasks, accounts, runs, migrated_messages, account_errors RESTART IDENTITY CASCADE`)
s.Pool.Close()
})
return s