service.go 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. package timemachine
  2. import (
  3. "context"
  4. "encoding/json"
  5. "time"
  6. "go-common/app/interface/main/activity/conf"
  7. "go-common/app/interface/main/activity/dao/like"
  8. "go-common/app/interface/main/activity/dao/timemachine"
  9. model "go-common/app/interface/main/activity/model/timemachine"
  10. tagclient "go-common/app/interface/main/tag/api"
  11. artrpc "go-common/app/interface/openplatform/article/rpc/client"
  12. accclient "go-common/app/service/main/account/api"
  13. arcclient "go-common/app/service/main/archive/api"
  14. "go-common/library/log"
  15. )
  16. const (
  17. _typeArticle = 1
  18. _typeArchive = 2
  19. _totalViewLen = 3
  20. )
  21. // Service time machine service.
  22. type Service struct {
  23. c *conf.Config
  24. likeDao *like.Dao
  25. dao *timemachine.Dao
  26. article *artrpc.Service
  27. tagClient tagclient.TagRPCClient
  28. arcClient arcclient.ArchiveClient
  29. accClient accclient.AccountClient
  30. tmMidMap map[int64]struct{}
  31. tagDescMap map[int64]*model.TagDesc
  32. tagRegionDescMap map[int64]*model.TagRegionDesc
  33. regionDescMap map[int64]*model.RegionDesc
  34. }
  35. // New init.
  36. func New(c *conf.Config) *Service {
  37. s := &Service{
  38. c: c,
  39. dao: timemachine.New(c),
  40. likeDao: like.New(c),
  41. article: artrpc.New(c.RPCClient2.Article),
  42. }
  43. var err error
  44. if s.tagClient, err = tagclient.NewClient(c.TagClient); err != nil {
  45. panic(err)
  46. }
  47. if s.arcClient, err = arcclient.NewClient(c.ArcClient); err != nil {
  48. panic(err)
  49. }
  50. if s.accClient, err = accclient.NewClient(c.AccClient); err != nil {
  51. panic(err)
  52. }
  53. go s.loadAdminMids()
  54. go s.tmDescproc()
  55. return s
  56. }
  57. func (s *Service) loadAdminMids() {
  58. for {
  59. time.Sleep(time.Duration(s.c.Interval.TmInternal))
  60. tmp := make(map[int64]struct{}, len(s.c.Rule.TmMids))
  61. for _, mid := range s.c.Rule.TmMids {
  62. tmp[mid] = struct{}{}
  63. }
  64. s.tmMidMap = tmp
  65. }
  66. }
  67. func (s *Service) tmDescproc() {
  68. go func() {
  69. for {
  70. time.Sleep(time.Duration(s.c.Interval.TmInternal))
  71. if s.c.Timemachine.TagDescID == 0 {
  72. continue
  73. }
  74. if data, err := s.likeDao.SourceItem(context.Background(), s.c.Timemachine.TagDescID); err != nil {
  75. log.Error("tmDescproc s.likeDao.SourceItem(%d) error(%v)", s.c.Timemachine.TagDescID, err)
  76. continue
  77. } else {
  78. var descs struct {
  79. List []*struct {
  80. Data *model.TagDesc `json:"data"`
  81. } `json:"list"`
  82. }
  83. if err := json.Unmarshal(data, &descs); err != nil {
  84. log.Error("tmDescproc tag s.likeDao.SourceItem(%s) json error(%v)", string(data), err)
  85. continue
  86. }
  87. tmp := make(map[int64]*model.TagDesc, len(descs.List))
  88. for _, v := range descs.List {
  89. tmp[v.Data.TagID] = v.Data
  90. }
  91. s.tagDescMap = tmp
  92. }
  93. }
  94. }()
  95. go func() {
  96. for {
  97. time.Sleep(time.Duration(s.c.Interval.TmInternal))
  98. if s.c.Timemachine.TagRegionDescID == 0 {
  99. continue
  100. }
  101. if data, err := s.likeDao.SourceItem(context.Background(), s.c.Timemachine.TagRegionDescID); err != nil {
  102. log.Error("tmDescproc tagRegion s.likeDao.SourceItem(%d) error(%v)", s.c.Timemachine.TagRegionDescID, err)
  103. continue
  104. } else {
  105. var descs struct {
  106. List []*struct {
  107. Data *model.TagRegionDesc `json:"data"`
  108. } `json:"list"`
  109. }
  110. if err := json.Unmarshal(data, &descs); err != nil {
  111. log.Error("tmDescproc tagRegion s.likeDao.SourceItem(%s) json error(%v)", string(data), err)
  112. continue
  113. }
  114. tmp := make(map[int64]*model.TagRegionDesc, len(descs.List))
  115. for _, v := range descs.List {
  116. tmp[v.Data.RID] = v.Data
  117. }
  118. s.tagRegionDescMap = tmp
  119. }
  120. }
  121. }()
  122. go func() {
  123. for {
  124. time.Sleep(time.Duration(s.c.Interval.TmInternal))
  125. if s.c.Timemachine.RegionDescID == 0 {
  126. continue
  127. }
  128. if data, err := s.likeDao.SourceItem(context.Background(), s.c.Timemachine.RegionDescID); err != nil {
  129. log.Error("tmDescproc region s.likeDao.SourceItem(%d) error(%v)", s.c.Timemachine.RegionDescID, err)
  130. continue
  131. } else {
  132. var descs struct {
  133. List []*struct {
  134. Data *model.RegionDesc `json:"data"`
  135. } `json:"list"`
  136. }
  137. if err := json.Unmarshal(data, &descs); err != nil {
  138. log.Error("tmDescproc region s.likeDao.SourceItem(%s) json error(%v)", string(data), err)
  139. continue
  140. }
  141. tmp := make(map[int64]*model.RegionDesc, len(descs.List))
  142. for _, v := range descs.List {
  143. tmp[v.Data.RID] = v.Data
  144. }
  145. s.regionDescMap = tmp
  146. }
  147. }
  148. }()
  149. }