mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Make "ByPath" queries case-sensitive
This commit is contained in:
parent
1ef0869a54
commit
8b20c26e04
2 changed files with 19 additions and 7 deletions
|
@ -5,7 +5,6 @@ import (
|
|||
"fmt"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
|
||||
. "github.com/Masterminds/squirrel"
|
||||
"github.com/astaxie/beego/orm"
|
||||
|
@ -95,11 +94,9 @@ func (r mediaFileRepository) FindByPath(path string) (model.MediaFiles, error) {
|
|||
}
|
||||
|
||||
func pathStartsWith(path string) Sqlizer {
|
||||
escapeChar := string(os.PathListSeparator)
|
||||
escapedPath := strings.ReplaceAll(path, escapeChar, escapeChar+escapeChar)
|
||||
escapedPath = strings.ReplaceAll(escapedPath, "_", escapeChar+"_")
|
||||
escapedPath = strings.ReplaceAll(escapedPath, "%", escapeChar+"%")
|
||||
return ConcatExpr(Like{"path": filepath.Join(escapedPath, "%")}, " escape '"+escapeChar+"'")
|
||||
cleanPath := filepath.Clean(path)
|
||||
substr := fmt.Sprintf("substr(path, 1, %d)", len(cleanPath))
|
||||
return Eq{substr: cleanPath}
|
||||
}
|
||||
|
||||
// FindPathsRecursively returns a list of all subfolders of basePath, recursively
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue