dal/pkg/filters/registry.go

38 lines
764 B
Go
Raw Normal View History

package filters
2024-08-08 17:26:29 +00:00
import (
"reflect"
)
var FilterRegistry = map[string]IFilter{
"And": &And{},
"Or": &Or{},
"Eq": &Eq{},
"Ne": &Ne{},
"Gt": &Gt{},
"Gte": &Gte{},
"Lt": &Lt{},
"Lte": &Lte{},
"In": &In{},
"Nin": &NotIn{},
"Between": &Between{},
"NotBetween": &NotBetween{},
"Glob": &Glob{},
"Like": &Like{},
"NotLike": &NotLike{},
}
func Convert(ctx Dialect, data interface{}) (string, []interface{}) {
for _, impl := range FilterRegistry {
filter := impl.FromJSON(data)
if reflect.DeepEqual(impl, filter) {
2024-08-08 17:26:29 +00:00
continue
}
sfmt, values := filter.ToSQLPart(ctx)
if sfmt != "" {
return sfmt, values
}
}
return Eq{Eq: data}.ToSQLPart(ctx)
}