mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
fix: do not add nil filters (#3394)
This commit is contained in:
parent
ae6499b941
commit
16d1314a68
2 changed files with 21 additions and 1 deletions
|
@ -29,7 +29,9 @@ func (r *sqlRepository) parseRestFilters(ctx context.Context, options rest.Query
|
||||||
// Look for a custom filter function
|
// Look for a custom filter function
|
||||||
f = strings.ToLower(f)
|
f = strings.ToLower(f)
|
||||||
if ff, ok := r.filterMappings[f]; ok {
|
if ff, ok := r.filterMappings[f]; ok {
|
||||||
filters = append(filters, ff(f, v))
|
if filter := ff(f, v); filter != nil {
|
||||||
|
filters = append(filters, filter)
|
||||||
|
}
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
// Ignore invalid filters (not based on a field or filter function)
|
// Ignore invalid filters (not based on a field or filter function)
|
||||||
|
|
|
@ -23,6 +23,24 @@ var _ = Describe("sqlRestful", func() {
|
||||||
Expect(r.parseRestFilters(context.Background(), options)).To(BeNil())
|
Expect(r.parseRestFilters(context.Background(), options)).To(BeNil())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
It(`returns nil if tries a filter with fullTextExpr("'")`, func() {
|
||||||
|
r.filterMappings = map[string]filterFunc{
|
||||||
|
"name": fullTextFilter,
|
||||||
|
}
|
||||||
|
options.Filters = map[string]interface{}{"name": "'"}
|
||||||
|
Expect(r.parseRestFilters(context.Background(), options)).To(BeEmpty())
|
||||||
|
})
|
||||||
|
|
||||||
|
It("does not add nill filters", func() {
|
||||||
|
r.filterMappings = map[string]filterFunc{
|
||||||
|
"name": func(string, any) squirrel.Sqlizer {
|
||||||
|
return nil
|
||||||
|
},
|
||||||
|
}
|
||||||
|
options.Filters = map[string]interface{}{"name": "joe"}
|
||||||
|
Expect(r.parseRestFilters(context.Background(), options)).To(BeEmpty())
|
||||||
|
})
|
||||||
|
|
||||||
It("returns a '=' condition for 'id' filter", func() {
|
It("returns a '=' condition for 'id' filter", func() {
|
||||||
options.Filters = map[string]interface{}{"id": "123"}
|
options.Filters = map[string]interface{}{"id": "123"}
|
||||||
Expect(r.parseRestFilters(context.Background(), options)).To(Equal(squirrel.And{squirrel.Eq{"id": "123"}}))
|
Expect(r.parseRestFilters(context.Background(), options)).To(Equal(squirrel.And{squirrel.Eq{"id": "123"}}))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue