transcode.go 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package audit
  2. import (
  3. "context"
  4. "fmt"
  5. "go-common/library/ecode"
  6. "go-common/library/log"
  7. "go-common/library/time"
  8. "go-common/library/xstr"
  9. )
  10. const (
  11. _PgcCID = "SELECT `id` FROM `tv_content` WHERE `cid` = ? AND `is_deleted` = 0"
  12. _UgcCID = "SELECT `id` FROM `ugc_video` WHERE `cid` = ? AND `deleted` = 0"
  13. _transcodePGC = "UPDATE `tv_content` SET `transcoded` = ?, mark_time = NOW() WHERE `id` IN (%s) "
  14. _transcodeUGC = "UPDATE `ugc_video` SET `transcoded` = ? WHERE `id` IN (%s)"
  15. _applyPGC = "UPDATE `tv_content` SET `apply_time` = ? WHERE `id` IN (%s)"
  16. )
  17. // checkCID picks one ugc or pgc video data with its cid
  18. func (d *Dao) checkCID(c context.Context, cid int64, query string) (ids []int64, err error) {
  19. rows, err := d.db.Query(c, query, cid)
  20. if err != nil {
  21. log.Error("checkCID d.db.Query (%s) cid %d, error(%v)", query, cid, err)
  22. return
  23. }
  24. defer rows.Close()
  25. for rows.Next() {
  26. var li int64
  27. if err = rows.Scan(&li); err != nil {
  28. log.Error("checkCID Query (%s) row.Scan error(%v)", query, err)
  29. return
  30. }
  31. ids = append(ids, li)
  32. }
  33. if err = rows.Err(); err != nil {
  34. log.Error("checkCID Query (%s) rows Err cid %d, err %v", query, cid, err)
  35. return
  36. }
  37. if len(ids) == 0 {
  38. err = ecode.NothingFound
  39. }
  40. return
  41. }
  42. // UgcCID picks one ugc video data with its cid
  43. func (d *Dao) UgcCID(c context.Context, cid int64) (ids []int64, err error) {
  44. return d.checkCID(c, cid, _UgcCID)
  45. }
  46. // PgcCID picks one ugc video data with its cid
  47. func (d *Dao) PgcCID(c context.Context, cid int64) (ids []int64, err error) {
  48. return d.checkCID(c, cid, _PgcCID)
  49. }
  50. func (d *Dao) updateCIDs(c context.Context, query string, value interface{}) (err error) {
  51. if _, err = d.db.Exec(c, query, value); err != nil {
  52. log.Error("updateCIDs, Query %s, d.db.Exec.error(%v)", query, err)
  53. }
  54. return
  55. }
  56. // PgcTranscode updates the transcoded status of an ep data
  57. func (d *Dao) PgcTranscode(c context.Context, ids []int64, action int64) (err error) {
  58. return d.updateCIDs(c, fmt.Sprintf(_transcodePGC, xstr.JoinInts(ids)), action)
  59. }
  60. // UgcTranscode updates the transcoded status of an ep data
  61. func (d *Dao) UgcTranscode(c context.Context, ids []int64, action int64) (err error) {
  62. return d.updateCIDs(c, fmt.Sprintf(_transcodeUGC, xstr.JoinInts(ids)), action)
  63. }
  64. // ApplyPGC saves pgc apply_time; only PGC needs this
  65. func (d *Dao) ApplyPGC(c context.Context, ids []int64, aTime int64) (err error) {
  66. return d.updateCIDs(c, fmt.Sprintf(_applyPGC, xstr.JoinInts(ids)), time.Time(aTime))
  67. }