mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Add log redacting, controlled by the new EnableLogRedacting
config option (default true
)
Imported redacting code from https://github.com/whuang8/redactrus (thanks William Huang) Didn't use it as a dependency as it was too small and we want to keep dependencies at a minimum
This commit is contained in:
parent
2372f1d12b
commit
cfbc39fb7f
5 changed files with 238 additions and 3 deletions
22
log/log.go
22
log/log.go
|
@ -16,6 +16,22 @@ type Level uint8
|
|||
|
||||
type LevelFunc = func(ctx interface{}, msg interface{}, keyValuePairs ...interface{})
|
||||
|
||||
var redacted = &Hook{
|
||||
AcceptedLevels: logrus.AllLevels,
|
||||
RedactionList: []string{
|
||||
// Keys from the config
|
||||
"(ApiKey:\")[\\w]*",
|
||||
"(Secret:\")[\\w]*",
|
||||
"(Spotify.*ID:\")[\\w]*",
|
||||
|
||||
// Subsonic query params
|
||||
"([^\\w]t=)[\\w]+",
|
||||
"([^\\w]s=)[\\w]+",
|
||||
"([^\\w]p=)[\\w]+",
|
||||
"([^\\w]jwt=)[\\w]+",
|
||||
},
|
||||
}
|
||||
|
||||
const (
|
||||
LevelCritical = Level(logrus.FatalLevel)
|
||||
LevelError = Level(logrus.ErrorLevel)
|
||||
|
@ -65,6 +81,12 @@ func SetLogSourceLine(enabled bool) {
|
|||
logSourceLine = enabled
|
||||
}
|
||||
|
||||
func SetRedacting(enabled bool) {
|
||||
if enabled {
|
||||
defaultLogger.AddHook(redacted)
|
||||
}
|
||||
}
|
||||
|
||||
func NewContext(ctx context.Context, keyValuePairs ...interface{}) context.Context {
|
||||
if ctx == nil {
|
||||
ctx = context.Background()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue