subject.go 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. package service
  2. import (
  3. "context"
  4. "encoding/json"
  5. "go-common/app/interface/main/dm2/model"
  6. "go-common/library/ecode"
  7. "go-common/library/log"
  8. )
  9. func (s *Service) subject(c context.Context, tp int32, oid int64) (sub *model.Subject, err error) {
  10. var (
  11. cache = true
  12. bs []byte
  13. ok bool
  14. )
  15. if bs, ok = s.localCache[keySubject(tp, oid)]; ok {
  16. sub = &model.Subject{}
  17. if err = json.Unmarshal(bs, &sub); err == nil {
  18. return
  19. }
  20. }
  21. if sub, err = s.dao.SubjectCache(c, tp, oid); err != nil {
  22. err = nil
  23. cache = false
  24. }
  25. if sub == nil {
  26. if sub, err = s.dao.Subject(c, tp, oid); err != nil {
  27. return
  28. }
  29. if sub == nil {
  30. sub = &model.Subject{
  31. Type: tp,
  32. Oid: oid,
  33. }
  34. }
  35. if cache {
  36. s.cache.Do(c, func(ctx context.Context) {
  37. s.dao.AddSubjectCache(ctx, sub)
  38. })
  39. }
  40. }
  41. if sub.ID == 0 {
  42. err = ecode.NothingFound
  43. return
  44. }
  45. return
  46. }
  47. func (s *Service) subjects(c context.Context, tp int32, oids []int64) (res map[int64]*model.Subject, err error) {
  48. var (
  49. cache = true
  50. missed []int64
  51. missedCache map[int64]*model.Subject
  52. hitedCache map[int64]*model.Subject
  53. )
  54. res = make(map[int64]*model.Subject, len(oids))
  55. if hitedCache, missed, err = s.dao.SubjectsCache(c, tp, oids); err != nil {
  56. cache = false
  57. }
  58. if len(hitedCache) == 0 {
  59. missed = oids
  60. }
  61. if len(missed) > 0 {
  62. if missedCache, err = s.dao.Subjects(c, tp, missed); err != nil {
  63. return
  64. }
  65. for _, oid := range missed {
  66. sub, ok := missedCache[oid]
  67. if ok {
  68. res[sub.Oid] = sub
  69. } else {
  70. sub = &model.Subject{
  71. Type: tp,
  72. Oid: oid,
  73. }
  74. }
  75. if cache {
  76. s.cache.Do(c, func(ctx context.Context) {
  77. s.dao.AddSubjectCache(ctx, sub)
  78. })
  79. }
  80. }
  81. }
  82. for _, hit := range hitedCache {
  83. if hit.ID > 0 {
  84. res[hit.Oid] = hit
  85. }
  86. }
  87. return
  88. }
  89. // SubjectInfos get dm subject info by oids.
  90. func (s *Service) SubjectInfos(c context.Context, tp int32, plat int8, oids []int64) (res map[int64]*model.SubjectInfo, err error) {
  91. subs, err := s.subjects(c, tp, oids)
  92. if err != nil {
  93. log.Error("s.subjects(%v) error(%v)", oids, err)
  94. return
  95. }
  96. res = make(map[int64]*model.SubjectInfo, len(oids))
  97. for _, sub := range subs {
  98. subInfo := new(model.SubjectInfo)
  99. if sub.Count > sub.Maxlimit {
  100. subInfo.Count = sub.ACount
  101. } else {
  102. subInfo.Count = sub.Count
  103. }
  104. if s.isRealname(c, sub.Pid, sub.Oid) {
  105. subInfo.Realname = true
  106. }
  107. if sub.State == model.SubStateClosed {
  108. subInfo.Closed = true
  109. }
  110. res[sub.Oid] = subInfo
  111. }
  112. return
  113. }