ad.go 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package show
  2. import (
  3. "context"
  4. "strconv"
  5. "go-common/app/interface/main/app-show/model"
  6. "go-common/app/interface/main/app-show/model/show"
  7. locmdl "go-common/app/service/main/location/model"
  8. "go-common/library/log"
  9. )
  10. // cpmRecommend
  11. func (s *Service) cpmRecommend(c context.Context, mid int64, build int, buvid, resource, network, mobiApp, device, ipaddr string) (sis map[int]*show.Item) {
  12. if _, ok := s.cpmRcmmndMid[mid]; !ok && (mid == 0 || int(mid)%100 >= s.cpmRcmmndNum) && !s.cpmRcmmndAll {
  13. return
  14. }
  15. var (
  16. info *locmdl.Info
  17. country, province, city string
  18. err error
  19. )
  20. if info, err = s.loc.Info(c, ipaddr); err != nil {
  21. log.Warn("s.loc.Info(%v) error(%v)", ipaddr, err)
  22. err = nil
  23. }
  24. if info != nil {
  25. country = info.Country
  26. province = info.Province
  27. city = info.Province
  28. }
  29. adr, err := s.ad.ADRequest(c, mid, build, buvid, resource, ipaddr, country, province, city, network, mobiApp, device, s.adIsPost)
  30. if err != nil {
  31. log.Error("s.ad.ADRequest error(%v)", err)
  32. return
  33. }
  34. sis = map[int]*show.Item{}
  35. sAdis := adr.ADIndexs[resource]
  36. if len(sAdis) == 0 {
  37. log.Info("mobi_app:%v-build:%v-resource:%v-is_ad_loc:%v", mobiApp, build, resource, false)
  38. return
  39. }
  40. var aids []int64
  41. for sidStr, adi := range sAdis {
  42. sid, _ := strconv.Atoi(sidStr)
  43. var si = &show.Item{
  44. IsAdLoc: true,
  45. IsAd: adi.IsAd,
  46. IsAdReplace: false,
  47. CmMark: adi.CmMark,
  48. Rank: adi.Index,
  49. SrcId: sid,
  50. RequestId: adr.RequestID,
  51. ClientIp: ipaddr,
  52. }
  53. if adInfo := adi.Info; adInfo != nil {
  54. aids = append(aids, adInfo.CreativeContent.VideoID)
  55. // si
  56. si.Goto = model.GotoAv
  57. si.Param = strconv.FormatInt(adInfo.CreativeContent.VideoID, 10)
  58. si.URI = model.FillURI(model.GotoAv, si.Param, nil)
  59. si.Title = adInfo.CreativeContent.Title
  60. si.Cover = model.CoverURL(adInfo.CreativeContent.ImageURL)
  61. si.IsAdReplace = true
  62. si.AdCb = adInfo.AdCb
  63. si.CreativeId = adInfo.CreativeID
  64. si.ShowUrl = adInfo.CreativeContent.ShowURL
  65. si.ClickUrl = adInfo.CreativeContent.ClickURL
  66. }
  67. sis[si.Rank] = si
  68. log.Info("mobi_app:%v-build:%v-resource:%v-is_ad_loc:%v", mobiApp, build, resource, true)
  69. }
  70. if len(aids) == 0 {
  71. return
  72. }
  73. as, err := s.arc.ArchivesPB(c, aids)
  74. if err != nil {
  75. log.Error("s.arc.ArchivesPB(%v) error(%v)", aids, err)
  76. return
  77. }
  78. for _, si := range sis {
  79. aid, _ := strconv.ParseInt(si.Param, 10, 64)
  80. if a, ok := as[aid]; ok && a != nil {
  81. si.Play = int(a.Stat.View)
  82. si.Danmaku = int(a.Stat.Danmaku)
  83. if si.Title == "" {
  84. si.Title = a.Title
  85. }
  86. if si.Cover == "" {
  87. si.Cover = model.CoverURL(a.Pic)
  88. }
  89. }
  90. }
  91. return
  92. }