Fix dateLoved in criteria. Now log invalid field names in criteria

This commit is contained in:
Deluan 2021-10-31 20:26:30 -04:00
parent a4d3bf42a7
commit 8c2e4da396
2 changed files with 11 additions and 1 deletions

View file

@ -6,6 +6,8 @@ import (
"errors" "errors"
"strings" "strings"
"github.com/navidrome/navidrome/log"
"github.com/Masterminds/squirrel" "github.com/Masterminds/squirrel"
) )
@ -21,6 +23,10 @@ type Criteria struct {
func (c Criteria) OrderBy() string { func (c Criteria) OrderBy() string {
f := fieldMap[strings.ToLower(c.Sort)] f := fieldMap[strings.ToLower(c.Sort)]
if f == "" {
log.Error("Invalid field in 'sort' field", "field", c.Sort)
f = c.Sort
}
if c.Order != "" { if c.Order != "" {
f = f + " " + c.Order f = f + " " + c.Order
} }

View file

@ -4,6 +4,8 @@ import (
"fmt" "fmt"
"strings" "strings"
"time" "time"
"github.com/navidrome/navidrome/log"
) )
var fieldMap = map[string]string{ var fieldMap = map[string]string{
@ -37,7 +39,7 @@ var fieldMap = map[string]string{
"channels": "media_file.channels", "channels": "media_file.channels",
"genre": "genre.name", "genre": "genre.name",
"loved": "annotation.starred", "loved": "annotation.starred",
"dateLoved": "annotation.starred_at", "dateloved": "annotation.starred_at",
"lastplayed": "annotation.play_date", "lastplayed": "annotation.play_date",
"playcount": "annotation.play_count", "playcount": "annotation.play_count",
"rating": "annotation.rating", "rating": "annotation.rating",
@ -48,6 +50,8 @@ func mapFields(expr map[string]interface{}) map[string]interface{} {
for f, v := range expr { for f, v := range expr {
if dbf, found := fieldMap[strings.ToLower(f)]; found { if dbf, found := fieldMap[strings.ToLower(f)]; found {
m[dbf] = v m[dbf] = v
} else {
log.Error("Invalid field in criteria", "field", f)
} }
} }
return m return m