photoprism/pkg/txt/query.go
Michael Mayer c7ad17b60c Metadata: Ignore unknown values when parsing timestamps #2510
Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-07-22 12:38:25 +02:00

31 lines
551 B
Go

package txt
import (
"strings"
)
const (
EmptyString = ""
Space = " "
Or = "|"
And = "&"
)
// Spaced returns the string padded with a space left and right.
func Spaced(s string) string {
return Space + s + Space
}
// StripOr removes or operators from a query.
func StripOr(s string) string {
s = strings.ReplaceAll(s, Or, Space)
return s
}
// QueryTooShort tests if a search query is too short.
func QueryTooShort(q string) bool {
q = strings.Trim(q, "- '")
return q != EmptyString && len(q) < 3 && IsLatin(q)
}