-
Notifications
You must be signed in to change notification settings - Fork 13
/
sign.go
62 lines (49 loc) · 1.06 KB
/
sign.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
package mixin
import (
"crypto/sha256"
"encoding/hex"
"io/ioutil"
"net/http"
"net/url"
"strings"
"github.com/go-resty/resty/v2"
"github.com/oxtoacart/bpool"
)
var bufferPool = bpool.NewSizedBufferPool(16, 256)
func SignRaw(method, uri string, body []byte) string {
b := bufferPool.Get()
defer bufferPool.Put(b)
b.WriteString(method)
b.WriteString(uri)
b.Write(body)
sum := sha256.Sum256(b.Bytes())
return hex.EncodeToString(sum[:])
}
func SignRequest(r *http.Request) string {
method := r.Method
uri := trimURLHost(r.URL)
var body []byte
if r.GetBody != nil {
if b, _ := r.GetBody(); b != nil {
body, _ = ioutil.ReadAll(b)
_ = b.Close()
}
}
return SignRaw(method, uri, body)
}
func SignResponse(r *resty.Response) string {
method := r.Request.Method
uri := trimURLHost(r.Request.RawRequest.URL)
return SignRaw(method, uri, r.Body())
}
func trimURLHost(u *url.URL) string {
path := u.Path
if path == "" || path == "/" {
return "/"
}
uri := u.String()
if idx := strings.Index(uri, path); idx >= 0 {
uri = uri[idx:]
}
return uri
}