forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathozoneBidAdapter.js
1049 lines (1049 loc) · 49 KB
/
ozoneBidAdapter.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
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import {
logInfo,
logError,
deepAccess,
logWarn,
deepSetValue,
isArray,
contains,
mergeDeep,
parseUrl,
generateUUID
} from '../src/utils.js';
import { registerBidder } from '../src/adapters/bidderFactory.js';
import { BANNER, NATIVE, VIDEO } from '../src/mediaTypes.js';
import {config} from '../src/config.js';
import {getPriceBucketString} from '../src/cpmBucketManager.js';
import { Renderer } from '../src/Renderer.js';
import {getRefererInfo} from '../src/refererDetection.js';
const BIDDER_CODE = 'ozone';
const ORIGIN = 'https://elb.the-ozone-project.com' // applies only to auction & cookie
const AUCTIONURI = '/openrtb2/auction';
const OZONECOOKIESYNC = '/static/load-cookie.html';
const OZONE_RENDERER_URL = 'https://prebid.the-ozone-project.com/ozone-renderer.js';
const ORIGIN_DEV = 'https://test.ozpr.net';
const OZONEVERSION = '2.9.1';
export const spec = {
gvlid: 524,
aliases: [{code: 'lmc', gvlid: 524}, {code: 'venatus', gvlid: 524}],
version: OZONEVERSION,
code: BIDDER_CODE,
supportedMediaTypes: [VIDEO, BANNER],
cookieSyncBag: {publisherId: null, siteId: null, userIdObject: {}}, // variables we want to make available to cookie sync
propertyBag: {pageId: null, buildRequestsStart: 0, buildRequestsEnd: 0, endpointOverride: null}, /* allow us to store vars in instance scope - needs to be an object to be mutable */
whitelabel_defaults: {
'logId': 'OZONE',
'bidder': 'ozone',
'keyPrefix': 'oz',
'auctionUrl': ORIGIN + AUCTIONURI,
'cookieSyncUrl': ORIGIN + OZONECOOKIESYNC,
'rendererUrl': OZONE_RENDERER_URL,
'batchRequests': false /* you can change this to true OR override it in the config: config.ozone.batchRequests */
},
loadWhitelabelData(bid) {
if (this.propertyBag.whitelabel) { return; }
this.propertyBag.whitelabel = JSON.parse(JSON.stringify(this.whitelabel_defaults));
let bidder = bid.bidder || 'ozone'; // eg. ozone
this.propertyBag.whitelabel.logId = bidder.toUpperCase();
this.propertyBag.whitelabel.bidder = bidder;
let bidderConfig = config.getConfig(bidder) || {};
logInfo('got bidderConfig: ', JSON.parse(JSON.stringify(bidderConfig)));
if (bidderConfig.kvpPrefix) {
this.propertyBag.whitelabel.keyPrefix = bidderConfig.kvpPrefix;
}
let arr = this.getGetParametersAsObject();
if (bidderConfig.endpointOverride) {
if (bidderConfig.endpointOverride.origin) {
this.propertyBag.endpointOverride = bidderConfig.endpointOverride.origin;
this.propertyBag.whitelabel.auctionUrl = bidderConfig.endpointOverride.origin + AUCTIONURI;
this.propertyBag.whitelabel.cookieSyncUrl = bidderConfig.endpointOverride.origin + OZONECOOKIESYNC;
}
if (arr.hasOwnProperty('renderer')) {
if (arr.renderer.match('%3A%2F%2F')) {
this.propertyBag.whitelabel.rendererUrl = decodeURIComponent(arr['renderer']);
} else {
this.propertyBag.whitelabel.rendererUrl = arr['renderer'];
}
} else if (bidderConfig.endpointOverride.rendererUrl) {
this.propertyBag.whitelabel.rendererUrl = bidderConfig.endpointOverride.rendererUrl;
}
if (bidderConfig.endpointOverride.cookieSyncUrl) {
this.propertyBag.whitelabel.cookieSyncUrl = bidderConfig.endpointOverride.cookieSyncUrl;
}
if (bidderConfig.endpointOverride.auctionUrl) {
this.propertyBag.endpointOverride = bidderConfig.endpointOverride.auctionUrl;
this.propertyBag.whitelabel.auctionUrl = bidderConfig.endpointOverride.auctionUrl;
}
}
if (bidderConfig.hasOwnProperty('batchRequests')) {
this.propertyBag.whitelabel.batchRequests = bidderConfig.batchRequests;
}
if (arr.hasOwnProperty('batchRequests')) {
this.propertyBag.whitelabel.batchRequests = true;
}
try {
if (arr.hasOwnProperty('auction') && arr.auction === 'dev') {
logInfo('GET: auction=dev');
this.propertyBag.whitelabel.auctionUrl = ORIGIN_DEV + AUCTIONURI;
}
if (arr.hasOwnProperty('cookiesync') && arr.cookiesync === 'dev') {
logInfo('GET: cookiesync=dev');
this.propertyBag.whitelabel.cookieSyncUrl = ORIGIN_DEV + OZONECOOKIESYNC;
}
} catch (e) {}
logInfo('set propertyBag.whitelabel to', this.propertyBag.whitelabel);
},
getAuctionUrl() {
return this.propertyBag.whitelabel.auctionUrl;
},
getCookieSyncUrl() {
return this.propertyBag.whitelabel.cookieSyncUrl;
},
getRendererUrl() {
return this.propertyBag.whitelabel.rendererUrl;
},
isBatchRequests() {
logInfo('isBatchRequests going to return ', this.propertyBag.whitelabel.batchRequests);
return this.propertyBag.whitelabel.batchRequests;
},
isBidRequestValid(bid) {
this.loadWhitelabelData(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;
}
}
if (bid.hasOwnProperty('mediaTypes') && bid.mediaTypes.hasOwnProperty(VIDEO)) {
if (!bid.mediaTypes[VIDEO].hasOwnProperty('context')) {
logError('No video context key/value in bid. Rejecting bid: ', bid);
return false;
}
if (bid.mediaTypes[VIDEO].context !== 'instream' && bid.mediaTypes[VIDEO].context !== 'outstream') {
logError('video.context is invalid. Only instream/outstream video is supported. Rejecting bid: ', bid);
return false;
}
}
return true;
},
isValidPlacementId(placementId) {
return placementId.toString().match(/^[0-9]{10}$/);
},
buildRequests(validBidRequests, bidderRequest) {
this.loadWhitelabelData(validBidRequests[0]);
this.propertyBag.buildRequestsStart = new Date().getTime();
let whitelabelBidder = this.propertyBag.whitelabel.bidder; // by default = ozone
let whitelabelPrefix = this.propertyBag.whitelabel.keyPrefix;
logInfo(`buildRequests time: ${this.propertyBag.buildRequestsStart} v ${OZONEVERSION} validBidRequests`, JSON.parse(JSON.stringify(validBidRequests)), 'bidderRequest', JSON.parse(JSON.stringify(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 = this.getWhitelabelConfigItem('ozone.singleRequest');
singleRequest = singleRequest !== false; // undefined & true will be true
logInfo(`config ${whitelabelBidder}.singleRequest : `, singleRequest);
let ozoneRequest = {}; // 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');
ozoneRequest.user = fpd.user;
}
const getParams = this.getGetParametersAsObject();
const wlOztestmodeKey = whitelabelPrefix + 'testmode';
const isTestMode = getParams[wlOztestmodeKey] || null; // this can be any string, it's used for testing ads
ozoneRequest.device = {'w': window.innerWidth, 'h': window.innerHeight};
let placementIdOverrideFromGetParam = this.getPlacementIdOverrideFromGetParam(); // null or string
let schain = null;
let tosendtags = validBidRequests.map(ozoneBidRequest => {
var obj = {};
let placementId = placementIdOverrideFromGetParam || this.getPlacementId(ozoneBidRequest); // prefer to use a valid override param, else the bidRequest placement Id
obj.id = ozoneBidRequest.bidId; // this causes an error if we change it to something else, even if you update the bidRequest object: "WARNING: Bidder ozone 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 (!ozoneBidRequest.hasOwnProperty('mediaTypes')) {
if (ozoneBidRequest.hasOwnProperty('sizes')) {
logInfo('no mediaTypes detected - will use the sizes array in the config root');
arrBannerSizes = ozoneBidRequest.sizes;
} else {
logInfo('no mediaTypes detected, no sizes array in the config root either. Cannot set sizes for banner type');
}
} else {
if (ozoneBidRequest.mediaTypes.hasOwnProperty(BANNER)) {
arrBannerSizes = ozoneBidRequest.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 (ozoneBidRequest.mediaTypes.hasOwnProperty(VIDEO)) {
logInfo('openrtb 2.5 compliant video');
if (typeof ozoneBidRequest.mediaTypes[VIDEO] == 'object') {
let childConfig = deepAccess(ozoneBidRequest, 'params.video', {});
obj.video = this.unpackVideoConfigIntoIABformat(ozoneBidRequest.mediaTypes[VIDEO], childConfig);
obj.video = this.addVideoDefaults(obj.video, ozoneBidRequest.mediaTypes[VIDEO], childConfig);
}
let wh = getWidthAndHeightFromVideoObject(obj.video);
logInfo('setting video object from the mediaTypes.video element: ' + obj.id + ':', obj.video, 'wh=', wh);
if (wh && typeof wh === 'object') {
obj.video.w = wh['w'];
obj.video.h = wh['h'];
if (playerSizeIsNestedArray(obj.video)) { // this should never happen; it was in the original spec for this change though.
logInfo('setting obj.video.format to be an array of objects');
obj.video.ext.format = [wh];
} else {
logInfo('setting obj.video.format to be an object');
obj.video.ext.format = wh;
}
} else {
logWarn('cannot set w, h & format values for video; the config is not right');
}
}
if (ozoneBidRequest.mediaTypes.hasOwnProperty(NATIVE)) {
obj.native = ozoneBidRequest.mediaTypes[NATIVE];
logInfo('setting native object from the mediaTypes.native element: ' + obj.id + ':', obj.native);
}
if (ozoneBidRequest.hasOwnProperty('getFloor')) {
logInfo('This bidRequest object has property: getFloor');
obj.floor = this.getFloorObjectForAuction(ozoneBidRequest);
logInfo('obj.floor is : ', obj.floor);
} else {
logInfo('This bidRequest object DOES NOT have property: getFloor');
}
}
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[whitelabelBidder] = {};
obj.ext[whitelabelBidder].adUnitCode = ozoneBidRequest.adUnitCode; // eg. 'mpu'
if (ozoneBidRequest.params.hasOwnProperty('customData')) {
obj.ext[whitelabelBidder].customData = ozoneBidRequest.params.customData;
}
logInfo(`obj.ext.${whitelabelBidder} is `, obj.ext[whitelabelBidder]);
if (isTestMode != null) {
logInfo('setting isTestMode to ', isTestMode);
if (obj.ext[whitelabelBidder].hasOwnProperty('customData')) {
for (let i = 0; i < obj.ext[whitelabelBidder].customData.length; i++) {
obj.ext[whitelabelBidder].customData[i]['targeting'][wlOztestmodeKey] = isTestMode;
}
} else {
obj.ext[whitelabelBidder].customData = [{'settings': {}, 'targeting': {}}];
obj.ext[whitelabelBidder].customData[0].targeting[wlOztestmodeKey] = isTestMode;
}
}
if (fpd && deepAccess(fpd, 'site')) {
logInfo('adding fpd.site');
if (deepAccess(obj, 'ext.' + whitelabelBidder + '.customData.0.targeting', false)) {
obj.ext[whitelabelBidder].customData[0].targeting = Object.assign(obj.ext[whitelabelBidder].customData[0].targeting, fpd.site);
} else {
deepSetValue(obj, 'ext.' + whitelabelBidder + '.customData.0.targeting', fpd.site);
}
}
if (!schain && deepAccess(ozoneBidRequest, 'schain')) {
schain = ozoneBidRequest.schain;
}
let gpid = deepAccess(ozoneBidRequest, 'ortb2Imp.ext.gpid');
if (gpid) {
deepSetValue(obj, 'ext.gpid', gpid);
}
return obj;
});
let extObj = {};
extObj[whitelabelBidder] = {};
extObj[whitelabelBidder][whitelabelPrefix + '_pb_v'] = OZONEVERSION;
extObj[whitelabelBidder][whitelabelPrefix + '_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[whitelabelBidder].pubcid = userIds.pubcid;
}
}
extObj[whitelabelBidder].pv = this.getPageId(); // attach the page ID that will be common to all auction calls for this page if refresh() is called
let ozOmpFloorDollars = this.getWhitelabelConfigItem('ozone.oz_omp_floor'); // valid only if a dollar value (typeof == 'number')
logInfo(`${whitelabelPrefix}_omp_floor dollar value = `, ozOmpFloorDollars);
if (typeof ozOmpFloorDollars === 'number') {
extObj[whitelabelBidder][whitelabelPrefix + '_omp_floor'] = ozOmpFloorDollars;
} else if (typeof ozOmpFloorDollars !== 'undefined') {
logError(`${whitelabelPrefix}_omp_floor is invalid - IF SET then this must be a number, representing dollar value eg. ${whitelabelPrefix}_omp_floor: 1.55. You have it set as a ` + (typeof ozOmpFloorDollars));
}
let ozWhitelistAdserverKeys = this.getWhitelabelConfigItem('ozone.oz_whitelist_adserver_keys');
let useOzWhitelistAdserverKeys = isArray(ozWhitelistAdserverKeys) && ozWhitelistAdserverKeys.length > 0;
extObj[whitelabelBidder][whitelabelPrefix + '_kvp_rw'] = useOzWhitelistAdserverKeys ? 1 : 0;
if (whitelabelBidder !== 'ozone') {
logInfo('setting aliases object');
extObj.prebid = {aliases: {'ozone': whitelabelBidder}};
}
if (getParams.hasOwnProperty('ozf')) { extObj[whitelabelBidder]['ozf'] = getParams.ozf === 'true' || getParams.ozf === '1' ? 1 : 0; }
if (getParams.hasOwnProperty('ozpf')) { extObj[whitelabelBidder]['ozpf'] = getParams.ozpf === 'true' || getParams.ozpf === '1' ? 1 : 0; }
if (getParams.hasOwnProperty('ozrp') && getParams.ozrp.match(/^[0-3]$/)) { extObj[whitelabelBidder]['ozrp'] = parseInt(getParams.ozrp); }
if (getParams.hasOwnProperty('ozip') && getParams.ozip.match(/^\d+$/)) { extObj[whitelabelBidder]['ozip'] = parseInt(getParams.ozip); }
if (this.propertyBag.endpointOverride != null) { extObj[whitelabelBidder]['origin'] = this.propertyBag.endpointOverride; }
let userExtEids = deepAccess(validBidRequests, '0.userIdAsEids', []); // generate the UserIDs in the correct format for UserId module
ozoneRequest.site = {
'publisher': {'id': htmlParams.publisherId},
'page': this.getRefererInfo().page,
'id': htmlParams.siteId
};
ozoneRequest.test = config.getConfig('debug') ? 1 : 0;
if (bidderRequest && bidderRequest.gdprConsent) {
logInfo('ADDING GDPR info');
let apiVersion = deepAccess(bidderRequest, 'gdprConsent.apiVersion', 1);
ozoneRequest.regs = {ext: {gdpr: bidderRequest.gdprConsent.gdprApplies ? 1 : 0, apiVersion: apiVersion}};
if (deepAccess(ozoneRequest, 'regs.ext.gdpr')) {
deepSetValue(ozoneRequest, 'user.ext.consent', bidderRequest.gdprConsent.consentString);
} else {
logInfo('**** Strange CMP info: bidderRequest.gdprConsent exists BUT bidderRequest.gdprConsent.gdprApplies is false. See bidderRequest logged above. ****');
}
} else {
logInfo('WILL NOT ADD GDPR info; no bidderRequest.gdprConsent object');
}
if (bidderRequest && bidderRequest.uspConsent) {
logInfo('ADDING USP consent info');
deepSetValue(ozoneRequest, '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(ozoneRequest, 'source.ext.schain', schain);
}
if (config.getConfig('coppa') === true) {
deepSetValue(ozoneRequest, 'regs.coppa', 1);
}
let ozUuid = generateUUID();
if (this.isBatchRequests()) {
logInfo('going to batch the requests');
let arrRet = []; // return an array of objects containing data describing max 10 bids
for (let i = 0; i < tosendtags.length; i += 10) {
ozoneRequest.id = ozUuid; // Unique ID of the bid request, provided by the exchange. (REQUIRED)
ozoneRequest.imp = tosendtags.slice(i, i + 10);
ozoneRequest.ext = extObj;
deepSetValue(ozoneRequest, 'user.ext.eids', userExtEids);
if (ozoneRequest.imp.length > 0) {
arrRet.push({
method: 'POST',
url: this.getAuctionUrl(),
data: JSON.stringify(ozoneRequest),
bidderRequest: bidderRequest
});
}
}
logInfo('batch request going to return : ', arrRet);
return arrRet;
}
logInfo('requests will not be batched.');
if (singleRequest) {
logInfo('buildRequests starting to generate response for a single request');
ozoneRequest.id = ozUuid; // Unique ID of the bid request, provided by the exchange. (REQUIRED)
ozoneRequest.imp = tosendtags;
ozoneRequest.ext = extObj;
deepSetValue(ozoneRequest, 'user.ext.eids', userExtEids);
var ret = {
method: 'POST',
url: this.getAuctionUrl(),
data: JSON.stringify(ozoneRequest),
bidderRequest: bidderRequest
};
logInfo('buildRequests request data for single = ', JSON.parse(JSON.stringify(ozoneRequest)));
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 ozoneRequestSingle = Object.assign({}, ozoneRequest);
ozoneRequestSingle.id = generateUUID(); // Unique ID of the bid request, provided by the exchange. (REQUIRED)
ozoneRequestSingle.imp = [imp];
ozoneRequestSingle.ext = extObj;
deepSetValue(ozoneRequestSingle, 'user.ext.eids', userExtEids);
logInfo('buildRequests RequestSingle (for non-single) = ', ozoneRequestSingle);
return {
method: 'POST',
url: this.getAuctionUrl(),
data: JSON.stringify(ozoneRequestSingle),
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;
},
getFloorObjectForAuction(bidRequestRef) {
const mediaTypesSizes = {
banner: deepAccess(bidRequestRef, 'mediaTypes.banner.sizes', null),
video: deepAccess(bidRequestRef, 'mediaTypes.video.playerSize', null),
native: deepAccess(bidRequestRef, 'mediaTypes.native.image.sizes', null)
}
logInfo('getFloorObjectForAuction mediaTypesSizes : ', mediaTypesSizes);
let ret = {};
if (mediaTypesSizes.banner) {
ret.banner = bidRequestRef.getFloor({mediaType: 'banner', currency: 'USD', size: mediaTypesSizes.banner});
}
if (mediaTypesSizes.video) {
ret.video = bidRequestRef.getFloor({mediaType: 'video', currency: 'USD', size: mediaTypesSizes.video});
}
if (mediaTypesSizes.native) {
ret.native = bidRequestRef.getFloor({mediaType: 'native', currency: 'USD', size: mediaTypesSizes.native});
}
logInfo('getFloorObjectForAuction returning : ', JSON.parse(JSON.stringify(ret)));
return ret;
},
interpretResponse(serverResponse, request) {
if (request && request.bidderRequest && request.bidderRequest.bids) { this.loadWhitelabelData(request.bidderRequest.bids[0]); }
let startTime = new Date().getTime();
let whitelabelBidder = this.propertyBag.whitelabel.bidder; // by default = ozone
let whitelabelPrefix = this.propertyBag.whitelabel.keyPrefix;
logInfo(`interpretResponse time: ${startTime} . Time between buildRequests done and interpretResponse start was ${startTime - this.propertyBag.buildRequestsEnd}ms`);
logInfo(`serverResponse, request`, JSON.parse(JSON.stringify(serverResponse)), JSON.parse(JSON.stringify(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 = this.getWhitelabelConfigItem('ozone.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 ozOmpFloorDollars = this.getWhitelabelConfigItem('ozone.oz_omp_floor'); // valid only if a dollar value (typeof == 'number')
let addOzOmpFloorDollars = typeof ozOmpFloorDollars === 'number';
let ozWhitelistAdserverKeys = this.getWhitelabelConfigItem('ozone.oz_whitelist_adserver_keys');
let useOzWhitelistAdserverKeys = isArray(ozWhitelistAdserverKeys) && ozWhitelistAdserverKeys.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 = ozoneAddStandardProperties(sb.bid[j], defaultWidth, defaultHeight);
thisBid.meta = {advertiserDomains: thisBid.adomain || []};
let videoContext = null;
let isVideo = false;
let bidType = deepAccess(thisBid, 'ext.prebid.type');
logInfo(`this bid type is : ${bidType}`, j);
let adserverTargeting = {};
if (bidType === VIDEO) {
isVideo = true;
this.setBidMediaTypeIfNotExist(thisBid, VIDEO);
videoContext = this.getVideoContextForBidId(thisBid.bidId, request.bidderRequest.bids); // should be instream or outstream (or null if error)
if (videoContext === 'outstream') {
logInfo('going to set thisBid.mediaType = VIDEO & attach a renderer to OUTSTREAM video : ', j);
thisBid.renderer = newRenderer(thisBid.bidId);
} else {
logInfo('bid is not an outstream video, will set thisBid.mediaType = VIDEO and thisBid.vastUrl and not attach a renderer: ', j);
thisBid.vastUrl = `https://${deepAccess(thisBid, 'ext.prebid.targeting.hb_cache_host', 'missing_host')}${deepAccess(thisBid, 'ext.prebid.targeting.hb_cache_path', 'missing_path')}?id=${deepAccess(thisBid, 'ext.prebid.targeting.hb_cache_id', 'missing_id')}`; // need to see if this works ok for ozone
adserverTargeting['hb_cache_host'] = deepAccess(thisBid, 'ext.prebid.targeting.hb_cache_host', 'no-host');
adserverTargeting['hb_cache_path'] = deepAccess(thisBid, 'ext.prebid.targeting.hb_cache_path', 'no-path');
if (!thisBid.hasOwnProperty('videoCacheKey')) {
let videoCacheUuid = deepAccess(thisBid, 'ext.prebid.targeting.hb_uuid', 'no_hb_uuid');
logInfo(`Adding videoCacheKey: ${videoCacheUuid}`);
thisBid.videoCacheKey = videoCacheUuid;
} else {
logInfo('videoCacheKey already exists on the bid object, will not add it');
}
}
} else {
this.setBidMediaTypeIfNotExist(thisBid, BANNER);
}
if (enhancedAdserverTargeting) {
let allBidsForThisBidid = ozoneGetAllBidsForBidId(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[whitelabelPrefix + '_' + bidderName] = bidderName;
adserverTargeting[whitelabelPrefix + '_' + bidderName + '_crid'] = String(allBidsForThisBidid[bidderName].crid);
adserverTargeting[whitelabelPrefix + '_' + bidderName + '_adv'] = String(allBidsForThisBidid[bidderName].adomain);
adserverTargeting[whitelabelPrefix + '_' + bidderName + '_adId'] = String(allBidsForThisBidid[bidderName].adId);
adserverTargeting[whitelabelPrefix + '_' + bidderName + '_pb_r'] = getRoundedBid(allBidsForThisBidid[bidderName].price, allBidsForThisBidid[bidderName].ext.prebid.type);
if (allBidsForThisBidid[bidderName].hasOwnProperty('dealid')) {
adserverTargeting[whitelabelPrefix + '_' + bidderName + '_dealid'] = String(allBidsForThisBidid[bidderName].dealid);
}
if (addOzOmpFloorDollars) {
adserverTargeting[whitelabelPrefix + '_' + bidderName + '_omp'] = allBidsForThisBidid[bidderName].price >= ozOmpFloorDollars ? '1' : '0';
}
if (isVideo) {
adserverTargeting[whitelabelPrefix + '_' + bidderName + '_vid'] = videoContext; // outstream or instream
}
let flr = deepAccess(allBidsForThisBidid[bidderName], `ext.bidder.${whitelabelBidder}.floor`, null);
if (flr != null) {
adserverTargeting[whitelabelPrefix + '_' + bidderName + '_flr'] = flr;
}
let rid = deepAccess(allBidsForThisBidid[bidderName], `ext.bidder.${whitelabelBidder}.ruleId`, null);
if (rid != null) {
adserverTargeting[whitelabelPrefix + '_' + bidderName + '_rid'] = rid;
}
if (bidderName.match(/^ozappnexus/)) {
adserverTargeting[whitelabelPrefix + '_' + bidderName + '_sid'] = String(allBidsForThisBidid[bidderName].cid);
}
});
} else {
if (useOzWhitelistAdserverKeys) {
logWarn(`You have set a whitelist of adserver keys but this will be ignored because ${whitelabelBidder}.enhancedAdserverTargeting is set to false. No per-bid keys will be sent to adserver.`);
} else {
logInfo(`${whitelabelBidder}.enhancedAdserverTargeting is set to false, so no per-bid keys will be sent to adserver.`);
}
}
let {seat: winningSeat, bid: winningBid} = ozoneGetWinnerForRequestBid(thisBid.bidId, serverResponse.seatbid);
adserverTargeting[whitelabelPrefix + '_auc_id'] = String(aucId); // was request.bidderRequest.auctionId
adserverTargeting[whitelabelPrefix + '_winner'] = String(winningSeat);
adserverTargeting[whitelabelPrefix + '_bid'] = 'true';
adserverTargeting[whitelabelPrefix + '_cache_id'] = deepAccess(thisBid, 'ext.prebid.targeting.hb_cache_id', 'no-id');
adserverTargeting[whitelabelPrefix + '_uuid'] = deepAccess(thisBid, 'ext.prebid.targeting.hb_uuid', 'no-id');
if (enhancedAdserverTargeting) {
adserverTargeting[whitelabelPrefix + '_imp_id'] = String(winningBid.impid);
adserverTargeting[whitelabelPrefix + '_pb_v'] = OZONEVERSION;
adserverTargeting[whitelabelPrefix + '_pb'] = winningBid.price;
adserverTargeting[whitelabelPrefix + '_pb_r'] = getRoundedBid(winningBid.price, bidType);
adserverTargeting[whitelabelPrefix + '_adId'] = String(winningBid.adId);
adserverTargeting[whitelabelPrefix + '_size'] = `${winningBid.width}x${winningBid.height}`;
}
if (useOzWhitelistAdserverKeys) { // delete any un-whitelisted keys
logInfo('Going to filter out adserver targeting keys not in the whitelist: ', ozWhitelistAdserverKeys);
Object.keys(adserverTargeting).forEach(function(key) { if (ozWhitelistAdserverKeys.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`);
logInfo('interpretResponse arrAllBids (serialised): ', JSON.parse(JSON.stringify(arrAllBids))); // this is ok to log because the renderer has not been attached yet
return arrAllBids;
},
setBidMediaTypeIfNotExist(thisBid, mediaType) {
if (!thisBid.hasOwnProperty('mediaType')) {
logInfo(`setting thisBid.mediaType = ${mediaType}`);
thisBid.mediaType = mediaType;
} else {
logInfo(`found value for thisBid.mediaType: ${thisBid.mediaType}`);
}
},
getWhitelabelConfigItem(ozoneVersion) {
if (this.propertyBag.whitelabel.bidder === 'ozone') { return config.getConfig(ozoneVersion); }
let whitelabelledSearch = ozoneVersion.replace('ozone', this.propertyBag.whitelabel.bidder);
whitelabelledSearch = whitelabelledSearch.replace('oz_', this.propertyBag.whitelabel.keyPrefix + '_');
return config.getConfig(whitelabelledSearch);
},
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, 'gdprConsent', gdprConsent, '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('gdpr=' + (deepAccess(gdprConsent, 'gdprApplies', false) ? '1' : '0'));
arrQueryString.push('gdpr_consent=' + deepAccess(gdprConsent, 'consentString', ''));
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.whitelabel.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;
},
getVideoContextForBidId(bidId, arrBids) {
let requestBid = this.getBidRequestForBidId(bidId, arrBids);
if (requestBid != null) {
return deepAccess(requestBid, 'mediaTypes.video.context', 'unknown')
}
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 parrableId = deepAccess(bidRequest.userId, 'parrableId.eid');
if (parrableId) {
ret['parrableId'] = parrableId;
}
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 whitelabelPrefix = this.propertyBag.whitelabel.keyPrefix;
let arr = this.getGetParametersAsObject();
if (arr.hasOwnProperty(whitelabelPrefix + 'storedrequest')) {
if (this.isValidPlacementId(arr[whitelabelPrefix + 'storedrequest'])) {
logInfo(`using GET ${whitelabelPrefix}storedrequest ` + arr[whitelabelPrefix + 'storedrequest'] + ' to replace placementId');
return arr[whitelabelPrefix + 'storedrequest'];
} else {
logError(`GET ${whitelabelPrefix}storedrequest FAILED VALIDATION - will not use it`);
}
}
return null;
},
getGetParametersAsObject() {
let parsed = parseUrl(this.getRefererInfo().location);
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 ozRequest = this.getWhitelabelConfigItem('ozone.oz_request');
if (typeof ozRequest == 'boolean' && !ozRequest) {
logWarn(`Will not allow auction : ${this.propertyBag.whitelabel.keyPrefix}_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;
},
unpackVideoConfigIntoIABformat(videoConfig, childConfig) {
let ret = {'ext': {}};
ret = this._unpackVideoConfigIntoIABformat(ret, videoConfig);
ret = this._unpackVideoConfigIntoIABformat(ret, childConfig);
return ret;
},
_unpackVideoConfigIntoIABformat(ret, objConfig) {
let arrVideoKeysAllowed = ['mimes', 'minduration', 'maxduration', 'protocols', 'w', 'h', 'startdelay', 'placement', 'linearity', 'skip', 'skipmin', 'skipafter', 'sequence', 'battr', 'maxextended', 'minbitrate', 'maxbitrate', 'boxingallowed', 'playbackmethod', 'playbackend', 'delivery', 'pos', 'companionad', 'api', 'companiontype'];
for (const key in objConfig) {
var found = false;
arrVideoKeysAllowed.forEach(function(arg) {
if (arg === key) {
ret[key] = objConfig[key];
found = true;
}
});
if (!found) {
ret.ext[key] = objConfig[key];
}
}
if (objConfig.hasOwnProperty('ext') && typeof objConfig.ext === 'object') {
if (objConfig.hasOwnProperty('ext')) {
ret.ext = mergeDeep(ret.ext, objConfig.ext);
} else {
ret.ext = objConfig.ext;
}
}
return ret;
},
addVideoDefaults(objRet, videoConfig, childConfig) {
objRet = this._addVideoDefaults(objRet, videoConfig, false);
objRet = this._addVideoDefaults(objRet, childConfig, true); // child config will override parent config
return objRet;
},
_addVideoDefaults(objRet, objConfig, addIfMissing) {
let context = deepAccess(objConfig, 'context');
if (context === 'outstream') {
objRet.placement = 3;
} else if (context === 'instream') {
objRet.placement = 1;
}
let skippable = deepAccess(objConfig, 'skippable', null);
if (skippable == null) {
if (addIfMissing && !objRet.hasOwnProperty('skip')) {
objRet.skip = skippable ? 1 : 0;
}
} else {
objRet.skip = skippable ? 1 : 0;
}
return objRet;
},
getLoggableBidObject(bid) {
let logObj = {
ad: bid.ad,
adId: bid.adId,
adUnitCode: bid.adUnitCode,
adm: bid.adm,
adomain: bid.adomain,
adserverTargeting: bid.adserverTargeting,
auctionId: bid.auctionId,
bidId: bid.bidId,
bidder: bid.bidder,
bidderCode: bid.bidderCode,
cpm: bid.cpm,
creativeId: bid.creativeId,
crid: bid.crid,
currency: bid.currency,
h: bid.h,
w: bid.w,
impid: bid.impid,
mediaType: bid.mediaType,
params: bid.params,
price: bid.price,
transactionId: bid.transactionId,
ttl: bid.ttl
};
if (bid.hasOwnProperty('floorData')) {
logObj.floorData = bid.floorData;
}
return logObj;
}
};
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}-${spec.propertyBag.whitelabel.keyPrefix}-${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 ozoneGetWinnerForRequestBid(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};
}
export function ozoneGetAllBidsForBidId(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 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 '';
}
export function ozoneAddStandardProperties(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;
}
export function getWidthAndHeightFromVideoObject(objVideo) {
let playerSize = getPlayerSizeFromObject(objVideo);
if (!playerSize) {
return null;
}
if (playerSize[0] && typeof playerSize[0] === 'object') {
logInfo('getWidthAndHeightFromVideoObject found nested array inside playerSize.', playerSize[0]);
playerSize = playerSize[0];
if (typeof playerSize[0] !== 'number' && typeof playerSize[0] !== 'string') {
logInfo('getWidthAndHeightFromVideoObject found non-number/string type inside the INNER array in playerSize. This is totally wrong - cannot continue.', playerSize[0]);
return null;
}
}
if (playerSize.length !== 2) {
logInfo('getWidthAndHeightFromVideoObject found playerSize with length of ' + playerSize.length + '. This is totally wrong - cannot continue.');
return null;
}
return ({'w': playerSize[0], 'h': playerSize[1]});
}
export function playerSizeIsNestedArray(objVideo) {
let playerSize = getPlayerSizeFromObject(objVideo);
if (!playerSize) {
return null;