dao.go 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. package bfs
  2. import (
  3. "context"
  4. "crypto/hmac"
  5. "crypto/sha1"
  6. "encoding/base64"
  7. "fmt"
  8. "go-common/app/interface/main/videoup/conf"
  9. "go-common/library/ecode"
  10. "go-common/library/log"
  11. "hash"
  12. "io"
  13. "net/http"
  14. "strconv"
  15. "time"
  16. )
  17. const (
  18. _bucket = "archive"
  19. _url = "http://bfs.bilibili.co/bfs/archive/"
  20. _template = "%s\n%s\n\n%d\n"
  21. _method = "PUT"
  22. _key = "8d4e593ba7555502"
  23. _secret = "0bdbd4c7caeeddf587c3c4daec0475"
  24. )
  25. // Dao is bfs dao.
  26. type Dao struct {
  27. c *conf.Config
  28. client *http.Client
  29. }
  30. // New new a bfs dao.
  31. func New(c *conf.Config) (d *Dao) {
  32. d = &Dao{
  33. c: c,
  34. client: &http.Client{
  35. Timeout: time.Duration(c.Bfs.Timeout),
  36. },
  37. }
  38. return d
  39. }
  40. // Upload upload bfs.
  41. func (d *Dao) Upload(c context.Context, fileType string, body io.Reader) (location string, err error) {
  42. req, err := http.NewRequest(_method, _url, body)
  43. if err != nil {
  44. log.Error("http.NewRequest error (%v) | fileType(%s) body(%v)", err, fileType, body)
  45. return
  46. }
  47. expire := time.Now().Unix()
  48. authorization := authorize(_key, _secret, _method, _bucket, expire)
  49. req.Header.Set("Host", _url)
  50. req.Header.Add("Date", fmt.Sprint(expire))
  51. req.Header.Add("Authorization", authorization)
  52. req.Header.Add("Content-Type", fileType)
  53. // timeout
  54. c, cancel := context.WithTimeout(c, time.Duration(d.c.Bfs.Timeout))
  55. req = req.WithContext(c)
  56. defer cancel()
  57. resp, err := d.client.Do(req)
  58. if err != nil {
  59. log.Error("d.Client.Do error(%v) | _url(%s) req(%v)", err, _url, req)
  60. err = ecode.BfsUploadServiceUnavailable
  61. return
  62. }
  63. if resp.StatusCode != http.StatusOK {
  64. log.Error("Upload http.StatusCode nq http.StatusOK (%d) | url(%s)", resp.StatusCode, _url)
  65. err = ecode.BfsUploadStatusErr
  66. return
  67. }
  68. header := resp.Header
  69. code := header.Get("Code")
  70. if code != strconv.Itoa(http.StatusOK) {
  71. log.Error("strconv.Itoa err, code(%s) | url(%s)", code, _url)
  72. err = ecode.BfsUploadCodeErr
  73. return
  74. }
  75. location = header.Get("Location")
  76. return
  77. }
  78. // authorize returns authorization for upload file to bfs
  79. func authorize(key, secret, method, bucket string, expire int64) (authorization string) {
  80. var (
  81. content string
  82. mac hash.Hash
  83. signature string
  84. )
  85. content = fmt.Sprintf(_template, method, bucket, expire)
  86. mac = hmac.New(sha1.New, []byte(secret))
  87. mac.Write([]byte(content))
  88. signature = base64.StdEncoding.EncodeToString(mac.Sum(nil))
  89. authorization = fmt.Sprintf("%s:%s:%d", key, signature, expire)
  90. return
  91. }