1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- package bfs
- import (
- "context"
- "crypto/hmac"
- "crypto/sha1"
- "encoding/base64"
- "fmt"
- "go-common/app/interface/main/videoup/conf"
- "go-common/library/ecode"
- "go-common/library/log"
- "hash"
- "io"
- "net/http"
- "strconv"
- "time"
- )
- const (
- _bucket = "archive"
- _url = "http://bfs.bilibili.co/bfs/archive/"
- _template = "%s\n%s\n\n%d\n"
- _method = "PUT"
- _key = "8d4e593ba7555502"
- _secret = "0bdbd4c7caeeddf587c3c4daec0475"
- )
- // Dao is bfs dao.
- type Dao struct {
- c *conf.Config
- client *http.Client
- }
- // New new a bfs dao.
- func New(c *conf.Config) (d *Dao) {
- d = &Dao{
- c: c,
- client: &http.Client{
- Timeout: time.Duration(c.Bfs.Timeout),
- },
- }
- return d
- }
- // Upload upload bfs.
- func (d *Dao) Upload(c context.Context, fileType string, body io.Reader) (location string, err error) {
- req, err := http.NewRequest(_method, _url, body)
- if err != nil {
- log.Error("http.NewRequest error (%v) | fileType(%s) body(%v)", err, fileType, body)
- return
- }
- expire := time.Now().Unix()
- authorization := authorize(_key, _secret, _method, _bucket, expire)
- req.Header.Set("Host", _url)
- req.Header.Add("Date", fmt.Sprint(expire))
- req.Header.Add("Authorization", authorization)
- req.Header.Add("Content-Type", fileType)
- // timeout
- c, cancel := context.WithTimeout(c, time.Duration(d.c.Bfs.Timeout))
- req = req.WithContext(c)
- defer cancel()
- resp, err := d.client.Do(req)
- if err != nil {
- log.Error("d.Client.Do error(%v) | _url(%s) req(%v)", err, _url, req)
- err = ecode.BfsUploadServiceUnavailable
- return
- }
- if resp.StatusCode != http.StatusOK {
- log.Error("Upload http.StatusCode nq http.StatusOK (%d) | url(%s)", resp.StatusCode, _url)
- err = ecode.BfsUploadStatusErr
- return
- }
- header := resp.Header
- code := header.Get("Code")
- if code != strconv.Itoa(http.StatusOK) {
- log.Error("strconv.Itoa err, code(%s) | url(%s)", code, _url)
- err = ecode.BfsUploadCodeErr
- return
- }
- location = header.Get("Location")
- return
- }
- // authorize returns authorization for upload file to bfs
- func authorize(key, secret, method, bucket string, expire int64) (authorization string) {
- var (
- content string
- mac hash.Hash
- signature string
- )
- content = fmt.Sprintf(_template, method, bucket, expire)
- mac = hmac.New(sha1.New, []byte(secret))
- mac.Write([]byte(content))
- signature = base64.StdEncoding.EncodeToString(mac.Sum(nil))
- authorization = fmt.Sprintf("%s:%s:%d", key, signature, expire)
- return
- }
|