feat(server): new option to set the default for ReportRealPath on new players

Implements #3653

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan 2025-02-20 22:24:09 -05:00
parent 09ae41a2da
commit 74348a340f
2 changed files with 4 additions and 0 deletions

View file

@ -62,6 +62,7 @@ type configOptions struct {
IgnoredArticles string IgnoredArticles string
IndexGroups string IndexGroups string
SubsonicArtistParticipations bool SubsonicArtistParticipations bool
DefaultReportRealPath bool
FFmpegPath string FFmpegPath string
MPVPath string MPVPath string
MPVCmdTemplate string MPVCmdTemplate string
@ -447,6 +448,7 @@ func init() {
viper.SetDefault("ignoredarticles", "The El La Los Las Le Les Os As O A") viper.SetDefault("ignoredarticles", "The El La Los Las Le Les Os As O A")
viper.SetDefault("indexgroups", "A B C D E F G H I J K L M N O P Q R S T U V W X-Z(XYZ) [Unknown]([)") viper.SetDefault("indexgroups", "A B C D E F G H I J K L M N O P Q R S T U V W X-Z(XYZ) [Unknown]([)")
viper.SetDefault("subsonicartistparticipations", false) viper.SetDefault("subsonicartistparticipations", false)
viper.SetDefault("defaultreportrealpath", false)
viper.SetDefault("ffmpegpath", "") viper.SetDefault("ffmpegpath", "")
viper.SetDefault("mpvcmdtemplate", "mpv --audio-device=%d --no-audio-display --pause %f --input-ipc-server=%s") viper.SetDefault("mpvcmdtemplate", "mpv --audio-device=%d --no-audio-display --pause %f --input-ipc-server=%s")

View file

@ -5,6 +5,7 @@ import (
"fmt" "fmt"
"time" "time"
"github.com/navidrome/navidrome/conf"
"github.com/navidrome/navidrome/consts" "github.com/navidrome/navidrome/consts"
"github.com/navidrome/navidrome/log" "github.com/navidrome/navidrome/log"
"github.com/navidrome/navidrome/model" "github.com/navidrome/navidrome/model"
@ -52,6 +53,7 @@ func (p *players) Register(ctx context.Context, playerID, client, userAgent, ip
UserId: user.ID, UserId: user.ID,
Client: client, Client: client,
ScrobbleEnabled: true, ScrobbleEnabled: true,
ReportRealPath: conf.Server.DefaultReportRealPath,
} }
log.Info(ctx, "Registering new player", "id", plr.ID, "client", client, "username", username, "type", userAgent) log.Info(ctx, "Registering new player", "id", plr.ID, "client", client, "username", username, "type", userAgent)
} }