Make "ByPath" queries case-sensitive

This commit is contained in:
Deluan 2020-07-14 15:27:27 -04:00
parent 1ef0869a54
commit 8b20c26e04
2 changed files with 19 additions and 7 deletions

View file

@ -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