This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
forked from go-kivik/couchdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
attachments.go
174 lines (156 loc) · 4.09 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
package couchdb
import (
"context"
"errors"
"net/http"
"github.com/go-kivik/couchdb/v4/chttp"
kivik "github.com/go-kivik/kivik/v4"
"github.com/go-kivik/kivik/v4/driver"
)
func (d *db) PutAttachment(ctx context.Context, docID, rev string, att *driver.Attachment, options map[string]interface{}) (newRev string, err error) {
if docID == "" {
return "", missingArg("docID")
}
if att == nil {
return "", missingArg("att")
}
if att.Filename == "" {
return "", missingArg("att.Filename")
}
if att.ContentType == "" {
return "", missingArg("att.ContentType")
}
if att.Content == nil {
return "", missingArg("att.Content")
}
fullCommit, err := 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"`
}
opts := &chttp.Options{
Body: att.Content,
ContentType: att.ContentType,
FullCommit: fullCommit,
Query: query,
}
_, err = d.Client.DoJSON(ctx, http.MethodPut, d.path(chttp.EncodeDocID(docID)+"/"+att.Filename), opts, &response)
if err != nil {
return "", err
}
return response.Rev, nil
}
func (d *db) GetAttachmentMeta(ctx context.Context, docID, filename string, options map[string]interface{}) (*driver.Attachment, error) {
resp, err := d.fetchAttachment(ctx, http.MethodHead, docID, filename, options)
if err != nil {
return nil, err
}
att, err := decodeAttachment(resp)
return att, err
}
func (d *db) GetAttachment(ctx context.Context, docID, filename string, options map[string]interface{}) (*driver.Attachment, error) {
resp, err := d.fetchAttachment(ctx, http.MethodGet, docID, filename, options)
if err != nil {
return nil, err
}
return decodeAttachment(resp)
}
func (d *db) fetchAttachment(ctx context.Context, method, docID, 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
}
opts := &chttp.Options{
IfNoneMatch: inm,
Query: query,
}
resp, err := d.Client.DoReq(ctx, method, d.path(chttp.EncodeDocID(docID)+"/"+filename), opts)
if err != nil {
return nil, err
}
return resp, chttp.ResponseError(resp)
}
func decodeAttachment(resp *http.Response) (*driver.Attachment, error) {
cType, err := getContentType(resp)
if err != nil {
return nil, err
}
digest, err := getDigest(resp)
if err != nil {
return nil, err
}
return &driver.Attachment{
ContentType: cType,
Digest: digest,
Size: resp.ContentLength,
Content: resp.Body,
}, nil
}
func getContentType(resp *http.Response) (string, error) {
ctype := resp.Header.Get("Content-Type")
if _, ok := resp.Header["Content-Type"]; !ok {
return "", &kivik.Error{HTTPStatus: http.StatusBadGateway, Err: errors.New("no Content-Type in response")}
}
return ctype, nil
}
func getDigest(resp *http.Response) (string, error) {
etag, ok := chttp.ETag(resp)
if !ok {
return "", &kivik.Error{HTTPStatus: http.StatusBadGateway, Err: errors.New("ETag header not found")}
}
return etag, nil
}
func (d *db) DeleteAttachment(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(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,
Query: query,
}
_, err = d.Client.DoJSON(ctx, http.MethodDelete, d.path(chttp.EncodeDocID(docID)+"/"+filename), opts, &response)
if err != nil {
return "", err
}
return response.Rev, nil
}