forked from ritafixeads/fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponse.go
82 lines (69 loc) · 1.74 KB
/
response.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
package fetch
import (
"encoding/json"
"fmt"
"io"
"net/http"
)
// ErrEmptyBody returns when there is no body to read
var ErrEmptyBody = fmt.Errorf("the body of response is empty")
// Response helper work with response from http.Client
type Response struct {
*http.Response
body []byte
}
// BodyIsEmpty return if body is empty or not.
func (r *Response) BodyIsEmpty() bool {
return r.body == nil || len(r.body) == 0
}
// Bytes return the Response in array of bytes.
func (r *Response) Bytes() (_ []byte, err error) {
// if body is not empty return itself
if !r.BodyIsEmpty() {
return r.body, nil
}
// if Body is empty
if r.Response == nil || r.Response.Body == nil {
return nil, ErrEmptyBody
}
r.body, err = io.ReadAll(io.Reader(r.Body))
return r.body, err
}
// String return the Response in string format.
// If has any error will return errors as string.
func (r *Response) String() (s string) {
switch bs, err := r.Bytes(); {
case err == ErrEmptyBody:
return ""
case err != nil:
return err.Error()
default:
return string(bs)
}
}
// String return the Response in string format or error.
func (r *Response) ToString() (string, error) {
bs, err := r.Bytes()
if err != nil {
return "", err
}
return string(bs), nil
}
// Decode body result into interface object.
func (r *Response) Decode(i interface{}) error {
body, err := r.Bytes()
if err != nil {
return err
}
return json.Unmarshal(body, i)
}
// newErrorResponse return response if has any kind of error
// could be from request or execution of Http.Client
func newErrorResponse(status int, msg string, err error) (*Response, error) {
return &Response{
Response: &http.Response{
StatusCode: status,
Status: http.StatusText(status),
},
}, fmt.Errorf(msg, err)
}