forked from prebid/prebid-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openrtb_util.go
175 lines (158 loc) · 4.4 KB
/
openrtb_util.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
package adapters
import (
"encoding/json"
"github.com/prebid/prebid-server/errortypes"
"github.com/prebid/prebid-server/pbs"
"github.com/mxmCherry/openrtb"
)
func min(x, y int) int {
if x < y {
return x
}
return y
}
func mediaTypeInSlice(t pbs.MediaType, list []pbs.MediaType) bool {
for _, b := range list {
if b == t {
return true
}
}
return false
}
func commonMediaTypes(l1 []pbs.MediaType, l2 []pbs.MediaType) []pbs.MediaType {
res := make([]pbs.MediaType, min(len(l1), len(l2)))
i := 0
for _, b := range l1 {
if mediaTypeInSlice(b, l2) {
res[i] = b
i = i + 1
}
}
return res[:i]
}
func makeBanner(unit pbs.PBSAdUnit) *openrtb.Banner {
return &openrtb.Banner{
W: openrtb.Uint64Ptr(unit.Sizes[0].W),
H: openrtb.Uint64Ptr(unit.Sizes[0].H),
Format: copyFormats(unit.Sizes), // defensive copy because adapters may mutate Imps, and this is shared data
TopFrame: unit.TopFrame,
}
}
func makeVideo(unit pbs.PBSAdUnit) *openrtb.Video {
// empty mimes array is a sign of uninitialized Video object
if len(unit.Video.Mimes) < 1 {
return nil
}
mimes := make([]string, len(unit.Video.Mimes))
copy(mimes, unit.Video.Mimes)
pbm := make([]openrtb.PlaybackMethod, 1)
//this will become int8 soon, so we only care about the first index in the array
pbm[0] = openrtb.PlaybackMethod(unit.Video.PlaybackMethod)
protocols := make([]openrtb.Protocol, 0, len(unit.Video.Protocols))
for _, protocol := range unit.Video.Protocols {
protocols = append(protocols, openrtb.Protocol(protocol))
}
return &openrtb.Video{
MIMEs: mimes,
MinDuration: unit.Video.Minduration,
MaxDuration: unit.Video.Maxduration,
W: unit.Sizes[0].W,
H: unit.Sizes[0].H,
StartDelay: openrtb.StartDelay(unit.Video.Startdelay).Ptr(),
PlaybackMethod: pbm,
Protocols: protocols,
}
}
// adapters.MakeOpenRTBGeneric makes an openRTB request from the PBS-specific structs.
//
// Any objects pointed to by the returned BidRequest *must not be mutated*, or we will get race conditions.
// The only exception is the Imp property, whose objects will be created new by this method and can be mutated freely.
func MakeOpenRTBGeneric(req *pbs.PBSRequest, bidder *pbs.PBSBidder, bidderFamily string, allowedMediatypes []pbs.MediaType) (openrtb.BidRequest, error) {
imps := make([]openrtb.Imp, 0, len(bidder.AdUnits)*len(allowedMediatypes))
for _, unit := range bidder.AdUnits {
if len(unit.Sizes) <= 0 {
continue
}
unitMediaTypes := commonMediaTypes(unit.MediaTypes, allowedMediatypes)
if len(unitMediaTypes) == 0 {
continue
}
newImp := openrtb.Imp{
ID: unit.Code,
Secure: &req.Secure,
Instl: unit.Instl,
}
for _, mType := range unitMediaTypes {
switch mType {
case pbs.MEDIA_TYPE_BANNER:
newImp.Banner = makeBanner(unit)
case pbs.MEDIA_TYPE_VIDEO:
newImp.Video = makeVideo(unit)
// It's strange to error here... but preserves legacy behavior in legacy code. See #603.
if newImp.Video == nil {
return openrtb.BidRequest{}, &errortypes.BadInput{
Message: "Invalid AdUnit: VIDEO media type with no video data",
}
}
}
}
if newImp.Banner != nil || newImp.Video != nil {
imps = append(imps, newImp)
}
}
if len(imps) < 1 {
return openrtb.BidRequest{}, &errortypes.BadInput{
Message: "openRTB bids need at least one Imp",
}
}
if req.App != nil {
return openrtb.BidRequest{
ID: req.Tid,
Imp: imps,
App: req.App,
Device: req.Device,
User: req.User,
Source: &openrtb.Source{
TID: req.Tid,
},
AT: 1,
TMax: req.TimeoutMillis,
Regs: req.Regs,
}, nil
}
buyerUID, _, _ := req.Cookie.GetUID(bidderFamily)
id, _, _ := req.Cookie.GetUID("adnxs")
var userExt json.RawMessage
if req.User != nil {
userExt = req.User.Ext
}
return openrtb.BidRequest{
ID: req.Tid,
Imp: imps,
Site: &openrtb.Site{
Domain: req.Domain,
Page: req.Url,
},
Device: req.Device,
User: &openrtb.User{
BuyerUID: buyerUID,
ID: id,
Ext: userExt,
},
Source: &openrtb.Source{
FD: 1, // upstream, aka header
TID: req.Tid,
},
AT: 1,
TMax: req.TimeoutMillis,
Regs: req.Regs,
}, nil
}
func copyFormats(sizes []openrtb.Format) []openrtb.Format {
sizesCopy := make([]openrtb.Format, len(sizes))
for i := 0; i < len(sizes); i++ {
sizesCopy[i] = sizes[i]
sizesCopy[i].Ext = append([]byte(nil), sizes[i].Ext...)
}
return sizesCopy
}