history.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. package archive
  2. import (
  3. "context"
  4. "fmt"
  5. "strconv"
  6. "strings"
  7. "time"
  8. "go-common/app/service/main/videoup/model/archive"
  9. "go-common/library/database/sql"
  10. "go-common/library/log"
  11. )
  12. const (
  13. _inArcHistorySQL = "INSERT INTO archive_edit_history(aid,mid,title,content,cover,tag) VALUE(?,?,?,?,?,?)"
  14. _inVideoHistorySQL = "INSERT INTO archive_video_edit_history(aid,cid,hid,eptitle,description,filename) VALUE (?,?,?,?,?,?)"
  15. _upVideoHistorySQL = "UPDATE archive_video_edit_history SET cid=? WHERE aid=? AND filename=? AND cid = 0"
  16. _arcHistorySQL = "SELECT id,mid,aid,title,content,cover,tag,ctime FROM archive_edit_history WHERE id =?"
  17. _arcHistorysSQL = "SELECT id,mid,aid,title,content,cover,tag,ctime FROM archive_edit_history WHERE aid =? and ctime >=? ORDER BY id DESC"
  18. _videoHistorySQL = "SELECT cid,eptitle,description,filename FROM archive_video_edit_history WHERE hid =? ORDER BY id ASC"
  19. _inVideoHistorysSQL = "INSERT INTO archive_video_edit_history(aid,cid,hid,eptitle,description,filename) VALUES %s"
  20. )
  21. // TxAddArcHistory insert archive_edit_history.
  22. func (d *Dao) TxAddArcHistory(tx *sql.Tx, aid, mid int64, title, content, cover, tag string) (hid int64, err error) {
  23. res, err := tx.Exec(_inArcHistorySQL, aid, mid, title, content, cover, tag)
  24. if err != nil {
  25. log.Error("d.inArcHistory.Exec() error(%v)", err)
  26. return
  27. }
  28. hid, err = res.LastInsertId()
  29. return
  30. }
  31. // TxAddVideoHistory insert archive_video_edit_history.
  32. func (d *Dao) TxAddVideoHistory(tx *sql.Tx, hid int64, v *archive.Video) (rows int64, err error) {
  33. res, err := tx.Exec(_inVideoHistorySQL, v.Aid, v.Cid, hid, v.Title, v.Desc, v.Filename)
  34. if err != nil {
  35. log.Error("d.inVideoHistory.Exec() error(%v)", err)
  36. return
  37. }
  38. rows, err = res.RowsAffected()
  39. return
  40. }
  41. // TxUpVideoHistory update cid to archive_video_edit_history
  42. func (d *Dao) TxUpVideoHistory(tx *sql.Tx, aid, cid int64, filename string) (rows int64, err error) {
  43. res, err := tx.Exec(_upVideoHistorySQL, cid, aid, filename)
  44. if err != nil {
  45. log.Error("d.upVideoHistory.Exec() error(%v)", err)
  46. return
  47. }
  48. rows, err = res.RowsAffected()
  49. return
  50. }
  51. // ArcHistory select archive edit history by hid.
  52. func (d *Dao) ArcHistory(c context.Context, hid int64) (ah *archive.ArcHistory, err error) {
  53. row := d.rddb.QueryRow(c, _arcHistorySQL, hid)
  54. ah = &archive.ArcHistory{}
  55. if err = row.Scan(&ah.ID, &ah.Mid, &ah.Aid, &ah.Title, &ah.Content, &ah.Cover, &ah.Tag, &ah.CTime); err != nil {
  56. if err == sql.ErrNoRows {
  57. err = nil
  58. } else {
  59. log.Error("row.Scan error(%v)", err)
  60. }
  61. }
  62. return
  63. }
  64. // ArcHistorys select archive edit history by aid.
  65. func (d *Dao) ArcHistorys(c context.Context, aid int64, stime time.Time) (ahs []*archive.ArcHistory, err error) {
  66. rows, err := d.rddb.Query(c, _arcHistorysSQL, aid, stime)
  67. if err != nil {
  68. log.Error("d.arcHissStmt.Query(%d) error(%v)", aid, err)
  69. return
  70. }
  71. defer rows.Close()
  72. for rows.Next() {
  73. ah := &archive.ArcHistory{}
  74. if err = rows.Scan(&ah.ID, &ah.Mid, &ah.Aid, &ah.Title, &ah.Content, &ah.Cover, &ah.Tag, &ah.CTime); err != nil {
  75. log.Error("rows.Scan error(%v)", err)
  76. return
  77. }
  78. ahs = append(ahs, ah)
  79. }
  80. return
  81. }
  82. // VideoHistory select archive video edit history by hid.
  83. func (d *Dao) VideoHistory(c context.Context, hid int64) (vhs []*archive.VideoHistory, err error) {
  84. rows, err := d.rddb.Query(c, _videoHistorySQL, hid)
  85. if err != nil {
  86. log.Error("d.videoHisStmt.Query(%d) error(%v)", hid, err)
  87. return
  88. }
  89. defer rows.Close()
  90. for rows.Next() {
  91. vh := &archive.VideoHistory{}
  92. if err = rows.Scan(&vh.Cid, &vh.Title, &vh.Desc, &vh.Filename); err != nil {
  93. log.Error("rows.Scan error(%v)", err)
  94. return
  95. }
  96. vhs = append(vhs, vh)
  97. }
  98. return
  99. }
  100. // TxAddVideoHistorys batch add archive_video_history.
  101. func (d *Dao) TxAddVideoHistorys(tx *sql.Tx, hid int64, vs []*archive.Video) (err error) {
  102. log.Info("info TxAddVideoHistorys: hid(%d)|vs(%+v)|cntVs(%d)", hid, vs, len(vs))
  103. l := len(vs)
  104. vStrs := make([]string, 0, l)
  105. vArgs := make([]interface{}, 0, l*6)
  106. for _, v := range vs {
  107. vStrs = append(vStrs, "(?, ?, ?, ?, ?, ?)")
  108. vArgs = append(vArgs, strconv.FormatInt(v.Aid, 10))
  109. vArgs = append(vArgs, strconv.FormatInt(v.Cid, 10))
  110. vArgs = append(vArgs, strconv.FormatInt(hid, 10))
  111. vArgs = append(vArgs, v.Title)
  112. vArgs = append(vArgs, v.Desc)
  113. vArgs = append(vArgs, v.Filename)
  114. }
  115. stmt := fmt.Sprintf(_inVideoHistorysSQL, strings.Join(vStrs, ","))
  116. _, err = tx.Exec(stmt, vArgs...)
  117. if err != nil {
  118. log.Error("TxAddVideoHistorys: tx.Exec(vs(%+v))|hid(%d) error(%v)", vs, hid, err)
  119. }
  120. return
  121. }