-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
newspassidBidAdapter.js
674 lines (674 loc) · 30.6 KB
/
newspassidBidAdapter.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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
import {
deepClone,
logInfo,
logError,
deepAccess,
logWarn,
deepSetValue,
isArray,
contains,
parseUrl,
generateUUID
} from '../src/utils.js';
import { registerBidder } from '../src/adapters/bidderFactory.js';
import { BANNER, NATIVE } from '../src/mediaTypes.js';
import {config} from '../src/config.js';
import {getPriceBucketString} from '../src/cpmBucketManager.js';
import {getRefererInfo} from '../src/refererDetection.js';
const BIDDER_CODE = 'newspassid';
const ORIGIN = 'https://bidder.newspassid.com' // applies only to auction & cookie
const AUCTIONURI = '/openrtb2/auction';
const NEWSPASSCOOKIESYNC = '/static/load-cookie.html';
const NEWSPASSVERSION = '1.1.4';
export const spec = {
version: NEWSPASSVERSION,
code: BIDDER_CODE,
supportedMediaTypes: [BANNER],
cookieSyncBag: {publisherId: null, siteId: null, userIdObject: {}}, // variables we want to make available to cookie sync
propertyBag: {config: null, pageId: null, buildRequestsStart: 0, buildRequestsEnd: 0, endpointOverride: null}, /* allow us to store vars in instance scope - needs to be an object to be mutable */
config_defaults: {
'logId': 'NEWSPASSID',
'bidder': 'newspassid',
'auctionUrl': ORIGIN + AUCTIONURI,
'cookieSyncUrl': ORIGIN + NEWSPASSCOOKIESYNC
},
loadConfiguredData(bid) {
if (this.propertyBag.config) { return; }
this.propertyBag.config = deepClone(this.config_defaults);
let bidder = bid.bidder || 'newspassid';
this.propertyBag.config.logId = bidder.toUpperCase();
this.propertyBag.config.bidder = bidder;
let bidderConfig = config.getConfig(bidder) || {};
logInfo('got bidderConfig: ', deepClone(bidderConfig));
let arrGetParams = this.getGetParametersAsObject();
if (bidderConfig.endpointOverride) {
if (bidderConfig.endpointOverride.origin) {
this.propertyBag.endpointOverride = bidderConfig.endpointOverride.origin;
this.propertyBag.config.auctionUrl = bidderConfig.endpointOverride.origin + AUCTIONURI;
this.propertyBag.config.cookieSyncUrl = bidderConfig.endpointOverride.origin + NEWSPASSCOOKIESYNC;
}
if (bidderConfig.endpointOverride.cookieSyncUrl) {
this.propertyBag.config.cookieSyncUrl = bidderConfig.endpointOverride.cookieSyncUrl;
}
if (bidderConfig.endpointOverride.auctionUrl) {
this.propertyBag.endpointOverride = bidderConfig.endpointOverride.auctionUrl;
this.propertyBag.config.auctionUrl = bidderConfig.endpointOverride.auctionUrl;
}
}
try {
if (arrGetParams.hasOwnProperty('auction')) {
logInfo('GET: setting auction endpoint to: ' + arrGetParams.auction);
this.propertyBag.config.auctionUrl = arrGetParams.auction;
}
if (arrGetParams.hasOwnProperty('cookiesync')) {
logInfo('GET: setting cookiesync to: ' + arrGetParams.cookiesync);
this.propertyBag.config.cookieSyncUrl = arrGetParams.cookiesync;
}
} catch (e) {}
logInfo('set propertyBag.config to', this.propertyBag.config);
},
getAuctionUrl() {
return this.propertyBag.config.auctionUrl;
},
getCookieSyncUrl() {
return this.propertyBag.config.cookieSyncUrl;
},
isBidRequestValid(bid) {
this.loadConfiguredData(bid);
logInfo('isBidRequestValid : ', config.getConfig(), bid);
let adUnitCode = bid.adUnitCode; // adunit[n].code
let err1 = 'VALIDATION FAILED : missing {param} : siteId, placementId and publisherId are REQUIRED';
if (!(bid.params.hasOwnProperty('placementId'))) {
logError(err1.replace('{param}', 'placementId'), adUnitCode);
return false;
}
if (!this.isValidPlacementId(bid.params.placementId)) {
logError('VALIDATION FAILED : placementId must be exactly 10 numeric characters', adUnitCode);
return false;
}
if (!(bid.params.hasOwnProperty('publisherId'))) {
logError(err1.replace('{param}', 'publisherId'), adUnitCode);
return false;
}
if (!(bid.params.publisherId).toString().match(/^[a-zA-Z0-9\-]{12}$/)) {
logError('VALIDATION FAILED : publisherId must be exactly 12 alphanumeric characters including hyphens', adUnitCode);
return false;
}
if (!(bid.params.hasOwnProperty('siteId'))) {
logError(err1.replace('{param}', 'siteId'), adUnitCode);
return false;
}
if (!(bid.params.siteId).toString().match(/^[0-9]{10}$/)) {
logError('VALIDATION FAILED : siteId must be exactly 10 numeric characters', adUnitCode);
return false;
}
if (bid.params.hasOwnProperty('customParams')) {
logError('VALIDATION FAILED : customParams should be renamed to customData', adUnitCode);
return false;
}
if (bid.params.hasOwnProperty('customData')) {
if (!Array.isArray(bid.params.customData)) {
logError('VALIDATION FAILED : customData is not an Array', adUnitCode);
return false;
}
if (bid.params.customData.length < 1) {
logError('VALIDATION FAILED : customData is an array but does not contain any elements', adUnitCode);
return false;
}
if (!(bid.params.customData[0]).hasOwnProperty('targeting')) {
logError('VALIDATION FAILED : customData[0] does not contain "targeting"', adUnitCode);
return false;
}
if (typeof bid.params.customData[0]['targeting'] != 'object') {
logError('VALIDATION FAILED : customData[0] targeting is not an object', adUnitCode);
return false;
}
}
return true;
},
isValidPlacementId(placementId) {
return placementId.toString().match(/^[0-9]{10}$/);
},
buildRequests(validBidRequests, bidderRequest) {
this.loadConfiguredData(validBidRequests[0]);
this.propertyBag.buildRequestsStart = new Date().getTime();
logInfo(`buildRequests time: ${this.propertyBag.buildRequestsStart} v ${NEWSPASSVERSION} validBidRequests`, deepClone(validBidRequests), 'bidderRequest', deepClone(bidderRequest));
if (this.blockTheRequest()) {
return [];
}
let htmlParams = {'publisherId': '', 'siteId': ''};
if (validBidRequests.length > 0) {
this.cookieSyncBag.userIdObject = Object.assign(this.cookieSyncBag.userIdObject, this.findAllUserIds(validBidRequests[0]));
this.cookieSyncBag.siteId = deepAccess(validBidRequests[0], 'params.siteId');
this.cookieSyncBag.publisherId = deepAccess(validBidRequests[0], 'params.publisherId');
htmlParams = validBidRequests[0].params;
}
logInfo('cookie sync bag', this.cookieSyncBag);
let singleRequest = config.getConfig('newspassid.singleRequest');
singleRequest = singleRequest !== false; // undefined & true will be true
logInfo(`config newspassid.singleRequest : `, singleRequest);
let npRequest = {}; // we only want to set specific properties on this, not validBidRequests[0].params
logInfo('going to get ortb2 from bidder request...');
let fpd = deepAccess(bidderRequest, 'ortb2', null);
logInfo('got fpd: ', fpd);
if (fpd && deepAccess(fpd, 'user')) {
logInfo('added FPD user object');
npRequest.user = fpd.user;
}
const getParams = this.getGetParametersAsObject();
const isTestMode = getParams['nptestmode'] || null; // this can be any string, it's used for testing ads
npRequest.device = {'w': window.innerWidth, 'h': window.innerHeight};
let placementIdOverrideFromGetParam = this.getPlacementIdOverrideFromGetParam(); // null or string
let schain = null;
let tosendtags = validBidRequests.map(npBidRequest => {
var obj = {};
let placementId = placementIdOverrideFromGetParam || this.getPlacementId(npBidRequest); // prefer to use a valid override param, else the bidRequest placement Id
obj.id = npBidRequest.bidId; // this causes an error if we change it to something else, even if you update the bidRequest object: "WARNING: Bidder newspass made bid for unknown request ID: mb7953.859498327448. Ignoring."
obj.tagid = placementId;
let parsed = parseUrl(this.getRefererInfo().page);
obj.secure = parsed.protocol === 'https' ? 1 : 0;
let arrBannerSizes = [];
if (!npBidRequest.hasOwnProperty('mediaTypes')) {
if (npBidRequest.hasOwnProperty('sizes')) {
logInfo('no mediaTypes detected - will use the sizes array in the config root');
arrBannerSizes = npBidRequest.sizes;
} else {
logInfo('Cannot set sizes for banner type');
}
} else {
if (npBidRequest.mediaTypes.hasOwnProperty(BANNER)) {
arrBannerSizes = npBidRequest.mediaTypes[BANNER].sizes; /* Note - if there is a sizes element in the config root it will be pushed into here */
logInfo('setting banner size from the mediaTypes.banner element for bidId ' + obj.id + ': ', arrBannerSizes);
}
if (npBidRequest.mediaTypes.hasOwnProperty(NATIVE)) {
obj.native = npBidRequest.mediaTypes[NATIVE];
logInfo('setting native object from the mediaTypes.native element: ' + obj.id + ':', obj.native);
}
}
if (arrBannerSizes.length > 0) {
obj.banner = {
topframe: 1,
w: arrBannerSizes[0][0] || 0,
h: arrBannerSizes[0][1] || 0,
format: arrBannerSizes.map(s => {
return {w: s[0], h: s[1]};
})
};
}
obj.placementId = placementId;
deepSetValue(obj, 'ext.prebid', {'storedrequest': {'id': placementId}});
obj.ext['newspassid'] = {};
obj.ext['newspassid'].adUnitCode = npBidRequest.adUnitCode; // eg. 'mpu'
if (npBidRequest.params.hasOwnProperty('customData')) {
obj.ext['newspassid'].customData = npBidRequest.params.customData;
}
logInfo(`obj.ext.newspassid is `, obj.ext['newspassid']);
if (isTestMode != null) {
logInfo('setting isTestMode to ', isTestMode);
if (obj.ext['newspassid'].hasOwnProperty('customData')) {
for (let i = 0; i < obj.ext['newspassid'].customData.length; i++) {
obj.ext['newspassid'].customData[i]['targeting']['nptestmode'] = isTestMode;
}
} else {
obj.ext['newspassid'].customData = [{'settings': {}, 'targeting': {}}];
obj.ext['newspassid'].customData[0].targeting['nptestmode'] = isTestMode;
}
}
if (fpd && deepAccess(fpd, 'site')) {
logInfo('adding fpd.site');
if (deepAccess(obj, 'ext.newspassid.customData.0.targeting', false)) {
obj.ext.newspassid.customData[0].targeting = Object.assign(obj.ext.newspassid.customData[0].targeting, fpd.site);
} else {
deepSetValue(obj, 'ext.newspassid.customData.0.targeting', fpd.site);
}
}
if (!schain && deepAccess(npBidRequest, 'schain')) {
schain = npBidRequest.schain;
}
let gpid = deepAccess(npBidRequest, 'ortb2Imp.ext.gpid');
if (gpid) {
deepSetValue(obj, 'ext.gpid', gpid);
}
return obj;
});
let extObj = {};
extObj['newspassid'] = {};
extObj['newspassid']['np_pb_v'] = NEWSPASSVERSION;
extObj['newspassid']['np_rw'] = placementIdOverrideFromGetParam ? 1 : 0;
if (validBidRequests.length > 0) {
let userIds = this.cookieSyncBag.userIdObject; // 2021-01-06 - slight optimisation - we've already found this info
if (userIds.hasOwnProperty('pubcid')) {
extObj['newspassid'].pubcid = userIds.pubcid;
}
}
extObj['newspassid'].pv = this.getPageId(); // attach the page ID that will be common to all auction calls for this page if refresh() is called
let whitelistAdserverKeys = config.getConfig('newspassid.np_whitelist_adserver_keys');
let useWhitelistAdserverKeys = isArray(whitelistAdserverKeys) && whitelistAdserverKeys.length > 0;
extObj['newspassid']['np_kvp_rw'] = useWhitelistAdserverKeys ? 1 : 0;
if (getParams.hasOwnProperty('npf')) { extObj['newspassid']['npf'] = getParams.npf === 'true' || getParams.npf === '1' ? 1 : 0; }
if (getParams.hasOwnProperty('nppf')) { extObj['newspassid']['nppf'] = getParams.nppf === 'true' || getParams.nppf === '1' ? 1 : 0; }
if (getParams.hasOwnProperty('nprp') && getParams.nprp.match(/^[0-3]$/)) { extObj['newspassid']['nprp'] = parseInt(getParams.nprp); }
if (getParams.hasOwnProperty('npip') && getParams.npip.match(/^\d+$/)) { extObj['newspassid']['npip'] = parseInt(getParams.npip); }
if (this.propertyBag.endpointOverride != null) { extObj['newspassid']['origin'] = this.propertyBag.endpointOverride; }
let userExtEids = deepAccess(validBidRequests, '0.userIdAsEids', []); // generate the UserIDs in the correct format for UserId module
npRequest.site = {
'publisher': {'id': htmlParams.publisherId},
'page': this.getRefererInfo().page,
'id': htmlParams.siteId
};
npRequest.test = config.getConfig('debug') ? 1 : 0;
if (bidderRequest && bidderRequest.uspConsent) {
logInfo('ADDING USP consent info');
deepSetValue(npRequest, 'regs.ext.us_privacy', bidderRequest.uspConsent);
} else {
logInfo('WILL NOT ADD USP consent info; no bidderRequest.uspConsent.');
}
if (schain) { // we set this while iterating over the bids
logInfo('schain found');
deepSetValue(npRequest, 'source.ext.schain', schain);
}
if (config.getConfig('coppa') === true) {
deepSetValue(npRequest, 'regs.coppa', 1);
}
if (singleRequest) {
logInfo('buildRequests starting to generate response for a single request');
npRequest.id = generateUUID(); // Unique ID of the bid request, provided by the exchange. (REQUIRED)
npRequest.imp = tosendtags;
npRequest.ext = extObj;
deepSetValue(npRequest, 'user.ext.eids', userExtEids);
var ret = {
method: 'POST',
url: this.getAuctionUrl(),
data: JSON.stringify(npRequest),
bidderRequest: bidderRequest
};
logInfo('buildRequests request data for single = ', deepClone(npRequest));
this.propertyBag.buildRequestsEnd = new Date().getTime();
logInfo(`buildRequests going to return for single at time ${this.propertyBag.buildRequestsEnd} (took ${this.propertyBag.buildRequestsEnd - this.propertyBag.buildRequestsStart}ms): `, ret);
return ret;
}
let arrRet = tosendtags.map(imp => {
logInfo('buildRequests starting to generate non-single response, working on imp : ', imp);
let npRequestSingle = Object.assign({}, npRequest);
npRequestSingle.id = generateUUID();
npRequestSingle.imp = [imp];
npRequestSingle.ext = extObj;
deepSetValue(npRequestSingle, 'user.ext.eids', userExtEids);
logInfo('buildRequests RequestSingle (for non-single) = ', npRequestSingle);
return {
method: 'POST',
url: this.getAuctionUrl(),
data: JSON.stringify(npRequestSingle),
bidderRequest: bidderRequest
};
});
this.propertyBag.buildRequestsEnd = new Date().getTime();
logInfo(`buildRequests going to return for non-single at time ${this.propertyBag.buildRequestsEnd} (took ${this.propertyBag.buildRequestsEnd - this.propertyBag.buildRequestsStart}ms): `, arrRet);
return arrRet;
},
interpretResponse(serverResponse, request) {
if (request && request.bidderRequest && request.bidderRequest.bids) { this.loadConfiguredData(request.bidderRequest.bids[0]); }
let startTime = new Date().getTime();
logInfo(`interpretResponse time: ${startTime}. buildRequests done -> interpretResponse start was ${startTime - this.propertyBag.buildRequestsEnd}ms`);
logInfo(`serverResponse, request`, deepClone(serverResponse), deepClone(request));
serverResponse = serverResponse.body || {};
let aucId = serverResponse.id; // this will be correct for single requests and non-single
if (!serverResponse.hasOwnProperty('seatbid')) {
return [];
}
if (typeof serverResponse.seatbid !== 'object') {
return [];
}
let arrAllBids = [];
let enhancedAdserverTargeting = config.getConfig('newspassid.enhancedAdserverTargeting');
logInfo('enhancedAdserverTargeting', enhancedAdserverTargeting);
if (typeof enhancedAdserverTargeting == 'undefined') {
enhancedAdserverTargeting = true;
}
logInfo('enhancedAdserverTargeting', enhancedAdserverTargeting);
serverResponse.seatbid = injectAdIdsIntoAllBidResponses(serverResponse.seatbid); // we now make sure that each bid in the bidresponse has a unique (within page) adId attribute.
serverResponse.seatbid = this.removeSingleBidderMultipleBids(serverResponse.seatbid);
let whitelistAdserverKeys = config.getConfig('newspassid.np_whitelist_adserver_keys');
let useWhitelistAdserverKeys = isArray(whitelistAdserverKeys) && whitelistAdserverKeys.length > 0;
for (let i = 0; i < serverResponse.seatbid.length; i++) {
let sb = serverResponse.seatbid[i];
for (let j = 0; j < sb.bid.length; j++) {
let thisRequestBid = this.getBidRequestForBidId(sb.bid[j].impid, request.bidderRequest.bids);
logInfo(`seatbid:${i}, bid:${j} Going to set default w h for seatbid/bidRequest`, sb.bid[j], thisRequestBid);
const {defaultWidth, defaultHeight} = defaultSize(thisRequestBid);
let thisBid = this.addStandardProperties(sb.bid[j], defaultWidth, defaultHeight);
thisBid.meta = {advertiserDomains: thisBid.adomain || []};
let bidType = deepAccess(thisBid, 'ext.prebid.type');
logInfo(`this bid type is : ${bidType}`, j);
let adserverTargeting = {};
if (enhancedAdserverTargeting) {
let allBidsForThisBidid = this.getAllBidsForBidId(thisBid.bidId, serverResponse.seatbid);
logInfo('Going to iterate allBidsForThisBidId', allBidsForThisBidid);
Object.keys(allBidsForThisBidid).forEach((bidderName, index, ar2) => {
logInfo(`adding adserverTargeting for ${bidderName} for bidId ${thisBid.bidId}`);
adserverTargeting['np_' + bidderName] = bidderName;
adserverTargeting['np_' + bidderName + '_crid'] = String(allBidsForThisBidid[bidderName].crid);
adserverTargeting['np_' + bidderName + '_adv'] = String(allBidsForThisBidid[bidderName].adomain);
adserverTargeting['np_' + bidderName + '_adId'] = String(allBidsForThisBidid[bidderName].adId);
adserverTargeting['np_' + bidderName + '_pb_r'] = getRoundedBid(allBidsForThisBidid[bidderName].price, allBidsForThisBidid[bidderName].ext.prebid.type);
if (allBidsForThisBidid[bidderName].hasOwnProperty('dealid')) {
adserverTargeting['np_' + bidderName + '_dealid'] = String(allBidsForThisBidid[bidderName].dealid);
}
});
} else {
logInfo(`newspassid.enhancedAdserverTargeting is set to false, no per-bid keys will be sent to adserver.`);
}
let {seat: winningSeat, bid: winningBid} = this.getWinnerForRequestBid(thisBid.bidId, serverResponse.seatbid);
adserverTargeting['np_auc_id'] = String(aucId);
adserverTargeting['np_winner'] = String(winningSeat);
adserverTargeting['np_bid'] = 'true';
if (enhancedAdserverTargeting) {
adserverTargeting['np_imp_id'] = String(winningBid.impid);
adserverTargeting['np_pb_r'] = getRoundedBid(winningBid.price, bidType);
adserverTargeting['np_adId'] = String(winningBid.adId);
adserverTargeting['np_size'] = `${winningBid.width}x${winningBid.height}`;
}
if (useWhitelistAdserverKeys) { // delete any un-whitelisted keys
logInfo('Going to filter out adserver targeting keys not in the whitelist: ', whitelistAdserverKeys);
Object.keys(adserverTargeting).forEach(function(key) { if (whitelistAdserverKeys.indexOf(key) === -1) { delete adserverTargeting[key]; } });
}
thisBid.adserverTargeting = adserverTargeting;
arrAllBids.push(thisBid);
}
}
let endTime = new Date().getTime();
logInfo(`interpretResponse going to return at time ${endTime} (took ${endTime - startTime}ms) Time from buildRequests Start -> interpretRequests End = ${endTime - this.propertyBag.buildRequestsStart}ms`, arrAllBids);
return arrAllBids;
},
removeSingleBidderMultipleBids(seatbid) {
var ret = [];
for (let i = 0; i < seatbid.length; i++) {
let sb = seatbid[i];
var retSeatbid = {'seat': sb.seat, 'bid': []};
var bidIds = [];
for (let j = 0; j < sb.bid.length; j++) {
var candidate = sb.bid[j];
if (contains(bidIds, candidate.impid)) {
continue; // we've already fully assessed this impid, found the highest bid from this seat for it
}
bidIds.push(candidate.impid);
for (let k = j + 1; k < sb.bid.length; k++) {
if (sb.bid[k].impid === candidate.impid && sb.bid[k].price > candidate.price) {
candidate = sb.bid[k];
}
}
retSeatbid.bid.push(candidate);
}
ret.push(retSeatbid);
}
return ret;
},
getUserSyncs(optionsType, serverResponse, gdprConsent, usPrivacy) {
logInfo('getUserSyncs optionsType', optionsType, 'serverResponse', serverResponse, 'usPrivacy', usPrivacy, 'cookieSyncBag', this.cookieSyncBag);
if (!serverResponse || serverResponse.length === 0) {
return [];
}
if (optionsType.iframeEnabled) {
var arrQueryString = [];
if (config.getConfig('debug')) {
arrQueryString.push('pbjs_debug=true');
}
arrQueryString.push('usp_consent=' + (usPrivacy || ''));
for (let keyname in this.cookieSyncBag.userIdObject) {
arrQueryString.push(keyname + '=' + this.cookieSyncBag.userIdObject[keyname]);
}
arrQueryString.push('publisherId=' + this.cookieSyncBag.publisherId);
arrQueryString.push('siteId=' + this.cookieSyncBag.siteId);
arrQueryString.push('cb=' + Date.now());
arrQueryString.push('bidder=' + this.propertyBag.config.bidder);
var strQueryString = arrQueryString.join('&');
if (strQueryString.length > 0) {
strQueryString = '?' + strQueryString;
}
logInfo('getUserSyncs going to return cookie sync url : ' + this.getCookieSyncUrl() + strQueryString);
return [{
type: 'iframe',
url: this.getCookieSyncUrl() + strQueryString
}];
}
},
getBidRequestForBidId(bidId, arrBids) {
for (let i = 0; i < arrBids.length; i++) {
if (arrBids[i].bidId === bidId) { // bidId in the request comes back as impid in the seatbid bids
return arrBids[i];
}
}
return null;
},
findAllUserIds(bidRequest) {
var ret = {};
let searchKeysSingle = ['pubcid', 'tdid', 'idl_env', 'criteoId', 'lotamePanoramaId', 'fabrickId'];
if (bidRequest.hasOwnProperty('userId')) {
for (let arrayId in searchKeysSingle) {
let key = searchKeysSingle[arrayId];
if (bidRequest.userId.hasOwnProperty(key)) {
if (typeof (bidRequest.userId[key]) == 'string') {
ret[key] = bidRequest.userId[key];
} else if (typeof (bidRequest.userId[key]) == 'object') {
logError(`WARNING: findAllUserIds had to use first key in user object to get value for bid.userId key: ${key}. Prebid adapter should be updated.`);
ret[key] = bidRequest.userId[key][Object.keys(bidRequest.userId[key])[0]]; // cannot use Object.values
} else {
logError(`failed to get string key value for userId : ${key}`);
}
}
}
let lipbid = deepAccess(bidRequest.userId, 'lipb.lipbid');
if (lipbid) {
ret['lipb'] = {'lipbid': lipbid};
}
let id5id = deepAccess(bidRequest.userId, 'id5id.uid');
if (id5id) {
ret['id5id'] = id5id;
}
let sharedid = deepAccess(bidRequest.userId, 'sharedid.id');
if (sharedid) {
ret['sharedid'] = sharedid;
}
}
if (!ret.hasOwnProperty('pubcid')) {
let pubcid = deepAccess(bidRequest, 'crumbs.pubcid');
if (pubcid) {
ret['pubcid'] = pubcid; // if built with old pubCommonId module
}
}
return ret;
},
getPlacementId(bidRequest) {
return (bidRequest.params.placementId).toString();
},
getPlacementIdOverrideFromGetParam() {
let arr = this.getGetParametersAsObject();
if (arr.hasOwnProperty('npstoredrequest')) {
if (this.isValidPlacementId(arr['npstoredrequest'])) {
logInfo(`using GET npstoredrequest ` + arr['npstoredrequest'] + ' to replace placementId');
return arr['npstoredrequest'];
} else {
logError(`GET npstoredrequest FAILED VALIDATION - will not use it`);
}
}
return null;
},
getGetParametersAsObject() {
let parsed = parseUrl(this.getRefererInfo().location); // was getRefererInfo().page but this is not backwards compatible
logInfo('getGetParametersAsObject found:', parsed.search);
return parsed.search;
},
getRefererInfo() {
if (getRefererInfo().hasOwnProperty('location')) {
logInfo('FOUND location on getRefererInfo OK (prebid >= 7); will use getRefererInfo for location & page');
return getRefererInfo();
} else {
logInfo('DID NOT FIND location on getRefererInfo (prebid < 7); will use legacy code that ALWAYS worked reliably to get location & page ;-)');
try {
return {
page: top.location.href,
location: top.location.href
};
} catch (e) {
return {
page: window.location.href,
location: window.location.href
};
}
}
},
blockTheRequest() {
let npRequest = config.getConfig('newspassid.np_request');
if (typeof npRequest == 'boolean' && !npRequest) {
logWarn(`Will not allow auction : np_request is set to false`);
return true;
}
return false;
},
getPageId: function() {
if (this.propertyBag.pageId == null) {
let randPart = '';
let allowable = '0123456789abcdefghijklmnopqrstuvwxyz';
for (let i = 20; i > 0; i--) {
randPart += allowable[Math.floor(Math.random() * 36)];
}
this.propertyBag.pageId = new Date().getTime() + '_' + randPart;
}
return this.propertyBag.pageId;
},
addStandardProperties(seatBid, defaultWidth, defaultHeight) {
seatBid.cpm = seatBid.price;
seatBid.bidId = seatBid.impid;
seatBid.requestId = seatBid.impid;
seatBid.width = seatBid.w || defaultWidth;
seatBid.height = seatBid.h || defaultHeight;
seatBid.ad = seatBid.adm;
seatBid.netRevenue = true;
seatBid.creativeId = seatBid.crid;
seatBid.currency = 'USD';
seatBid.ttl = 300;
return seatBid;
},
getWinnerForRequestBid(requestBidId, serverResponseSeatBid) {
let thisBidWinner = null;
let winningSeat = null;
for (let j = 0; j < serverResponseSeatBid.length; j++) {
let theseBids = serverResponseSeatBid[j].bid;
let thisSeat = serverResponseSeatBid[j].seat;
for (let k = 0; k < theseBids.length; k++) {
if (theseBids[k].impid === requestBidId) {
if ((thisBidWinner == null) || (thisBidWinner.price < theseBids[k].price)) {
thisBidWinner = theseBids[k];
winningSeat = thisSeat;
break;
}
}
}
}
return {'seat': winningSeat, 'bid': thisBidWinner};
},
getAllBidsForBidId(matchBidId, serverResponseSeatBid) {
let objBids = {};
for (let j = 0; j < serverResponseSeatBid.length; j++) {
let theseBids = serverResponseSeatBid[j].bid;
let thisSeat = serverResponseSeatBid[j].seat;
for (let k = 0; k < theseBids.length; k++) {
if (theseBids[k].impid === matchBidId) {
if (objBids.hasOwnProperty(thisSeat)) { // > 1 bid for an adunit from a bidder - only use the one with the highest bid
if (objBids[thisSeat]['price'] < theseBids[k].price) {
objBids[thisSeat] = theseBids[k];
}
} else {
objBids[thisSeat] = theseBids[k];
}
}
}
}
return objBids;
}
};
export function injectAdIdsIntoAllBidResponses(seatbid) {
logInfo('injectAdIdsIntoAllBidResponses', seatbid);
for (let i = 0; i < seatbid.length; i++) {
let sb = seatbid[i];
for (let j = 0; j < sb.bid.length; j++) {
sb.bid[j]['adId'] = `${sb.bid[j]['impid']}-${i}-np-${j}`;
}
}
return seatbid;
}
export function checkDeepArray(Arr) {
if (Array.isArray(Arr)) {
if (Array.isArray(Arr[0])) {
return Arr[0];
} else {
return Arr;
}
} else {
return Arr;
}
}
export function defaultSize(thebidObj) {
if (!thebidObj) {
logInfo('defaultSize received empty bid obj! going to return fixed default size');
return {
'defaultHeight': 250,
'defaultWidth': 300
};
}
const {sizes} = thebidObj;
const returnObject = {};
returnObject.defaultWidth = checkDeepArray(sizes)[0];
returnObject.defaultHeight = checkDeepArray(sizes)[1];
return returnObject;
}
export function getRoundedBid(price, mediaType) {
const mediaTypeGranularity = config.getConfig(`mediaTypePriceGranularity.${mediaType}`); // might be string or object or nothing; if set then this takes precedence over 'priceGranularity'
let objBuckets = config.getConfig('customPriceBucket'); // this is always an object - {} if strBuckets is not 'custom'
let strBuckets = config.getConfig('priceGranularity'); // priceGranularity value, always a string ** if priceGranularity is set to an object then it's always 'custom' **
let theConfigObject = getGranularityObject(mediaType, mediaTypeGranularity, strBuckets, objBuckets);
let theConfigKey = getGranularityKeyName(mediaType, mediaTypeGranularity, strBuckets);
logInfo('getRoundedBid. price:', price, 'mediaType:', mediaType, 'configkey:', theConfigKey, 'configObject:', theConfigObject, 'mediaTypeGranularity:', mediaTypeGranularity, 'strBuckets:', strBuckets);
let priceStringsObj = getPriceBucketString(
price,
theConfigObject,
config.getConfig('currency.granularityMultiplier')
);
logInfo('priceStringsObj', priceStringsObj);
let granularityNamePriceStringsKeyMapping = {
'medium': 'med',
'custom': 'custom',
'high': 'high',
'low': 'low',
'dense': 'dense'
};
if (granularityNamePriceStringsKeyMapping.hasOwnProperty(theConfigKey)) {
let priceStringsKey = granularityNamePriceStringsKeyMapping[theConfigKey];
logInfo('getRoundedBid: looking for priceStringsKey:', priceStringsKey);
return priceStringsObj[priceStringsKey];
}
return priceStringsObj['auto'];
}
export function getGranularityKeyName(mediaType, mediaTypeGranularity, strBuckets) {
if (typeof mediaTypeGranularity === 'string') {
return mediaTypeGranularity;
}
if (typeof mediaTypeGranularity === 'object') {
return 'custom';
}
if (typeof strBuckets === 'string') {
return strBuckets;
}
return 'auto'; // fall back to a default key - should literally never be needed.
}
export function getGranularityObject(mediaType, mediaTypeGranularity, strBuckets, objBuckets) {
if (typeof mediaTypeGranularity === 'object') {
return mediaTypeGranularity;
}
if (strBuckets === 'custom') {
return objBuckets;
}
return '';
}
registerBidder(spec);
logInfo(`*BidAdapter ${NEWSPASSVERSION} was loaded`);