forked from galaxydi/go-loghub
-
Notifications
You must be signed in to change notification settings - Fork 113
/
signature.go
140 lines (121 loc) · 3.37 KB
/
signature.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
package sls
import (
"crypto/hmac"
"crypto/md5"
"crypto/sha1"
"encoding/base64"
"fmt"
"net/url"
"sort"
"strings"
"time"
)
const (
HTTPHeaderAuthorization = "Authorization"
HTTPHeaderContentMD5 = "Content-MD5"
HTTPHeaderContentType = "Content-Type"
HTTPHeaderContentLength = "Content-Length"
HTTPHeaderDate = "Date"
HTTPHeaderHost = "Host"
HTTPHeaderUserAgent = "User-Agent"
HTTPHeaderAcsSecurityToken = "x-acs-security-token"
HTTPHeaderAPIVersion = "x-log-apiversion"
HTTPHeaderLogDate = "x-log-date"
HTTPHeaderLogContentSha256 = "x-log-content-sha256"
HTTPHeaderSignatureMethod = "x-log-signaturemethod"
HTTPHeaderBodyRawSize = "x-log-bodyrawsize"
)
type Signer interface {
// Sign modifies @param headers only, adds signature and other http headers
// that log services authorization requires.
Sign(method, uriWithQuery string, headers map[string]string, body []byte) error
}
// GMT location
var gmtLoc = time.FixedZone("GMT", 0)
// NowRFC1123 returns now time in RFC1123 format with GMT timezone,
// eg, "Mon, 02 Jan 2006 15:04:05 GMT".
func nowRFC1123() string {
return time.Now().In(gmtLoc).Format(time.RFC1123)
}
// SignerV1 version v1
type SignerV1 struct {
accessKeyID string
accessKeySecret string
}
func NewSignerV1(accessKeyID, accessKeySecret string) *SignerV1 {
return &SignerV1{
accessKeyID: accessKeyID,
accessKeySecret: accessKeySecret,
}
}
func (s *SignerV1) Sign(method, uri string, headers map[string]string, body []byte) error {
var contentMD5, contentType, date, canoHeaders, canoResource string
if body != nil {
contentMD5 = fmt.Sprintf("%X", md5.Sum(body))
headers[HTTPHeaderContentMD5] = contentMD5
}
if val, ok := headers[HTTPHeaderContentType]; ok {
contentType = val
}
date, ok := headers[HTTPHeaderDate]
if !ok {
return fmt.Errorf("Can't find 'Date' header")
}
headers[HTTPHeaderSignatureMethod] = signatureMethod
var slsHeaderKeys sort.StringSlice
// Calc CanonicalizedSLSHeaders
slsHeaders := make(map[string]string, len(headers))
for k, v := range headers {
l := strings.TrimSpace(strings.ToLower(k))
if strings.HasPrefix(l, "x-log-") || strings.HasPrefix(l, "x-acs-") {
slsHeaders[l] = strings.TrimSpace(v)
slsHeaderKeys = append(slsHeaderKeys, l)
}
}
sort.Sort(slsHeaderKeys)
for i, k := range slsHeaderKeys {
canoHeaders += k + ":" + slsHeaders[k]
if i+1 < len(slsHeaderKeys) {
canoHeaders += "\n"
}
}
// Calc CanonicalizedResource
u, err := url.Parse(uri)
if err != nil {
return err
}
canoResource += u.EscapedPath()
if u.RawQuery != "" {
var keys sort.StringSlice
vals := u.Query()
for k := range vals {
keys = append(keys, k)
}
sort.Sort(keys)
canoResource += "?"
for i, k := range keys {
if i > 0 {
canoResource += "&"
}
for _, v := range vals[k] {
canoResource += k + "=" + v
}
}
}
signStr := method + "\n" +
contentMD5 + "\n" +
contentType + "\n" +
date + "\n" +
canoHeaders + "\n" +
canoResource
// Signature = base64(hmac-sha1(UTF8-Encoding-Of(SignString),AccessKeySecret))
mac := hmac.New(sha1.New, []byte(s.accessKeySecret))
_, err = mac.Write([]byte(signStr))
if err != nil {
return err
}
digest := base64.StdEncoding.EncodeToString(mac.Sum(nil))
auth := fmt.Sprintf("SLS %s:%s", s.accessKeyID, digest)
headers[HTTPHeaderAuthorization] = auth
return nil
}