mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
Restore pretty formatted config options in debug level
This commit is contained in:
parent
751e2d6147
commit
39d68e8287
5 changed files with 61 additions and 23 deletions
|
@ -87,6 +87,12 @@ func SetRedacting(enabled bool) {
|
|||
}
|
||||
}
|
||||
|
||||
// Redact applies redaction to a single string
|
||||
func Redact(msg string) string {
|
||||
r, _ := redacted.redact(msg)
|
||||
return r
|
||||
}
|
||||
|
||||
func NewContext(ctx context.Context, keyValuePairs ...interface{}) context.Context {
|
||||
if ctx == nil {
|
||||
ctx = context.Background()
|
||||
|
|
|
@ -28,7 +28,7 @@ var _ = Describe("Logger", func() {
|
|||
SetDefaultLogger(l)
|
||||
})
|
||||
|
||||
Context("Logging", func() {
|
||||
Describe("Logging", func() {
|
||||
It("logs a simple message", func() {
|
||||
Error("Simple Message")
|
||||
Expect(hook.LastEntry().Message).To(Equal("Simple Message"))
|
||||
|
@ -96,7 +96,7 @@ var _ = Describe("Logger", func() {
|
|||
})
|
||||
})
|
||||
|
||||
Context("Levels", func() {
|
||||
Describe("Levels", func() {
|
||||
BeforeEach(func() {
|
||||
SetLevel(LevelTrace)
|
||||
})
|
||||
|
@ -122,7 +122,7 @@ var _ = Describe("Logger", func() {
|
|||
})
|
||||
})
|
||||
|
||||
Context("extractLogger", func() {
|
||||
Describe("extractLogger", func() {
|
||||
It("returns an error if the context is nil", func() {
|
||||
_, err := extractLogger(nil)
|
||||
Expect(err).ToNot(BeNil())
|
||||
|
@ -151,7 +151,7 @@ var _ = Describe("Logger", func() {
|
|||
})
|
||||
})
|
||||
|
||||
Context("SetLevelString", func() {
|
||||
Describe("SetLevelString", func() {
|
||||
It("converts Critical level", func() {
|
||||
SetLevelString("Critical")
|
||||
Expect(CurrentLevel()).To(Equal(LevelCritical))
|
||||
|
@ -177,4 +177,11 @@ var _ = Describe("Logger", func() {
|
|||
Expect(CurrentLevel()).To(Equal(LevelTrace))
|
||||
})
|
||||
})
|
||||
|
||||
Describe("Redact", func() {
|
||||
Describe("Subsonic API password", func() {
|
||||
msg := "getLyrics.view?v=1.2.0&c=iSub&u=user_name&p=first%20and%20other%20words&title=Title"
|
||||
Expect(Redact(msg)).To(Equal("getLyrics.view?v=1.2.0&c=iSub&u=user_name&p=[REDACTED]&title=Title"))
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
|
@ -16,6 +16,7 @@ type Hook struct {
|
|||
// will not be dispatched. If empty, all messages will be dispatched.
|
||||
AcceptedLevels []logrus.Level
|
||||
RedactionList []string
|
||||
redactionKeys []*regexp.Regexp
|
||||
}
|
||||
|
||||
// Levels returns the user defined AcceptedLevels
|
||||
|
@ -27,26 +28,13 @@ func (h *Hook) Levels() []logrus.Level {
|
|||
return h.AcceptedLevels
|
||||
}
|
||||
|
||||
// LevelThreshold returns a []logrus.Level including all levels
|
||||
// above and including the level given. If the provided level does not exit,
|
||||
// an empty slice is returned.
|
||||
func LevelThreshold(l logrus.Level) []logrus.Level {
|
||||
//nolint
|
||||
if l < 0 || int(l) > len(logrus.AllLevels) {
|
||||
return []logrus.Level{}
|
||||
}
|
||||
return logrus.AllLevels[:l+1]
|
||||
}
|
||||
|
||||
// Fire redacts values in an log Entry that match
|
||||
// with keys defined in the RedactionList
|
||||
func (h *Hook) Fire(e *logrus.Entry) error {
|
||||
for _, redactionKey := range h.RedactionList {
|
||||
re, err := regexp.Compile(redactionKey)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if err := h.initRedaction(); err != nil {
|
||||
return err
|
||||
}
|
||||
for _, re := range h.redactionKeys {
|
||||
// Redact based on key matching in Data fields
|
||||
for k, v := range e.Data {
|
||||
if re.MatchString(k) {
|
||||
|
@ -68,3 +56,27 @@ func (h *Hook) Fire(e *logrus.Entry) error {
|
|||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (h *Hook) initRedaction() error {
|
||||
if len(h.redactionKeys) == 0 {
|
||||
for _, redactionKey := range h.RedactionList {
|
||||
re, err := regexp.Compile(redactionKey)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
h.redactionKeys = append(h.redactionKeys, re)
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (h *Hook) redact(msg string) (string, error) {
|
||||
if err := h.initRedaction(); err != nil {
|
||||
return msg, err
|
||||
}
|
||||
for _, re := range h.redactionKeys {
|
||||
msg = re.ReplaceAllString(msg, "$1[REDACTED]$2")
|
||||
}
|
||||
|
||||
return msg, nil
|
||||
}
|
||||
|
|
|
@ -50,6 +50,17 @@ type levelThresholdTest struct {
|
|||
description string
|
||||
}
|
||||
|
||||
// levelThreshold returns a []logrus.Level including all levels
|
||||
// above and including the level given. If the provided level does not exit,
|
||||
// an empty slice is returned.
|
||||
func levelThreshold(l logrus.Level) []logrus.Level {
|
||||
//nolint
|
||||
if l < 0 || int(l) > len(logrus.AllLevels) {
|
||||
return []logrus.Level{}
|
||||
}
|
||||
return logrus.AllLevels[:l+1]
|
||||
}
|
||||
|
||||
func TestLevelThreshold(t *testing.T) {
|
||||
tests := []levelThresholdTest{
|
||||
{
|
||||
|
@ -68,7 +79,7 @@ func TestLevelThreshold(t *testing.T) {
|
|||
|
||||
for _, test := range tests {
|
||||
fn := func(t *testing.T) {
|
||||
levels := LevelThreshold(test.level)
|
||||
levels := levelThreshold(test.level)
|
||||
assert.Equal(t, test.expected, levels, test.description)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue