Add config option to select tag extractor (taglib, ffmpeg)

This commit is contained in:
Deluan 2020-09-05 20:28:27 -04:00 committed by Deluan Quintão
parent 506899b083
commit 34eda3c8fc
2 changed files with 24 additions and 1 deletions

View file

@ -4,6 +4,7 @@ import (
"fmt"
"os"
"path/filepath"
"strings"
"time"
"github.com/deluan/navidrome/consts"
@ -39,11 +40,17 @@ type configOptions struct {
AuthRequestLimit int
AuthWindowLength time.Duration
Scanner scannerOptions
// DevFlags. These are used to enable/disable debugging and incomplete features
DevLogSourceLine bool
DevAutoCreateAdminPassword string
}
type scannerOptions struct {
Extractor string
}
var Server = &configOptions{}
func LoadFromFile(confFile string) {
@ -99,6 +106,8 @@ func init() {
viper.SetDefault("authrequestlimit", 5)
viper.SetDefault("authwindowlength", 20*time.Second)
viper.SetDefault("scanner.extractor", "ffmpeg")
// DevFlags. These are used to enable/disable debugging and incomplete features
viper.SetDefault("devlogsourceline", false)
viper.SetDefault("devautocreateadminpassword", "")
@ -118,6 +127,8 @@ func InitConfig(cfgFile string) {
_ = viper.BindEnv("port")
viper.SetEnvPrefix("ND")
replacer := strings.NewReplacer(".", "_")
viper.SetEnvKeyReplacer(replacer)
viper.AutomaticEnv()
err := viper.ReadInConfig()