netsafe.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package archive
  2. import (
  3. "context"
  4. "crypto/tls"
  5. "fmt"
  6. "go-common/library/ecode"
  7. "go-common/library/log"
  8. "io/ioutil"
  9. "net"
  10. "net/http"
  11. "net/url"
  12. "strconv"
  13. "strings"
  14. "time"
  15. )
  16. const (
  17. _nsMd5 = "/videoup/ns/md5"
  18. _notifyURL = "https://wax.gtloadbalance.cn:38080/InterfaceInfo/GetResult"
  19. )
  20. // AddNetSafeMd5 fn
  21. func (d *Dao) AddNetSafeMd5(c context.Context, nid int64, md5 string) (err error) {
  22. params := url.Values{}
  23. params.Set("nid", strconv.FormatInt(nid, 10))
  24. params.Set("md5", md5)
  25. var res struct {
  26. Code int `json:"code"`
  27. }
  28. if err = d.client.Post(c, d.nsMd5, "", params, &res); err != nil {
  29. log.Error("d.client.Post(%s,%s) err(%v)", d.nsMd5, params.Encode(), err)
  30. err = ecode.CreativeArchiveAPIErr
  31. return
  32. }
  33. if res.Code != 0 {
  34. log.Error("d.client.res.Code (%s,%s) err(%v)", d.nsMd5, params.Encode(), res.Code)
  35. err = ecode.Int(res.Code)
  36. return
  37. }
  38. return
  39. }
  40. // NotifyNetSafe fn
  41. func (d *Dao) NotifyNetSafe(c context.Context, nid int64) (err error) {
  42. req, err := http.NewRequest("POST", _notifyURL, strings.NewReader(fmt.Sprintf(`nid=%d&companyId=%d`, nid, 2)))
  43. if err != nil {
  44. log.Error("http.NewRequest error(%v) | uri(%s)", err, _notifyURL)
  45. return
  46. }
  47. req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
  48. req.Header.Add("cache-control", "no-cache")
  49. httpClient := &http.Client{
  50. Timeout: time.Duration(time.Duration(5) * time.Second),
  51. Transport: &http.Transport{
  52. TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
  53. Dial: (&net.Dialer{
  54. Timeout: 5 * time.Second,
  55. Deadline: time.Now().Add(5 * time.Second),
  56. KeepAlive: 5 * time.Second,
  57. }).Dial,
  58. TLSHandshakeTimeout: 5 * time.Second,
  59. ResponseHeaderTimeout: time.Second * 2,
  60. },
  61. }
  62. var resp *http.Response
  63. if resp, err = httpClient.Do(req); err != nil {
  64. log.Error("NotifyNetSafe d.client.Do error(%v) | uri(%s)", err, _notifyURL)
  65. return
  66. }
  67. defer resp.Body.Close()
  68. body, err := ioutil.ReadAll(resp.Body)
  69. log.Warn("NotifyNetSafe ret body (%+v), nid(%+v)", string(body), nid)
  70. return
  71. }