elastic.go 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. package search
  2. import (
  3. "context"
  4. "fmt"
  5. "regexp"
  6. "strconv"
  7. seaMdl "go-common/app/interface/main/tv/model/search"
  8. "go-common/library/database/elastic"
  9. "go-common/library/ecode"
  10. "go-common/library/log"
  11. )
  12. func yearTrans(year string) (stime, etime string, err error) {
  13. yearExp := regexp.MustCompile(`^([\d]{4})-([\d]{4})$`)
  14. params := yearExp.FindStringSubmatch(year)
  15. if len(params) < 3 {
  16. err = ecode.RequestErr
  17. return
  18. }
  19. return params[1] + "-01-01 00:00:00", params[2] + "-12-31 23:59:59", nil
  20. }
  21. // PgcIdx treats the pgc index request and call the ES to get the result
  22. func (d *Dao) PgcIdx(c context.Context, req *seaMdl.ReqPgcIdx) (data *seaMdl.EsPgcResult, err error) {
  23. var (
  24. syear, eyear string
  25. cfg = d.conf.Cfg.EsIdx.PgcIdx
  26. r = d.esClient.NewRequest(cfg.Business).Index(cfg.Index).
  27. Fields("season_id").WhereEq("is_deleted", 0).WhereEq("status", 0).
  28. WhereRange("season_id", 0, nil, elastic.RangeScopeLoRc)
  29. )
  30. if req.SeasonType > 0 {
  31. r.WhereEq("season_type", req.SeasonType)
  32. }
  33. if req.ProducerID > 0 {
  34. r.WhereEq("producer_id", req.ProducerID)
  35. }
  36. if !req.IsAllStr(req.Year) {
  37. if syear, eyear, err = yearTrans(req.Year); err != nil {
  38. log.Warn("PgcIdx Request Year %s, Err %v", req.Year, err)
  39. return
  40. }
  41. r.WhereRange("release_date", syear, eyear, elastic.RangeScopeLcRc)
  42. }
  43. if !req.IsAllStr(req.PubDate) {
  44. if syear, eyear, err = yearTrans(req.PubDate); err != nil {
  45. log.Warn("PgcIdx Request PubDate %s, Err %v", req.PubDate, err)
  46. return
  47. }
  48. r.WhereRange("pub_time", syear, eyear, elastic.RangeScopeLcRc)
  49. }
  50. if req.StyleID > 0 {
  51. r.WhereEq("style_id", req.StyleID)
  52. }
  53. if req.SeasonMonth > 0 {
  54. r.WhereEq("season_month", req.SeasonMonth)
  55. }
  56. if !req.IsAll(req.SeasonStatus) {
  57. r.WhereIn("pay_status", req.SeasonStatus)
  58. }
  59. if !req.IsAll(req.Copyright) {
  60. r.WhereIn("copyright_info", req.Copyright)
  61. }
  62. if !req.IsAllStr(req.IsFinish) {
  63. isFin, _ := strconv.Atoi(req.IsFinish)
  64. r.WhereEq("is_finish", isFin)
  65. }
  66. if !req.IsAll(req.Area) {
  67. r.WhereIn("area_id", req.Area)
  68. }
  69. if req.SeasonVersion > 0 {
  70. r.WhereEq("season_version", req.SeasonVersion)
  71. }
  72. r.Ps(req.Ps).Pn(int(req.Pn)).Order(req.PgcOrder(), seaMdl.IdxSort(req.Sort))
  73. if err = r.Scan(c, &data); err != nil {
  74. log.Error("PgcIdx:Scan params(%s) error(%v)", r.Params(), err)
  75. return
  76. }
  77. if data == nil || data.Page == nil {
  78. err = fmt.Errorf("data or data.Page nil")
  79. log.Error("PgcIdx params(%s) error(%v)", r.Params(), err)
  80. return
  81. }
  82. data.Page.GetPageNb() // calculate page number
  83. return
  84. }
  85. // UgcIdx treats the ugc index request and call the ES to get the result
  86. func (d *Dao) UgcIdx(c context.Context, req *seaMdl.SrvUgcIdx) (data *seaMdl.EsUgcResult, err error) {
  87. if len(req.TIDs) == 0 {
  88. err = ecode.RequestErr
  89. return
  90. }
  91. var (
  92. cfg = d.conf.Cfg.EsIdx.UgcIdx
  93. r = d.esClient.NewRequest(cfg.Business).Index(cfg.Index).WhereEq("deleted", 0).
  94. WhereEq("valid", 1).WhereEq("result", 1).WhereIn("typeid", req.TIDs)
  95. )
  96. if pub := req.PubTime; pub != nil {
  97. r.WhereRange("pubtime", pub.STime, pub.ETime, elastic.RangeScopeLcRc)
  98. }
  99. r.Ps(req.Ps).Pn(int(req.Pn)).Order(req.UgcOrder(), seaMdl.IdxSort(req.Sort))
  100. if err = r.Scan(c, &data); err != nil {
  101. log.Error("PgcIdx:Scan params(%s) error(%v)", r.Params(), err)
  102. return
  103. }
  104. if data == nil || data.Page == nil {
  105. err = fmt.Errorf("data or data.Page nil")
  106. log.Error("PgcIdx params(%s) error(%v)", r.Params(), err)
  107. return
  108. }
  109. data.Page.GetPageNb() // calculate page number
  110. return
  111. }