You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.2 KiB
56 lines
1.2 KiB
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 |
|
}
|
|
|