dal/pkg/filters/NotBetween.go

26 lines
522 B
Go
Raw Normal View History

package filters
import (
"fmt"
"l12.xyz/dal/utils"
)
type NotBetween struct {
NotBetween []interface{} `json:"$nbetween"`
}
func (f NotBetween) FromJSON(data interface{}) Filter {
return FromJson[NotBetween](data)
}
func (f NotBetween) ToSQLPart(ctx Context) string {
if f.NotBetween == nil {
return ""
}
name := ctx.GetFieldName()
values := utils.Map(f.NotBetween, ctx.NormalizeValue)
condition := fmt.Sprintf("%v AND %v", values[0], values[1])
return fmt.Sprintf("%s NOT BETWEEN %v", name, condition)
}