Files
Dmitry VerkhoturovandUmputun 80c12a3f10 chore(deps): update Go modules
Bump Go dependencies in both backend/ and backend/_example/memory_store.

Notable updates:
- github.com/go-pkgz/lgr v0.12.1 -> v0.12.3
- github.com/klauspost/compress v1.18.2 -> v1.18.5
- github.com/PuerkitoBio/goquery v1.11.0 -> v1.12.0
- github.com/montanaflynn/stats v0.7.1 -> v0.9.0
- github.com/redis/go-redis/v9 v9.17.2 -> v9.18.0
- github.com/slack-go/slack v0.17.3 -> v0.21.1
- go.mongodb.org/mongo-driver v1.17.6 -> v1.17.9
- golang.org/x/crypto v0.48.0 -> v0.50.0
- golang.org/x/net v0.49.0 -> v0.53.0
- golang.org/x/image v0.36.0 -> v0.39.0
- golang.org/x/sys v0.41.0 -> v0.43.0
- golang.org/x/{oauth2,sync,text} minor bumps

Key markdown/sanitisation libs (bluemonday v1.0.27,
alecthomas/chroma/v2 v2.23.1, russross/blackfriday/v2 v2.1.0,
Depado/bfchroma/v2 v2.0.0) are already at the latest available
versions and were not bumped.

Verified the Chroma span-class allowlist regex in
backend/app/store/comment.go:128-131 is still fully in sync with
chroma/v2 types.go StandardTypes map (86 classes, byte-equal after
sorting). The inline comment references commit c263f6f which is
stale (Chroma is at v2 now), but the class list content is current.

Ran `go mod tidy` + `go mod vendor` + full race test suite on both
modules. All green. Added a reminder in CLAUDE.md that updating
backend/ Go modules also requires `go mod tidy` in
backend/_example/memory_store since the example module uses a
local replace directive and inherits indirect deps from the main
module.
2026-04-12 11:52:57 -05:00

199 lines
4.7 KiB
Go

package lgr
import (
"context"
"fmt"
"log/slog"
"os"
"runtime"
"strings"
"time"
)
// ToSlogHandler converts lgr.L to slog.Handler
func ToSlogHandler(l L) slog.Handler {
return &lgrSlogHandler{lgr: l}
}
// FromSlogHandler creates lgr.L wrapper around slog.Handler
func FromSlogHandler(h slog.Handler) L {
return &slogLgrAdapter{handler: h}
}
// SetupWithSlog sets up the global logger with a slog logger
func SetupWithSlog(logger *slog.Logger) {
options := []Option{SlogHandler(logger.Handler())}
// check if the slog handler is enabled for debug level
// if so, enable debug mode in lgr to prevent filtering
if logger.Handler().Enabled(context.Background(), slog.LevelDebug) {
options = append(options, Debug)
}
Setup(options...)
}
// lgrSlogHandler implements slog.Handler using lgr.L
type lgrSlogHandler struct {
lgr L
attrs []slog.Attr
groups []string
}
// Enabled implements slog.Handler
func (h *lgrSlogHandler) Enabled(_ context.Context, level slog.Level) bool {
switch {
case level < slog.LevelInfo: // debug, Trace
// check if underlying lgr logger is configured to show debug
// since we can't directly query lgr's debug status, we assume enabled
return true
default:
return true
}
}
// Handle implements slog.Handler
func (h *lgrSlogHandler) Handle(_ context.Context, record slog.Record) error {
level := levelToString(record.Level)
// build message with attributes
msg := record.Message
// format attributes as key=value pairs
var attrs strings.Builder
if len(h.attrs) > 0 || record.NumAttrs() > 0 {
attrs.WriteString(" ")
}
// add pre-defined attributes
for _, attr := range h.attrs {
attrs.WriteString(formatAttr(attr, h.groups))
}
// add record attributes
record.Attrs(func(attr slog.Attr) bool {
attrs.WriteString(formatAttr(attr, h.groups))
return true
})
// combine level prefix and message; lgr.Logf adds its own timestamp and level formatting
logMsg := fmt.Sprintf("%s %s%s", level, msg, attrs.String())
h.lgr.Logf(logMsg)
return nil
}
// WithAttrs implements slog.Handler
func (h *lgrSlogHandler) WithAttrs(attrs []slog.Attr) slog.Handler {
newHandler := &lgrSlogHandler{
lgr: h.lgr,
attrs: append(h.attrs, attrs...),
groups: h.groups,
}
return newHandler
}
// WithGroup implements slog.Handler
func (h *lgrSlogHandler) WithGroup(name string) slog.Handler {
newHandler := &lgrSlogHandler{
lgr: h.lgr,
attrs: h.attrs,
groups: append(h.groups, name),
}
return newHandler
}
// slogLgrAdapter implements lgr.L using slog.Handler
type slogLgrAdapter struct {
handler slog.Handler
}
// Logf implements lgr.L interface
func (a *slogLgrAdapter) Logf(format string, args ...interface{}) {
msg := fmt.Sprintf(format, args...)
level, msg := extractLevel(msg)
// get the caller's PC so slog handlers can resolve source info when AddSource is enabled
var pcs [1]uintptr
runtime.Callers(2, pcs[:]) // skip runtime.Callers and Logf
record := slog.NewRecord(time.Now(), stringToLevel(level), msg, pcs[0])
if err := a.handler.Handle(context.Background(), record); err != nil {
fmt.Fprintf(os.Stderr, "slog handler error: %v\n", err)
}
}
// Helper functions
// levelToString converts slog.Level to string representation used by lgr
func levelToString(level slog.Level) string {
switch {
case level < slog.LevelInfo:
if level <= slog.LevelDebug-4 {
return "TRACE"
}
return "DEBUG"
case level < slog.LevelWarn:
return "INFO"
case level < slog.LevelError:
return "WARN"
default:
return "ERROR"
}
}
// stringToLevel converts lgr level string to slog.Level
func stringToLevel(level string) slog.Level {
switch level {
case "TRACE":
return slog.LevelDebug - 4
case "DEBUG":
return slog.LevelDebug
case "INFO":
return slog.LevelInfo
case "WARN":
return slog.LevelWarn
case "ERROR", "PANIC", "FATAL":
return slog.LevelError
default:
return slog.LevelInfo
}
}
// extractLevel parses lgr-style log message to extract level prefix
func extractLevel(msg string) (level, message string) {
for _, lvl := range levels {
prefix := lvl + " "
bracketPrefix := "[" + lvl + "] "
if strings.HasPrefix(msg, prefix) {
return lvl, strings.TrimPrefix(msg, prefix)
}
if strings.HasPrefix(msg, bracketPrefix) {
return lvl, strings.TrimPrefix(msg, bracketPrefix)
}
}
return "INFO", msg
}
// formatAttr converts slog.Attr to string representation
func formatAttr(attr slog.Attr, groups []string) string {
if attr.Equal(slog.Attr{}) {
return ""
}
key := attr.Key
if len(groups) > 0 {
key = strings.Join(groups, ".") + "." + key
}
val := attr.Value.String()
// handle string values specially by quoting them
if attr.Value.Kind() == slog.KindString {
val = fmt.Sprintf("%q", attr.Value.String())
}
return fmt.Sprintf("%s=%s ", key, val)
}