c7ad17b60c
Signed-off-by: Michael Mayer <michael@photoprism.app>
30 lines
551 B
Go
30 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)
|
|
}
|