Rename ListenBrainz config flag and enable by default (#1443)

This commit is contained in:
Steve Richter 2021-11-17 21:11:53 -05:00 committed by GitHub
parent da26c5cfe0
commit 3bd6f82c80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 19 additions and 15 deletions

View file

@ -59,9 +59,10 @@ type configOptions struct {
Scanner scannerOptions
Agents string
LastFM lastfmOptions
Spotify spotifyOptions
Agents string
LastFM lastfmOptions
Spotify spotifyOptions
ListenBrainz listenBrainzOptions
// DevFlags. These are used to enable/disable debugging and incomplete features
DevLogSourceLine bool
@ -75,7 +76,6 @@ type configOptions struct {
DevSidebarPlaylists bool
DevEnableBufferedScrobble bool
DevShowArtistPage bool
DevListenBrainzEnabled bool
}
type scannerOptions struct {
@ -95,6 +95,10 @@ type spotifyOptions struct {
Secret string
}
type listenBrainzOptions struct {
Enabled bool
}
var (
Server = &configOptions{}
hooks []func()
@ -153,10 +157,10 @@ func disableExternalServices() {
log.Info("All external integrations are DISABLED!")
Server.LastFM.Enabled = false
Server.Spotify.ID = ""
Server.ListenBrainz.Enabled = false
if Server.UILoginBackgroundURL == consts.DefaultUILoginBackgroundURL {
Server.UILoginBackgroundURL = consts.DefaultUILoginBackgroundURLOffline
}
Server.DevListenBrainzEnabled = false
}
func validateScanSchedule() error {
@ -246,6 +250,7 @@ func init() {
viper.SetDefault("lastfm.secret", consts.LastFMAPISecret)
viper.SetDefault("spotify.id", "")
viper.SetDefault("spotify.secret", "")
viper.SetDefault("listenbrainz.enabled", true)
// DevFlags. These are used to enable/disable debugging and incomplete features
viper.SetDefault("devlogsourceline", false)
@ -258,7 +263,6 @@ func init() {
viper.SetDefault("devenablebufferedscrobble", true)
viper.SetDefault("devsidebarplaylists", true)
viper.SetDefault("devshowartistpage", true)
viper.SetDefault("devlistenbrainzenabled", false)
}
func InitConfig(cfgFile string) {