share.go 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. package share
  2. import (
  3. "context"
  4. "strconv"
  5. "time"
  6. shamdl "go-common/app/interface/main/web-goblin/model/share"
  7. accmdl "go-common/app/service/main/account/model"
  8. suitmdl "go-common/app/service/main/usersuit/model"
  9. "go-common/library/log"
  10. "go-common/library/sync/errgroup"
  11. )
  12. // Encourage share encourage.
  13. func (s *Service) Encourage(c context.Context, mid int64) (res *shamdl.Encourage, err error) {
  14. var (
  15. mcShare map[string]int64
  16. shares []*shamdl.Share
  17. key string
  18. info *accmdl.Info
  19. gps []*suitmdl.GroupPendantList
  20. shaPend []*shamdl.GroupPendant
  21. group = errgroup.Group{}
  22. )
  23. group.Go(func() (e error) {
  24. if info, e = s.accRPC.Info3(context.Background(), &accmdl.ArgMid{Mid: mid}); e != nil {
  25. log.Error("s.accRPC.Info mid(%d) error(%v)", mid, e)
  26. }
  27. return
  28. })
  29. group.Go(func() (e error) {
  30. if mcShare, e = s.dao.SharesCache(context.Background(), mid); e != nil {
  31. log.Error("s.dao.SharesCache mid(%d) error(%v)", mid, e)
  32. if shares, e = s.dao.Shares(context.Background(), mid); e != nil {
  33. log.Error("s.dao.Shares mid(%d) error(%v)", mid, e)
  34. return
  35. }
  36. count := len(shares)
  37. if count > 0 {
  38. mcShare = make(map[string]int64, count)
  39. for _, share := range shares {
  40. key = strconv.FormatInt(share.ShareDate, 10)
  41. mcShare[key] = share.DayCount
  42. }
  43. s.cache.Save(func() {
  44. expire := monthShare()
  45. s.dao.SetSharesCache(context.Background(), expire, mid, mcShare)
  46. })
  47. }
  48. }
  49. return
  50. })
  51. group.Go(func() (e error) {
  52. if gps, e = s.suit.GroupPendantMid(context.Background(), &suitmdl.ArgGPMID{MID: mid, GID: s.c.Rule.Gid}); e != nil {
  53. log.Error("s.suit.GroupPendantMid mid(%d) error(%v)", mid, e)
  54. }
  55. return
  56. })
  57. group.Wait()
  58. res = new(shamdl.Encourage)
  59. if len(gps) > 0 {
  60. for _, gp := range gps {
  61. shaPend = append(shaPend, &shamdl.GroupPendant{NeedDays: s.Pendants[gp.ID], Pendant: gp})
  62. }
  63. }
  64. if info == nil || info.Mid == 0 {
  65. res.UserInfo = struct{}{}
  66. } else {
  67. res.UserInfo = info
  68. }
  69. days := int64(len(mcShare))
  70. if days > 0 {
  71. res.TodayShare = mcShare[time.Now().Format("20060102")]
  72. res.ShareDays = int64(days)
  73. }
  74. if len(shaPend) == 0 {
  75. res.Pendants = struct{}{}
  76. } else {
  77. res.Pendants = shaPend
  78. }
  79. return
  80. }
  81. func monthShare() int {
  82. now := time.Now()
  83. currentYear, currentMonth, _ := now.Date()
  84. currentLocation := now.Location()
  85. firstOfMonth := time.Date(currentYear, currentMonth, 1, 23, 59, 59, 0, currentLocation)
  86. lastOfMonth := firstOfMonth.AddDate(0, 1, -1)
  87. return int(lastOfMonth.Sub(now).Seconds())
  88. }
  89. func (s *Service) loadPendant() {
  90. for _, p := range s.c.Pendants {
  91. s.Pendants[p.Pid] = p.Level
  92. }
  93. }