viewpoint.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package archive
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "go-common/app/interface/main/creative/model/archive"
  7. "go-common/library/log"
  8. )
  9. const (
  10. _viewPointKey = "viewpoint_%d_%d"
  11. _viewPointExp = 300
  12. _videoViewPoints = "SELECT id,aid,cid,content,state,ctime,mtime FROM video_viewpoint WHERE aid=? AND cid=? AND state=1 ORDER BY mtime DESC LIMIT ?"
  13. )
  14. // viewPointCacheKey 高能看点MC缓存key
  15. func viewPointCacheKey(aid, cid int64) string {
  16. return fmt.Sprintf(_viewPointKey, aid, cid)
  17. }
  18. // RawViewPoint get video highlight viewpoint
  19. func (d *Dao) RawViewPoint(c context.Context, aid, cid int64) (vp *archive.ViewPointRow, err error) {
  20. vps, err := d.RawViewPoints(c, aid, cid, 1)
  21. if err != nil {
  22. return
  23. }
  24. if len(vps) == 0 {
  25. return
  26. }
  27. vp = vps[0]
  28. return
  29. }
  30. // RawViewPoints 获取多个版本的高能看点
  31. func (d *Dao) RawViewPoints(c context.Context, aid, cid int64, count int) (vps []*archive.ViewPointRow, err error) {
  32. rows, err := d.db.Query(c, _videoViewPoints, aid, cid, count)
  33. if err != nil {
  34. log.Error("d.Query() error(%v)", err)
  35. return
  36. }
  37. defer rows.Close()
  38. for rows.Next() {
  39. var (
  40. p struct {
  41. ID int64
  42. AID int64
  43. CID int64
  44. Content string
  45. State int32
  46. CTime string
  47. MTime string
  48. }
  49. points struct {
  50. Points []*archive.ViewPoint `json:"points"`
  51. }
  52. )
  53. if err = rows.Scan(&p.ID, &p.AID, &p.CID, &p.Content, &p.State, &p.CTime, &p.MTime); err != nil {
  54. log.Error("row.Scan error(%v)", err)
  55. return
  56. }
  57. if err = json.Unmarshal([]byte(p.Content), &points); err != nil {
  58. log.Error("json.Unmarshal(%s) error(%v)", p.Content, err)
  59. return
  60. }
  61. for i := 0; i < len(points.Points); i++ {
  62. if points.Points[i].State != 1 {
  63. points.Points = append(points.Points[:i], points.Points[i+1:]...)
  64. i--
  65. }
  66. }
  67. vps = append(vps, &archive.ViewPointRow{
  68. ID: p.ID,
  69. AID: p.AID,
  70. CID: p.CID,
  71. Points: points.Points,
  72. State: p.State,
  73. CTime: p.CTime,
  74. MTime: p.MTime,
  75. })
  76. }
  77. return
  78. }