* feat(observability): OpenTelemetry logs+traces with secret redaction Part of #265. Adds opt-in OpenTelemetry (logs + traces) alongside the existing stderr + opslog pipeline, plus secret redaction on all sinks. Default-off: with no OTEL_* / SILO_OTEL_ENABLED config, behavior is unchanged. Bootstrap (internal/telemetry): - Setup() builds one shared resource, a TracerProvider (parent-based trace-id ratio sampler), a LoggerProvider, and the W3C TraceContext+Baggage propagator from env. It installs NO MeterProvider — metrics stay on Prometheus, and the built-in no-op global MeterProvider keeps the trace instrumentation libs from double-emitting. Shutdown is deferred with a flush timeout. - Logs are bridged via otelslog fan-out (slog.MultiHandler), level-gated by the shared LevelVar and best-effort so a failing collector can't break the console or DB branches. stderr + opslog stay untouched. Secret redaction (internal/logredact): - A slog.Handler masks secret-keyed attributes (password, token, api_key, authorization, cookie, ...) — including .With-bound attrs, nested groups, secret-keyed group subtrees, and values behind a LogValuer — on the console and OTLP sinks, with a no-op fast path when a record has no secret keys. opslog.shouldRedact delegates to logredact.SecretKey so all sinks share one marker list. Rotation is infra-managed (no custom file sink): container runtime for stderr, collector/backend for OTLP, opslog partition-pruning for the DB. Documented in docs/architecture/observability.md. Verification: go build ./..., go vet, gofmt -l — clean; go test ./internal/telemetry/ ./internal/logredact/ -race pass. AI-use disclosure: implemented with AI assistance (Claude Code), including adversarial reviews that hardened the bootstrap and fixed two redaction leak paths; reviewed by the author. * refactor(observability): slog context+component sweep, sloglint gate (phase 3) Part of #265. Builds on the OTel bootstrap + redaction commit. Standardizes every log call site onto the context-carrying slog variants so records correlate with the active OpenTelemetry trace, and locks the standard in with a machine gate so future code (human- or AI-authored) can't drift back. - Call-site sweep: converted the remaining slog.<Level>(...) calls to the slog.<Level>Context(ctx, ...) form wherever a context.Context is in scope (background/init calls with no ctx are left as-is), across 183 files. Applied via a type-aware AST codemod. Log levels and message strings are preserved verbatim; a component attr (canonical per-package name) is added to direct package-level slog calls. Bound-logger calls keep their existing .With bindings. The main.go and telemetry package conversions rode with their file in the previous commit to keep each file within a single commit. - Enforcement (.golangci.yml): enable sloglint with context=scope, static-msg, key-naming-case=snake, no-mixed-args. After the sweep all four report zero violations repo-wide (tests included), so make lint / CI now blocks any regression to the non-context form. The gate ships with the sweep because it cannot be green until the legacy sites are converted. Metrics remain on Prometheus; no behavior change to /metrics or Grafana. Verification: go build ./..., go vet ./..., gofmt -l — clean; sloglint (all 4 rules) 0 violations repo-wide; log levels verified unchanged. AI-use disclosure: implemented with AI assistance (Claude Code), including the codemod; reviewed by the author. * fix(observability): honor per-signal OTLP protocol and secret WithGroup names Two Codex review findings on PR #290: - telemetry: OTEL_EXPORTER_OTLP_{TRACES,LOGS}_PROTOCOL now override the generic OTEL_EXPORTER_OTLP_PROTOCOL per signal, so mixed collector setups (e.g. HTTP logs + gRPC traces) build the right exporter. - logredact: entering a group whose name is secret-bearing (e.g. WithGroup("authorization")) now masks every leaf in that subtree, matching how slog.Group("authorization", ...) is masked as a whole. * fix(observability): address review feedback on telemetry bootstrap - Telemetry setup failure no longer kills boot: Setup returns usable no-op providers alongside the error and main logs and continues with telemetry disabled, honoring the best-effort contract. - Honor OTEL_TRACES_SAMPLER (always_on/off, traceidratio, parentbased_* variants); unsupported values fall back to parentbased_traceidratio. - Attach node identity as semconv service.instance.id instead of the non-semconv node.name. - Rename opslog retention-scope log attrs to target_component/target_level so they no longer collide with the canonical component routing key, and tag those lines with component=opslog. - Fix stale levelGated comment casing; use WarnContext in the telemetry shutdown defer; document the LogValuer double-resolve on the redaction slow path. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: Quick <31828688+Quick104@users.noreply.github.com> Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
436 lines
15 KiB
Go
436 lines
15 KiB
Go
package abs
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"io"
|
|
"log/slog"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/go-chi/chi/v5"
|
|
"github.com/oklog/ulid/v2"
|
|
)
|
|
|
|
// collectionBody is the JSON body for POST and PATCH /collections[/{id}].
|
|
// All fields are optional on PATCH; name is required on POST (checked
|
|
// in the handler, not via tag-driven validation).
|
|
type collectionBody struct {
|
|
Name *string `json:"name"`
|
|
Description *string `json:"description"`
|
|
IsPublic *bool `json:"isPublic"`
|
|
}
|
|
|
|
// handleCreateCollection — POST /collections.
|
|
// Body: {name, description?, isPublic?}. Returns the created collection
|
|
// in full-shape (with an empty books[] array).
|
|
func (h *Handler) handleCreateCollection(w http.ResponseWriter, r *http.Request) {
|
|
a, ok := absAuthFrom(r)
|
|
if !ok || a.UserID == "" {
|
|
http.Error(w, "unauthorized", http.StatusUnauthorized)
|
|
return
|
|
}
|
|
if h.deps.CollectionStore == nil {
|
|
http.Error(w, "collection store unavailable", http.StatusServiceUnavailable)
|
|
return
|
|
}
|
|
|
|
var body collectionBody
|
|
if err := json.NewDecoder(io.LimitReader(r.Body, 1<<20)).Decode(&body); err != nil {
|
|
http.Error(w, "invalid body", http.StatusBadRequest)
|
|
return
|
|
}
|
|
if body.Name == nil {
|
|
http.Error(w, "name required", http.StatusBadRequest)
|
|
return
|
|
}
|
|
name := strings.TrimSpace(*body.Name)
|
|
if name == "" {
|
|
http.Error(w, "name required", http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
c := Collection{
|
|
ID: ulid.Make().String(),
|
|
UserID: a.UserID,
|
|
ProfileID: a.ProfileID,
|
|
Name: name,
|
|
}
|
|
if body.Description != nil {
|
|
c.Description = *body.Description
|
|
}
|
|
if body.IsPublic != nil {
|
|
c.IsPublic = *body.IsPublic
|
|
}
|
|
if err := h.deps.CollectionStore.CreateCollection(r.Context(), c); err != nil {
|
|
slog.ErrorContext(r.Context(), "abs collection create failed", "component", "audiobooks", "err", err, "user", a.UserID)
|
|
http.Error(w, "collection persist failed", http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
// Re-fetch to pick up server-set timestamps.
|
|
persisted, err := h.deps.CollectionStore.GetCollection(r.Context(), c.ID)
|
|
if errors.Is(err, ErrNotFound) {
|
|
persisted = c
|
|
} else if err != nil {
|
|
slog.WarnContext(r.Context(), "abs collection get-after-create failed", "component", "audiobooks", "err", err, "id", c.ID)
|
|
persisted = c
|
|
}
|
|
writeJSON(w, http.StatusOK, h.collectionFullShape(r, persisted))
|
|
}
|
|
|
|
// collectionFullShape renders a Collection in full-shape, hydrating
|
|
// books[] via MediaStore. Errors during hydration degrade to bare
|
|
// {id, libraryId} entries so the response always reflects DB truth.
|
|
func (h *Handler) collectionFullShape(r *http.Request, c Collection) map[string]any {
|
|
books := h.collectionBooks(r, c.ID)
|
|
return collectionToABS(c, books)
|
|
}
|
|
|
|
// collectionBooks resolves the items in a collection to wire-shape book
|
|
// entries. Each entry is a full LibraryItem (id, libraryId, mediaType,
|
|
// media{coverPath, metadata...}, ...) — LazyCollectionCard renders the
|
|
// cover stack via CollectionCover, which reads book.media.coverPath
|
|
// through the globals/getLibraryItemCoverSrc getter. Bare {id, title}
|
|
// entries make the cover stack empty.
|
|
func (h *Handler) collectionBooks(r *http.Request, collectionID string) []map[string]any {
|
|
if h.deps.CollectionStore == nil {
|
|
return []map[string]any{}
|
|
}
|
|
rows, err := h.deps.CollectionStore.ListCollectionItems(r.Context(), collectionID)
|
|
if err != nil {
|
|
slog.WarnContext(r.Context(), "abs collection list-items failed", "component", "audiobooks", "err", err, "collection", collectionID)
|
|
return []map[string]any{}
|
|
}
|
|
lib := h.resolveDefaultLibrary(r.Context())
|
|
baseURL := h.absBaseURL(r)
|
|
access, _, _ := h.accessFilterFromRequest(r)
|
|
out := make([]map[string]any, 0, len(rows))
|
|
for _, it := range rows {
|
|
item, err := h.deps.MediaStore.GetAudiobookByID(r.Context(), it.LibraryItemID, access)
|
|
if err != nil || item == nil {
|
|
// Defensive: include a stub so the client still sees the
|
|
// item count, but with empty media so it falls through to
|
|
// the placeholder cover instead of crashing on
|
|
// `media.coverPath`.
|
|
out = append(out, map[string]any{
|
|
"id": it.LibraryItemID,
|
|
"libraryId": audiobookLibraryID(lib),
|
|
"mediaType": LibraryMediaType,
|
|
"media": map[string]any{"metadata": map[string]any{"title": ""}, "coverPath": ""},
|
|
})
|
|
continue
|
|
}
|
|
out = append(out, libraryItemToWireMap(siloItemToLibraryItem(item, lib, baseURL)))
|
|
}
|
|
return out
|
|
}
|
|
|
|
// libraryItemToWireMap reuses the json tags on LibraryItem so handlers
|
|
// that need to emit a LibraryItem as part of a heterogeneous map[string]any
|
|
// envelope (collections, playlists) don't have to duplicate the camelCase
|
|
// key set.
|
|
func libraryItemToWireMap(li LibraryItem) map[string]any {
|
|
b, _ := json.Marshal(li)
|
|
var m map[string]any
|
|
_ = json.Unmarshal(b, &m)
|
|
return m
|
|
}
|
|
|
|
// handleListLibraryCollections — GET /libraries/{libraryId}/collections.
|
|
//
|
|
// LazyBookshelf hits this for the "Collections" tab — it expects the
|
|
// canonical paged envelope {results, total, limit, page, ...} with each
|
|
// entry in full-shape (including books[]) so LazyCollectionCard can
|
|
// render the cover stack from the first few books.
|
|
//
|
|
// silo scopes collections per (user, profile) globally; the libraryId
|
|
// URL param is accepted but ignored (matches our playlist behavior).
|
|
func (h *Handler) handleListLibraryCollections(w http.ResponseWriter, r *http.Request) {
|
|
a, ok := absAuthFrom(r)
|
|
if !ok || a.UserID == "" {
|
|
http.Error(w, "unauthorized", http.StatusUnauthorized)
|
|
return
|
|
}
|
|
limit, page := readPagedQuery(r, 25)
|
|
if h.deps.CollectionStore == nil {
|
|
writeJSON(w, http.StatusOK, pagedEnvelope([]map[string]any{}, 0, limit, page, "name", false, "", false, ""))
|
|
return
|
|
}
|
|
rows, err := h.deps.CollectionStore.ListUserCollections(r.Context(), a.UserID, a.ProfileID)
|
|
if err != nil {
|
|
slog.ErrorContext(r.Context(), "abs library collection list failed", "component", "audiobooks", "err", err, "user", a.UserID)
|
|
http.Error(w, "collection list failed", http.StatusInternalServerError)
|
|
return
|
|
}
|
|
total := len(rows)
|
|
var pageRows []Collection
|
|
if limit == 0 {
|
|
pageRows = rows
|
|
} else {
|
|
start := page * limit
|
|
end := start + limit
|
|
if start > total {
|
|
start = total
|
|
}
|
|
if end > total {
|
|
end = total
|
|
}
|
|
pageRows = rows[start:end]
|
|
}
|
|
out := make([]map[string]any, 0, len(pageRows))
|
|
for _, c := range pageRows {
|
|
out = append(out, h.collectionFullShape(r, c))
|
|
}
|
|
writeJSON(w, http.StatusOK, pagedEnvelope(out, total, limit, page, "name", false, "", false, ""))
|
|
}
|
|
|
|
// handleListCollections — GET /collections.
|
|
// Returns the caller's collections wrapped in {"collections": [...]}.
|
|
// List-shape (no books[]).
|
|
func (h *Handler) handleListCollections(w http.ResponseWriter, r *http.Request) {
|
|
a, ok := absAuthFrom(r)
|
|
if !ok || a.UserID == "" {
|
|
http.Error(w, "unauthorized", http.StatusUnauthorized)
|
|
return
|
|
}
|
|
if h.deps.CollectionStore == nil {
|
|
writeJSON(w, http.StatusOK, map[string]any{"collections": []any{}})
|
|
return
|
|
}
|
|
rows, err := h.deps.CollectionStore.ListUserCollections(r.Context(), a.UserID, a.ProfileID)
|
|
if err != nil {
|
|
slog.ErrorContext(r.Context(), "abs collection list failed", "component", "audiobooks", "err", err, "user", a.UserID)
|
|
http.Error(w, "collection list failed", http.StatusInternalServerError)
|
|
return
|
|
}
|
|
out := make([]map[string]any, 0, len(rows))
|
|
for _, c := range rows {
|
|
out = append(out, collectionToABS(c, nil)) // list-shape: nil books
|
|
}
|
|
writeJSON(w, http.StatusOK, map[string]any{"collections": out})
|
|
}
|
|
|
|
// chiURLID is a tiny shim around chi.URLParam(r, "id") so handler call
|
|
// sites read uniformly. Inlined where unambiguous.
|
|
func chiURLID(r *http.Request) string { return chi.URLParam(r, "id") }
|
|
|
|
// handleGetCollection — GET /collections/{id}.
|
|
// Owner gets full-shape; non-owner gets full-shape only when isPublic.
|
|
// Otherwise 404 (no existence leak — indistinguishable from real
|
|
// not-found).
|
|
func (h *Handler) handleGetCollection(w http.ResponseWriter, r *http.Request) {
|
|
a, ok := absAuthFrom(r)
|
|
if !ok || a.UserID == "" {
|
|
http.Error(w, "unauthorized", http.StatusUnauthorized)
|
|
return
|
|
}
|
|
if h.deps.CollectionStore == nil {
|
|
http.Error(w, "collection not found", http.StatusNotFound)
|
|
return
|
|
}
|
|
c, err := h.deps.CollectionStore.GetCollection(r.Context(), chiURLID(r))
|
|
if errors.Is(err, ErrNotFound) || (err == nil && !sameABSPrincipal(a, c.UserID, c.ProfileID) && !c.IsPublic) {
|
|
http.Error(w, "collection not found", http.StatusNotFound)
|
|
return
|
|
}
|
|
if err != nil {
|
|
slog.ErrorContext(r.Context(), "abs collection get failed", "component", "audiobooks", "err", err)
|
|
http.Error(w, "collection get failed", http.StatusInternalServerError)
|
|
return
|
|
}
|
|
writeJSON(w, http.StatusOK, h.collectionFullShape(r, c))
|
|
}
|
|
|
|
// handleUpdateCollection — PATCH /collections/{id}.
|
|
// Owner-only. Partial body: only fields explicitly present are
|
|
// modified. Non-owner gets 404 (no leak).
|
|
func (h *Handler) handleUpdateCollection(w http.ResponseWriter, r *http.Request) {
|
|
a, ok := absAuthFrom(r)
|
|
if !ok || a.UserID == "" {
|
|
http.Error(w, "unauthorized", http.StatusUnauthorized)
|
|
return
|
|
}
|
|
if h.deps.CollectionStore == nil {
|
|
http.Error(w, "collection not found", http.StatusNotFound)
|
|
return
|
|
}
|
|
id := chiURLID(r)
|
|
c, err := h.deps.CollectionStore.GetCollection(r.Context(), id)
|
|
if errors.Is(err, ErrNotFound) || (err == nil && !sameABSPrincipal(a, c.UserID, c.ProfileID)) {
|
|
http.Error(w, "collection not found", http.StatusNotFound)
|
|
return
|
|
}
|
|
if err != nil {
|
|
slog.ErrorContext(r.Context(), "abs collection get-for-update failed", "component", "audiobooks", "err", err, "id", id)
|
|
http.Error(w, "collection get failed", http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
var body collectionBody
|
|
if err := json.NewDecoder(io.LimitReader(r.Body, 1<<20)).Decode(&body); err != nil {
|
|
http.Error(w, "invalid body", http.StatusBadRequest)
|
|
return
|
|
}
|
|
if body.Name != nil {
|
|
name := strings.TrimSpace(*body.Name)
|
|
if name == "" {
|
|
http.Error(w, "name required", http.StatusBadRequest)
|
|
return
|
|
}
|
|
c.Name = name
|
|
}
|
|
if body.Description != nil {
|
|
c.Description = *body.Description
|
|
}
|
|
if body.IsPublic != nil {
|
|
c.IsPublic = *body.IsPublic
|
|
}
|
|
if err := h.deps.CollectionStore.UpdateCollection(r.Context(), c); err != nil {
|
|
slog.ErrorContext(r.Context(), "abs collection update failed", "component", "audiobooks", "err", err, "id", id)
|
|
http.Error(w, "collection persist failed", http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
persisted, err := h.deps.CollectionStore.GetCollection(r.Context(), id)
|
|
if err != nil {
|
|
slog.WarnContext(r.Context(), "abs collection get-after-update failed", "component", "audiobooks", "err", err, "id", id)
|
|
persisted = c
|
|
}
|
|
writeJSON(w, http.StatusOK, h.collectionFullShape(r, persisted))
|
|
}
|
|
|
|
// handleAddCollectionBook — POST /collections/{id}/book/{bookId}.
|
|
// Owner-gated. Validates the item exists via MediaStore (returns 404
|
|
// for unknown items). Idempotent: re-adding is a silent no-op.
|
|
// Returns the parent collection's full-shape with updated books[].
|
|
func (h *Handler) handleAddCollectionBook(w http.ResponseWriter, r *http.Request) {
|
|
a, ok := absAuthFrom(r)
|
|
if !ok || a.UserID == "" {
|
|
http.Error(w, "unauthorized", http.StatusUnauthorized)
|
|
return
|
|
}
|
|
if h.deps.CollectionStore == nil {
|
|
http.Error(w, "collection not found", http.StatusNotFound)
|
|
return
|
|
}
|
|
id := chiURLID(r)
|
|
bookID := chi.URLParam(r, "bookId")
|
|
if bookID == "" {
|
|
http.Error(w, "bookId required", http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
c, err := h.deps.CollectionStore.GetCollection(r.Context(), id)
|
|
if errors.Is(err, ErrNotFound) || (err == nil && !sameABSPrincipal(a, c.UserID, c.ProfileID)) {
|
|
http.Error(w, "collection not found", http.StatusNotFound)
|
|
return
|
|
}
|
|
if err != nil {
|
|
slog.ErrorContext(r.Context(), "abs collection get-for-add failed", "component", "audiobooks", "err", err, "id", id)
|
|
http.Error(w, "collection get failed", http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
// Item validation — avoid orphan refs.
|
|
access, err := h.accessFilterForAuth(r.Context(), a)
|
|
if err != nil {
|
|
http.Error(w, "resolve access: "+err.Error(), http.StatusForbidden)
|
|
return
|
|
}
|
|
item, err := h.deps.MediaStore.GetAudiobookByID(r.Context(), bookID, access)
|
|
if err != nil || item == nil {
|
|
http.Error(w, "item not found", http.StatusNotFound)
|
|
return
|
|
}
|
|
|
|
if err := h.deps.CollectionStore.AddCollectionItem(r.Context(), id, bookID); err != nil {
|
|
slog.ErrorContext(r.Context(), "abs collection add-item failed", "component", "audiobooks", "err", err, "id", id, "book", bookID)
|
|
http.Error(w, "collection persist failed", http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
// Re-fetch to surface updated_at bump.
|
|
persisted, err := h.deps.CollectionStore.GetCollection(r.Context(), id)
|
|
if err != nil {
|
|
persisted = c
|
|
}
|
|
writeJSON(w, http.StatusOK, h.collectionFullShape(r, persisted))
|
|
}
|
|
|
|
// handleRemoveCollectionBook — DELETE /collections/{id}/book/{bookId}.
|
|
// Owner-gated. Idempotent: removing a non-member is a no-op.
|
|
// Returns the parent collection's full-shape with updated books[].
|
|
func (h *Handler) handleRemoveCollectionBook(w http.ResponseWriter, r *http.Request) {
|
|
a, ok := absAuthFrom(r)
|
|
if !ok || a.UserID == "" {
|
|
http.Error(w, "unauthorized", http.StatusUnauthorized)
|
|
return
|
|
}
|
|
if h.deps.CollectionStore == nil {
|
|
http.Error(w, "collection not found", http.StatusNotFound)
|
|
return
|
|
}
|
|
id := chiURLID(r)
|
|
bookID := chi.URLParam(r, "bookId")
|
|
if bookID == "" {
|
|
http.Error(w, "bookId required", http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
c, err := h.deps.CollectionStore.GetCollection(r.Context(), id)
|
|
if errors.Is(err, ErrNotFound) || (err == nil && !sameABSPrincipal(a, c.UserID, c.ProfileID)) {
|
|
http.Error(w, "collection not found", http.StatusNotFound)
|
|
return
|
|
}
|
|
if err != nil {
|
|
slog.ErrorContext(r.Context(), "abs collection get-for-remove failed", "component", "audiobooks", "err", err, "id", id)
|
|
http.Error(w, "collection get failed", http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
if err := h.deps.CollectionStore.RemoveCollectionItem(r.Context(), id, bookID); err != nil {
|
|
slog.ErrorContext(r.Context(), "abs collection remove-item failed", "component", "audiobooks", "err", err, "id", id, "book", bookID)
|
|
http.Error(w, "collection delete failed", http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
persisted, err := h.deps.CollectionStore.GetCollection(r.Context(), id)
|
|
if err != nil {
|
|
persisted = c
|
|
}
|
|
writeJSON(w, http.StatusOK, h.collectionFullShape(r, persisted))
|
|
}
|
|
|
|
// handleDeleteCollection — DELETE /collections/{id}.
|
|
// Owner-only. Cascade drops user_personal_collection_items via FK CASCADE.
|
|
// 204 on success; 404 for unknown or non-owned.
|
|
func (h *Handler) handleDeleteCollection(w http.ResponseWriter, r *http.Request) {
|
|
a, ok := absAuthFrom(r)
|
|
if !ok || a.UserID == "" {
|
|
http.Error(w, "unauthorized", http.StatusUnauthorized)
|
|
return
|
|
}
|
|
if h.deps.CollectionStore == nil {
|
|
http.Error(w, "collection not found", http.StatusNotFound)
|
|
return
|
|
}
|
|
id := chiURLID(r)
|
|
c, err := h.deps.CollectionStore.GetCollection(r.Context(), id)
|
|
if errors.Is(err, ErrNotFound) || (err == nil && !sameABSPrincipal(a, c.UserID, c.ProfileID)) {
|
|
http.Error(w, "collection not found", http.StatusNotFound)
|
|
return
|
|
}
|
|
if err != nil {
|
|
slog.ErrorContext(r.Context(), "abs collection get-for-delete failed", "component", "audiobooks", "err", err, "id", id)
|
|
http.Error(w, "collection get failed", http.StatusInternalServerError)
|
|
return
|
|
}
|
|
if err := h.deps.CollectionStore.DeleteCollection(r.Context(), id); err != nil {
|
|
slog.ErrorContext(r.Context(), "abs collection delete failed", "component", "audiobooks", "err", err, "id", id)
|
|
http.Error(w, "collection delete failed", http.StatusInternalServerError)
|
|
return
|
|
}
|
|
w.WriteHeader(http.StatusNoContent)
|
|
}
|