report.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. package archive
  2. import (
  3. "context"
  4. "go-common/app/service/main/videoup/model/archive"
  5. "go-common/library/database/sql"
  6. "go-common/library/log"
  7. )
  8. const (
  9. _inArcReportSQL = "INSERT IGNORE INTO archive_report (mid,aid,type,reason,pics,ctime,mtime) VALUES(?,?,?,?,?,?,?)"
  10. _arcReportSQL = "SELECT aid,mid,type,reason,pics,ctime,mtime FROM archive_report WHERE aid=? AND mid=? LIMIT 1"
  11. )
  12. // AddArcReport insert archive_report.
  13. func (d *Dao) AddArcReport(c context.Context, aa *archive.ArcReport) (id int64, err error) {
  14. res, err := d.db.Exec(c, _inArcReportSQL, aa.Mid, aa.Aid, aa.Type, aa.Reason, aa.Pics, aa.CTime, aa.MTime)
  15. if err != nil {
  16. log.Error("_inArcReport.Exec error(%v)", err)
  17. return
  18. }
  19. return res.LastInsertId()
  20. }
  21. // ArcReport get archive_report by aid and mid.
  22. func (d *Dao) ArcReport(c context.Context, aid, mid int64) (aa *archive.ArcReport, err error) {
  23. row := d.rddb.QueryRow(c, _arcReportSQL, aid, mid)
  24. aa = &archive.ArcReport{}
  25. if err = row.Scan(&aa.Aid, &aa.Mid, &aa.Type, &aa.Reason, &aa.Pics, &aa.CTime, &aa.MTime); err != nil {
  26. if err == sql.ErrNoRows {
  27. err = nil
  28. aa = nil
  29. } else {
  30. log.Error("row.Scan error(%v)", err)
  31. }
  32. }
  33. return
  34. }