mirror of
https://github.com/shankar0123/certctl.git
synced 2026-06-07 22:11:38 +00:00
36e722ba12
Uncommitted migration work at the time of branch cleanup. Tagged as checkpoint/m1-migration-wip so the commit survives git gc --prune=now. Session context: Phase 3 Part B+C of the M-1 sentinel error migration was in progress. 38 modified files, 4 new files (errors.go + errors_test.go in internal/service/ and internal/api/handler/). Resume from this commit via 'git checkout checkpoint/m1-migration-wip'.
113 lines
3.3 KiB
Go
113 lines
3.3 KiB
Go
package handler
|
|
|
|
import (
|
|
"context"
|
|
"log/slog"
|
|
"net/http"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/shankar0123/certctl/internal/api/middleware"
|
|
"github.com/shankar0123/certctl/internal/domain"
|
|
)
|
|
|
|
// AuditService defines the service interface for audit event operations.
|
|
type AuditService interface {
|
|
ListAuditEvents(ctx context.Context, page, perPage int) ([]domain.AuditEvent, int64, error)
|
|
GetAuditEvent(ctx context.Context, id string) (*domain.AuditEvent, error)
|
|
}
|
|
|
|
// AuditHandler handles HTTP requests for audit event operations.
|
|
type AuditHandler struct {
|
|
svc AuditService
|
|
}
|
|
|
|
// NewAuditHandler creates a new AuditHandler with a service dependency.
|
|
func NewAuditHandler(svc AuditService) AuditHandler {
|
|
return AuditHandler{svc: svc}
|
|
}
|
|
|
|
// ListAuditEvents lists audit events.
|
|
// GET /api/v1/audit?page=1&per_page=50
|
|
func (h AuditHandler) ListAuditEvents(w http.ResponseWriter, r *http.Request) {
|
|
if r.Method != http.MethodGet {
|
|
Error(w, http.StatusMethodNotAllowed, "Method not allowed")
|
|
return
|
|
}
|
|
|
|
requestID := middleware.GetRequestID(r.Context())
|
|
|
|
page := 1
|
|
perPage := 50
|
|
query := r.URL.Query()
|
|
if p := query.Get("page"); p != "" {
|
|
if parsed, err := strconv.Atoi(p); err == nil && parsed > 0 {
|
|
page = parsed
|
|
}
|
|
}
|
|
if pp := query.Get("per_page"); pp != "" {
|
|
if parsed, err := strconv.Atoi(pp); err == nil && parsed > 0 && parsed <= 500 {
|
|
perPage = parsed
|
|
}
|
|
}
|
|
|
|
events, total, err := h.svc.ListAuditEvents(r.Context(), page, perPage)
|
|
if err != nil {
|
|
ErrorWithRequestID(w, http.StatusInternalServerError, "Failed to list audit events", requestID)
|
|
return
|
|
}
|
|
|
|
response := PagedResponse{
|
|
Data: events,
|
|
Total: total,
|
|
Page: page,
|
|
PerPage: perPage,
|
|
}
|
|
|
|
JSON(w, http.StatusOK, response)
|
|
}
|
|
|
|
// GetAuditEvent retrieves a single audit event by ID.
|
|
// GET /api/v1/audit/{id}
|
|
func (h AuditHandler) GetAuditEvent(w http.ResponseWriter, r *http.Request) {
|
|
if r.Method != http.MethodGet {
|
|
Error(w, http.StatusMethodNotAllowed, "Method not allowed")
|
|
return
|
|
}
|
|
|
|
requestID := middleware.GetRequestID(r.Context())
|
|
|
|
id := strings.TrimPrefix(r.URL.Path, "/api/v1/audit/")
|
|
parts := strings.Split(id, "/")
|
|
if len(parts) == 0 || parts[0] == "" {
|
|
ErrorWithRequestID(w, http.StatusBadRequest, "Audit event ID is required", requestID)
|
|
return
|
|
}
|
|
id = parts[0]
|
|
|
|
event, err := h.svc.GetAuditEvent(r.Context(), id)
|
|
if err != nil {
|
|
// M-1 (P2): dispatch routes through errToStatus. Pre-M-1 this branch was
|
|
// a blanket `any error → 404 Audit event not found` shortcut — which
|
|
// silently demoted transient DB failures from the service's auditRepo.List
|
|
// wrap to 404 Not Found with no observable external signal. Post-M-1:
|
|
// service/audit.go GetAuditEvent only wraps the genuine zero-events path
|
|
// with service.ErrNotFound via %w, and the repo.List wrap surfaces without
|
|
// that sentinel — so errors.Is(err, service.ErrNotFound) picks up the real
|
|
// 404s and everything else correctly surfaces as 500 with server-side
|
|
// slog.Error capture (F-002 redacted-500 pattern preserved).
|
|
status := errToStatus(err)
|
|
if status == http.StatusInternalServerError {
|
|
slog.Error("GetAuditEvent failed", "audit_event_id", id, "error", err.Error())
|
|
}
|
|
msg := "Failed to get audit event"
|
|
if status == http.StatusNotFound {
|
|
msg = "Audit event not found"
|
|
}
|
|
ErrorWithRequestID(w, status, msg, requestID)
|
|
return
|
|
}
|
|
|
|
JSON(w, http.StatusOK, event)
|
|
}
|