You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
966 B
36 lines
966 B
6 years ago
|
package common
|
||
|
|
||
|
import (
|
||
|
"github.com/mainnika/mongox-go-driver/mongox"
|
||
|
"github.com/mainnika/mongox-go-driver/mongox/errors"
|
||
|
"github.com/mainnika/mongox-go-driver/mongox/query"
|
||
|
"github.com/mongodb/mongo-go-driver/mongo"
|
||
|
"github.com/mongodb/mongo-go-driver/mongo/options"
|
||
|
)
|
||
|
|
||
|
// LoadOne function loads a first single target document by a query
|
||
|
func LoadOne(db *mongox.Database, target interface{}, composed *query.Query) error {
|
||
|
|
||
|
collection := db.GetCollectionOf(target)
|
||
|
opts := &options.FindOneOptions{}
|
||
|
|
||
|
if composed.Sorter() != nil {
|
||
|
opts.Sort = composed.Sorter().Sort()
|
||
|
}
|
||
|
|
||
|
result := collection.FindOne(db.Context(), composed.M(), opts)
|
||
|
if result.Err() != nil {
|
||
|
return errors.InternalErrorf("can't create find one result: %s", result.Err())
|
||
|
}
|
||
|
|
||
|
err := result.Decode(target)
|
||
|
if err == mongo.ErrNoDocuments {
|
||
|
return errors.NotFoundErrorf("%s", err)
|
||
|
}
|
||
|
if err != nil {
|
||
|
return errors.InternalErrorf("can't decode desult: %s", err)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|