123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- package oss
- import (
- "bytes"
- "crypto/hmac"
- "crypto/sha1"
- "encoding/base64"
- "fmt"
- "hash"
- "io"
- "net/http"
- "sort"
- "strconv"
- "strings"
- )
- // headerSorter defines the key-value structure for storing the sorted data in signHeader.
- type headerSorter struct {
- Keys []string
- Vals []string
- }
- // signHeader signs the header and sets it as the authorization header.
- func (conn Conn) signHeader(req *http.Request, canonicalizedResource string) {
- // Get the final authorization string
- authorizationStr := "OSS " + conn.config.AccessKeyID + ":" + conn.getSignedStr(req, canonicalizedResource)
- // Give the parameter "Authorization" value
- req.Header.Set(HTTPHeaderAuthorization, authorizationStr)
- }
- func (conn Conn) getSignedStr(req *http.Request, canonicalizedResource string) string {
- // Find out the "x-oss-"'s address in header of the request
- temp := make(map[string]string)
- for k, v := range req.Header {
- if strings.HasPrefix(strings.ToLower(k), "x-oss-") {
- temp[strings.ToLower(k)] = v[0]
- }
- }
- hs := newHeaderSorter(temp)
- // Sort the temp by the ascending order
- hs.Sort()
- // Get the canonicalizedOSSHeaders
- canonicalizedOSSHeaders := ""
- for i := range hs.Keys {
- canonicalizedOSSHeaders += hs.Keys[i] + ":" + hs.Vals[i] + "\n"
- }
- // Give other parameters values
- // when sign URL, date is expires
- date := req.Header.Get(HTTPHeaderDate)
- contentType := req.Header.Get(HTTPHeaderContentType)
- contentMd5 := req.Header.Get(HTTPHeaderContentMD5)
- signStr := req.Method + "\n" + contentMd5 + "\n" + contentType + "\n" + date + "\n" + canonicalizedOSSHeaders + canonicalizedResource
- conn.config.WriteLog(Debug, "[Req:%p]signStr:%s.\n", req, signStr)
- h := hmac.New(func() hash.Hash { return sha1.New() }, []byte(conn.config.AccessKeySecret))
- io.WriteString(h, signStr)
- signedStr := base64.StdEncoding.EncodeToString(h.Sum(nil))
- return signedStr
- }
- func (conn Conn) getRtmpSignedStr(bucketName, channelName, playlistName string, expiration int64, params map[string]interface{}) string {
- if params[HTTPParamAccessKeyID] == nil {
- return ""
- }
- canonResource := fmt.Sprintf("/%s/%s", bucketName, channelName)
- canonParamsKeys := []string{}
- for key := range params {
- if key != HTTPParamAccessKeyID && key != HTTPParamSignature && key != HTTPParamExpires && key != HTTPParamSecurityToken {
- canonParamsKeys = append(canonParamsKeys, key)
- }
- }
- sort.Strings(canonParamsKeys)
- canonParamsStr := ""
- for _, key := range canonParamsKeys {
- canonParamsStr = fmt.Sprintf("%s%s:%s\n", canonParamsStr, key, params[key].(string))
- }
- expireStr := strconv.FormatInt(expiration, 10)
- signStr := expireStr + "\n" + canonParamsStr + canonResource
- h := hmac.New(func() hash.Hash { return sha1.New() }, []byte(conn.config.AccessKeySecret))
- io.WriteString(h, signStr)
- signedStr := base64.StdEncoding.EncodeToString(h.Sum(nil))
- return signedStr
- }
- // newHeaderSorter is an additional function for function SignHeader.
- func newHeaderSorter(m map[string]string) *headerSorter {
- hs := &headerSorter{
- Keys: make([]string, 0, len(m)),
- Vals: make([]string, 0, len(m)),
- }
- for k, v := range m {
- hs.Keys = append(hs.Keys, k)
- hs.Vals = append(hs.Vals, v)
- }
- return hs
- }
- // Sort is an additional function for function SignHeader.
- func (hs *headerSorter) Sort() {
- sort.Sort(hs)
- }
- // Len is an additional function for function SignHeader.
- func (hs *headerSorter) Len() int {
- return len(hs.Vals)
- }
- // Less is an additional function for function SignHeader.
- func (hs *headerSorter) Less(i, j int) bool {
- return bytes.Compare([]byte(hs.Keys[i]), []byte(hs.Keys[j])) < 0
- }
- // Swap is an additional function for function SignHeader.
- func (hs *headerSorter) Swap(i, j int) {
- hs.Vals[i], hs.Vals[j] = hs.Vals[j], hs.Vals[i]
- hs.Keys[i], hs.Keys[j] = hs.Keys[j], hs.Keys[i]
- }
|