video.go 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. package archive
  2. import (
  3. "fmt"
  4. "strings"
  5. "go-common/app/service/main/videoup/model/archive"
  6. "go-common/library/database/sql"
  7. "go-common/library/log"
  8. )
  9. const (
  10. // insert
  11. _inVideoSQL = `INSERT INTO archive_video (id,aid,eptitle,description,filename,src_type,cid,index_order,attribute,duration,filesize,resolutions,playurl,failinfo,xcode_state,status)
  12. VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)`
  13. _inAuditsSQL = "INSERT INTO archive_video_audit (vid,aid,tid,oname,reason) VALUES %s"
  14. // update
  15. _upVideoSQL = `UPDATE archive_video SET eptitle=?,description=?,index_order=?,status=? WHERE id=?`
  16. _upVdoStatusSQL = "UPDATE archive_video SET status=? WHERE aid=? AND filename=?"
  17. _upVdoXcodeSQL = "UPDATE archive_video SET xcode_state=? WHERE aid=? AND filename=?"
  18. _upVdoAttrSQL = "UPDATE archive_video SET attribute=? WHERE aid=? AND filename=?"
  19. _upVdoCidSQL = "UPDATE archive_video SET cid=? WHERE aid=? AND filename=?"
  20. )
  21. // TxAddVideo insert archive video.
  22. func (d *Dao) TxAddVideo(tx *sql.Tx, v *archive.Video) (id int64, err error) {
  23. res, err := tx.Exec(_inVideoSQL, v.ID, v.Aid, v.Title, v.Desc, v.Filename, v.SrcType, v.Cid, v.Index, v.Attribute, v.Duration, v.Filesize, v.Resolutions, v.Playurl, v.FailCode, v.XcodeState, v.Status)
  24. if err != nil {
  25. log.Error("d.inVideo.Exec error(%v)", err)
  26. return
  27. }
  28. id, err = res.LastInsertId()
  29. return
  30. }
  31. // TxUpVideo update video.
  32. func (d *Dao) TxUpVideo(tx *sql.Tx, v *archive.Video) (rows int64, err error) {
  33. res, err := tx.Exec(_upVideoSQL, v.Title, v.Desc, v.Index, v.Status, v.ID)
  34. if err != nil {
  35. log.Error("d.upVideo.Exec(%v) error(%v)", v, err)
  36. return
  37. }
  38. rows, err = res.RowsAffected()
  39. return
  40. }
  41. // TxUpVideoStatus update video status.
  42. func (d *Dao) TxUpVideoStatus(tx *sql.Tx, aid int64, filename string, status int16) (rows int64, err error) {
  43. res, err := tx.Exec(_upVdoStatusSQL, status, aid, filename)
  44. if err != nil {
  45. log.Error("d.upVideoStatus.Exec error(%v)", err)
  46. return
  47. }
  48. rows, err = res.RowsAffected()
  49. return
  50. }
  51. // TxUpVideoXcode update video fail_code.
  52. func (d *Dao) TxUpVideoXcode(tx *sql.Tx, aid int64, filename string, xCodeState int8) (rows int64, err error) {
  53. res, err := tx.Exec(_upVdoXcodeSQL, xCodeState, aid, filename)
  54. if err != nil {
  55. log.Error("d.upVdoXcode.Exec error(%v)", err)
  56. return
  57. }
  58. rows, err = res.RowsAffected()
  59. return
  60. }
  61. // TxUpVideoAttr update video attribute.
  62. func (d *Dao) TxUpVideoAttr(tx *sql.Tx, aid int64, filename string, attribute int32) (rows int64, err error) {
  63. res, err := tx.Exec(_upVdoAttrSQL, attribute, aid, filename)
  64. if err != nil {
  65. log.Error("d.upVideoAttr.Exec error(%v)", err)
  66. return
  67. }
  68. rows, err = res.RowsAffected()
  69. return
  70. }
  71. // TxUpVideoCid update video attribute.
  72. func (d *Dao) TxUpVideoCid(tx *sql.Tx, aid int64, filename string, cid int64) (rows int64, err error) {
  73. res, err := tx.Exec(_upVdoCidSQL, cid, aid, filename)
  74. if err != nil {
  75. log.Error("d.upVideoCid.Exec error(%v)", err)
  76. return
  77. }
  78. rows, err = res.RowsAffected()
  79. return
  80. }
  81. // TxAddAudit insert video audit.
  82. func (d *Dao) TxAddAudit(tx *sql.Tx, vs []*archive.Video) (rows int64, err error) {
  83. var args = make([]string, 0, len(vs))
  84. for _, v := range vs {
  85. args = append(args, fmt.Sprintf(`(%d,%d,%d,'%s','%s')`, v.ID, v.Aid, 0, "videoup-service", ""))
  86. }
  87. res, err := tx.Exec(fmt.Sprintf(_inAuditsSQL, strings.Join(args, ",")))
  88. if err != nil {
  89. log.Error("d.inAudit.Exec error(%v)", err)
  90. return
  91. }
  92. rows, err = res.RowsAffected()
  93. return
  94. }