academy.go 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. package academy
  2. import (
  3. "context"
  4. "time"
  5. "go-common/app/interface/main/creative/model/academy"
  6. "go-common/app/interface/openplatform/article/model"
  7. "go-common/app/service/main/archive/api"
  8. "go-common/library/log"
  9. "go-common/library/sync/errgroup"
  10. xtime "go-common/library/time"
  11. "github.com/davecgh/go-spew/spew"
  12. )
  13. // TagList get all tag.
  14. func (s *Service) TagList(c context.Context) (res map[string][]*academy.Tag, err error) {
  15. res = s.TagsCache
  16. return
  17. }
  18. // AddFeedBack add feedback.
  19. func (s *Service) AddFeedBack(c context.Context, category, course, suggest string, mid int64) (id int64, err error) {
  20. fb := &academy.FeedBack{
  21. Category: category,
  22. Course: course,
  23. Suggest: suggest,
  24. CTime: xtime.Time(time.Now().Unix()),
  25. MTime: xtime.Time(time.Now().Unix()),
  26. }
  27. if id, err = s.aca.AddFeedBack(c, fb, mid); err != nil {
  28. log.Error("s.aca.AddFeedBack error(%v)", err)
  29. }
  30. return
  31. }
  32. // ArchivesWithES get all archive by es.
  33. func (s *Service) ArchivesWithES(c context.Context, aca *academy.EsParam) (res *academy.ArchiveList, err error) {
  34. var sear *academy.SearchResult
  35. res = &academy.ArchiveList{
  36. Items: []*academy.ArchiveMeta{},
  37. Page: &academy.ArchivePage{},
  38. }
  39. aca.TidsMap = s.filterTIDs(aca.Tid)
  40. if sear, err = s.aca.ArchivesWithES(c, aca); err != nil {
  41. log.Error("s.aca.ArchivesWithES sear(%+v)|param(%+v)|error(%v)", sear, aca, err)
  42. return
  43. }
  44. if sear == nil || len(sear.Result) == 0 {
  45. log.Error("s.aca.ArchivesWithES has no data sear(%+v)|param(%+v)|error(%v)", sear, aca, err)
  46. return
  47. }
  48. res.Page.Total = sear.Page.Total
  49. res.Page.Pn = sear.Page.Num
  50. res.Page.Ps = sear.Page.Size
  51. var searRes []*academy.EsArc
  52. if aca.Keyword != "" { //搜索关键词红点
  53. searRes = make([]*academy.EsArc, 0, len(sear.Result)/2)
  54. for i := 0; i < len(sear.Result)-1; i += 2 {
  55. sear.Result[i].Title = sear.Result[i+1].Title
  56. searRes = append(searRes, sear.Result[i])
  57. }
  58. } else {
  59. searRes = sear.Result
  60. }
  61. oids := make([]int64, 0, len(sear.Result))
  62. aidTIDsMap := make(map[int64][]int64)
  63. busAIDsMap := make(map[int][]int64)
  64. busAidMap := make(map[int64]int)
  65. highTitleMap := make(map[int64][]string)
  66. for _, v := range searRes {
  67. busAIDsMap[v.Business] = append(busAIDsMap[v.Business], v.OID)
  68. oids = append(oids, v.OID)
  69. aidTIDsMap[v.OID] = v.TID
  70. busAidMap[v.OID] = v.Business
  71. if aca.Keyword != "" { //搜索关键词红点
  72. highTitleMap[v.OID] = v.Title
  73. }
  74. }
  75. var (
  76. g, _ = errgroup.WithContext(c)
  77. tagInfo map[int64]map[string][]*academy.Tag
  78. arcs map[int64]*api.Arc
  79. arts map[int64]*model.Meta
  80. st map[int64]*api.Stat
  81. )
  82. g.Go(func() error { //获取各种查询对象信息
  83. switch aca.Business {
  84. case academy.BusinessForAll: //查询所有
  85. if ids, ok := busAIDsMap[academy.BusinessForArchive]; ok { //稿件
  86. g.Go(func() error {
  87. arcs, err = s.arc.Archives(c, ids, aca.IP)
  88. if err != nil {
  89. log.Error("s.arc.Archives oids(%+v)|business(%d)|error(%v)", ids, aca.Business, err)
  90. return err
  91. }
  92. st, err = s.arc.Stats(c, ids, aca.IP)
  93. if err != nil {
  94. log.Error("s.arc.Stats oids(%+v)|business(%d)|error(%v)", ids, aca.Business, err)
  95. }
  96. return err
  97. })
  98. }
  99. if ids, ok := busAIDsMap[academy.BusinessForArticle]; ok { //文章
  100. g.Go(func() error {
  101. arts, err = s.art.ArticleMetas(context.Background(), ids, aca.IP)
  102. if err != nil {
  103. log.Error("s.arc.ArticleMetas oids(%+v)|business(%d)|error(%v)", ids, aca.Business, err)
  104. }
  105. return err
  106. })
  107. }
  108. case academy.BusinessForArchive: //稿件
  109. arcs, err = s.arc.Archives(context.Background(), oids, aca.IP)
  110. if err != nil {
  111. log.Error("s.arc.Archives oids(%+v)|business(%d)|error(%v)", oids, aca.Business, err)
  112. return err
  113. }
  114. st, err = s.arc.Stats(c, oids, aca.IP)
  115. if err != nil {
  116. log.Error("s.arc.Stats oids(%+v)|business(%d)|error(%v)", oids, aca.Business, err)
  117. }
  118. return err
  119. case academy.BusinessForArticle: //文章
  120. arts, err = s.art.ArticleMetas(context.Background(), oids, aca.IP)
  121. if err != nil {
  122. log.Error("s.arc.ArticleMetas oids(%+v)|business(%d)|error(%v)", oids, aca.Business, err)
  123. }
  124. return err
  125. }
  126. return nil
  127. })
  128. g.Go(func() error {
  129. tagInfo, err = s.bindTags(c, aidTIDsMap)
  130. return err
  131. })
  132. if g.Wait() != nil {
  133. log.Error("s.aca.ArchivesWithES g.Wait() error(%v)", err)
  134. return
  135. }
  136. items := make([]*academy.ArchiveMeta, 0, len(oids))
  137. for _, oid := range oids {
  138. a := &academy.ArchiveMeta{
  139. OID: oid,
  140. }
  141. if v, ok := tagInfo[oid]; ok {
  142. a.Tags = v
  143. }
  144. bs, ok := busAidMap[oid]
  145. if !ok {
  146. log.Error("s.aca.ArchivesWithES oid(%d) get invalid business", oid)
  147. return
  148. }
  149. a.Business = bs
  150. switch a.Business {
  151. case academy.BusinessForArchive: //稿件
  152. a = bindArchiveInfo(oid, arcs, a)
  153. if t, ok := st[oid]; ok {
  154. a.ArcStat = t
  155. } else {
  156. a.ArcStat = &api.Stat{}
  157. }
  158. case academy.BusinessForArticle: //文章
  159. a = bindArticleInfo(oid, arts, a)
  160. }
  161. if aca.Keyword != "" {
  162. if ht, ok := highTitleMap[oid]; ok && len(ht) > 0 {
  163. a.HighLightTitle = ht[0]
  164. }
  165. }
  166. items = append(items, a)
  167. }
  168. res.Items = items
  169. return
  170. }
  171. func bindArchiveInfo(oid int64, arcs map[int64]*api.Arc, a *academy.ArchiveMeta) (res *academy.ArchiveMeta) {
  172. if v, ok := arcs[oid]; ok {
  173. a.Title = v.Title
  174. a.State = v.State
  175. a.Type = v.TypeName
  176. a.Cover = v.Pic
  177. a.UName = v.Author.Name
  178. a.Face = v.Author.Face
  179. a.MID = v.Author.Mid
  180. a.Duration = v.Duration
  181. a.Rights = v.Rights
  182. }
  183. res = a
  184. return
  185. }
  186. func bindArticleInfo(oid int64, arts map[int64]*model.Meta, a *academy.ArchiveMeta) (res *academy.ArchiveMeta) {
  187. if v, ok := arts[oid]; ok && v != nil {
  188. a.Title = v.Title
  189. a.State = v.State
  190. a.MID = v.Author.Mid
  191. a.Comment = v.Summary
  192. if v.Category != nil {
  193. a.Type = v.Category.Name
  194. }
  195. if len(v.ImageURLs) > 0 {
  196. a.Cover = v.ImageURLs[0]
  197. }
  198. if v.Author != nil {
  199. a.UName = v.Author.Name
  200. a.Face = v.Author.Face
  201. }
  202. if v.Stats != nil {
  203. a.ArtStat = v.Stats
  204. } else {
  205. a.ArtStat = &model.Stats{}
  206. }
  207. }
  208. res = a
  209. return
  210. }
  211. func (s *Service) bindTags(c context.Context, tidsMap map[int64][]int64) (res map[int64]map[string][]*academy.Tag, err error) {
  212. res = make(map[int64]map[string][]*academy.Tag)
  213. for oid, tids := range tidsMap {
  214. tgs := s.getTagsByTIDs(tids)
  215. if len(tgs) == 0 {
  216. continue
  217. }
  218. oidTag := make(map[string][]*academy.Tag)
  219. ctgs := make(map[int64][]*academy.Tag)
  220. for _, tg := range tgs {
  221. k := academy.TagClassMap(int(tg.Type))
  222. if tg.Type == academy.Classify { //获取多个分类标签
  223. ctgs[tg.ParentID] = append(ctgs[tg.ParentID], tg)
  224. } else {
  225. oidTag[k] = append(oidTag[k], tg)
  226. }
  227. }
  228. for pid, tgs := range ctgs {
  229. if p, ok := s.TagMapCache[pid]; ok {
  230. tp := *p
  231. tp.Children = tgs
  232. oidTag[academy.TagClassMap(academy.Classify)] = append(oidTag[academy.TagClassMap(academy.Classify)], &tp)
  233. }
  234. }
  235. res[oid] = oidTag
  236. }
  237. return
  238. }
  239. func (s *Service) filterTIDs(tids []int64) (res map[int][]int64) {
  240. if len(tids) == 0 {
  241. return
  242. }
  243. log.Info("s.filterTIDs origin tids(%+v)", tids)
  244. res = make(map[int][]int64)
  245. ochs := make([]int64, 0) //原始提交的二级标签
  246. ops := make([]int64, 0) //原始提交的一级标签
  247. qchs := make([]int64, 0) //通过一级标签查询出来的二级标签
  248. for _, id := range tids {
  249. t, ok := s.parentChildMapCache[id]
  250. if !ok || t == nil {
  251. continue
  252. }
  253. if t.Type == academy.Classify {
  254. if t.ParentID != 0 { //原始提交的二级标签
  255. ochs = append(ochs, id)
  256. } else if t.ParentID == 0 && len(t.Children) > 0 { //通过一级标签查询出来的二级标签
  257. for _, v := range t.Children {
  258. qchs = append(qchs, v.ID)
  259. }
  260. } else if t.ParentID == 0 && len(t.Children) == 0 {
  261. ops = append(ops, id)
  262. }
  263. } else {
  264. res[int(t.Type)] = append(res[int(t.Type)], id)
  265. }
  266. }
  267. if len(ochs) > 0 { //如果分类标签中提交了原始的二级标签则认为按该二级标签进行筛选,如果可以查询到二级标签认为筛选全部二级,否则一级参与查询.
  268. res[academy.Classify] = ochs
  269. } else if len(qchs) > 0 {
  270. res[academy.Classify] = qchs
  271. } else if len(ops) > 0 {
  272. res[academy.Classify] = ops
  273. }
  274. log.Info("s.filterTIDs res(%s)", spew.Sdump(res))
  275. return
  276. }
  277. func (s *Service) getTagsByTIDs(tids []int64) (res []*academy.Tag) {
  278. res = make([]*academy.Tag, 0)
  279. if len(tids) == 0 {
  280. return
  281. }
  282. for _, tid := range tids {
  283. tag, ok := s.TagMapCache[tid]
  284. if !ok || tag == nil {
  285. continue
  286. }
  287. res = append(res, tag)
  288. }
  289. return
  290. }