-
Notifications
You must be signed in to change notification settings - Fork 0
/
deletemany.go
43 lines (33 loc) · 1.09 KB
/
deletemany.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
package mongohelper
import (
"context"
"errors"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
)
// DeleteMany wraps the mongo.Database.Collection.DeleteMany() method
// It returns the number of affected records and an error
func (l *Link) DeleteMany(database, collection string, filter interface{}) (int64, error) {
if err := l.linkCheck("link.DeleteMany"); err != nil {
return 0, err
}
ctx, cancel := context.WithTimeout(context.Background(), l.execTimeout())
defer cancel()
rs, err := l.client.Database(database).Collection(collection).DeleteMany(ctx, filter, options.Delete())
if err != nil {
// If not connected, try once again
if errors.Is(err, mongo.ErrClientDisconnected) {
if err = l.connect(); err != nil {
return 0, err
}
ctx2, cancel2 := context.WithTimeout(context.Background(), l.execTimeout())
defer cancel2()
if rs, err = l.client.Database(database).Collection(collection).DeleteMany(ctx2, filter, options.Delete()); err != nil {
return 0, err
}
} else {
return 0, err
}
}
return rs.DeletedCount, nil
}