Skip to content

Commit c9f25a1

Browse files
committed
Make body headers less bad for #8
1 parent 32859c2 commit c9f25a1

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

builder.go

+8-11
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ func buildRequest(input metaRequest) (req request, err error) {
3232
return
3333
}
3434

35-
body, bodyHeaders, bodyerr := buildBody(input)
36-
if bodyerr != nil {
37-
err = fmt.Errorf("creating body %w", bodyerr)
35+
var body io.Reader
36+
body, err = buildBody(&input)
37+
if err != nil {
38+
err = fmt.Errorf("creating body %w", err)
3839
return
3940
}
4041
r, err = http.NewRequest(input.method, url, body)
@@ -45,10 +46,6 @@ func buildRequest(input metaRequest) (req request, err error) {
4546
for header, value := range input.headers {
4647
r.Header.Set(header, value)
4748
}
48-
for header, value := range bodyHeaders {
49-
r.Header.Set(header, value)
50-
}
51-
5249
}
5350
req = request{
5451
label: input.label,
@@ -69,7 +66,7 @@ func buildRequest(input metaRequest) (req request, err error) {
6966
return
7067
}
7168

72-
func buildFileBody(input metaRequest) (body *bytes.Buffer, headers map[string]string, err error) {
69+
func buildFileBody(input *metaRequest) (body *bytes.Buffer, err error) {
7370
file, err := os.Open(input.filepath)
7471
if err != nil {
7572
return
@@ -91,11 +88,11 @@ func buildFileBody(input metaRequest) (body *bytes.Buffer, headers map[string]st
9188
if err != nil {
9289
return
9390
}
94-
95-
return body, map[string]string{"Content-Type": writer.FormDataContentType()}, err
91+
input.headers["Content-Type"] = writer.FormDataContentType()
92+
return body, err
9693
}
9794

98-
func buildBody(input metaRequest) (body io.Reader, headers map[string]string, err error) {
95+
func buildBody(input *metaRequest) (body io.Reader, err error) {
9996
if input.filepath != "" {
10097
return buildFileBody(input)
10198
}

builder_test.go

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
package rest
2+
3+
// Tots testing this stuff

0 commit comments

Comments
 (0)