subject.go 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. package service
  2. import (
  3. "context"
  4. model "go-common/app/interface/main/reply/model/reply"
  5. "go-common/library/ecode"
  6. "go-common/library/log"
  7. )
  8. func (s *Service) subject(c context.Context, oid int64, tp int8) (sub *model.Subject, err error) {
  9. if sub, err = s.dao.Mc.GetSubject(c, oid, tp); err != nil {
  10. log.Error("replyCacheDao.GetSubject(%d,%d) error(%v)", oid, tp, err)
  11. return
  12. } else if sub == nil {
  13. if sub, err = s.dao.Subject.Get(c, oid, tp); err != nil {
  14. log.Error("s.subject.Get(%d,%d) error(%v)", oid, tp, err)
  15. return
  16. }
  17. if sub == nil {
  18. sub = &model.Subject{ID: -1, Oid: oid, Type: tp, State: model.SubStateForbid} // empty cache
  19. }
  20. s.cache.Do(c, func(ctx context.Context) {
  21. if err = s.dao.Mc.AddSubject(ctx, sub); err != nil {
  22. log.Error("s.dao.Mc.AddSubject(%d,%d) error(%v)", oid, tp, err)
  23. }
  24. })
  25. }
  26. return
  27. }
  28. // ReplyCount get all reply count.
  29. func (s *Service) ReplyCount(c context.Context, oid int64, tp int8) (count int, err error) {
  30. if !model.LegalSubjectType(tp) {
  31. err = ecode.ReplyIllegalSubType
  32. return
  33. }
  34. sub, err := s.subject(c, oid, tp)
  35. if err != nil {
  36. return
  37. }
  38. if sub != nil && sub.State != model.SubStateForbid {
  39. count = sub.ACount
  40. }
  41. return
  42. }
  43. // GetReplyCounts get reply counts.
  44. func (s *Service) GetReplyCounts(ctx context.Context, oids []int64, otyp int8) (map[int64]*model.Counts, error) {
  45. caches, missIDs, err := s.dao.Mc.GetMultiSubject(ctx, oids, otyp)
  46. if err != nil {
  47. return nil, err
  48. }
  49. if len(missIDs) > 0 {
  50. miss, err := s.dao.Subject.Gets(ctx, missIDs, otyp)
  51. if err != nil {
  52. log.Error("s.subject.Gets(%v,%d) error(%v)", missIDs, otyp, err)
  53. return nil, err
  54. }
  55. if caches == nil {
  56. caches = make(map[int64]*model.Subject)
  57. }
  58. var subs []*model.Subject
  59. for _, oid := range missIDs {
  60. sub, ok := miss[oid]
  61. if !ok {
  62. sub = &model.Subject{ID: -1, Oid: oid, Type: otyp, State: model.SubStateForbid}
  63. }
  64. caches[oid] = sub
  65. subs = append(subs, sub)
  66. }
  67. s.cache.Do(ctx, func(ctx context.Context) { s.dao.Mc.AddSubject(ctx, subs...) })
  68. }
  69. counts := make(map[int64]*model.Counts)
  70. for _, sub := range caches {
  71. counts[sub.Oid] = &model.Counts{
  72. SubjectState: sub.State,
  73. Counts: int64(sub.ACount),
  74. }
  75. }
  76. return counts, nil
  77. }
  78. // ReplyCounts get all reply count.
  79. func (s *Service) ReplyCounts(c context.Context, oids []int64, tp int8) (counts map[int64]int, err error) {
  80. caches, missIDs, err := s.dao.Mc.GetMultiSubject(c, oids, tp)
  81. if err != nil {
  82. return
  83. }
  84. if len(missIDs) > 0 {
  85. var miss map[int64]*model.Subject
  86. if miss, err = s.dao.Subject.Gets(c, missIDs, tp); err != nil {
  87. log.Error("s.subject.Gets(%v,%d) error(%v)", missIDs, tp, err)
  88. return
  89. }
  90. if caches == nil {
  91. caches = make(map[int64]*model.Subject, len(miss))
  92. }
  93. subs := make([]*model.Subject, 0, len(miss))
  94. for _, oid := range missIDs {
  95. sub, ok := miss[oid]
  96. if !ok {
  97. sub = &model.Subject{ID: -1, Oid: oid, Type: tp, State: model.SubStateForbid} // empty cache
  98. }
  99. caches[oid] = sub
  100. subs = append(subs, sub)
  101. }
  102. s.cache.Do(c, func(ctx context.Context) { s.dao.Mc.AddSubject(ctx, subs...) })
  103. }
  104. counts = make(map[int64]int, len(caches))
  105. for _, sub := range caches {
  106. if sub.State == model.SubStateForbid {
  107. counts[sub.Oid] = 0
  108. } else {
  109. counts[sub.Oid] = sub.ACount
  110. }
  111. }
  112. return
  113. }