-
Notifications
You must be signed in to change notification settings - Fork 15
/
bulkget.go
73 lines (64 loc) · 1.89 KB
/
bulkget.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
64
65
66
67
68
69
70
71
72
73
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
package couchdb
import (
"context"
"encoding/json"
"fmt"
"net/http"
"github.com/go-kivik/couchdb/v4/chttp"
"github.com/go-kivik/kivik/v4/driver"
)
func (d *db) BulkGet(ctx context.Context, docs []driver.BulkGetReference, opts map[string]interface{}) (driver.Rows, error) {
query, err := optionsToParams(opts)
if err != nil {
return nil, err
}
body := map[string]interface{}{
"docs": docs,
}
options := &chttp.Options{
Query: query,
GetBody: chttp.BodyEncoder(body),
Header: http.Header{
chttp.HeaderIdempotencyKey: []string{},
},
}
resp, err := d.Client.DoReq(ctx, http.MethodPost, d.path("_bulk_get"), options)
if err != nil {
return nil, err
}
if err = chttp.ResponseError(resp); err != nil {
return nil, err
}
return newBulkGetRows(ctx, resp.Body), nil
}
// BulkGetError represents an error for a single document returned by a
// GetBulk call.
type BulkGetError struct {
ID string `json:"id"`
Rev string `json:"rev"`
Err string `json:"error"`
Reason string `json:"reason"`
}
var _ error = &BulkGetError{}
func (e *BulkGetError) Error() string {
return fmt.Sprintf("%s: %s", e.Err, e.Reason)
}
type bulkResultDoc struct {
Doc json.RawMessage `json:"ok,omitempty"`
Error *BulkGetError `json:"error,omitempty"`
}
type bulkResult struct {
ID string `json:"id"`
Docs []bulkResultDoc `json:"docs"`
}