skill.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492
  1. package academy
  2. import (
  3. "context"
  4. "sort"
  5. "time"
  6. "go-common/app/interface/main/creative/model/academy"
  7. "go-common/app/interface/main/creative/model/newcomer"
  8. "go-common/app/service/main/archive/api"
  9. "go-common/library/ecode"
  10. "go-common/library/log"
  11. "go-common/library/sync/errgroup"
  12. xtime "go-common/library/time"
  13. )
  14. // Occupations get occ.
  15. func (s *Service) Occupations(c context.Context) (res []*academy.Occupation, err error) {
  16. res = s.OccCache
  17. res = make([]*academy.Occupation, 0, len(res))
  18. for _, v := range s.OccCache {
  19. if v.ID == 7 || v.ID == s.NewbCourseID { //7-废弃 NewbCourseID-新人专区
  20. continue
  21. }
  22. res = append(res, v)
  23. }
  24. return
  25. }
  26. // NewbCourse get new up course.
  27. func (s *Service) NewbCourse(c context.Context) (res []*academy.NewbCourseList, err error) {
  28. var (
  29. skids []int64
  30. pids = []int64{}
  31. sids = []int64{}
  32. tcs *academy.ArcList
  33. skMap map[int64]string
  34. aids []int64
  35. )
  36. skMap = make(map[int64]string)
  37. for _, v := range s.SkillCache {
  38. if v.OID == s.NewbCourseID {
  39. skids = append(skids, v.ID)
  40. skMap[v.ID] = v.Name
  41. }
  42. }
  43. tcs, err = s.ThemeCourse(c, pids, skids, sids, 1, 20, true)
  44. if err != nil {
  45. log.Error("NewbCourse s.ThemeCourse pids(%+v)|skids(%+v)|sids(%+v)|error(%v)", pids, skids, sids, err)
  46. return
  47. }
  48. if len(tcs.Items) == 0 {
  49. return
  50. }
  51. // add tags
  52. for _, v := range tcs.Items {
  53. aids = append(aids, v.AID)
  54. }
  55. tags, err := s.getTags(c, aids)
  56. if err != nil {
  57. log.Error("NewbCourse s.getTags err(%v)", err)
  58. return
  59. }
  60. s.setTags(tcs.Items, tags)
  61. newbCourseMap := make(map[int64][]*academy.ArcMeta)
  62. for _, v := range tcs.Items {
  63. if v == nil || v.Skill == nil {
  64. continue
  65. }
  66. newbCourseMap[v.Skill.SkID] = append(newbCourseMap[v.Skill.SkID], v)
  67. }
  68. res = make([]*academy.NewbCourseList, 0)
  69. for _, id := range skids {
  70. l := &academy.NewbCourseList{}
  71. if v, ok := newbCourseMap[id]; ok {
  72. l.Items = v
  73. }
  74. if sname, ok := skMap[id]; ok {
  75. l.Title = sname
  76. l.TID = id
  77. }
  78. res = append(res, l)
  79. }
  80. return
  81. }
  82. // ThemeCourse get theme course.
  83. func (s *Service) ThemeCourse(c context.Context, pids, skids, sids []int64, pn, ps int, isnew bool) (res *academy.ArcList, err error) {
  84. var (
  85. skas []*academy.SkillArc
  86. aids []int64
  87. pidMap map[int64]int64
  88. skidMap map[int64]int64
  89. sidMap map[int64]int64
  90. total int
  91. )
  92. res = &academy.ArcList{
  93. Items: []*academy.ArcMeta{},
  94. Page: &academy.ArchivePage{
  95. Pn: pn,
  96. Ps: ps,
  97. },
  98. }
  99. if !isnew && len(pids) == 0 { //如果不是新人课程,并且不传职业课程id则默认全部
  100. for _, v := range s.OccCache {
  101. pids = append(pids, v.ID)
  102. }
  103. }
  104. if !isnew { //不是新人课程,则去掉新人课程
  105. for i := 0; i < len(pids); i++ {
  106. if pids[i] == s.NewbCourseID {
  107. pids = append(pids[:i], pids[i+1:]...)
  108. i--
  109. }
  110. }
  111. }
  112. if skas, err = s.aca.SkillArcs(c, pids, skids, sids, (pn-1)*ps, ps); err != nil {
  113. log.Error("s.aca.SkillArcs pid(%+v)|skid(%+v)|sid(%+v)|error(%v)", pids, skids, sids, err)
  114. return
  115. }
  116. if len(skas) == 0 {
  117. log.Error("s.aca.SkillArcs has no data")
  118. return
  119. }
  120. pidMap = make(map[int64]int64)
  121. skidMap = make(map[int64]int64)
  122. sidMap = make(map[int64]int64)
  123. for _, v := range skas {
  124. aids = append(aids, v.AID)
  125. pidMap[v.AID] = v.PID
  126. skidMap[v.AID] = v.SkID
  127. sidMap[v.AID] = v.SID
  128. }
  129. if total, err = s.aca.SkillArcCount(c, pids, skids, sids); err != nil {
  130. log.Error("s.aca.SkillArcCount pids(%+v)|skids(%+v)|sids(%+v)|error(%v)", pids, skids, sids, err)
  131. return
  132. }
  133. res.Page.Total = total
  134. var (
  135. g, _ = errgroup.WithContext(c)
  136. arcInfo map[int64]*api.Arc
  137. as map[int64]*api.Stat
  138. )
  139. g.Go(func() error {
  140. arcInfo, err = s.arc.Archives(c, aids, "")
  141. if err != nil {
  142. log.Error("s.arc.Archives aids(%+v)|error(%v)", aids, err)
  143. }
  144. return err
  145. })
  146. g.Go(func() error {
  147. as, err = s.arc.Stats(c, aids, "")
  148. if err != nil {
  149. log.Error("s.arc.Stats aids(%+v)|error(%v)", aids, err)
  150. }
  151. return err
  152. })
  153. if g.Wait() != nil {
  154. log.Error("s.aca.ThemeCourse g.Wait() error(%v)", err)
  155. return
  156. }
  157. items := make([]*academy.ArcMeta, 0, len(aids))
  158. for _, aid := range aids {
  159. v, ok := arcInfo[aid]
  160. if !ok || v == nil {
  161. log.Error("ThemeCourse bind ArcInfo aid(%d) error", aid)
  162. return
  163. }
  164. a := &academy.ArcMeta{
  165. AID: aid,
  166. Cover: v.Pic,
  167. Title: v.Title,
  168. Type: v.TypeName,
  169. MID: v.Author.Mid,
  170. Duration: v.Duration,
  171. Skill: &academy.SkillArc{},
  172. Business: 1, //技能树只有视频
  173. }
  174. if st, ok := as[aid]; ok {
  175. a.ArcStat = st
  176. } else {
  177. a.ArcStat = &api.Stat{}
  178. }
  179. if pid, ok := pidMap[aid]; ok {
  180. a.Skill.PID = pid
  181. }
  182. if skid, ok := skidMap[aid]; ok {
  183. a.Skill.SkID = skid
  184. }
  185. if sid, ok := sidMap[aid]; ok {
  186. a.Skill.SID = sid
  187. }
  188. items = append(items, a)
  189. }
  190. res.Items = items
  191. return
  192. }
  193. // ViewPlay view play archive by aid & mid & business.
  194. func (s *Service) ViewPlay(c context.Context, mid, aid int64, bus int8) (play *academy.Play, err error) {
  195. p := &academy.Play{
  196. MID: mid,
  197. AID: aid,
  198. Business: bus,
  199. }
  200. play, err = s.aca.Play(c, p)
  201. if err != nil {
  202. log.Error("ViewPlay s.aca.Play error(%v)", err)
  203. }
  204. return
  205. }
  206. // PlayAdd add play archive by aid & mid.
  207. func (s *Service) PlayAdd(c context.Context, mid, aid int64, bus, watch int8) (id int64, err error) {
  208. py := &academy.Play{
  209. MID: mid,
  210. AID: aid,
  211. Business: bus,
  212. Watch: watch,
  213. CTime: xtime.Time(time.Now().Unix()),
  214. MTime: xtime.Time(time.Now().Unix()),
  215. }
  216. if id, err = s.aca.PlayAdd(c, py); err != nil {
  217. log.Error("s.aca.PlayAdd error(%v)", err)
  218. return
  219. }
  220. s.p.TaskPub(mid, newcomer.MsgForAcademyFavVideo, newcomer.MsgFinishedCount)
  221. return
  222. }
  223. // PlayDel del play archive by aid & mid & business.
  224. func (s *Service) PlayDel(c context.Context, mid, aid int64, bus int8) (id int64, err error) {
  225. p := &academy.Play{
  226. MID: mid,
  227. AID: aid,
  228. Business: bus,
  229. }
  230. play, err := s.aca.Play(c, p)
  231. if err != nil {
  232. log.Error("PlayDel s.aca.Play error(%v)", err)
  233. return
  234. }
  235. if play == nil {
  236. err = ecode.NothingFound
  237. return
  238. }
  239. if id, err = s.aca.PlayDel(c, p); err != nil {
  240. log.Error("s.aca.PlayDel error(%v)", err)
  241. }
  242. return
  243. }
  244. // PlayList get play list.
  245. func (s *Service) PlayList(c context.Context, mid int64, pn, ps int) (res *academy.ArcList, err error) {
  246. var (
  247. pls []*academy.Play
  248. total int
  249. aids, cids []int64
  250. playMap map[int64]*academy.Play
  251. )
  252. res = &academy.ArcList{
  253. Items: []*academy.ArcMeta{},
  254. Page: &academy.ArchivePage{
  255. Pn: pn,
  256. Ps: ps,
  257. },
  258. }
  259. if pls, err = s.aca.Plays(c, mid, (pn-1)*ps, ps); err != nil {
  260. log.Error("s.aca.Plays mid(%d)|error(%v)", mid, err)
  261. return
  262. }
  263. if len(pls) == 0 {
  264. log.Error("s.aca.Plays has no mid(%d)", mid)
  265. return
  266. }
  267. playMap = make(map[int64]*academy.Play)
  268. for _, v := range pls {
  269. if v.Business == 1 {
  270. aids = append(aids, v.AID)
  271. } else if v.Business == 2 {
  272. cids = append(cids, v.AID)
  273. }
  274. playMap[v.AID] = v
  275. }
  276. if total, err = s.aca.PlayCount(c, mid); err != nil {
  277. log.Error("s.aca.PlayCount error(%v)", err)
  278. return
  279. }
  280. res.Page.Total = total
  281. var (
  282. arcs []*academy.ArcMeta
  283. arts []*academy.ArcMeta
  284. g, _ = errgroup.WithContext(c)
  285. )
  286. g.Go(func() error {
  287. arcs, err = s.getArcInfo(c, aids, playMap)
  288. return err
  289. })
  290. g.Go(func() error {
  291. arts, err = s.getArtInfo(c, cids, playMap)
  292. return err
  293. })
  294. if g.Wait() != nil {
  295. log.Error("s.PlayList g.Wait() error(%v)", err)
  296. return
  297. }
  298. tItems := make([]*academy.ArcMeta, 0, len(arcs)+len(arts))
  299. tItems = append(tItems, arcs...)
  300. tItems = append(tItems, arts...)
  301. sort.Slice(tItems, func(i, j int) bool { //按播放时间倒序
  302. return tItems[i].PlayTime > tItems[j].PlayTime
  303. })
  304. unReadItems := make([]*academy.ArcMeta, 0)
  305. readItems := make([]*academy.ArcMeta, 0)
  306. for _, v := range tItems {
  307. if v.Watch == 1 {
  308. unReadItems = append(unReadItems, v)
  309. } else if v.Watch == 2 {
  310. readItems = append(readItems, v)
  311. }
  312. }
  313. res.Items = append(res.Items, unReadItems...) //未观看最先展示
  314. res.Items = append(res.Items, readItems...)
  315. return
  316. }
  317. func (s *Service) getArcInfo(c context.Context, aids []int64, playMap map[int64]*academy.Play) (items []*academy.ArcMeta, err error) {
  318. arcs, err := s.arc.Archives(c, aids, "")
  319. if err != nil {
  320. log.Error("s.arc.Archives aids(%+v)|error(%v)", aids, err)
  321. return
  322. }
  323. items = make([]*academy.ArcMeta, 0, len(aids))
  324. for _, aid := range aids {
  325. v, ok := arcs[aid]
  326. if !ok || v == nil {
  327. log.Error("PlayList bind ArcInfo aid(%d) error", aid)
  328. return
  329. }
  330. a := &academy.ArcMeta{
  331. AID: aid,
  332. Cover: v.Pic,
  333. Title: v.Title,
  334. Type: v.TypeName,
  335. MID: v.Author.Mid,
  336. Duration: v.Duration,
  337. }
  338. if p, ok := playMap[aid]; ok {
  339. a.PlayTime = p.MTime
  340. a.Watch = p.Watch
  341. a.Business = p.Business
  342. }
  343. items = append(items, a)
  344. }
  345. return
  346. }
  347. func (s *Service) getArtInfo(c context.Context, cids []int64, playMap map[int64]*academy.Play) (items []*academy.ArcMeta, err error) {
  348. arts, err := s.art.ArticleMetas(c, cids, "")
  349. if err != nil {
  350. log.Error("s.arc.ArticleMetas cids(%+v) error(%v)", cids, err)
  351. return
  352. }
  353. items = make([]*academy.ArcMeta, 0, len(cids))
  354. for _, cid := range cids {
  355. v, ok := arts[cid]
  356. if !ok || v == nil {
  357. log.Error("PlayList bind ArtInfo cid(%d) error", cid)
  358. return
  359. }
  360. a := &academy.ArcMeta{
  361. AID: cid,
  362. Title: v.Title,
  363. MID: v.Author.Mid,
  364. }
  365. if v.Category != nil {
  366. a.Type = v.Category.Name
  367. }
  368. if len(v.ImageURLs) > 0 {
  369. a.Cover = v.ImageURLs[0]
  370. }
  371. if p, ok := playMap[cid]; ok {
  372. a.PlayTime = p.MTime
  373. a.Watch = p.Watch
  374. a.Business = p.Business
  375. }
  376. items = append(items, a)
  377. }
  378. return
  379. }
  380. // ProfessionSkill get theme course.
  381. func (s *Service) ProfessionSkill(c context.Context, pids, skids, sids []int64, pn, ps int, isnew bool) (res []*academy.NewbCourseList, err error) {
  382. var (
  383. tcs *academy.ArcList
  384. skMap map[int64]string
  385. aids []int64
  386. )
  387. // 取消分页,默认最大获取100条
  388. tcs, err = s.ThemeCourse(c, pids, skids, sids, 1, 100, false)
  389. if err != nil {
  390. log.Error("ProfessionSkill s.ThemeCourse pids(%+v)|skids(%+v)|sids(%+v)|error(%v)", pids, skids, sids, err)
  391. return
  392. }
  393. if len(tcs.Items) == 0 {
  394. return
  395. }
  396. skMap = make(map[int64]string)
  397. for _, v := range s.SkillCache {
  398. skids = append(skids, v.ID)
  399. skMap[v.ID] = v.Name
  400. }
  401. // add tags
  402. for _, v := range tcs.Items {
  403. if v == nil {
  404. continue
  405. }
  406. aids = append(aids, v.AID)
  407. }
  408. tags, err := s.getTags(c, aids)
  409. if err != nil {
  410. log.Error("ProfessionSkill s.getTags err(%v)", err)
  411. return
  412. }
  413. s.setTags(tcs.Items, tags)
  414. newbCourseMap := make(map[int64][]*academy.ArcMeta)
  415. for _, v := range tcs.Items {
  416. if v == nil || v.Skill == nil {
  417. continue
  418. }
  419. newbCourseMap[v.Skill.SkID] = append(newbCourseMap[v.Skill.SkID], v)
  420. }
  421. res = make([]*academy.NewbCourseList, 0)
  422. for _, id := range skids {
  423. l := &academy.NewbCourseList{}
  424. if v, ok := newbCourseMap[id]; ok {
  425. l.Items = v
  426. }
  427. if sname, ok := skMap[id]; ok {
  428. l.Title = sname
  429. l.TID = id
  430. }
  431. if len(l.Items) == 0 {
  432. continue
  433. }
  434. res = append(res, l)
  435. }
  436. return
  437. }
  438. // Keywords get keywords.
  439. func (s *Service) Keywords(c context.Context) (res []interface{}) {
  440. res = s.KWsCache
  441. return
  442. }