mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 12:37:37 +03:00
feat(server): group Subsonic config options together
Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
637c909e93
commit
8ab2a11d22
4 changed files with 17 additions and 12 deletions
|
@ -59,8 +59,6 @@ type configOptions struct {
|
||||||
PreferSortTags bool
|
PreferSortTags bool
|
||||||
IgnoredArticles string
|
IgnoredArticles string
|
||||||
IndexGroups string
|
IndexGroups string
|
||||||
SubsonicArtistParticipations bool
|
|
||||||
DefaultReportRealPath bool
|
|
||||||
FFmpegPath string
|
FFmpegPath string
|
||||||
MPVPath string
|
MPVPath string
|
||||||
MPVCmdTemplate string
|
MPVCmdTemplate string
|
||||||
|
@ -93,6 +91,7 @@ type configOptions struct {
|
||||||
Backup backupOptions
|
Backup backupOptions
|
||||||
PID pidOptions
|
PID pidOptions
|
||||||
Inspect inspectOptions
|
Inspect inspectOptions
|
||||||
|
Subsonic subsonicOptions
|
||||||
|
|
||||||
Agents string
|
Agents string
|
||||||
LastFM lastfmOptions
|
LastFM lastfmOptions
|
||||||
|
@ -121,7 +120,6 @@ type configOptions struct {
|
||||||
DevScannerThreads uint
|
DevScannerThreads uint
|
||||||
DevInsightsInitialDelay time.Duration
|
DevInsightsInitialDelay time.Duration
|
||||||
DevEnablePlayerInsights bool
|
DevEnablePlayerInsights bool
|
||||||
DevOpenSubsonicDisabledClients string
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type scannerOptions struct {
|
type scannerOptions struct {
|
||||||
|
@ -133,6 +131,12 @@ type scannerOptions struct {
|
||||||
GroupAlbumReleases bool // Deprecated: BFR Update docs
|
GroupAlbumReleases bool // Deprecated: BFR Update docs
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type subsonicOptions struct {
|
||||||
|
ArtistParticipations bool
|
||||||
|
DefaultReportRealPath bool
|
||||||
|
LegacyClients string
|
||||||
|
}
|
||||||
|
|
||||||
type TagConf struct {
|
type TagConf struct {
|
||||||
Aliases []string `yaml:"aliases"`
|
Aliases []string `yaml:"aliases"`
|
||||||
Type string `yaml:"type"`
|
Type string `yaml:"type"`
|
||||||
|
@ -431,8 +435,6 @@ func init() {
|
||||||
viper.SetDefault("prefersorttags", false)
|
viper.SetDefault("prefersorttags", false)
|
||||||
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("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")
|
||||||
|
|
||||||
|
@ -477,6 +479,10 @@ func init() {
|
||||||
viper.SetDefault("scanner.watcherwait", consts.DefaultWatcherWait)
|
viper.SetDefault("scanner.watcherwait", consts.DefaultWatcherWait)
|
||||||
viper.SetDefault("scanner.scanonstartup", true)
|
viper.SetDefault("scanner.scanonstartup", true)
|
||||||
|
|
||||||
|
viper.SetDefault("subsonic.artistparticipations", false)
|
||||||
|
viper.SetDefault("subsonic.defaultreportrealpath", false)
|
||||||
|
viper.SetDefault("subsonic.legacyclients", "DSub")
|
||||||
|
|
||||||
viper.SetDefault("agents", "lastfm,spotify")
|
viper.SetDefault("agents", "lastfm,spotify")
|
||||||
viper.SetDefault("lastfm.enabled", true)
|
viper.SetDefault("lastfm.enabled", true)
|
||||||
viper.SetDefault("lastfm.language", "en")
|
viper.SetDefault("lastfm.language", "en")
|
||||||
|
@ -521,7 +527,6 @@ func init() {
|
||||||
viper.SetDefault("devscannerthreads", 5)
|
viper.SetDefault("devscannerthreads", 5)
|
||||||
viper.SetDefault("devinsightsinitialdelay", consts.InsightsInitialDelay)
|
viper.SetDefault("devinsightsinitialdelay", consts.InsightsInitialDelay)
|
||||||
viper.SetDefault("devenableplayerinsights", true)
|
viper.SetDefault("devenableplayerinsights", true)
|
||||||
viper.SetDefault("devopensubsonicdisabledclients", "DSub")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func InitConfig(cfgFile string) {
|
func InitConfig(cfgFile string) {
|
||||||
|
|
|
@ -53,7 +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,
|
ReportRealPath: conf.Server.Subsonic.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)
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,7 +50,7 @@ func AlbumsByArtistID(artistId string) Options {
|
||||||
filters := []Sqlizer{
|
filters := []Sqlizer{
|
||||||
persistence.Exists("json_tree(Participants, '$.albumartist')", Eq{"value": artistId}),
|
persistence.Exists("json_tree(Participants, '$.albumartist')", Eq{"value": artistId}),
|
||||||
}
|
}
|
||||||
if conf.Server.SubsonicArtistParticipations {
|
if conf.Server.Subsonic.ArtistParticipations {
|
||||||
filters = append(filters,
|
filters = append(filters,
|
||||||
persistence.Exists("json_tree(Participants, '$.artist')", Eq{"value": artistId}),
|
persistence.Exists("json_tree(Participants, '$.artist')", Eq{"value": artistId}),
|
||||||
)
|
)
|
||||||
|
|
|
@ -110,7 +110,7 @@ func toArtistID3(r *http.Request, a model.Artist) responses.ArtistID3 {
|
||||||
|
|
||||||
func toOSArtistID3(ctx context.Context, a model.Artist) *responses.OpenSubsonicArtistID3 {
|
func toOSArtistID3(ctx context.Context, a model.Artist) *responses.OpenSubsonicArtistID3 {
|
||||||
player, _ := request.PlayerFrom(ctx)
|
player, _ := request.PlayerFrom(ctx)
|
||||||
if strings.Contains(conf.Server.DevOpenSubsonicDisabledClients, player.Client) {
|
if strings.Contains(conf.Server.Subsonic.LegacyClients, player.Client) {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
artist := responses.OpenSubsonicArtistID3{
|
artist := responses.OpenSubsonicArtistID3{
|
||||||
|
@ -197,7 +197,7 @@ func childFromMediaFile(ctx context.Context, mf model.MediaFile) responses.Child
|
||||||
|
|
||||||
func osChildFromMediaFile(ctx context.Context, mf model.MediaFile) *responses.OpenSubsonicChild {
|
func osChildFromMediaFile(ctx context.Context, mf model.MediaFile) *responses.OpenSubsonicChild {
|
||||||
player, _ := request.PlayerFrom(ctx)
|
player, _ := request.PlayerFrom(ctx)
|
||||||
if strings.Contains(conf.Server.DevOpenSubsonicDisabledClients, player.Client) {
|
if strings.Contains(conf.Server.Subsonic.LegacyClients, player.Client) {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
child := responses.OpenSubsonicChild{}
|
child := responses.OpenSubsonicChild{}
|
||||||
|
@ -301,7 +301,7 @@ func childFromAlbum(ctx context.Context, al model.Album) responses.Child {
|
||||||
|
|
||||||
func osChildFromAlbum(ctx context.Context, al model.Album) *responses.OpenSubsonicChild {
|
func osChildFromAlbum(ctx context.Context, al model.Album) *responses.OpenSubsonicChild {
|
||||||
player, _ := request.PlayerFrom(ctx)
|
player, _ := request.PlayerFrom(ctx)
|
||||||
if strings.Contains(conf.Server.DevOpenSubsonicDisabledClients, player.Client) {
|
if strings.Contains(conf.Server.Subsonic.LegacyClients, player.Client) {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
child := responses.OpenSubsonicChild{}
|
child := responses.OpenSubsonicChild{}
|
||||||
|
@ -376,7 +376,7 @@ func buildAlbumID3(ctx context.Context, album model.Album) responses.AlbumID3 {
|
||||||
|
|
||||||
func buildOSAlbumID3(ctx context.Context, album model.Album) *responses.OpenSubsonicAlbumID3 {
|
func buildOSAlbumID3(ctx context.Context, album model.Album) *responses.OpenSubsonicAlbumID3 {
|
||||||
player, _ := request.PlayerFrom(ctx)
|
player, _ := request.PlayerFrom(ctx)
|
||||||
if strings.Contains(conf.Server.DevOpenSubsonicDisabledClients, player.Client) {
|
if strings.Contains(conf.Server.Subsonic.LegacyClients, player.Client) {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
dir := responses.OpenSubsonicAlbumID3{}
|
dir := responses.OpenSubsonicAlbumID3{}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue