porder.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package archive
  2. import (
  3. "context"
  4. "database/sql"
  5. "net/url"
  6. "go-common/app/interface/main/creative/model/archive"
  7. "go-common/library/ecode"
  8. "go-common/library/log"
  9. )
  10. const (
  11. _flow = "/videoup/flows"
  12. _porderSQL = "SELECT id,aid,industry_id,brand_id,brand_name,official,show_type,advertiser,agent,ctime,mtime FROM archive_porder WHERE aid=? AND show_front = 1"
  13. )
  14. // Flows fn
  15. func (d *Dao) Flows(c context.Context) (flows []*archive.Flow, err error) {
  16. params := url.Values{}
  17. flows = []*archive.Flow{}
  18. var res struct {
  19. Code int `json:"code"`
  20. Data []*archive.Flow `json:"data"`
  21. }
  22. if err = d.client.Get(c, d.flow, "", params, &res); err != nil {
  23. log.Error("archive.Flow url(%s) error(%v)", d.flow+"?"+params.Encode(), err)
  24. err = ecode.CreativeArchiveAPIErr
  25. return
  26. }
  27. if res.Code != 0 {
  28. log.Error("archive.Flow url(%s) res(%v)", d.flow+"?"+params.Encode(), res)
  29. err = ecode.CreativeArchiveAPIErr
  30. return
  31. }
  32. if res.Data == nil || len(res.Data) == 0 {
  33. return
  34. }
  35. flows = res.Data
  36. return
  37. }
  38. // Porder NOTE: move to up service
  39. func (d *Dao) Porder(c context.Context, aid int64) (pd *archive.Porder, err error) {
  40. row := d.db.QueryRow(c, _porderSQL, aid)
  41. pd = &archive.Porder{}
  42. if err = row.Scan(&pd.ID, &pd.AID, &pd.IndustryID, &pd.BrandID, &pd.BrandName, &pd.Official, &pd.ShowType, &pd.Advertiser, &pd.Agent, &pd.Ctime, &pd.Mtime); err != nil {
  43. if err == sql.ErrNoRows {
  44. pd = nil
  45. err = nil
  46. } else {
  47. log.Error("row.Scan error(%v)", err)
  48. }
  49. }
  50. return
  51. }