notice.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package service
  2. import (
  3. "context"
  4. "strconv"
  5. "strings"
  6. "time"
  7. model "go-common/app/interface/main/reply/model/reply"
  8. "go-common/library/log"
  9. "go-common/library/net/metadata"
  10. )
  11. // RplyNotice return a reply notice from memory.
  12. func (s *Service) RplyNotice(c context.Context, plat int8, build int64, app, buvid string) (n *model.Notice) {
  13. n = new(model.Notice)
  14. // NOTE skip crash build, wrong plat ipad and ipad HD
  15. if plat == model.PlatIPad && (build >= 10400 && build <= 10420) {
  16. return
  17. }
  18. if (app == "iphone" || app == "iphone_i") && plat == model.PlatIPad && (build >= 4270 && build <= 4350) {
  19. return
  20. }
  21. if nts, ok := s.notice[plat]; ok {
  22. for _, notice := range nts {
  23. if notice.CheckBuild(plat, build, app) {
  24. *n = *notice
  25. break
  26. }
  27. }
  28. }
  29. // 如果是空 返回给客户端null
  30. if n.ID == 0 {
  31. n = nil
  32. return
  33. }
  34. if plat != model.PlatWeb && strings.Contains(n.Link, "https://ad-bili-data.biligame.com/api/mobile") {
  35. n.Link = strings.Replace(n.Link, "__MID__", strconv.FormatInt(metadata.Int64(c, metadata.Mid), 10), 1)
  36. n.Link = strings.Replace(n.Link, "__IP__", metadata.String(c, metadata.RemoteIP), 1)
  37. n.Link = strings.Replace(n.Link, "__BUVID__", buvid, 1)
  38. n.Link = strings.Replace(n.Link, "__TS__", strconv.FormatInt(time.Now().Unix(), 10), 1)
  39. }
  40. return
  41. }
  42. // loadRplNotice load reply notice
  43. func (s *Service) loadRplNotice() (err error) {
  44. nts, err := s.dao.Notice.ReplyNotice(context.Background())
  45. if err != nil {
  46. log.Error("s.ReplynNotice err(%v)", err)
  47. return
  48. }
  49. tmp := make(map[int8][]*model.Notice, len(nts))
  50. for _, nt := range nts {
  51. tmp[nt.Plat] = append(tmp[nt.Plat], nt)
  52. }
  53. //map的是引用类型(底层实现是指针),所以不必对s.notice加锁
  54. s.notice = tmp
  55. return
  56. }