forked from aliyun/aliyun-mns-go-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.go
60 lines (49 loc) · 1.44 KB
/
utils.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
package ali_mns
import (
"bytes"
"strconv"
"github.com/gogap/errors"
"github.com/valyala/fasthttp"
)
func send(client MNSClient, decoder MNSDecoder, method Method, headers map[string]string, message interface{}, resource string, v interface{}) (statusCode int, err error) {
var resp *fasthttp.Response
if resp, err = client.Send(method, headers, message, resource); err != nil {
return
}
if resp != nil {
statusCode = resp.Header.StatusCode()
if statusCode != fasthttp.StatusCreated &&
statusCode != fasthttp.StatusOK &&
statusCode != fasthttp.StatusNoContent {
// get the response body
// the body is set in error when decoding xml failed
bodyBytes := resp.Body()
var e2 error
err, e2 = decoder.DecodeError(bodyBytes, resource)
if e2 != nil {
err = ERR_UNMARSHAL_ERROR_RESPONSE_FAILED.New(errors.Params{"err": e2, "resp": string(bodyBytes)})
return
}
return
}
if v != nil {
buf := bytes.NewReader(resp.Body())
if e := decoder.Decode(buf, v); e != nil {
err = ERR_UNMARSHAL_RESPONSE_FAILED.New(errors.Params{"err": e})
return
}
if baseResponder, ok := v.(BaseResponder); ok {
hostId := ""
if resp.RemoteAddr() != nil {
hostId = resp.RemoteAddr().String()
}
baseResponder.SetBaseResponse(BaseResponse{
RequestId: string(resp.Header.Peek("x-mns-request-id")),
Code: strconv.Itoa(resp.StatusCode()),
HostId: hostId,
})
}
}
}
return
}