This repository was archived by the owner on Apr 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathhttp.go
79 lines (72 loc) · 1.79 KB
/
http.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
package edgecli
import (
"encoding/json"
log "github.com/sirupsen/logrus"
"io/ioutil"
"net/http"
)
type HttpOption struct {
Token string
BaseUrl string
}
func HandleCall(req *http.Request) (interface{}, error) {
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
log.Errorf("Fail to call backend API [%s]. err is %s\n", req.URL, err.Error())
return nil, err
}
return handle(resp)
}
func handle(resp *http.Response) (interface{}, error) {
body, code := handleResp(resp)
if code == 200 {
successResponse := &SuccessResponse{}
if err := handleSuccessResp(body, successResponse, resp.Request.URL.String()); err != nil {
return nil, err
} else {
return successResponse, nil
}
} else {
errorResponse := &ErrorResponse{}
if err := handleErrorResp(body, errorResponse, resp.Request.URL.String()); err != nil {
return nil, err
} else {
return errorResponse, nil
}
}
}
func handleResp(resp *http.Response) ([]byte, int) {
if resp == nil {
log.Errorf("Fail to call backend API")
return nil, -1
}
if resp.Body == nil {
return nil, resp.StatusCode
}
body, err := ioutil.ReadAll(resp.Body)
if resp.StatusCode != 200 {
return body, resp.StatusCode
}
if err != nil {
log.Errorf("Fail to read response of backend API [%s]\n", resp.Request.URL)
return nil, -1
}
return body, 200
}
func handleSuccessResp(body []byte, v *SuccessResponse, url string) error {
err := json.Unmarshal(body, v)
if err != nil {
log.Errorf("Fail to parse the response of API [%s]. Response is %s\n", url, body)
return err
}
return nil
}
func handleErrorResp(body []byte, v *ErrorResponse, url string) error {
err := json.Unmarshal(body, v)
if err != nil {
log.Errorf("Fail to parse the response of API [%s]. Response is %s\n", url, body)
return err
}
return nil
}