mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Fix values from annotation table cannot be compared to 0
Solves this issue: https://github.com/navidrome/navidrome/issues/1417#issuecomment-974052454
This commit is contained in:
parent
4bf4765442
commit
92c31c961d
3 changed files with 58 additions and 43 deletions
|
@ -22,15 +22,25 @@ type Criteria struct {
|
|||
}
|
||||
|
||||
func (c Criteria) OrderBy() string {
|
||||
if c.Sort == "" {
|
||||
c.Sort = "title"
|
||||
}
|
||||
f := fieldMap[strings.ToLower(c.Sort)]
|
||||
if f == "" {
|
||||
var mapped string
|
||||
if f == nil {
|
||||
log.Error("Invalid field in 'sort' field", "field", c.Sort)
|
||||
f = c.Sort
|
||||
mapped = c.Sort
|
||||
} else {
|
||||
if f.order == "" {
|
||||
mapped = f.field
|
||||
} else {
|
||||
mapped = f.order
|
||||
}
|
||||
}
|
||||
if c.Order != "" {
|
||||
f = f + " " + c.Order
|
||||
mapped = mapped + " " + c.Order
|
||||
}
|
||||
return f
|
||||
return mapped
|
||||
}
|
||||
|
||||
func (c Criteria) ToSql() (sql string, args []interface{}, err error) {
|
||||
|
|
|
@ -8,48 +8,53 @@ import (
|
|||
"github.com/navidrome/navidrome/log"
|
||||
)
|
||||
|
||||
var fieldMap = map[string]string{
|
||||
"title": "media_file.title",
|
||||
"album": "media_file.album",
|
||||
"artist": "media_file.artist",
|
||||
"albumartist": "media_file.album_artist",
|
||||
"hascoverart": "media_file.has_cover_art",
|
||||
"tracknumber": "media_file.track_number",
|
||||
"discnumber": "media_file.disc_number",
|
||||
"year": "media_file.year",
|
||||
"size": "media_file.size",
|
||||
"compilation": "media_file.compilation",
|
||||
"dateadded": "media_file.created_at",
|
||||
"datemodified": "media_file.updated_at",
|
||||
"discsubtitle": "media_file.disc_subtitle",
|
||||
"comment": "media_file.comment",
|
||||
"lyrics": "media_file.lyrics",
|
||||
"sorttitle": "media_file.sort_title",
|
||||
"sortalbum": "media_file.sort_album_name",
|
||||
"sortartist": "media_file.sort_artist_name",
|
||||
"sortalbumartist": "media_file.sort_album_artist_name",
|
||||
"albumtype": "media_file.mbz_album_type",
|
||||
"albumcomment": "media_file.mbz_album_comment",
|
||||
"catalognumber": "media_file.catalog_num",
|
||||
"filepath": "media_file.path",
|
||||
"filetype": "media_file.suffix",
|
||||
"duration": "media_file.duration",
|
||||
"bitrate": "media_file.bit_rate",
|
||||
"bpm": "media_file.bpm",
|
||||
"channels": "media_file.channels",
|
||||
"genre": "genre.name",
|
||||
"loved": "annotation.starred",
|
||||
"dateloved": "annotation.starred_at",
|
||||
"lastplayed": "annotation.play_date",
|
||||
"playcount": "annotation.play_count",
|
||||
"rating": "annotation.rating",
|
||||
var fieldMap = map[string]*mappedField{
|
||||
"title": {field: "media_file.title"},
|
||||
"album": {field: "media_file.album"},
|
||||
"artist": {field: "media_file.artist"},
|
||||
"albumartist": {field: "media_file.album_artist"},
|
||||
"hascoverart": {field: "media_file.has_cover_art"},
|
||||
"tracknumber": {field: "media_file.track_number"},
|
||||
"discnumber": {field: "media_file.disc_number"},
|
||||
"year": {field: "media_file.year"},
|
||||
"size": {field: "media_file.size"},
|
||||
"compilation": {field: "media_file.compilation"},
|
||||
"dateadded": {field: "media_file.created_at"},
|
||||
"datemodified": {field: "media_file.updated_at"},
|
||||
"discsubtitle": {field: "media_file.disc_subtitle"},
|
||||
"comment": {field: "media_file.comment"},
|
||||
"lyrics": {field: "media_file.lyrics"},
|
||||
"sorttitle": {field: "media_file.sort_title"},
|
||||
"sortalbum": {field: "media_file.sort_album_name"},
|
||||
"sortartist": {field: "media_file.sort_artist_name"},
|
||||
"sortalbumartist": {field: "media_file.sort_album_artist_name"},
|
||||
"albumtype": {field: "media_file.mbz_album_type"},
|
||||
"albumcomment": {field: "media_file.mbz_album_comment"},
|
||||
"catalognumber": {field: "media_file.catalog_num"},
|
||||
"filepath": {field: "media_file.path"},
|
||||
"filetype": {field: "media_file.suffix"},
|
||||
"duration": {field: "media_file.duration"},
|
||||
"bitrate": {field: "media_file.bit_rate"},
|
||||
"bpm": {field: "media_file.bpm"},
|
||||
"channels": {field: "media_file.channels"},
|
||||
"genre": {field: "genre.name"},
|
||||
"loved": {field: "annotation.starred"},
|
||||
"dateloved": {field: "annotation.starred_at"},
|
||||
"lastplayed": {field: "annotation.play_date"},
|
||||
"playcount": {field: "COALESCE(annotation.play_count, 0)", order: "annotation.play_count"},
|
||||
"rating": {field: "COALESCE(annotation.rating, 0)", order: "annotation.rating"},
|
||||
}
|
||||
|
||||
type mappedField struct {
|
||||
field string
|
||||
order string
|
||||
}
|
||||
|
||||
func mapFields(expr map[string]interface{}) map[string]interface{} {
|
||||
m := make(map[string]interface{})
|
||||
for f, v := range expr {
|
||||
if dbf, found := fieldMap[strings.ToLower(f)]; found {
|
||||
m[dbf] = v
|
||||
if dbf := fieldMap[strings.ToLower(f)]; dbf != nil {
|
||||
m[dbf.field] = v
|
||||
} else {
|
||||
log.Error("Invalid field in criteria", "field", f)
|
||||
}
|
||||
|
|
|
@ -23,8 +23,8 @@ var _ = Describe("Operators", func() {
|
|||
Entry("is [string]", Is{"title": "Low Rider"}, "media_file.title = ?", "Low Rider"),
|
||||
Entry("is [bool]", Is{"loved": true}, "annotation.starred = ?", true),
|
||||
Entry("isNot", IsNot{"title": "Low Rider"}, "media_file.title <> ?", "Low Rider"),
|
||||
Entry("gt", Gt{"playCount": 10}, "annotation.play_count > ?", 10),
|
||||
Entry("lt", Lt{"playCount": 10}, "annotation.play_count < ?", 10),
|
||||
Entry("gt", Gt{"playCount": 10}, "COALESCE(annotation.play_count, 0) > ?", 10),
|
||||
Entry("lt", Lt{"playCount": 10}, "COALESCE(annotation.play_count, 0) < ?", 10),
|
||||
Entry("contains", Contains{"title": "Low Rider"}, "media_file.title LIKE ?", "%Low Rider%"),
|
||||
Entry("notContains", NotContains{"title": "Low Rider"}, "media_file.title NOT LIKE ?", "%Low Rider%"),
|
||||
Entry("startsWith", StartsWith{"title": "Low Rider"}, "media_file.title LIKE ?", "Low Rider%"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue