-
Notifications
You must be signed in to change notification settings - Fork 0
/
findone.go
63 lines (48 loc) · 1.64 KB
/
findone.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package mongohelper
import (
"context"
"errors"
"fmt"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
)
// FindOne wraps the mongo.Database.Collection.FindOne() method
// It returns a SingleResult for one document in the collection.
//
// The filter parameter must be a document containing query operators and can be used to select the document to be
// returned. If the filter does not match any documents, a SingleResult with an error set to
// ErrNoDocuments will be returned. If the filter matches multiple documents, one will be selected from the matched set.
func (l *Link) FindOne(database, collection string, filter interface{}, dest interface{}) error {
if err := l.linkCheck("link.FindOne"); err != nil {
return err
}
if dest == nil {
return fmt.Errorf(`given "dest" is null`)
}
ctx, cancel := context.WithTimeout(context.Background(), l.execTimeout())
defer cancel()
if filter == nil {
filter = bson.M{}
}
rs := l.client.Database(database).Collection(collection).FindOne(ctx, filter, options.FindOne())
if err := rs.Err(); err != nil {
// If not connected, try once again, reconnecting. otherwise, just return/leave
if !errors.Is(err, mongo.ErrClientDisconnected) {
return err
}
if err := l.connect(); err != nil {
return err
}
ctx2, cancel2 := context.WithTimeout(context.Background(), l.execTimeout())
defer cancel2()
rs = l.client.Database(database).Collection(collection).FindOne(ctx2, filter, options.FindOne())
if err := rs.Err(); err != nil {
return err
}
}
if err := rs.Decode(dest); err != nil {
return err
}
return nil
}