subtitle_report.go 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. package service
  2. import (
  3. "context"
  4. "go-common/app/interface/main/dm2/model"
  5. "go-common/app/service/main/archive/api"
  6. archiveMdl "go-common/app/service/main/archive/model/archive"
  7. figureMdl "go-common/app/service/main/figure/model"
  8. "go-common/library/ecode"
  9. "go-common/library/log"
  10. )
  11. const (
  12. _workFlowSubtitleBid = 14
  13. _workFlowSubtitleRid = 1
  14. )
  15. // SubtitleReportList .
  16. func (s *Service) SubtitleReportList(c context.Context) (data []*model.WorkFlowTag, err error) {
  17. var (
  18. cacheErr bool
  19. )
  20. if data, err = s.dao.SubtitleWorlFlowTagCache(c, _workFlowSubtitleBid, _workFlowSubtitleRid); err != nil {
  21. cacheErr = true
  22. err = nil
  23. }
  24. if len(data) > 0 {
  25. return
  26. }
  27. if data, err = s.dao.WorkFlowTagList(c, _workFlowSubtitleBid, _workFlowSubtitleRid); err != nil {
  28. return
  29. }
  30. if !cacheErr {
  31. temp := data
  32. s.cache.Do(c, func(ctx context.Context) {
  33. s.dao.SetSubtitleWorlFlowTagCache(ctx, _workFlowSubtitleBid, _workFlowSubtitleRid, temp)
  34. })
  35. }
  36. return
  37. }
  38. // SubtitleReportAdd .
  39. func (s *Service) SubtitleReportAdd(c context.Context, mid int64, param *model.SubtitleReportAddParam) (err error) {
  40. var (
  41. figureWithRank *figureMdl.FigureWithRank
  42. subtitle *model.Subtitle
  43. archiveInfo *api.Arc
  44. score int32
  45. )
  46. if subtitle, err = s.getSubtitle(c, param.Oid, param.SubtitleID); err != nil {
  47. return
  48. }
  49. if subtitle == nil {
  50. err = ecode.NothingFound
  51. return
  52. }
  53. if figureWithRank, err = s.figureRPC.UserFigure(c, &figureMdl.ArgUserFigure{
  54. Mid: mid,
  55. }); err == nil {
  56. score = figureWithRank.Score
  57. } else {
  58. log.Error("UserFigure(mid:%v),error(%v)", mid, err)
  59. }
  60. if archiveInfo, err = s.arcRPC.Archive3(c, &archiveMdl.ArgAid2{
  61. Aid: subtitle.Aid,
  62. }); err != nil {
  63. log.Error("s.arcRPC.Archive3(aid:%v),error(%v)", subtitle.Aid, err)
  64. return
  65. }
  66. req := &model.WorkFlowAppealAddReq{
  67. Business: _workFlowSubtitleBid,
  68. Oid: param.Oid,
  69. Aid: subtitle.Aid,
  70. Rid: _workFlowSubtitleRid,
  71. LanCode: int64(subtitle.Lan),
  72. SubtitleID: param.SubtitleID,
  73. Score: score,
  74. Tid: param.Tid,
  75. Mid: mid,
  76. Description: param.MetaData,
  77. BusinessTypeID: archiveInfo.TypeID,
  78. BusinessTitle: param.Content,
  79. BusinessMid: subtitle.Mid,
  80. Extra: &model.WorkFlowAppealAddExtra{
  81. SubtitleStatus: int64(subtitle.Status),
  82. SubtitleURL: subtitle.SubtitleURL,
  83. ArchiveName: archiveInfo.Title,
  84. },
  85. }
  86. if err = s.dao.WorkFlowAppealAdd(c, req); err != nil {
  87. log.Error("SubtitleReportAdd(req:%+v),error(%v)", req, err)
  88. return
  89. }
  90. return
  91. }
  92. func (s *Service) subtitleReportDelete(c context.Context, oid, subtitleID int64) (err error) {
  93. if err = s.dao.WorkFlowAppealDelete(c, _workFlowSubtitleBid, oid, subtitleID); err != nil {
  94. return
  95. }
  96. return
  97. }