-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
adfBidAdapter.js
267 lines (227 loc) · 7.35 KB
/
adfBidAdapter.js
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
// jshint esversion: 6, es3: false, node: true
'use strict';
import {registerBidder} from '../src/adapters/bidderFactory.js';
import {BANNER, NATIVE, VIDEO} from '../src/mediaTypes.js';
import {deepAccess, deepClone, deepSetValue, mergeDeep, parseSizesInput, setOnAny} from '../src/utils.js';
import {config} from '../src/config.js';
import {Renderer} from '../src/Renderer.js';
import { getCurrencyFromBidderRequest } from '../libraries/ortb2Utils/currency.js';
const { getConfig } = config;
const BIDDER_CODE = 'adf';
const GVLID = 50;
const BIDDER_ALIAS = [
{ code: 'adformOpenRTB', gvlid: GVLID },
{ code: 'adform', gvlid: GVLID }
];
const OUTSTREAM_RENDERER_URL = 'https://s2.adform.net/banners/scripts/video/outstream/render.js';
export const spec = {
code: BIDDER_CODE,
aliases: BIDDER_ALIAS,
gvlid: GVLID,
supportedMediaTypes: [ NATIVE, BANNER, VIDEO ],
isBidRequestValid: (bid) => {
const params = bid.params || {};
const { mid, inv, mname } = params;
return !!(mid || (inv && mname));
},
buildRequests: (validBidRequests, bidderRequest) => {
let app, site;
const commonFpd = bidderRequest.ortb2 || {};
let { user } = commonFpd;
if (typeof getConfig('app') === 'object') {
app = getConfig('app') || {};
if (commonFpd.app) {
mergeDeep(app, commonFpd.app);
}
} else {
site = getConfig('site') || {};
if (commonFpd.site) {
mergeDeep(site, commonFpd.site);
}
if (!site.page) {
site.page = bidderRequest.refererInfo.page;
}
}
const device = getConfig('device') || {};
device.w = device.w || window.innerWidth;
device.h = device.h || window.innerHeight;
device.ua = device.ua || navigator.userAgent;
const adxDomain = setOnAny(validBidRequests, 'params.adxDomain') || 'adx.adform.net';
const pt = setOnAny(validBidRequests, 'params.pt') || setOnAny(validBidRequests, 'params.priceType') || 'net';
const tid = bidderRequest.ortb2?.source?.tid;
const test = setOnAny(validBidRequests, 'params.test');
const currency = getCurrencyFromBidderRequest(bidderRequest);
const cur = currency && [ currency ];
const eids = setOnAny(validBidRequests, 'userIdAsEids');
const schain = setOnAny(validBidRequests, 'schain');
const dsa = commonFpd.regs?.ext?.dsa;
const imp = validBidRequests.map((bid, id) => {
bid.netRevenue = pt;
const floorInfo = bid.getFloor ? bid.getFloor({
currency: currency || 'USD',
size: '*',
mediaType: '*'
}) : {};
const bidfloor = floorInfo.floor;
const bidfloorcur = floorInfo.currency;
const { mid, inv, mname } = bid.params;
const impExtData = bid.ortb2Imp?.ext?.data;
const imp = {
id: id + 1,
tagid: mid,
bidfloor,
bidfloorcur,
ext: {
data: impExtData,
bidder: {
inv,
mname
}
}
};
if (bid.nativeOrtbRequest && bid.nativeOrtbRequest.assets) {
let assets = bid.nativeOrtbRequest.assets;
let requestAssets = [];
for (let i = 0; i < assets.length; i++) {
let asset = deepClone(assets[i]);
let img = asset.img;
if (img) {
let aspectratios = img.ext && img.ext.aspectratios;
if (aspectratios) {
let ratioWidth = parseInt(aspectratios[0].split(':')[0], 10);
let ratioHeight = parseInt(aspectratios[0].split(':')[1], 10);
img.wmin = img.wmin || 0;
img.hmin = ratioHeight * img.wmin / ratioWidth | 0;
}
}
requestAssets.push(asset);
}
imp.native = {
request: {
assets: requestAssets
}
};
}
const bannerParams = deepAccess(bid, 'mediaTypes.banner');
if (bannerParams && bannerParams.sizes) {
const sizes = parseSizesInput(bannerParams.sizes);
const format = sizes.map(size => {
const [ width, height ] = size.split('x');
const w = parseInt(width, 10);
const h = parseInt(height, 10);
return { w, h };
});
imp.banner = {
format
};
}
const videoParams = deepAccess(bid, 'mediaTypes.video');
if (videoParams) {
imp.video = videoParams;
}
return imp;
});
const request = {
id: bidderRequest.bidderRequestId,
site,
app,
user,
device,
source: { tid, fd: 1 },
ext: { pt },
cur,
imp
};
if (test) {
request.is_debug = !!test;
request.test = 1;
}
if (config.getConfig('coppa')) {
deepSetValue(request, 'regs.coppa', 1);
}
if (deepAccess(bidderRequest, 'gdprConsent.gdprApplies') !== undefined) {
deepSetValue(request, 'user.ext.consent', bidderRequest.gdprConsent.consentString);
deepSetValue(request, 'regs.ext.gdpr', bidderRequest.gdprConsent.gdprApplies & 1);
}
if (bidderRequest.uspConsent) {
deepSetValue(request, 'regs.ext.us_privacy', bidderRequest.uspConsent);
}
if (eids) {
deepSetValue(request, 'user.ext.eids', eids);
}
if (schain) {
deepSetValue(request, 'source.ext.schain', schain);
}
if (dsa) {
deepSetValue(request, 'regs.ext.dsa', dsa);
}
return {
method: 'POST',
url: 'https://' + adxDomain + '/adx/openrtb',
data: JSON.stringify(request),
bids: validBidRequests
};
},
interpretResponse: function(serverResponse, { bids }) {
if (!serverResponse.body) {
return;
}
const { seatbid, cur } = serverResponse.body;
const bidResponses = flatten(seatbid.map(seat => seat.bid)).reduce((result, bid) => {
result[bid.impid - 1] = bid;
return result;
}, []);
return bids.map((bid, id) => {
const bidResponse = bidResponses[id];
if (bidResponse) {
const mediaType = deepAccess(bidResponse, 'ext.prebid.type');
const dsa = deepAccess(bidResponse, 'ext.dsa');
const result = {
requestId: bid.bidId,
cpm: bidResponse.price,
creativeId: bidResponse.crid,
ttl: 360,
netRevenue: bid.netRevenue === 'net',
currency: cur,
mediaType,
width: bidResponse.w,
height: bidResponse.h,
dealId: bidResponse.dealid,
meta: {
mediaType,
advertiserDomains: bidResponse.adomain,
dsa
}
};
if (bidResponse.native) {
result.native = {
ortb: bidResponse.native
};
} else {
if (mediaType === VIDEO) {
result.vastXml = bidResponse.adm;
if (bidResponse.nurl) {
result.vastUrl = bidResponse.nurl;
}
} else {
result.ad = bidResponse.adm;
}
}
if (!bid.renderer && mediaType === VIDEO && deepAccess(bid, 'mediaTypes.video.context') === 'outstream') {
result.renderer = Renderer.install({id: bid.bidId, url: OUTSTREAM_RENDERER_URL, adUnitCode: bid.adUnitCode});
result.renderer.setRender(renderer);
}
return result;
}
}).filter(Boolean);
}
};
registerBidder(spec);
function flatten(arr) {
return [].concat(...arr);
}
function renderer(bid) {
bid.renderer.push(() => {
window.Adform.renderOutstream(bid);
});
}