dao.go 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. package agent
  2. import (
  3. "bytes"
  4. "context"
  5. "crypto/tls"
  6. "encoding/json"
  7. "net"
  8. "net/http"
  9. "net/url"
  10. "strconv"
  11. "time"
  12. "go-common/app/service/main/videoup/conf"
  13. "go-common/app/service/main/videoup/model/archive"
  14. "go-common/library/log"
  15. xhttp "go-common/library/net/http/blademaster"
  16. )
  17. // Dao is redis dao.
  18. type Dao struct {
  19. c *conf.Config
  20. proxyClient *xhttp.Client
  21. pgcSubmitURI string
  22. }
  23. // New pub agent
  24. func New(c *conf.Config) (d *Dao) {
  25. d = &Dao{
  26. c: c,
  27. proxyClient: xhttp.NewClient(c.HTTPClient.Read),
  28. pgcSubmitURI: c.PubAgent.PGCSubmit,
  29. }
  30. // add proxy
  31. proxyURL, _ := url.Parse(c.PubAgent.Proxy)
  32. dialer := &net.Dialer{
  33. Timeout: time.Duration(c.HTTPClient.Write.Timeout),
  34. KeepAlive: time.Duration(c.HTTPClient.Write.KeepAlive),
  35. }
  36. transport := &http.Transport{
  37. DialContext: dialer.DialContext,
  38. TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
  39. Proxy: http.ProxyURL(proxyURL),
  40. }
  41. d.proxyClient.SetTransport(transport)
  42. return d
  43. }
  44. // AgentMsg send message to upper.
  45. func (d *Dao) AgentMsg(c context.Context, route, filename string) (err error) {
  46. query := "content_type=json&r=pgc_submit/msg_pgc_submit&filename=" + filename
  47. msg := &archive.PubAgentParam{
  48. Route: route,
  49. Timestamp: strconv.FormatInt(time.Now().Unix(), 10),
  50. Filename: filename,
  51. Xcode: 0,
  52. VideoDesign: "[]",
  53. Submit: 1,
  54. }
  55. // new request
  56. bs, err := json.Marshal(msg)
  57. if err != nil {
  58. log.Error("json.Marshal pubagent msg error (%v) | msg(%v)", err, msg)
  59. return
  60. }
  61. req, err := http.NewRequest("POST", d.pgcSubmitURI+"?"+query, bytes.NewReader(bs))
  62. if err != nil {
  63. log.Error("http.NewRequest error(%v) | uri(%s) msg(%v) req(%v)", err, d.pgcSubmitURI+"?"+query, msg, req)
  64. return
  65. }
  66. var res struct {
  67. Code int `json:"code"`
  68. Message string `json:"message"`
  69. }
  70. if err = d.proxyClient.Do(c, req, &res); err != nil {
  71. log.Error("AgentMsg d.httpW.Do error(%v) | uri(%s) msg(%v) req(%v)", err, d.pgcSubmitURI+"?"+query, msg, req)
  72. return
  73. }
  74. if res.Code != 0 {
  75. log.Error("AgentMsg res(%v) | uri(%s) msg(%v) req(%v)", res, d.pgcSubmitURI+"?"+query, msg, req)
  76. return
  77. }
  78. log.Info("AgentMsg success msg(%v) uri(%s)", msg, d.pgcSubmitURI+"?"+query)
  79. return
  80. }