transcode.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package audit
  2. import (
  3. "context"
  4. "go-common/app/interface/main/tv/model"
  5. "go-common/library/ecode"
  6. )
  7. const (
  8. _typeUGC = "ugc"
  9. _typePGC = "pgc"
  10. )
  11. type cidExistFunc = func(context.Context, int64) ([]int64, error)
  12. type cidTransFunc = func(context.Context, []int64, int64) error
  13. type reqTrans struct {
  14. CID int64
  15. Action int64
  16. CheckFunc cidExistFunc
  17. TransFunc cidTransFunc
  18. }
  19. // Transcode update the video/ep's transcoded status
  20. func (s *Service) Transcode(req *model.ReqTransode) (err error) {
  21. var ctx = context.TODO()
  22. if req.ContType == _typePGC {
  23. err = s.transPGC(ctx, req.CID, req.Action)
  24. } else if req.ContType == _typeUGC {
  25. err = s.transUGC(ctx, req.CID, req.Action)
  26. } else {
  27. err = ecode.TvDangbeiWrongType
  28. }
  29. return
  30. }
  31. func commonTrans(ctx context.Context, req reqTrans) (err error) {
  32. var ids []int64
  33. if ids, err = req.CheckFunc(ctx, req.CID); err != nil {
  34. return
  35. }
  36. if len(ids) == 0 {
  37. return ecode.NothingFound
  38. }
  39. err = req.TransFunc(ctx, ids, req.Action)
  40. return
  41. }
  42. func (s *Service) transPGC(ctx context.Context, cid int64, action int64) (err error) {
  43. return commonTrans(ctx, reqTrans{
  44. CID: cid,
  45. Action: action,
  46. CheckFunc: s.auditDao.PgcCID,
  47. TransFunc: s.auditDao.PgcTranscode,
  48. })
  49. }
  50. func (s *Service) transUGC(ctx context.Context, cid int64, action int64) (err error) {
  51. return commonTrans(ctx, reqTrans{
  52. CID: cid,
  53. Action: action,
  54. CheckFunc: s.auditDao.UgcCID,
  55. TransFunc: s.auditDao.UgcTranscode,
  56. })
  57. }
  58. // ApplyPGC saves the pgc transcode apply time
  59. func (s *Service) ApplyPGC(ctx context.Context, req *model.ReqApply) (err error) {
  60. return commonTrans(ctx, reqTrans{
  61. CID: req.CID,
  62. Action: req.ApplyTime,
  63. CheckFunc: s.auditDao.PgcCID,
  64. TransFunc: s.auditDao.ApplyPGC,
  65. })
  66. }