resource.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package resource
  2. import (
  3. "context"
  4. "go-common/app/interface/main/app-show/conf"
  5. resource "go-common/app/service/main/resource/model"
  6. resrpc "go-common/app/service/main/resource/rpc/client"
  7. "go-common/library/log"
  8. )
  9. type Dao struct {
  10. c *conf.Config
  11. // rpc
  12. resRpc *resrpc.Service
  13. }
  14. func New(c *conf.Config) (d *Dao) {
  15. d = &Dao{
  16. c: c,
  17. // rpc
  18. resRpc: resrpc.New(c.ResourceRPC),
  19. }
  20. return
  21. }
  22. func (d *Dao) ResBanner(ctx context.Context, plat int8, build int, mid int64, resIDStr, channel, ip, buvid, network, mobiApp, device, adExtra string, isAd bool) (res map[int][]*resource.Banner, err error) {
  23. arg := &resource.ArgBanner{
  24. Plat: plat,
  25. ResIDs: resIDStr,
  26. Build: build,
  27. MID: mid,
  28. Channel: channel,
  29. IP: ip,
  30. Buvid: buvid,
  31. Network: network,
  32. MobiApp: mobiApp,
  33. Device: device,
  34. IsAd: isAd,
  35. AdExtra: adExtra,
  36. }
  37. var bs *resource.Banners
  38. if bs, err = d.resRpc.Banners(ctx, arg); err != nil || bs == nil {
  39. log.Error("d.resRpc.Banners(%v) error(%v)", arg, err)
  40. return
  41. }
  42. if len(bs.Banner) > 0 {
  43. res = bs.Banner
  44. }
  45. return
  46. }