mirror of
https://github.com/mainnika/mongox-go-driver.git
synced 2026-05-22 15:53:36 +00:00
Move protection query to explicit function
This commit is contained in:
+47
-8
@@ -1,8 +1,10 @@
|
||||
package query
|
||||
|
||||
import (
|
||||
"github.com/mainnika/mongox-go-driver/mongox/base"
|
||||
"github.com/mainnika/mongox-go-driver/mongox/errors"
|
||||
"github.com/mongodb/mongo-go-driver/bson"
|
||||
"github.com/mongodb/mongo-go-driver/bson/primitive"
|
||||
)
|
||||
|
||||
// ComposeQuery is a function to compose filters into a single query
|
||||
@@ -11,14 +13,7 @@ func Compose(filters ...interface{}) *Query {
|
||||
q := &Query{}
|
||||
|
||||
for _, f := range filters {
|
||||
|
||||
ok := false
|
||||
ok = ok || applyBson(q, f)
|
||||
ok = ok || applyLimit(q, f)
|
||||
ok = ok || applySort(q, f)
|
||||
ok = ok || applySkip(q, f)
|
||||
|
||||
if !ok {
|
||||
if !Push(q, f) {
|
||||
panic(errors.InternalErrorf("unknown filter %v", f))
|
||||
}
|
||||
}
|
||||
@@ -26,6 +21,19 @@ func Compose(filters ...interface{}) *Query {
|
||||
return q
|
||||
}
|
||||
|
||||
// Push applies single filter to a query
|
||||
func Push(q *Query, f interface{}) bool {
|
||||
|
||||
ok := false
|
||||
ok = ok || applyBson(q, f)
|
||||
ok = ok || applyLimit(q, f)
|
||||
ok = ok || applySort(q, f)
|
||||
ok = ok || applySkip(q, f)
|
||||
ok = ok || applyProtection(q, f)
|
||||
|
||||
return ok
|
||||
}
|
||||
|
||||
// applyBson is a fallback for a custom bson.M
|
||||
func applyBson(q *Query, f interface{}) bool {
|
||||
|
||||
@@ -69,3 +77,34 @@ func applySkip(q *Query, f interface{}) bool {
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
func applyProtection(q *Query, f interface{}) bool {
|
||||
|
||||
var x *primitive.ObjectID
|
||||
var v *int64
|
||||
|
||||
switch f := f.(type) {
|
||||
case base.Protection:
|
||||
x = &f.X
|
||||
v = &f.V
|
||||
case *base.Protection:
|
||||
if f == nil {
|
||||
return false
|
||||
}
|
||||
x = &f.X
|
||||
v = &f.V
|
||||
|
||||
default:
|
||||
return false
|
||||
}
|
||||
|
||||
if x.IsZero() {
|
||||
q.And(primitive.M{"_x": primitive.M{"$exists": false}})
|
||||
q.And(primitive.M{"_v": primitive.M{"$exists": false}})
|
||||
} else {
|
||||
q.And(primitive.M{"_x": *x})
|
||||
q.And(primitive.M{"_v": *v})
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user