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:
Deluan 2021-05-02 16:39:25 -04:00
parent 2372f1d12b
commit cfbc39fb7f
5 changed files with 238 additions and 3 deletions

View file

@ -44,6 +44,7 @@ type configOptions struct {
EnableStarRating bool
DefaultTheme string
GATrackingID string
EnableLogRedacting bool
AuthRequestLimit int
AuthWindowLength time.Duration
@ -105,9 +106,8 @@ func Load() {
log.SetLevelString(Server.LogLevel)
log.SetLogSourceLine(Server.DevLogSourceLine)
if log.CurrentLevel() >= log.LevelDebug {
pretty.Printf("Loaded configuration from '%s': %# v\n", Server.ConfigFile, Server)
}
log.SetRedacting(Server.EnableLogRedacting)
log.Debug(pretty.Sprintf("Loaded configuration from '%s': %# v\n", Server.ConfigFile, Server))
// Call init hooks
for _, hook := range hooks {
@ -150,6 +150,7 @@ func init() {
viper.SetDefault("enablestarrating", true)
viper.SetDefault("defaulttheme", "Dark")
viper.SetDefault("gatrackingid", "")
viper.SetDefault("EnableLogRedacting", true)
viper.SetDefault("authrequestlimit", 5)
viper.SetDefault("authwindowlength", 20*time.Second)