195 lines
6.6 KiB
Go
195 lines
6.6 KiB
Go
package middleware
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"log/slog"
|
|
"net/http"
|
|
"strings"
|
|
"time"
|
|
|
|
chimw "github.com/go-chi/chi/v5/middleware"
|
|
)
|
|
|
|
// webhookTriggerIDKeyType is unexported so foreign packages cannot collide on
|
|
// the context key — they go through SetWebhookTriggerID instead.
|
|
type webhookTriggerIDKeyType struct{}
|
|
|
|
var webhookTriggerIDKey = webhookTriggerIDKeyType{}
|
|
|
|
// SetWebhookTriggerID stashes the resolved trigger ID on the request context
|
|
// so the request logger can include it in the audit line without revealing
|
|
// the bearer token in the URL path. Called by the webhook handler right after
|
|
// the trigger row is looked up.
|
|
//
|
|
// Mutates `*r` in place so the wrapping middleware (which is still holding the
|
|
// original `*http.Request`) reads the value back out of context after
|
|
// ServeHTTP returns. Reassigning a local `r` variable would not propagate the
|
|
// new context back up to the caller, which is the trap a previous version of
|
|
// this helper fell into.
|
|
func SetWebhookTriggerID(r *http.Request, triggerID string) {
|
|
if triggerID == "" {
|
|
return
|
|
}
|
|
*r = *r.WithContext(context.WithValue(r.Context(), webhookTriggerIDKey, triggerID))
|
|
}
|
|
|
|
// webhookTriggerIDFromContext returns the trigger ID stashed by
|
|
// SetWebhookTriggerID, or "" when none was set.
|
|
func webhookTriggerIDFromContext(ctx context.Context) string {
|
|
v, _ := ctx.Value(webhookTriggerIDKey).(string)
|
|
return v
|
|
}
|
|
|
|
// webhookIngressPathPrefix is the public webhook ingress path. The path
|
|
// segment after this prefix IS a bearer credential, so the logger must
|
|
// redact it — see redactWebhookPath.
|
|
const webhookIngressPathPrefix = "/api/webhooks/autopilots/"
|
|
|
|
// redactWebhookPath returns a logger-safe version of a request path. For
|
|
// the autopilot webhook ingress path the trailing token segment is replaced
|
|
// with "[redacted]"; every other path passes through untouched.
|
|
//
|
|
// Why this exists: r.URL.Path for a successful webhook delivery is
|
|
// "/api/webhooks/autopilots/awt_<32-byte-base64>", and the token is the
|
|
// only credential gating the route. Without redaction, every successful
|
|
// delivery prints a replayable URL into the structured log stream.
|
|
func redactWebhookPath(path string) string {
|
|
if !strings.HasPrefix(path, webhookIngressPathPrefix) {
|
|
return path
|
|
}
|
|
rest := path[len(webhookIngressPathPrefix):]
|
|
if rest == "" {
|
|
return path
|
|
}
|
|
// Preserve any sub-path after the token (currently none, but defensive).
|
|
if slash := strings.IndexByte(rest, '/'); slash >= 0 {
|
|
return webhookIngressPathPrefix + "[redacted]" + rest[slash:]
|
|
}
|
|
return webhookIngressPathPrefix + "[redacted]"
|
|
}
|
|
|
|
// boundedBuffer captures up to Cap bytes from a stream then silently drops the
|
|
// rest. Used by RequestLogger so a large response body cannot blow up logger
|
|
// memory while we mirror just enough bytes to classify the response.
|
|
type boundedBuffer struct {
|
|
buf bytes.Buffer
|
|
cap int
|
|
}
|
|
|
|
func (b *boundedBuffer) Write(p []byte) (int, error) {
|
|
remain := b.cap - b.buf.Len()
|
|
if remain <= 0 {
|
|
return len(p), nil
|
|
}
|
|
if len(p) > remain {
|
|
b.buf.Write(p[:remain])
|
|
return len(p), nil
|
|
}
|
|
b.buf.Write(p)
|
|
return len(p), nil
|
|
}
|
|
|
|
func (b *boundedBuffer) Bytes() []byte { return b.buf.Bytes() }
|
|
|
|
// softNotFoundBodyCaptureLimit is the maximum number of body bytes the
|
|
// request logger inspects to decide whether a 404 is an expected stale-state
|
|
// signal (runtime/task deleted server-side). The JSON error envelope is small
|
|
// — 256 bytes is enough to see the "error" field — and the cap means an
|
|
// unbounded handler body cannot blow up logger memory.
|
|
const softNotFoundBodyCaptureLimit = 256
|
|
|
|
// softNotFoundMarkers are 404 response bodies the daemon emits routinely as
|
|
// part of normal lifecycle events: a runtime deleted from the UI, a task GC'd
|
|
// after an issue was removed, etc. Logging these at Warn turned production
|
|
// stderr into a flood whenever a runtime was deleted (see issue #2391). They
|
|
// stay machine-recognizable at Info, while genuine 4xx (wrong path, bad
|
|
// auth, real bugs) keep Warn.
|
|
var softNotFoundMarkers = []string{
|
|
"runtime not found",
|
|
"task not found",
|
|
}
|
|
|
|
// RequestLogger is a structured HTTP request logger using slog.
|
|
// It replaces Chi's built-in chimw.Logger with colored, structured output.
|
|
func RequestLogger(next http.Handler) http.Handler {
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
// Skip the hot liveness endpoint to keep logs readable.
|
|
if r.URL.Path == "/health" {
|
|
next.ServeHTTP(w, r)
|
|
return
|
|
}
|
|
|
|
start := time.Now()
|
|
ww := chimw.NewWrapResponseWriter(w, r.ProtoMajor)
|
|
|
|
// Capture a small body prefix so 404s can be classified by content.
|
|
// chimw.WrapResponseWriter exposes Tee for exactly this — the body
|
|
// keeps flowing to the client; we mirror up to N bytes for inspection.
|
|
bodyPrefix := &boundedBuffer{cap: softNotFoundBodyCaptureLimit}
|
|
ww.Tee(bodyPrefix)
|
|
|
|
next.ServeHTTP(ww, r)
|
|
|
|
duration := time.Since(start)
|
|
status := ww.Status()
|
|
|
|
attrs := []any{
|
|
"method", r.Method,
|
|
"path", redactWebhookPath(r.URL.Path),
|
|
"status", status,
|
|
"duration", duration.Round(time.Microsecond).String(),
|
|
}
|
|
if rid := chimw.GetReqID(r.Context()); rid != "" {
|
|
attrs = append(attrs, "request_id", rid)
|
|
}
|
|
if uid := r.Header.Get("X-User-ID"); uid != "" {
|
|
attrs = append(attrs, "user_id", uid)
|
|
}
|
|
if tid := webhookTriggerIDFromContext(r.Context()); tid != "" {
|
|
attrs = append(attrs, "webhook_trigger_id", tid)
|
|
}
|
|
if platform, version, os := ClientMetadataFromContext(r.Context()); platform != "" || version != "" || os != "" {
|
|
if platform != "" {
|
|
attrs = append(attrs, "client_platform", platform)
|
|
}
|
|
if version != "" {
|
|
attrs = append(attrs, "client_version", version)
|
|
}
|
|
if os != "" {
|
|
attrs = append(attrs, "client_os", os)
|
|
}
|
|
}
|
|
|
|
switch {
|
|
case status >= 500:
|
|
slog.Error("http request", attrs...)
|
|
case status == http.StatusNotFound && isSoftNotFound(bodyPrefix.Bytes()):
|
|
// Lifecycle 404 — runtime/task was deleted server-side. The daemon
|
|
// catches this exact body and triggers its own self-heal, so it is
|
|
// neither noise nor a bug; logging at Info keeps the signal in
|
|
// structured logs without flooding the warn channel.
|
|
slog.Info("http request", attrs...)
|
|
case status >= 400:
|
|
slog.Warn("http request", attrs...)
|
|
default:
|
|
slog.Info("http request", attrs...)
|
|
}
|
|
})
|
|
}
|
|
|
|
// isSoftNotFound reports whether the captured response body matches one of
|
|
// the expected stale-state 404 signals listed in softNotFoundMarkers.
|
|
func isSoftNotFound(body []byte) bool {
|
|
if len(body) == 0 {
|
|
return false
|
|
}
|
|
lower := strings.ToLower(string(body))
|
|
for _, marker := range softNotFoundMarkers {
|
|
if strings.Contains(lower, marker) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|