search.go 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. package search
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "net/url"
  7. "strconv"
  8. "time"
  9. "go-common/app/interface/main/app-show/conf"
  10. "go-common/library/log"
  11. httpx "go-common/library/net/http/blademaster"
  12. )
  13. const (
  14. _search = "/cate/search"
  15. )
  16. // Dao is search dao.
  17. type Dao struct {
  18. client *httpx.Client
  19. searchURL string
  20. // search duration
  21. searchTick string
  22. }
  23. //New recommend dao.
  24. func New(c *conf.Config) (d *Dao) {
  25. d = &Dao{
  26. client: httpx.NewClient(conf.Conf.HTTPClient),
  27. searchURL: c.Host.Search + _search,
  28. searchTick: c.Duration.Search,
  29. }
  30. return
  31. }
  32. // SearchList
  33. func (d *Dao) SearchList(c context.Context, rid, build, pn, ps int, mid int64, ts time.Time, ip, order, tagName, platform, mobiApp, device string) (arcids []int64, err error) {
  34. advance, _ := time.ParseDuration(d.searchTick) // three weeks -504h
  35. starttime := ts.Add(advance)
  36. params := url.Values{}
  37. params.Set("platform", platform)
  38. params.Set("mobi_app", mobiApp)
  39. params.Set("device", device)
  40. params.Set("order", order)
  41. params.Set("page", strconv.Itoa(pn))
  42. params.Set("pagesize", strconv.Itoa(ps))
  43. params.Set("time_from", starttime.Format("20060102"))
  44. params.Set("time_to", ts.Format("20060102"))
  45. params.Set("build", strconv.Itoa(build))
  46. params.Set("userid", strconv.FormatInt(mid, 10))
  47. params.Set("search_type", "video")
  48. params.Set("view_type", "hot_rank")
  49. params.Set("clientip", ip)
  50. if tagName != "" {
  51. params.Set("keyword", tagName)
  52. }
  53. params.Set("cate_id", strconv.Itoa(rid))
  54. var res struct {
  55. Code int `json:"code"`
  56. Data []struct {
  57. Aid interface{} `json:"id"`
  58. } `json:"result"`
  59. }
  60. if err = d.client.Get(c, d.searchURL, "", params, &res); err != nil {
  61. log.Error("search news url(%s) error(%v)", d.searchURL+"?"+params.Encode(), err)
  62. return
  63. }
  64. b, _ := json.Marshal(&res)
  65. log.Info("search list url(%v) response(%s)", d.searchURL+"?"+params.Encode(), b)
  66. if res.Code != 0 && res.Code != -1 {
  67. log.Error("search region news url(%s) error(%v)", d.searchURL+"?"+params.Encode(), res.Code)
  68. err = fmt.Errorf("search region news api response code(%v)", res)
  69. return
  70. }
  71. for _, arcs := range res.Data {
  72. var aidInt int64
  73. switch aid := arcs.Aid.(type) {
  74. case string:
  75. aidInt = aidToInt(aid)
  76. case float64:
  77. aidInt = int64(aid)
  78. }
  79. arcids = append(arcids, aidInt)
  80. }
  81. return
  82. }
  83. func aidToInt(aidstr string) (aid int64) {
  84. aid, _ = strconv.ParseInt(aidstr, 10, 64)
  85. return
  86. }