letter.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. package newbie
  2. import (
  3. "context"
  4. "go-common/app/interface/main/growup/conf"
  5. "go-common/app/interface/main/growup/dao/newbiedao"
  6. "go-common/app/interface/main/growup/model"
  7. accApi "go-common/app/service/main/account/api"
  8. "go-common/library/ecode"
  9. "go-common/library/log"
  10. "go-common/library/sync/errgroup.v2"
  11. "strconv"
  12. "time"
  13. )
  14. // Letter newbie letter
  15. func (s *Service) Letter(c context.Context, req *model.NewbieLetterReq) (*model.NewbieLetterRes, error) {
  16. var (
  17. group *errgroup.Group
  18. recUps = make(map[int64]*model.RecommendUp)
  19. NewbieConf = conf.Conf.Newbie
  20. category *model.Category
  21. recUpMidList []int64
  22. activities []*model.Activity
  23. archive *model.VideoUpArchive
  24. accInfo *accApi.InfoReply
  25. i = 0
  26. ok bool
  27. err error
  28. )
  29. res := new(model.NewbieLetterRes)
  30. log.Info("req: %+v", req)
  31. group = errgroup.WithCancel(c)
  32. // get up info
  33. group.Go(func(ctx context.Context) error {
  34. accInfo, err = s.dao.GetInfo(ctx, req.Mid)
  35. return err
  36. })
  37. // get activities
  38. group.Go(func(ctx context.Context) error {
  39. activities, err = s.dao.GetActivities(ctx)
  40. return err
  41. })
  42. // get video up, and set talent
  43. group.Go(func(ctx context.Context) error {
  44. archive, err = s.dao.GetVideoUp(ctx, req.Aid)
  45. return err
  46. })
  47. err = group.Wait()
  48. if err != nil {
  49. return nil, err
  50. }
  51. // data validation, deal with default data
  52. if req.Mid != archive.Mid {
  53. log.Error("The archive is not yours, mid: %d, archive.Mid: %v", req.Mid, archive.Mid)
  54. return nil, ecode.GrowupArchiveNotYours
  55. }
  56. if category, ok = newbiedao.Categories[archive.Tid]; !ok {
  57. log.Error("not found the sub tid, sub tid: %d, Categories: %v", archive.Tid, newbiedao.Categories)
  58. return nil, ecode.GrowupSubTidNotExist
  59. }
  60. if _, ok = newbiedao.Categories[category.Pid]; !ok {
  61. log.Error("not found the tid, tid: %d, Categories: %v", archive.Tid, newbiedao.Categories)
  62. return nil, ecode.GrowupTidNotExist
  63. }
  64. res.Area = newbiedao.Categories[category.Pid].Name
  65. log.Info("sub tid: %d, tid: %d", archive.Tid, category.Pid)
  66. sTid := strconv.FormatInt(archive.Tid, 10)
  67. if res.Talent, ok = NewbieConf.Talents[sTid]; !ok {
  68. res.Talent = NewbieConf.DefaultTalent
  69. }
  70. for _, activity := range activities {
  71. if i >= NewbieConf.ActivityCount {
  72. break
  73. }
  74. if activity.Type != NewbieConf.ActivityShotType {
  75. continue
  76. }
  77. if activity.Cover == "" {
  78. activity.Cover = NewbieConf.DefaultCover
  79. }
  80. res.Activities = append(res.Activities, activity)
  81. i++
  82. }
  83. if len(res.Activities) < NewbieConf.ActivityCount {
  84. log.Error("activity count is not enough %d", NewbieConf.ActivityCount)
  85. return nil, ecode.GrowupActivityCountNotEnough
  86. }
  87. res.UperInfo = new(model.NewbieLetterUpInfo)
  88. res.UperInfo.Mid = accInfo.Info.Mid
  89. res.UperInfo.Name = accInfo.Info.Name
  90. res.Archive = new(model.NewbieLetterArchive)
  91. res.Archive.Title = archive.Title
  92. res.Archive.PTime = time.Unix(archive.PTime, 0).Format(model.TimeLayout)
  93. log.Info("after data validation: data(%+v)", res)
  94. // get recommend up list
  95. if _, ok := newbiedao.RecommendUpList[category.Pid]; !ok {
  96. for _, lists := range newbiedao.RecommendUpList {
  97. for recUpMid, recUp := range lists {
  98. recUps[recUpMid] = recUp
  99. break
  100. }
  101. }
  102. log.Info("Not found recommend up list, system random get them : %+v", recUps)
  103. } else {
  104. recUps = newbiedao.RecommendUpList[category.Pid]
  105. log.Info("found recommend up list : %+v", recUps)
  106. }
  107. // get relations
  108. i = 0
  109. for recUpMid := range recUps {
  110. if i >= NewbieConf.RecommendUpPoolCount {
  111. break
  112. }
  113. if recUpMid == req.Mid {
  114. continue
  115. }
  116. recUpMidList = append(recUpMidList, recUpMid)
  117. i++
  118. }
  119. log.Info("recUpMidList: %+v", recUpMidList)
  120. relations, err := s.dao.GetRelations(c, req.Mid, recUpMidList)
  121. if err != nil {
  122. return nil, err
  123. }
  124. log.Info("relations: %+v", relations)
  125. // get ups info
  126. infosReply, err := s.dao.GetInfos(c, recUpMidList)
  127. if err != nil {
  128. err = ecode.GrowupRecommendUpNotExist
  129. return nil, err
  130. }
  131. log.Info("recUpInfos: %+v", infosReply.Infos)
  132. // select 3 ups
  133. i = 0
  134. for recUpMid := range recUps {
  135. if i >= NewbieConf.RecommendUpCount {
  136. break
  137. }
  138. if _, ok := infosReply.Infos[recUpMid]; !ok {
  139. continue
  140. }
  141. if _, ok := relations[recUpMid]; !ok {
  142. relations[recUpMid] = &model.Relation{
  143. Mid: recUpMid,
  144. Attribute: -1,
  145. }
  146. }
  147. relations[recUpMid].Face = infosReply.Infos[recUpMid].Face
  148. relations[recUpMid].Name = infosReply.Infos[recUpMid].Name
  149. res.Relations = append(res.Relations, relations[recUpMid])
  150. i++
  151. }
  152. log.Info("res.Relations: %+v", res.Relations)
  153. return res, nil
  154. }