music.go 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. package music
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "go-common/app/interface/main/creative/model/music"
  7. "go-common/library/log"
  8. "go-common/library/xstr"
  9. "sort"
  10. "strings"
  11. )
  12. const (
  13. _CategorysSQL = "SELECT id,pid,name,`index`,camera_index FROM music_category WHERE id IN (%s) and state = 0 order by `index` asc "
  14. _MCategorysSQL = "SELECT id,sid,tid,`index`,ctime FROM music_with_category where state = 0 order by tid asc, `index` asc "
  15. _MusicsSQL = "SELECT cooperate,id,sid,name,frontname,musicians,mid,cover,playurl,state,duration,filesize,ctime,mtime,pubtime,tags,timeline FROM music WHERE sid IN (%s) and state = 0 "
  16. )
  17. // Categorys fn
  18. func (d *Dao) Categorys(c context.Context, ids []int64) (res []*music.Category, resMap map[int]*music.Category, err error) {
  19. rows, err := d.db.Query(c, fmt.Sprintf(_CategorysSQL, xstr.JoinInts(ids)))
  20. if err != nil {
  21. log.Error("mysqlDB.Query error(%v)", err)
  22. return
  23. }
  24. defer rows.Close()
  25. res = make([]*music.Category, 0)
  26. resMap = make(map[int]*music.Category, len(ids))
  27. for rows.Next() {
  28. v := &music.Category{}
  29. if err = rows.Scan(&v.ID, &v.PID, &v.Name, &v.Index, &v.CameraIndex); err != nil {
  30. log.Error("row.Scan error(%v)", err)
  31. return
  32. }
  33. res = append(res, v)
  34. resMap[v.ID] = v
  35. }
  36. return
  37. }
  38. // MCategorys fn
  39. func (d *Dao) MCategorys(c context.Context) (res []*music.Mcategory, err error) {
  40. rows, err := d.db.Query(c, _MCategorysSQL)
  41. if err != nil {
  42. log.Error("mysqlDB.Query error(%v)", err)
  43. return
  44. }
  45. defer rows.Close()
  46. res = make([]*music.Mcategory, 0)
  47. for rows.Next() {
  48. v := &music.Mcategory{}
  49. if err = rows.Scan(&v.ID, &v.SID, &v.Tid, &v.Index, &v.CTime); err != nil {
  50. log.Error("row.Scan error(%v)", err)
  51. return
  52. }
  53. res = append(res, v)
  54. }
  55. return
  56. }
  57. // Music fn
  58. func (d *Dao) Music(c context.Context, sids []int64) (res map[int64]*music.Music, err error) {
  59. rows, err := d.db.Query(c, fmt.Sprintf(_MusicsSQL, xstr.JoinInts(sids)))
  60. if err != nil {
  61. log.Error("mysqlDB.Query error(%v)", err)
  62. return
  63. }
  64. defer rows.Close()
  65. res = make(map[int64]*music.Music, len(sids))
  66. for rows.Next() {
  67. v := &music.Music{}
  68. var fName string
  69. if err = rows.Scan(&v.Cooperate, &v.ID, &v.SID, &v.Name, &fName, &v.Musicians, &v.UpMID, &v.Cover, &v.Playurl, &v.State, &v.Duration, &v.FileSize, &v.CTime, &v.MTime, &v.Pubtime, &v.TagsStr, &v.Timeline); err != nil {
  70. log.Error("row.Scan error(%v)", err)
  71. return
  72. }
  73. if len(fName) > 0 {
  74. v.Name = fName
  75. }
  76. v.CooperateURL = d.c.H5Page.Cooperate
  77. v.Tl = make([]*music.TimePoint, 0)
  78. if len(v.Timeline) > 0 {
  79. if err = json.Unmarshal([]byte(v.Timeline), &v.Tl); err != nil {
  80. log.Error("json.Unmarshal Timeline failed error(%v)", err)
  81. continue
  82. }
  83. sort.Slice(v.Tl, func(i, j int) bool {
  84. return v.Tl[i].Point < v.Tl[j].Point
  85. })
  86. if len(v.Tl) > 0 {
  87. for _, point := range v.Tl {
  88. if point.Recommend == 1 {
  89. v.RecommendPoint = point.Point
  90. break
  91. }
  92. }
  93. }
  94. }
  95. v.Tags = make([]string, 0)
  96. if len(v.TagsStr) > 0 {
  97. v.Tags = append(v.Tags, strings.Split(v.TagsStr, ",")...)
  98. }
  99. res[v.SID] = v
  100. }
  101. return
  102. }