full.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. package web
  2. import (
  3. "context"
  4. "strings"
  5. "sync"
  6. "sync/atomic"
  7. "time"
  8. tagmdl "go-common/app/interface/main/tag/model"
  9. "go-common/app/interface/main/web-goblin/dao/web"
  10. webmdl "go-common/app/interface/main/web-goblin/model/web"
  11. "go-common/app/service/main/archive/api"
  12. "go-common/app/service/main/archive/model/archive"
  13. "go-common/library/ecode"
  14. "go-common/library/log"
  15. "go-common/library/net/metadata"
  16. "go-common/library/sync/errgroup"
  17. )
  18. var (
  19. _emptyMiArc = make([]*webmdl.Mi, 0)
  20. )
  21. const (
  22. _tagBlkSize = 50
  23. _tagArcType = 3
  24. )
  25. // FullShort xiao mi FullShort .
  26. func (s *Service) FullShort(c context.Context, pn, ps int64, source string) (res []*webmdl.Mi, err error) {
  27. var (
  28. aids []int64
  29. ip = metadata.String(c, metadata.RemoteIP)
  30. m = make(map[int64]string)
  31. )
  32. if aids, err = s.aids(c, pn, ps); err != nil {
  33. return
  34. }
  35. if res, err = s.archiveWithTag(c, aids, ip, m, source); err != nil {
  36. log.Error("s.archiveWithTag error(%v)", err)
  37. }
  38. return
  39. }
  40. func (s *Service) archiveWithTag(c context.Context, aids []int64, ip string, op map[int64]string, source string) (list []*webmdl.Mi, err error) {
  41. var (
  42. arcErr, tagErr error
  43. archives map[int64]*api.Arc
  44. pages []*api.Page
  45. pageInfo map[int64][]*api.Page
  46. tags map[int64][]*tagmdl.Tag
  47. mutex = sync.Mutex{}
  48. tempTags []string
  49. )
  50. group := new(errgroup.Group)
  51. group.Go(func() error {
  52. if archives, arcErr = s.arc.Archives3(context.Background(), &archive.ArgAids2{Aids: aids, RealIP: ip}); arcErr != nil {
  53. web.PromError("Archives3接口错误", "s.arc.Archives3(%d,%s) error %v", aids, ip, err)
  54. return arcErr
  55. }
  56. return nil
  57. })
  58. pageInfo = make(map[int64][]*api.Page)
  59. for _, aid := range aids {
  60. group.Go(func() error {
  61. pages = []*api.Page{}
  62. if pages, err = s.arc.Page3(context.Background(), &archive.ArgAid2{Aid: aid, RealIP: ip}); err != nil {
  63. log.Error("s.arc.Page3 error(%v)", err)
  64. return err
  65. }
  66. mutex.Lock()
  67. pageInfo[aid] = pages
  68. mutex.Unlock()
  69. return nil
  70. })
  71. }
  72. aidsLen := len(aids)
  73. tags = make(map[int64][]*tagmdl.Tag, aidsLen)
  74. for i := 0; i < aidsLen; i += _tagBlkSize {
  75. var partAids []int64
  76. if i+_tagBlkSize > aidsLen {
  77. partAids = aids[i:]
  78. } else {
  79. partAids = aids[i : i+_tagBlkSize]
  80. }
  81. group.Go(func() (err error) {
  82. var tmpRes map[int64][]*tagmdl.Tag
  83. arg := &tagmdl.ArgResTags{Oids: partAids, Type: _tagArcType, RealIP: ip}
  84. if tmpRes, tagErr = s.tag.ResTags(context.Background(), arg); tagErr != nil {
  85. web.PromError("ResTags接口错误", "s.tag.ResTag(%+v) error(%v)", arg, tagErr)
  86. return
  87. }
  88. mutex.Lock()
  89. for aid, tmpTags := range tmpRes {
  90. tags[aid] = tmpTags
  91. }
  92. mutex.Unlock()
  93. return nil
  94. })
  95. }
  96. if err = group.Wait(); err != nil {
  97. return
  98. }
  99. for _, aid := range aids {
  100. if arc, ok := archives[aid]; ok && arc.IsNormal() {
  101. miArc := new(webmdl.Mi)
  102. tempTags = []string{}
  103. miArc.FromArchive(arc, pageInfo[aid], op[aid], source)
  104. if tag, ok := tags[aid]; ok {
  105. for _, v := range tag {
  106. tempTags = append(tempTags, v.Name)
  107. }
  108. }
  109. if len(tempTags) == 0 {
  110. miArc.Tags = ""
  111. } else {
  112. miArc.Tags = strings.Join(tempTags, ",")
  113. }
  114. list = append(list, miArc)
  115. }
  116. }
  117. if len(list) == 0 {
  118. list = _emptyMiArc
  119. }
  120. return
  121. }
  122. func (s *Service) aids(c context.Context, pn, ps int64) (res []int64, err error) {
  123. var start, end int64
  124. if pn > 1 {
  125. start = pn*ps + 1
  126. } else {
  127. start = 1
  128. }
  129. end = start + ps
  130. if s.maxAid > 0 && end > s.maxAid {
  131. log.Warn("aids(%d,%d) maxAid(%d)", pn, ps, s.maxAid)
  132. err = ecode.RequestErr
  133. return
  134. }
  135. for i := start; i < end; i++ {
  136. res = append(res, i)
  137. }
  138. return
  139. }
  140. func (s *Service) justAID() {
  141. var (
  142. maxAid int64
  143. err error
  144. )
  145. for {
  146. if maxAid, err = s.arc.MaxAID(context.Background()); err != nil {
  147. web.PromError("MaxAID接口错误", "s.arc.MaxAID error(%v)", err)
  148. time.Sleep(time.Second)
  149. continue
  150. }
  151. if maxAid > 0 {
  152. atomic.StoreInt64(&s.maxAid, maxAid+100)
  153. }
  154. time.Sleep(time.Minute)
  155. }
  156. }