|
| 1 | +package slogformatter |
| 2 | + |
| 3 | +import ( |
| 4 | + "context" |
| 5 | + |
| 6 | + "github.com/samber/lo" |
| 7 | + slogmulti "github.com/samber/slog-multi" |
| 8 | + "golang.org/x/exp/slog" |
| 9 | +) |
| 10 | + |
| 11 | +type FlattenFormatterMiddlewareOptions struct { |
| 12 | + // Ignore attribute path and therefore ignore attribute key prefix. |
| 13 | + // Some attribute keys may collide. |
| 14 | + IgnorePath bool |
| 15 | + // Separator between prefix and key. |
| 16 | + Separator string |
| 17 | + // Attribute key prefix. |
| 18 | + Prefix string |
| 19 | +} |
| 20 | + |
| 21 | +// NewFlattenFormatterMiddlewareOptions returns a formatter middleware that flatten attributes recursively. |
| 22 | +func (o FlattenFormatterMiddlewareOptions) NewFlattenFormatterMiddlewareOptions() slogmulti.Middleware { |
| 23 | + return func(next slog.Handler) slog.Handler { |
| 24 | + return &FlattenFormatterMiddleware{ |
| 25 | + next: next, |
| 26 | + option: FlattenFormatterMiddlewareOptions{ |
| 27 | + IgnorePath: o.IgnorePath, |
| 28 | + Separator: lo.Ternary(o.Separator == "", ".", o.Separator), |
| 29 | + Prefix: o.Prefix, |
| 30 | + }, |
| 31 | + } |
| 32 | + } |
| 33 | +} |
| 34 | + |
| 35 | +type FlattenFormatterMiddleware struct { |
| 36 | + next slog.Handler |
| 37 | + option FlattenFormatterMiddlewareOptions |
| 38 | +} |
| 39 | + |
| 40 | +// Implements slog.Handler |
| 41 | +func (h *FlattenFormatterMiddleware) Enabled(ctx context.Context, level slog.Level) bool { |
| 42 | + return h.next.Enabled(ctx, level) |
| 43 | +} |
| 44 | + |
| 45 | +// Implements slog.Handler |
| 46 | +func (h *FlattenFormatterMiddleware) Handle(ctx context.Context, record slog.Record) error { |
| 47 | + // newRecord := slog.NewRecord(record.Time, record.Level, record.Message, record.PC) |
| 48 | + |
| 49 | + // record.Attrs(func(attr slog.Attr) bool { |
| 50 | + // if !h.option.IgnorePath { |
| 51 | + // newRecord.AddAttrs( |
| 52 | + // PrefixAttrKeys( |
| 53 | + // lo.Ternary(h.option.Prefix == "" || h.option.IgnorePath, "", h.option.Prefix+h.option.Separator), |
| 54 | + // FlattenAttrsWithPrefix(h.option.Separator, h.option.Prefix, []slog.Attr{attr}), |
| 55 | + // )..., |
| 56 | + // ) |
| 57 | + // } else { |
| 58 | + // newRecord.AddAttrs(FlattenAttrs([]slog.Attr{attr})...) |
| 59 | + // } |
| 60 | + // return true |
| 61 | + // }) |
| 62 | + |
| 63 | + // return h.next.Handle(ctx, newRecord) |
| 64 | + return h.next.Handle(ctx, record) |
| 65 | +} |
| 66 | + |
| 67 | +// Implements slog.Handler |
| 68 | +func (h *FlattenFormatterMiddleware) WithAttrs(attrs []slog.Attr) slog.Handler { |
| 69 | + if !h.option.IgnorePath { |
| 70 | + attrs = PrefixAttrKeys( |
| 71 | + lo.Ternary(h.option.Prefix == "" || h.option.IgnorePath, "", h.option.Prefix+h.option.Separator), |
| 72 | + FlattenAttrsWithPrefix(h.option.Separator, h.option.Prefix, attrs), |
| 73 | + ) |
| 74 | + } else { |
| 75 | + attrs = FlattenAttrs(attrs) |
| 76 | + } |
| 77 | + |
| 78 | + return &FlattenFormatterMiddleware{ |
| 79 | + next: h.next.WithAttrs(attrs), |
| 80 | + option: h.option, |
| 81 | + } |
| 82 | +} |
| 83 | + |
| 84 | +// Implements slog.Handler |
| 85 | +func (h *FlattenFormatterMiddleware) WithGroup(name string) slog.Handler { |
| 86 | + prefix := h.option.Prefix + h.option.Separator |
| 87 | + if h.option.IgnorePath || h.option.Prefix == "" { |
| 88 | + prefix = "" |
| 89 | + } |
| 90 | + |
| 91 | + return &FlattenFormatterMiddleware{ |
| 92 | + next: h.next, |
| 93 | + option: FlattenFormatterMiddlewareOptions{ |
| 94 | + IgnorePath: h.option.IgnorePath, |
| 95 | + Separator: h.option.Separator, |
| 96 | + Prefix: prefix + name, |
| 97 | + }, |
| 98 | + } |
| 99 | +} |
| 100 | + |
| 101 | +// PrefixAttrKeys prefix attribute keys. |
| 102 | +func PrefixAttrKeys(prefix string, attrs []slog.Attr) []slog.Attr { |
| 103 | + return lo.Map(attrs, func(item slog.Attr, _ int) slog.Attr { |
| 104 | + return slog.Attr{ |
| 105 | + Key: prefix + item.Key, |
| 106 | + Value: item.Value, |
| 107 | + } |
| 108 | + }) |
| 109 | +} |
| 110 | + |
| 111 | +// FlattenAttrs flatten attributes recursively. |
| 112 | +func FlattenAttrs(attrs []slog.Attr) []slog.Attr { |
| 113 | + output := []slog.Attr{} |
| 114 | + |
| 115 | + for _, attr := range attrs { |
| 116 | + switch attr.Value.Kind() { |
| 117 | + case slog.KindAny, slog.KindBool, slog.KindDuration, slog.KindFloat64, slog.KindInt64, slog.KindUint64, slog.KindString, slog.KindTime: |
| 118 | + output = append(output, attr) |
| 119 | + case slog.KindGroup: |
| 120 | + output = append(output, attr.Value.Group()...) |
| 121 | + case slog.KindLogValuer: |
| 122 | + output = append(output, slog.Any(attr.Key, attr.Value.Resolve().Any())) |
| 123 | + } |
| 124 | + } |
| 125 | + |
| 126 | + return output |
| 127 | +} |
| 128 | + |
| 129 | +// FlattenAttrsWithPrefix flatten attributes recursively, with prefix. |
| 130 | +func FlattenAttrsWithPrefix(separator string, prefix string, attrs []slog.Attr) []slog.Attr { |
| 131 | + output := []slog.Attr{} |
| 132 | + |
| 133 | + for _, attr := range attrs { |
| 134 | + switch attr.Value.Kind() { |
| 135 | + case slog.KindAny, slog.KindBool, slog.KindDuration, slog.KindFloat64, slog.KindInt64, slog.KindUint64, slog.KindString, slog.KindTime: |
| 136 | + output = append(output, attr) |
| 137 | + case slog.KindGroup: |
| 138 | + output = append(output, PrefixAttrKeys(prefix+separator+attr.Key+separator, FlattenAttrsWithPrefix(separator, "", attr.Value.Group()))...) |
| 139 | + case slog.KindLogValuer: |
| 140 | + attr := slog.Any(attr.Key, attr.Value.Resolve().Any()) |
| 141 | + output = append(output, FlattenAttrsWithPrefix(separator, prefix, []slog.Attr{attr})...) |
| 142 | + } |
| 143 | + } |
| 144 | + |
| 145 | + return output |
| 146 | +} |
0 commit comments