-
Notifications
You must be signed in to change notification settings - Fork 12
/
oauth.go
executable file
·236 lines (209 loc) · 6.93 KB
/
oauth.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
// Package oauth performs OAuth1.0a compliant signing with
// body hash support for non-urlencoded content types.
package oauth
import (
"bytes"
"crypto/rand"
"crypto/rsa"
"encoding/base64"
"fmt"
"github.com/mastercard/oauth1-signer-go/crypto"
"net/url"
"sort"
"strconv"
"strings"
"time"
)
const (
// AuthorizationHeaderName constant is the header key name for the
// oauth1.0a based authorization header
AuthorizationHeaderName = "Authorization"
nonceLength = 16
alphaNumericChars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
authorizationPrefix = "OAuth " // trailing space is required
oauthConsumerKeyParam = "oauth_consumer_key"
oauthNonceParam = "oauth_nonce"
oauthSignatureParam = "oauth_signature"
oauthSignatureMethodParam = "oauth_signature_method"
oauthTimestampParam = "oauth_timestamp"
oauthVersionParam = "oauth_version"
oauthBodyHashParam = "oauth_body_hash"
defaultOauthVersion = "1.0"
sha256HashingAlgorithm = "SHA256"
)
// GetAuthorizationHeader creates a Mastercard API compliant OAuth Authorization header.
func GetAuthorizationHeader(u *url.URL, method string, payload []byte, consumerKey string, signingKey *rsa.PrivateKey) (string, error) {
queryParams := extractQueryParams(u)
// get all required oauth params
oauthParams := getOAuthParams(consumerKey, payload)
// combine query and oauth parameters into lexicographically sorted string
paramString := toOauthParamString(queryParams, oauthParams)
// normalized URL without query params and fragment
baseUrl := getBaseUrlString(u)
// signature base string
sbs := getSignatureBaseString(method, baseUrl, paramString)
// signature
signature, err := signSignatureBaseString(sbs, signingKey)
if err != nil {
return "", err
}
oauthParams[oauthSignatureParam] = percentEncode(signature)
return getAuthorizationString(oauthParams), nil
}
// The extractQueryParams parses query parameters out of the URL.
func extractQueryParams(u *url.URL) map[string][]string {
queryParams := u.Query()
rawQuery := u.RawQuery
// url.QueryUnescape unescape '+' to ' ' (space) which impacts
// the logic whether to perform percent encode or not. Hence,
// url.PathUnescape is used to get the decoded query string.
decodedQuery, _ := url.PathUnescape(rawQuery)
// whether to perform percent encode or not
mustEncode := decodedQuery != rawQuery
for k, v := range queryParams {
// encode key
if mustEncode {
// encoded key is now need to be
// inserted. Hence, remove the record
// of original key
queryParams.Del(k)
k = percentEncode(k)
}
// encode value(s)
for i, each := range v {
if mustEncode {
v[i] = percentEncode(each)
} else {
v[i] = each
}
}
queryParams[k] = v
}
return queryParams
}
// The getOAuthParams returns map of oauth parameters.
func getOAuthParams(consumerKey string, payload []byte) map[string]string {
params := map[string]string{
oauthConsumerKeyParam: consumerKey,
oauthNonceParam: getNonce(),
oauthSignatureMethodParam: "RSA-" + sha256HashingAlgorithm,
oauthTimestampParam: getTimestamp(),
oauthVersionParam: defaultOauthVersion,
oauthBodyHashParam: getBodyHash(payload),
}
return params
}
// The getTimestamp returns UNIX timestamp
func getTimestamp() string {
return strconv.FormatInt(epoch(), 10)
}
func epoch() int64 {
return time.Now().Unix()
}
// The getBodyHash generates the hash of request payload
func getBodyHash(payload []byte) string {
hash := crypto.Sha256(payload)
return base64.StdEncoding.EncodeToString(hash)
}
// The getNonce generates a random string for replay protection as per
// https://tools.ietf.org/html/rfc5849#section-3.3
func getNonce() (nonce string) {
randomVal := make([]byte, nonceLength)
_, _ = rand.Read(randomVal)
var length = len(alphaNumericChars)
for _, v := range randomVal {
nonce += string(alphaNumericChars[int(v)%length])
}
return
}
// The toOauthParamString sorts lexicographically all parameters and
// concatenate them into a string as per https://tools.ietf.org/html/rfc5849#section-3.4.1.3.2
func toOauthParamString(queryParams map[string][]string, oauthParams map[string]string) string {
consolidatedParams := make(map[string][]string, len(queryParams))
for k, v := range queryParams {
consolidatedParams[k] = v
}
// Add OAuth params to consolidated params map
for k, v := range oauthParams {
if val, ok := consolidatedParams[k]; ok {
consolidatedParams[k] = append(val, v)
} else {
consolidatedParams[k] = []string{v}
}
}
// sort as per the keys
keys := make([]string, len(consolidatedParams))
for k := range consolidatedParams {
keys = append(keys, k)
}
sort.Strings(keys)
var allParams bytes.Buffer
// Add all parameters to the parameter string for signing
for _, k := range keys {
v := consolidatedParams[k]
// Keys with same name are sorted by their values
if len(v) > 1 {
sort.Strings(v)
}
for _, val := range v {
allParams.WriteString(k)
allParams.WriteString("=")
allParams.WriteString(val)
allParams.WriteString("&")
}
}
paramString := allParams.String()
// Remove trailing ampersand
return strings.TrimSuffix(paramString, "&")
}
// The getBaseUrlString normalizes the URL
func getBaseUrlString(u *url.URL) string {
scheme := strings.ToLower(u.Scheme)
host := strings.ToLower(u.Host)
if hostPort := strings.Split(host, ":"); len(hostPort) == 2 && (hostPort[1] == "80" || hostPort[1] == "443") {
host = hostPort[0]
}
path := u.EscapedPath()
if path == "" || path[0] != '/' {
path = "/" + path
}
return fmt.Sprintf("%v://%v%v", scheme, host, path)
}
// The getSignatureBaseString generates a valid signature base string as per
// https://tools.ietf.org/id/draft-eaton-oauth-bodyhash-00.html
func getSignatureBaseString(method, baseUrl, paramString string) string {
// signature base string constructed according to 3.4.1.1
baseParts := []string{
// upper-case http method
strings.ToUpper(method),
// encoded base url
percentEncode(baseUrl),
// encoded parameter string
percentEncode(paramString),
}
return strings.Join(baseParts, "&")
}
// The signSignatureBaseString performs the RSA signing on the given
// input string.
func signSignatureBaseString(sbs string, signingKey *rsa.PrivateKey) (string, error) {
signature, err := crypto.Sign([]byte(sbs), signingKey)
if err != nil {
return "", err
}
return base64.StdEncoding.EncodeToString(signature), nil
}
// The getAuthorizationString constructs a valid Authorization header as per
// https://tools.ietf.org/html/rfc5849#section-3.5.1
func getAuthorizationString(oauthParams map[string]string) string {
var headerBuf bytes.Buffer
headerBuf.WriteString(authorizationPrefix)
for k, v := range oauthParams {
headerBuf.WriteString(k)
headerBuf.WriteString("=\"")
headerBuf.WriteString(v)
headerBuf.WriteString("\",")
}
header := headerBuf.String()
// Remove trailing ampersand
return strings.TrimSuffix(header, ",")
}