content.go 974 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package like
  2. import (
  3. "context"
  4. "fmt"
  5. l "go-common/app/interface/main/activity/model/like"
  6. "go-common/library/xstr"
  7. "github.com/pkg/errors"
  8. )
  9. const (
  10. _contentSQL = "select id,message,ip,plat,device,ctime,mtime,image,reply,link,ex_name from like_content where id in (%s)"
  11. )
  12. // RawLikeContent .
  13. func (dao *Dao) RawLikeContent(c context.Context, ids []int64) (res map[int64]*l.LikeContent, err error) {
  14. rows, err := dao.db.Query(c, fmt.Sprintf(_contentSQL, xstr.JoinInts(ids)))
  15. if err != nil {
  16. err = errors.Wrap(err, "dao.db.Query()")
  17. return
  18. }
  19. defer rows.Close()
  20. res = make(map[int64]*l.LikeContent, len(ids))
  21. for rows.Next() {
  22. t := &l.LikeContent{}
  23. if err = rows.Scan(&t.ID, &t.Message, &t.IP, &t.Plat, &t.Device, &t.Ctime, &t.Mtime, &t.Image, &t.Reply, &t.Link, &t.ExName); err != nil {
  24. err = errors.Wrapf(err, "rows.Scan()")
  25. return
  26. }
  27. res[t.ID] = t
  28. }
  29. if err = rows.Err(); err != nil {
  30. err = errors.Wrap(err, " rows.Err()")
  31. }
  32. return
  33. }