oauth2_client.go 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package vip
  2. import (
  3. "bytes"
  4. "context"
  5. "crypto/md5"
  6. "encoding/hex"
  7. xhttp "net/http"
  8. "net/url"
  9. "strings"
  10. "go-common/library/conf/env"
  11. bm "go-common/library/net/http/blademaster"
  12. pkgerr "github.com/pkg/errors"
  13. )
  14. //Clientl Client is http client, for url sign.
  15. type Clientl struct {
  16. client *bm.Client
  17. conf *bm.ClientConfig
  18. }
  19. // NewClientl new a http client.
  20. func NewClientl(c *bm.ClientConfig, client *bm.Client) *Clientl {
  21. // check appkey
  22. if c.Key == "" || c.Secret == "" {
  23. panic("http client must config appkey and appsecret")
  24. }
  25. cl := new(Clientl)
  26. cl.client = client
  27. cl.conf = c
  28. return cl
  29. }
  30. const (
  31. _httpHeaderRemoteIP = "x-backend-bili-real-ip"
  32. _noKickUserAgent = "haoguanwei@bilibili.com "
  33. )
  34. func (cl *Clientl) get(c context.Context, host, path, realIP string, params url.Values, res interface{}) (err error) {
  35. req, err := cl.newGetRequest(host, path, realIP, params)
  36. if err != nil {
  37. return
  38. }
  39. return cl.client.Do(c, req, res)
  40. }
  41. // newGetRequest new get http request with host, path, ip, values and headers, without sign.
  42. func (cl *Clientl) newGetRequest(host, path, realIP string, params url.Values) (req *xhttp.Request, err error) {
  43. if params == nil {
  44. params = url.Values{}
  45. }
  46. params.Add("client_id", cl.conf.App.Key)
  47. enc := sign(params, path, cl.conf.App.Secret)
  48. ru := host + path
  49. if enc != "" {
  50. ru = ru + "?" + enc
  51. }
  52. req, err = xhttp.NewRequest(xhttp.MethodGet, ru, nil)
  53. if err != nil {
  54. err = pkgerr.Wrapf(err, "uri:%s", ru)
  55. return
  56. }
  57. const (
  58. _userAgent = "User-Agent"
  59. )
  60. if realIP != "" {
  61. req.Header.Set(_httpHeaderRemoteIP, realIP)
  62. }
  63. req.Header.Set(_userAgent, _noKickUserAgent+" "+env.AppID)
  64. return
  65. }
  66. func sign(params url.Values, path, secret string) string {
  67. if params == nil {
  68. params = url.Values{}
  69. }
  70. tmp := params.Encode()
  71. if strings.IndexByte(tmp, '+') > -1 {
  72. tmp = strings.Replace(tmp, "+", "%20", -1)
  73. }
  74. var b bytes.Buffer
  75. b.WriteString(path)
  76. b.WriteString("?")
  77. b.WriteString(tmp)
  78. b.WriteString(secret)
  79. mh := md5.Sum(b.Bytes())
  80. // query
  81. var qb bytes.Buffer
  82. qb.WriteString(tmp)
  83. qb.WriteString("&sign=")
  84. qb.WriteString(hex.EncodeToString(mh[:]))
  85. return qb.String()
  86. }