mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Filter playlists by names and comments
This commit is contained in:
parent
66a9cbb7d9
commit
074732b1dc
3 changed files with 20 additions and 1 deletions
|
@ -68,6 +68,15 @@ func fullTextFilter(field string, value interface{}) Sqlizer {
|
|||
return fullTextExpr(value.(string))
|
||||
}
|
||||
|
||||
func substringFilter(field string, value interface{}) Sqlizer {
|
||||
parts := strings.Split(value.(string), " ")
|
||||
filters := And{}
|
||||
for _, part := range parts {
|
||||
filters = append(filters, Like{field: "%" + part + "%"})
|
||||
}
|
||||
return filters
|
||||
}
|
||||
|
||||
func idFilter(tableName string) func(string, interface{}) Sqlizer {
|
||||
return func(field string, value interface{}) Sqlizer {
|
||||
return Eq{tableName + ".id": value}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue