-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
teadsBidAdapter.js
363 lines (320 loc) · 11.8 KB
/
teadsBidAdapter.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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
import {getValue, logError, deepAccess, parseSizesInput, isArray, getBidIdParameter} from '../src/utils.js';
import {registerBidder} from '../src/adapters/bidderFactory.js';
import {getStorageManager} from '../src/storageManager.js';
import {isAutoplayEnabled} from '../libraries/autoplayDetection/autoplay.js';
import {getDM, getHC, getHLen} from '../libraries/navigatorData/navigatorData.js';
/**
* @typedef {import('../src/adapters/bidderFactory.js').BidRequest} BidRequest
* @typedef {import('../src/adapters/bidderFactory.js').Bid} Bid
*/
const BIDDER_CODE = 'teads';
const GVL_ID = 132;
const ENDPOINT_URL = 'https://a.teads.tv/hb/bid-request';
const gdprStatus = {
GDPR_APPLIES_PUBLISHER: 12,
GDPR_APPLIES_GLOBAL: 11,
GDPR_DOESNT_APPLY: 0,
CMP_NOT_FOUND_OR_ERROR: 22
};
const FP_TEADS_ID_COOKIE_NAME = '_tfpvi';
export const storage = getStorageManager({bidderCode: BIDDER_CODE});
export const spec = {
code: BIDDER_CODE,
gvlid: GVL_ID,
supportedMediaTypes: ['video', 'banner'],
/**
* Determines whether or not the given bid request is valid.
*
* @param {BidRequest} bid The bid params to validate.
* @return boolean True if this is a valid bid, and false otherwise.
*/
isBidRequestValid: function(bid) {
let isValid = false;
if (typeof bid.params !== 'undefined') {
let isValidPlacementId = _validateId(getValue(bid.params, 'placementId'));
let isValidPageId = _validateId(getValue(bid.params, 'pageId'));
isValid = isValidPlacementId && isValidPageId;
}
if (!isValid) {
logError('Teads placementId and pageId parameters are required. Bid aborted.');
}
return isValid;
},
/**
* Make a server request from the list of BidRequests.
*
* @param {validBidRequests[]} an array of bids
* @return ServerRequest Info describing the request to the server.
*/
buildRequests: function(validBidRequests, bidderRequest) {
const bids = validBidRequests.map(buildRequestObject);
const topWindow = window.top;
const payload = {
referrer: getReferrerInfo(bidderRequest),
pageReferrer: document.referrer,
pageTitle: getPageTitle().slice(0, 300),
pageDescription: getPageDescription().slice(0, 300),
networkBandwidth: getConnectionDownLink(window.navigator),
timeToFirstByte: getTimeToFirstByte(window),
data: bids,
device: bidderRequest?.ortb2?.device || {},
deviceWidth: screen.width,
deviceHeight: screen.height,
devicePixelRatio: topWindow.devicePixelRatio,
screenOrientation: screen.orientation?.type,
historyLength: getHLen(),
viewportHeight: topWindow.visualViewport?.height,
viewportWidth: topWindow.visualViewport?.width,
hardwareConcurrency: getHC(),
deviceMemory: getDM(),
hb_version: '$prebid.version$',
...getSharedViewerIdParameters(validBidRequests),
...getFirstPartyTeadsIdParameter(validBidRequests)
};
const firstBidRequest = validBidRequests[0];
if (firstBidRequest.schain) {
payload.schain = firstBidRequest.schain;
}
let gpp = bidderRequest.gppConsent;
if (bidderRequest && gpp) {
let isValidConsentString = typeof gpp.gppString === 'string';
let validateApplicableSections =
Array.isArray(gpp.applicableSections) &&
gpp.applicableSections.every((section) => typeof (section) === 'number')
payload.gpp = {
consentString: isValidConsentString ? gpp.gppString : '',
applicableSectionIds: validateApplicableSections ? gpp.applicableSections : [],
};
}
let gdpr = bidderRequest.gdprConsent;
if (bidderRequest && gdpr) {
let isCmp = typeof gdpr.gdprApplies === 'boolean';
let isConsentString = typeof gdpr.consentString === 'string';
let status = isCmp
? findGdprStatus(gdpr.gdprApplies, gdpr.vendorData)
: gdprStatus.CMP_NOT_FOUND_OR_ERROR;
payload.gdpr_iab = {
consent: isConsentString ? gdpr.consentString : '',
status: status,
apiVersion: gdpr.apiVersion
};
}
if (bidderRequest && bidderRequest.uspConsent) {
payload.us_privacy = bidderRequest.uspConsent;
}
const userAgentClientHints = deepAccess(firstBidRequest, 'ortb2.device.sua');
if (userAgentClientHints) {
payload.userAgentClientHints = userAgentClientHints;
}
const dsa = deepAccess(bidderRequest, 'ortb2.regs.ext.dsa');
if (dsa) {
payload.dsa = dsa;
}
const payloadString = JSON.stringify(payload);
return {
method: 'POST',
url: ENDPOINT_URL,
data: payloadString
};
},
/**
* Unpack the response from the server into a list of bids.
*
* @param {*} serverResponse A successful response from the server.
* @return {Bid[]} An array of bids which were nested inside the server.
*/
interpretResponse: function(serverResponse, bidderRequest) {
serverResponse = serverResponse.body;
if (!serverResponse.responses) {
return [];
}
const autoplayEnabled = isAutoplayEnabled();
return serverResponse.responses
.filter((bid) =>
// ignore this bid if it requires autoplay but it is not enabled on this browser
!bid.needAutoplay || autoplayEnabled
).map((bid) => {
const bidResponse = {
cpm: bid.cpm,
width: bid.width,
height: bid.height,
currency: bid.currency,
netRevenue: true,
ttl: bid.ttl,
meta: {
advertiserDomains: bid && bid.adomain ? bid.adomain : []
},
ad: bid.ad,
requestId: bid.bidId,
creativeId: bid.creativeId,
placementId: bid.placementId
};
if (bid.dealId) {
bidResponse.dealId = bid.dealId
}
if (bid?.ext?.dsa) {
bidResponse.meta.dsa = bid.ext.dsa;
}
return bidResponse;
});
}
};
/**
*
* @param validBidRequests an array of bids
* @returns {{sharedViewerIdKey : 'sharedViewerIdValue'}} object with all sharedviewerids
*/
function getSharedViewerIdParameters(validBidRequests) {
const sharedViewerIdMapping = {
unifiedId2: 'uid2.id', // uid2IdSystem
liveRampId: 'idl_env', // identityLinkIdSystem
lotamePanoramaId: 'lotamePanoramaId', // lotamePanoramaIdSystem
id5Id: 'id5id.uid', // id5IdSystem
criteoId: 'criteoId', // criteoIdSystem
yahooConnectId: 'connectId', // connectIdSystem
quantcastId: 'quantcastId', // quantcastIdSystem
epsilonPublisherLinkId: 'publinkId', // publinkIdSystem
publisherFirstPartyViewerId: 'pubcid', // sharedIdSystem
merkleId: 'merkleId.id', // merkleIdSystem
kinessoId: 'kpuid' // kinessoIdSystem
}
let sharedViewerIdObject = {};
for (const sharedViewerId in sharedViewerIdMapping) {
const key = sharedViewerIdMapping[sharedViewerId];
const value = deepAccess(validBidRequests, `0.userId.${key}`);
if (value) {
sharedViewerIdObject[sharedViewerId] = value;
}
}
return sharedViewerIdObject;
}
function getReferrerInfo(bidderRequest) {
let ref = '';
if (bidderRequest && bidderRequest.refererInfo && bidderRequest.refererInfo.page) {
ref = bidderRequest.refererInfo.page;
}
return ref;
}
function getPageTitle() {
try {
const ogTitle = window.top.document.querySelector('meta[property="og:title"]')
return window.top.document.title || (ogTitle && ogTitle.content) || '';
} catch (e) {
const ogTitle = document.querySelector('meta[property="og:title"]')
return document.title || (ogTitle && ogTitle.content) || '';
}
}
function getPageDescription() {
let element;
try {
element = window.top.document.querySelector('meta[name="description"]') ||
window.top.document.querySelector('meta[property="og:description"]')
} catch (e) {
element = document.querySelector('meta[name="description"]') ||
document.querySelector('meta[property="og:description"]')
}
return (element && element.content) || '';
}
function getConnectionDownLink(nav) {
return nav && nav.connection && nav.connection.downlink >= 0 ? nav.connection.downlink.toString() : '';
}
function getTimeToFirstByte(win) {
const performance = win.performance || win.webkitPerformance || win.msPerformance || win.mozPerformance;
const ttfbWithTimingV2 = performance &&
typeof performance.getEntriesByType === 'function' &&
Object.prototype.toString.call(performance.getEntriesByType) === '[object Function]' &&
performance.getEntriesByType('navigation')[0] &&
performance.getEntriesByType('navigation')[0].responseStart &&
performance.getEntriesByType('navigation')[0].requestStart &&
performance.getEntriesByType('navigation')[0].responseStart > 0 &&
performance.getEntriesByType('navigation')[0].requestStart > 0 &&
Math.round(
performance.getEntriesByType('navigation')[0].responseStart - performance.getEntriesByType('navigation')[0].requestStart
);
if (ttfbWithTimingV2) {
return ttfbWithTimingV2.toString();
}
const ttfbWithTimingV1 = performance &&
performance.timing.responseStart &&
performance.timing.requestStart &&
performance.timing.responseStart > 0 &&
performance.timing.requestStart > 0 &&
performance.timing.responseStart - performance.timing.requestStart;
return ttfbWithTimingV1 ? ttfbWithTimingV1.toString() : '';
}
function findGdprStatus(gdprApplies, gdprData) {
let status = gdprStatus.GDPR_APPLIES_PUBLISHER;
if (gdprApplies) {
if (gdprData && !gdprData.isServiceSpecific) {
status = gdprStatus.GDPR_APPLIES_GLOBAL;
}
} else {
status = gdprStatus.GDPR_DOESNT_APPLY;
}
return status;
}
function buildRequestObject(bid) {
const reqObj = {};
let placementId = getValue(bid.params, 'placementId');
let pageId = getValue(bid.params, 'pageId');
const gpid = deepAccess(bid, 'ortb2Imp.ext.gpid');
const videoPlcmt = deepAccess(bid, 'mediaTypes.video.plcmt');
reqObj.sizes = getSizes(bid);
reqObj.bidId = getBidIdParameter('bidId', bid);
reqObj.bidderRequestId = getBidIdParameter('bidderRequestId', bid);
reqObj.placementId = parseInt(placementId, 10);
reqObj.pageId = parseInt(pageId, 10);
reqObj.adUnitCode = getBidIdParameter('adUnitCode', bid);
reqObj.transactionId = bid.ortb2Imp?.ext?.tid || '';
if (gpid) { reqObj.gpid = gpid; }
if (videoPlcmt) { reqObj.videoPlcmt = videoPlcmt; }
return reqObj;
}
function getSizes(bid) {
return parseSizesInput(concatSizes(bid));
}
function concatSizes(bid) {
let playerSize = deepAccess(bid, 'mediaTypes.video.playerSize');
let videoSizes = deepAccess(bid, 'mediaTypes.video.sizes');
let bannerSizes = deepAccess(bid, 'mediaTypes.banner.sizes');
if (isArray(bannerSizes) || isArray(playerSize) || isArray(videoSizes)) {
let mediaTypesSizes = [bannerSizes, videoSizes, playerSize];
return mediaTypesSizes
.reduce(function(acc, currSize) {
if (isArray(currSize)) {
if (isArray(currSize[0])) {
currSize.forEach(function (childSize) {
acc.push(childSize);
})
} else {
acc.push(currSize);
}
}
return acc;
}, []);
} else {
return bid.sizes;
}
}
function _validateId(id) {
return (parseInt(id) > 0);
}
/**
* Get the first-party cookie Teads ID parameter to be sent in bid request.
* @param validBidRequests an array of bids
* @returns `{} | {firstPartyCookieTeadsId: string}`
*/
function getFirstPartyTeadsIdParameter(validBidRequests) {
const firstPartyTeadsIdFromUserIdModule = deepAccess(validBidRequests, '0.userId.teadsId');
if (firstPartyTeadsIdFromUserIdModule) {
return {firstPartyCookieTeadsId: firstPartyTeadsIdFromUserIdModule};
}
if (storage.cookiesAreEnabled(null)) {
const firstPartyTeadsIdFromCookie = storage.getCookie(FP_TEADS_ID_COOKIE_NAME, null);
if (firstPartyTeadsIdFromCookie) {
return {firstPartyCookieTeadsId: firstPartyTeadsIdFromCookie};
}
}
return {};
}
registerBidder(spec);