search.go 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. package music
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/dao/tool"
  5. "go-common/app/interface/main/creative/model/search"
  6. "go-common/library/database/elastic"
  7. "go-common/library/ecode"
  8. "go-common/library/log"
  9. )
  10. // SearchBgmSIDs fn
  11. func (d *Dao) SearchBgmSIDs(c context.Context, keyword string, pn, ps int) (ret []int64, page *search.Pager, err error) {
  12. retSIDs := make([]int64, 0)
  13. sres := &search.BgmResult{}
  14. r := d.es.NewRequest("archive_music").Fields(
  15. "sid",
  16. )
  17. r.Index("archive_music").Pn(1).Ps(5000).OrderScoreFirst(true)
  18. if len(keyword) > 0 { // "frontname", "name", "uname"
  19. r.WhereLike([]string{"music_frontname", "music_name", "uname"}, []string{keyword}, true, elastic.LikeLevelLow)
  20. }
  21. r.WhereEq("music_category_state", 0).WhereEq("music_state", 0).WhereEq("state", 0)
  22. r.Order("music_ctime", "desc") // 默认按入库时间倒序排
  23. log.Info("SearchBgmSIDs params(%s)", r.Params())
  24. if err = r.Scan(c, sres); err != nil {
  25. log.Error("SearchBgmSIDs r.Scan error(%v)", err)
  26. err = ecode.CreativeSearchErr
  27. return
  28. }
  29. if len(sres.Result) > 0 {
  30. for _, v := range sres.Result {
  31. retSIDs = append(retSIDs, v.SID)
  32. }
  33. }
  34. retSIDs = tool.DeDuplicationSlice(retSIDs)
  35. total := len(retSIDs)
  36. start := (pn - 1) * ps
  37. end := pn * ps
  38. page = &search.Pager{
  39. Num: pn,
  40. Size: ps,
  41. Total: total,
  42. }
  43. if total <= start {
  44. ret = make([]int64, 0)
  45. } else if total <= end {
  46. ret = retSIDs[start:total]
  47. } else {
  48. ret = retSIDs[start:end]
  49. }
  50. return
  51. }
  52. // ExtAidsWithSameBgm fn 获取这个sid最多的使用的aids列表,
  53. func (d *Dao) ExtAidsWithSameBgm(c context.Context, sid int64, pn int) (retAIDs []int64, total int, err error) {
  54. retAIDs = make([]int64, 0)
  55. sres := &search.BgmExtResult{}
  56. r := d.es.NewRequest("archive_material").Fields("aid")
  57. r.Index("archive_material").Pn(1).Ps(pn).OrderScoreFirst(true)
  58. r.WhereEq("type", 3).WhereIn("data", sid).GroupBy(elastic.EnhancedModeDistinct, "aid", nil)
  59. r.Order("click", "desc")
  60. log.Info("ExtAidsWithSameBgm params(%s)", r.Params())
  61. if err = r.Scan(c, sres); err != nil {
  62. log.Error("ExtAidsWithSameBgm r.Scan error(%v)", err)
  63. err = ecode.CreativeSearchErr
  64. return
  65. }
  66. if len(sres.Result) > 0 {
  67. for _, v := range sres.Result {
  68. retAIDs = append(retAIDs, v.AID)
  69. }
  70. }
  71. if sres.Page != nil {
  72. total = sres.Page.Total
  73. }
  74. return
  75. }