notice.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package dao
  2. import (
  3. "context"
  4. "database/sql"
  5. "fmt"
  6. "go-common/library/log"
  7. "go-common/app/interface/main/growup/model"
  8. )
  9. const (
  10. _latestNoticeSQL = "SELECT title,link,type FROM notice WHERE status = 1 AND platform IN (?, 3) ORDER BY mtime DESC LIMIT 1"
  11. _noticeSQL = "SELECT id,title,link,ctime,type FROM notice WHERE %s platform IN (?, 3) AND status=1 ORDER BY mtime DESC LIMIT ?,?"
  12. _noticeCountSQL = "SELECT count(*) from notice WHERE %s platform IN (?, 3) AND status=1"
  13. )
  14. // LatestNotice latest notice
  15. func (d *Dao) LatestNotice(c context.Context, platform int) (n *model.Notice, err error) {
  16. row := d.rddb.QueryRow(c, _latestNoticeSQL, platform)
  17. n = &model.Notice{}
  18. if err = row.Scan(&n.Title, &n.Link, &n.Type); err != nil {
  19. if err == sql.ErrNoRows {
  20. err = nil
  21. } else {
  22. log.Error("row scan error(%v)", err)
  23. }
  24. }
  25. return
  26. }
  27. // Notices notices
  28. func (d *Dao) Notices(c context.Context, typ string, platform int, offset, limit int) (notices []*model.Notice, err error) {
  29. rows, err := d.rddb.Query(c, fmt.Sprintf(_noticeSQL, typ), platform, offset, limit)
  30. if err != nil {
  31. log.Error("d.db.Query Notices error(%v)", err)
  32. return
  33. }
  34. defer rows.Close()
  35. for rows.Next() {
  36. n := &model.Notice{}
  37. err = rows.Scan(&n.ID, &n.Title, &n.Link, &n.CTime, &n.Type)
  38. if err != nil {
  39. log.Error("rows scan error(%v)", err)
  40. return
  41. }
  42. notices = append(notices, n)
  43. }
  44. return
  45. }
  46. // NoticeCount notice count
  47. func (d *Dao) NoticeCount(c context.Context, typ string, platform int) (count int64, err error) {
  48. row := d.rddb.QueryRow(c, fmt.Sprintf(_noticeCountSQL, typ), platform)
  49. if err = row.Scan(&count); err != nil {
  50. log.Error("row scan error(%v)", err)
  51. }
  52. return
  53. }