57 lines
1.2 KiB
Go
57 lines
1.2 KiB
Go
package resource
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go-common/app/interface/main/app-interface/conf"
|
|
resmdl "go-common/app/service/main/resource/model"
|
|
resrpc "go-common/app/service/main/resource/rpc/client"
|
|
"go-common/library/log"
|
|
"go-common/library/net/metadata"
|
|
)
|
|
|
|
type Dao struct {
|
|
c *conf.Config
|
|
// rpc
|
|
resRPC *resrpc.Service
|
|
}
|
|
|
|
func New(c *conf.Config) (d *Dao) {
|
|
d = &Dao{
|
|
c: c,
|
|
// rpc
|
|
resRPC: resrpc.New(c.ResourceRPC),
|
|
}
|
|
return
|
|
}
|
|
|
|
// Banner get search banner
|
|
func (d *Dao) Banner(c context.Context, mobiApp, device, network, channel, buvid, adExtra, resIDStr string, build int, plat int8, mid int64) (res map[int][]*resmdl.Banner, err error) {
|
|
var (
|
|
bs *resmdl.Banners
|
|
ip = metadata.String(c, metadata.RemoteIP)
|
|
)
|
|
arg := &resmdl.ArgBanner{
|
|
MobiApp: mobiApp,
|
|
Device: device,
|
|
Network: network,
|
|
Channel: channel,
|
|
IP: ip,
|
|
Buvid: buvid,
|
|
AdExtra: adExtra,
|
|
ResIDs: resIDStr,
|
|
Build: build,
|
|
Plat: plat,
|
|
MID: mid,
|
|
IsAd: true,
|
|
}
|
|
if bs, err = d.resRPC.Banners(c, arg); err != nil || bs == nil {
|
|
log.Error("d.resRPC.Banners(%v) error(%v) or bs is nil", arg, err)
|
|
return
|
|
}
|
|
if len(bs.Banner) > 0 {
|
|
res = bs.Banner
|
|
}
|
|
return
|
|
}
|