forked from go-kivik/couchdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
attachments.go
193 lines (171 loc) · 5.19 KB
/
attachments.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
package couchdb
import (
"context"
"encoding/base64"
"io"
"io/ioutil"
"net/http"
"strings"
"github.com/flimzy/kivik"
"github.com/flimzy/kivik/driver"
"github.com/flimzy/kivik/errors"
"github.com/go-kivik/couchdb/chttp"
)
func (d *db) PutAttachment(ctx context.Context, docID, rev, filename, contentType string, body io.Reader) (newRev string, err error) {
return d.PutAttachmentOpts(ctx, docID, rev, filename, contentType, body, nil)
}
func (d *db) PutAttachmentOpts(ctx context.Context, docID, rev, filename, contentType string, body io.Reader, options map[string]interface{}) (newRev string, err error) {
if docID == "" {
return "", missingArg("docID")
}
if filename == "" {
return "", missingArg("filename")
}
if contentType == "" {
return "", missingArg("contentType")
}
if body == nil {
return "", errors.Status(kivik.StatusBadRequest, "kivik: body is nil")
}
fullCommit, err := fullCommit(d.fullCommit, options)
if err != nil {
return "", err
}
query, err := optionsToParams(options)
if err != nil {
return "", err
}
if rev != "" {
query.Set("rev", rev)
}
var response struct {
Rev string `json:"rev"`
}
var bodyCloser io.ReadCloser
if rc, ok := body.(io.ReadCloser); ok {
bodyCloser = rc
} else {
bodyCloser = ioutil.NopCloser(body)
}
opts := &chttp.Options{
Body: bodyCloser,
ContentType: contentType,
FullCommit: fullCommit,
}
_, err = d.Client.DoJSON(ctx, kivik.MethodPut, d.path(chttp.EncodeDocID(docID)+"/"+filename, query), opts, &response)
if err != nil {
return "", err
}
return response.Rev, nil
}
func (d *db) GetAttachmentMeta(ctx context.Context, docID, rev, filename string, options map[string]interface{}) (cType string, md5sum driver.MD5sum, err error) {
resp, err := d.fetchAttachment(ctx, kivik.MethodHead, docID, rev, filename, options)
if err != nil {
return "", driver.MD5sum{}, err
}
cType, md5sum, body, err := decodeAttachment(resp)
_ = body.Close()
return cType, md5sum, err
}
func (d *db) GetAttachment(ctx context.Context, docID, rev, filename string) (cType string, md5sum driver.MD5sum, content io.ReadCloser, err error) {
return d.GetAttachmentOpts(ctx, docID, rev, filename, nil)
}
func (d *db) GetAttachmentOpts(ctx context.Context, docID, rev, filename string, options map[string]interface{}) (cType string, md5sum driver.MD5sum, content io.ReadCloser, err error) {
resp, err := d.fetchAttachment(ctx, kivik.MethodGet, docID, rev, filename, options)
if err != nil {
return "", driver.MD5sum{}, nil, err
}
return decodeAttachment(resp)
}
func (d *db) fetchAttachment(ctx context.Context, method, docID, rev, filename string, options map[string]interface{}) (*http.Response, error) {
if method == "" {
return nil, errors.New("method required")
}
if docID == "" {
return nil, missingArg("docID")
}
if filename == "" {
return nil, missingArg("filename")
}
inm, err := ifNoneMatch(options)
if err != nil {
return nil, err
}
query, err := optionsToParams(options)
if err != nil {
return nil, err
}
if rev != "" {
query.Add("rev", rev)
}
opts := &chttp.Options{
IfNoneMatch: inm,
}
resp, err := d.Client.DoReq(ctx, method, d.path(chttp.EncodeDocID(docID)+"/"+filename, query), opts)
if err != nil {
return nil, err
}
return resp, chttp.ResponseError(resp)
}
func decodeAttachment(resp *http.Response) (cType string, md5sum driver.MD5sum, content io.ReadCloser, err error) {
var ok bool
if cType, ok = getContentType(resp); !ok {
return "", driver.MD5sum{}, nil, errors.Status(kivik.StatusBadResponse, "no Content-Type in response")
}
md5sum, err = getMD5Checksum(resp)
return cType, md5sum, resp.Body, err
}
func getContentType(resp *http.Response) (ctype string, ok bool) {
ctype = resp.Header.Get("Content-Type")
_, ok = resp.Header["Content-Type"]
return ctype, ok
}
func getMD5Checksum(resp *http.Response) (md5sum driver.MD5sum, err error) {
etag, ok := resp.Header["Etag"]
if !ok {
etag, ok = resp.Header["ETag"]
}
if !ok {
return driver.MD5sum{}, errors.Status(kivik.StatusBadResponse, "ETag header not found")
}
hash, err := base64.StdEncoding.DecodeString(strings.Trim(etag[0], `"`))
if err != nil {
err = errors.Statusf(kivik.StatusBadResponse, "failed to decode MD5 checksum: %s", err)
}
copy(md5sum[:], hash)
return md5sum, err
}
func (d *db) DeleteAttachment(ctx context.Context, docID, rev, filename string) (newRev string, err error) {
return d.DeleteAttachmentOpts(ctx, docID, rev, filename, nil)
}
func (d *db) DeleteAttachmentOpts(ctx context.Context, docID, rev, filename string, options map[string]interface{}) (newRev string, err error) {
if docID == "" {
return "", missingArg("docID")
}
if rev == "" {
return "", missingArg("rev")
}
if filename == "" {
return "", missingArg("filename")
}
fullCommit, err := fullCommit(d.fullCommit, options)
if err != nil {
return "", err
}
query, err := optionsToParams(options)
if err != nil {
return "", err
}
query.Set("rev", rev)
var response struct {
Rev string `json:"rev"`
}
opts := &chttp.Options{
FullCommit: fullCommit,
}
_, err = d.Client.DoJSON(ctx, kivik.MethodDelete, d.path(chttp.EncodeDocID(docID)+"/"+filename, query), opts, &response)
if err != nil {
return "", err
}
return response.Rev, nil
}