-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsertone.go
50 lines (38 loc) · 1.22 KB
/
insertone.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
package mongohelper
import (
"context"
"errors"
"go.mongodb.org/mongo-driver/bson/primitive"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
)
// InsertOne wraps the mongo.Database.Collection.InsertOne() method
// It returns the generated ObjectId and an error
func (l *Link) InsertOne(database, collection string, document interface{}) (string, error) {
if err := l.linkCheck("link.InsertOne"); err != nil {
return "", err
}
ctx, cancel := context.WithTimeout(context.Background(), l.execTimeout())
defer cancel()
rs, err := l.client.Database(database).Collection(collection).InsertOne(ctx, document, options.InsertOne())
if err != nil {
// If not connected, try once again
if errors.Is(err, mongo.ErrClientDisconnected) {
if err = l.connect(); err != nil {
return ``, err
}
ctx2, cancel2 := context.WithTimeout(context.Background(), l.execTimeout())
defer cancel2()
if rs, err = l.client.Database(database).Collection(collection).InsertOne(ctx2, document, options.InsertOne()); err != nil {
return ``, err
}
} else {
return ``, err
}
}
oidHex := ""
if oid, ok := rs.InsertedID.(primitive.ObjectID); ok {
oidHex = oid.Hex()
}
return oidHex, nil
}