archive.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. package academy
  2. import (
  3. "context"
  4. "fmt"
  5. "database/sql"
  6. sqlx "go-common/library/database/sql"
  7. "go-common/library/xstr"
  8. "go-common/app/interface/main/creative/dao/tool"
  9. "go-common/app/interface/main/creative/model/academy"
  10. "go-common/library/log"
  11. )
  12. const (
  13. // select
  14. _getArcByOIDAndBusSQL = "SELECT id, oid, business, state, ctime, mtime FROM academy_archive WHERE oid=? AND business=?"
  15. _getSearByBusSQL = "SELECT a.oid, a.business, GROUP_CONCAT(t.tid SEPARATOR ',') AS tidstr FROM academy_archive AS a LEFT JOIN academy_archive_tag as t on t.oid = a.oid"
  16. _getArcCountSQL = "SELECT count(DISTINCT a.oid) FROM (SELECT oid FROM academy_archive WHERE state=0 AND business=?) AS a LEFT JOIN academy_archive_tag as t on t.oid=a.oid"
  17. _getTagByOidsSQL = "SELECT oid, tid FROM academy_archive_tag WHERE state=0 AND oid IN (%s)"
  18. )
  19. //Archive get one achive.
  20. func (d *Dao) Archive(c context.Context, oid int64, bs int) (a *academy.Archive, err error) {
  21. row := d.db.QueryRow(c, _getArcByOIDAndBusSQL, oid, bs)
  22. a = &academy.Archive{}
  23. if err = row.Scan(&a.ID, &a.OID, &a.Business, &a.State, &a.CTime, &a.MTime); err != nil {
  24. if err == sql.ErrNoRows {
  25. err = nil
  26. return
  27. }
  28. log.Error("row.Scan error(%v)", err)
  29. }
  30. return
  31. }
  32. //ArchiveCount get all achive count.
  33. func (d *Dao) ArchiveCount(c context.Context, tids []int64, bs int) (count int, err error) {
  34. sqlStr := _getArcCountSQL
  35. if len(tids) > 0 {
  36. sqlStr += fmt.Sprintf(" WHERE t.tid IN (%s)", xstr.JoinInts(tids))
  37. }
  38. if err = d.db.QueryRow(c, sqlStr, bs).Scan(&count); err != nil {
  39. if err == sql.ErrNoRows {
  40. err = nil
  41. return
  42. }
  43. log.Error("d.db.QueryRow error(%v)", err)
  44. }
  45. return
  46. }
  47. //SearchArchive get all oid & tid.
  48. func (d *Dao) SearchArchive(c context.Context, tidsMap map[int][]int64, bs int) (res []*academy.Archive, err error) {
  49. var (
  50. rows *sqlx.Rows
  51. tids []int64
  52. )
  53. for _, v := range tidsMap {
  54. tids = append(tids, v...)
  55. }
  56. total := len(tids)
  57. sqlStr := _getSearByBusSQL
  58. if total > 0 {
  59. sqlStr += fmt.Sprintf(" WHERE a.state=0 AND a.business=? AND t.tid IN (%s) GROUP BY a.oid ORDER BY a.mtime DESC", xstr.JoinInts(tids))
  60. } else {
  61. sqlStr += " WHERE a.state=0 AND a.business=? GROUP BY a.oid ORDER BY a.mtime DESC"
  62. }
  63. rows, err = d.db.Query(c, sqlStr, bs)
  64. if err != nil {
  65. log.Error("d.db.Query error(%v)", err)
  66. return
  67. }
  68. defer rows.Close()
  69. res = make([]*academy.Archive, 0)
  70. origin := make([]*academy.Archive, 0)
  71. var tidStr string
  72. for rows.Next() {
  73. a := &academy.Archive{}
  74. if err = rows.Scan(&a.OID, &a.Business, &tidStr); err != nil {
  75. log.Error("rows.Scan error(%v)", err)
  76. return
  77. }
  78. a.TIDs, _ = xstr.SplitInts(tidStr)
  79. origin = append(origin, a)
  80. }
  81. if total > 0 {
  82. var cts, ots, clts, acts []int64
  83. if v, ok := tidsMap[academy.Course]; ok {
  84. cts = v
  85. }
  86. if v, ok := tidsMap[academy.Operation]; ok {
  87. ots = v
  88. }
  89. if v, ok := tidsMap[academy.Classify]; ok {
  90. clts = v
  91. }
  92. if v, ok := tidsMap[academy.ArticleClass]; ok {
  93. acts = v
  94. }
  95. for _, v := range origin {
  96. log.Info("search tag 课程级别(%+v)|运营标签(%+v)|分类标签(%+v)|专栏分类(%+v)|当前稿件标签(%+v)", cts, ots, clts, acts, v.TIDs)
  97. if tool.ContainAtLeastOne(cts, v.TIDs) &&
  98. tool.ContainAtLeastOne(ots, v.TIDs) &&
  99. tool.ContainAtLeastOne(clts, v.TIDs) &&
  100. tool.ContainAtLeastOne(acts, v.TIDs) {
  101. res = append(res, v)
  102. }
  103. }
  104. } else {
  105. res = origin
  106. }
  107. return
  108. }
  109. //ArchiveTagsByOids get all tids by oids.
  110. func (d *Dao) ArchiveTagsByOids(c context.Context, oids []int64) (res map[int64][]int64, err error) {
  111. rows, err := d.db.Query(c, fmt.Sprintf(_getTagByOidsSQL, xstr.JoinInts(oids)))
  112. if err != nil {
  113. log.Error("d.db.Query error(%v)", err)
  114. return
  115. }
  116. defer rows.Close()
  117. res = make(map[int64][]int64)
  118. for rows.Next() {
  119. a := &academy.ArchiveTag{}
  120. if err = rows.Scan(&a.OID, &a.TID); err != nil {
  121. log.Error("rows.Scan error(%v)", err)
  122. return
  123. }
  124. res[a.OID] = append(res[a.OID], a.TID)
  125. }
  126. return
  127. }