audit/action_query.go

43 lines
761 B
Go

package audit
import (
"context"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/mongo/options"
)
// AllQuery ...
type AllQuery struct {
Target string
TargetID string
Page int64
Limit int64
}
// All ...
func (s Service) All(query AllQuery) []Audit {
var (
ctx = context.Background()
colName = getColName(query.Target)
skip = query.Page * query.Limit
result = make([]Audit, 0)
)
// Find db
cursor, err := s.DB.Collection(colName).Find(ctx, bson.D{
{"source", s.Source},
{"target", query.Target},
{"targetId", query.TargetID},
}, &options.FindOptions{
Limit: &query.Limit,
Skip: &skip,
})
if err != nil {
return result
}
defer cursor.Close(ctx)
cursor.All(ctx, &result)
return result
}