-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathweboramaRtdProvider.js
1158 lines (1023 loc) · 32.3 KB
/
weboramaRtdProvider.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
/**
* This module adds Weborama provider to the real time data module
* The {@link module:modules/realTimeData} module is required
* The module will fetch contextual data (page-centric) from Weborama server
* and may access user-centric data from local storage
* @module modules/weboramaRtdProvider
* @requires module:modules/realTimeData
*/
/**
* profile metadata
* @typedef dataCallbackMetadata
* @property {boolean} user if true it is user-centric data
* @property {string} source describe the source of data, if 'contextual' or 'wam'
* @property {boolean} isDefault if true it the default profile defined in the configuration
*/
/**
* profile from contextual, wam or sfbx
* @typedef {Object.<string,string[]>} Profile
*/
/**
* onData callback type
* @callback dataCallback
* @param {Profile} data profile data
* @param {dataCallbackMetadata} meta metadata
* @returns {void}
*/
/**
* setPrebidTargeting callback type
* @callback setPrebidTargetingCallback
* @param {string} adUnitCode
* @param {Profile} data
* @param {dataCallbackMetadata} metadata
* @returns {boolean}
*/
/**
* sendToBidders callback type
* @callback sendToBiddersCallback
* @param {Object} bid
* @param {string} adUnitCode
* @param {Profile} data
* @param {dataCallbackMetadata} metadata
* @returns {boolean}
*/
/**
* @typedef {Object} ModuleParams
* @property {?setPrebidTargetingCallback|?boolean|?Object} setPrebidTargeting if true, will set the GAM targeting (default undefined)
* @property {?sendToBiddersCallback|?boolean|?Object} sendToBidders if true, will send the contextual profile to all bidders, else expects a list of allowed bidders (default undefined)
* @property {?dataCallback} onData callback
* @property {?WeboCtxConf} weboCtxConf site-centric contextual configuration
* @property {?WeboUserDataConf} weboUserDataConf user-centric wam configuration
* @property {?SfbxLiteDataConf} sfbxLiteDataConf site-centric lite configuration
*/
/**
* @callback assetIDcallback
* @returns {string} should return asset identifier using the form datasource:docId
*/
/**
* @typedef {Object} WeboCtxConf
* @property {string} token required token to be used on bigsea contextual API requests
* @property {?string} targetURL specify the target url instead use the referer
* @property {?assetIDcallback|?string} assetID specifies the assert identifier using the form datasource:docId or via callback
* @property {?setPrebidTargetingCallback|?boolean|?Object} setPrebidTargeting if true, will set the GAM targeting (default undefined)
* @property {?sendToBiddersCallback|?boolean|?Object} sendToBidders if true, will send the contextual profile to all bidders, else expects a list of allowed bidders (default undefined)
* @property {?dataCallback} onData callback
* @property {?Profile} defaultProfile to be used if the profile is not found
* @property {?boolean} enabled if false, will ignore this configuration
* @property {?string} baseURLProfileAPI to be used to point to a different domain than ctx.weborama.com
*/
/**
* @typedef {Object} WeboUserDataConf
* @property {?number} accountId wam account id
* @property {?setPrebidTargetingCallback|?boolean|?Object} setPrebidTargeting if true, will set the GAM targeting (default undefined)
* @property {?sendToBiddersCallback|?boolean|?Object} sendToBidders if true, will send the contextual profile to all bidders, else expects a list of allowed bidders (default undefined)
* @property {?Profile} defaultProfile to be used if the profile is not found
* @property {?dataCallback} onData callback
* @property {?string} localStorageProfileKey can be used to customize the local storage key (default is 'webo_wam2gam_entry')
* @property {?boolean} enabled if false, will ignore this configuration
*/
/**
* @typedef {Object} SfbxLiteDataConf
* @property {?setPrebidTargetingCallback|?boolean|?Object} setPrebidTargeting if true, will set the GAM targeting (default undefined)
* @property {?sendToBiddersCallback|?boolean|?Object} sendToBidders if true, will send the contextual profile to all bidders, else expects a list of allowed bidders (default undefined)
* @property {?Profile} defaultProfile to be used if the profile is not found
* @property {?dataCallback} onData callback
* @property {?string} localStorageProfileKey can be used to customize the local storage key (default is '_lite')
* @property {?boolean} enabled if false, will ignore this configuration
*/
/**
* common configuration between contextual, wam and sfbx
* @typedef {WeboCtxConf|WeboUserDataConf|SfbxLiteDataConf} CommonConf
*/
import { getGlobal } from '../src/prebidGlobal.js';
import {
deepAccess,
deepClone,
deepSetValue,
isArray,
isBoolean,
isEmpty,
isFn,
isNumber,
isPlainObject,
isStr,
mergeDeep,
prefixLog,
} from '../src/utils.js';
import { submodule } from '../src/hook.js';
import { ajax } from '../src/ajax.js';
import { getStorageManager } from '../src/storageManager.js';
import { MODULE_TYPE_RTD } from '../src/activities/modules.js';
import adapterManager from '../src/adapterManager.js';
import { tryAppendQueryString } from '../libraries/urlUtils/urlUtils.js';
/** @type {string} */
const MODULE_NAME = 'realTimeData';
/** @type {string} */
const SUBMODULE_NAME = 'weborama';
/** @type {string} */
const BASE_URL_CONTEXTUAL_PROFILE_API = 'ctx.weborama.com';
/** @type {string} */
export const DEFAULT_LOCAL_STORAGE_USER_PROFILE_KEY = 'webo_wam2gam_entry';
/** @type {string} */
const LOCAL_STORAGE_USER_TARGETING_SECTION = 'targeting';
/** @type {string} */
export const DEFAULT_LOCAL_STORAGE_LITE_PROFILE_KEY = '_lite';
/** @type {string} */
const LOCAL_STORAGE_LITE_TARGETING_SECTION = 'webo';
/** @type {string} */
const WEBO_CTX_CONF_SECTION = 'weboCtxConf';
/** @type {string} */
const WEBO_USER_DATA_CONF_SECTION = 'weboUserDataConf';
/** @type {string} */
const SFBX_LITE_DATA_CONF_SECTION = 'sfbxLiteDataConf';
/** @type {string} */
const WEBO_CTX_SOURCE_LABEL = 'contextual';
/** @type {string} */
const WEBO_USER_DATA_SOURCE_LABEL = 'wam';
/** @type {string} */
const SFBX_LITE_DATA_SOURCE_LABEL = 'lite';
/** @type {number} */
const GVLID = 284;
const logger = prefixLog('[WeboramaRTD]');
export const storage = getStorageManager({
moduleType: MODULE_TYPE_RTD,
moduleName: SUBMODULE_NAME,
});
/**
* @typedef {Object} Component
* @property {boolean} initialized
* @property {?Profile} data
* @property {boolean} user if true it is user-centric data
* @property {string} source describe the source of data, if 'contextual' or 'wam'
* @property {buildProfileHandlerCallbackBuilder} callbackBuilder
*/
/**
* @typedef {Object} Components
* @property {Component} WeboCtx
* @property {Component} WeboUserData
* @property {Component} SfbxLiteData
*/
/**
* @classdesc Weborama Real Time Data Provider
* @class
*/
class WeboramaRtdProvider {
#components;
name = SUBMODULE_NAME;
gvlid = GVLID;
/**
* @param {Components} components
*/
constructor(components) {
this.#components = components;
}
/**
* Initialize module
* @method
* @param {Object} moduleConfig
* @param {?ModuleParams} moduleConfig.params
* @param {Object} userConsent
* @param {?Object} userConsent.gdpr
* @return {boolean} true if module was initialized with success
*/
init(moduleConfig, userConsent) {
/** @type {Object} */
const globalDefaults = {
setPrebidTargeting: true,
sendToBidders: true,
onData: () => {
/* do nothing */
},
};
/** @type {ModuleParams} */
const moduleParams = Object.assign(
{},
globalDefaults,
moduleConfig?.params || {}
);
// reset profiles
this.#components.WeboCtx.data = null;
this.#components.WeboUserData.data = null;
this.#components.SfbxLiteData.data = null;
const weboCtxRequiredFields = ['token'];
this.#components.WeboCtx.initialized = this.#initSubSection(
moduleParams,
WEBO_CTX_CONF_SECTION,
{
requiredFields: weboCtxRequiredFields,
}
);
this.#components.WeboUserData.initialized = this.#initSubSection(
moduleParams,
WEBO_USER_DATA_CONF_SECTION,
{
userConsent: userConsent || {},
}
);
this.#components.SfbxLiteData.initialized = this.#initSubSection(
moduleParams,
SFBX_LITE_DATA_CONF_SECTION
);
return Object.values(this.#components).some((c) => c.initialized);
}
/**
* function that will allow RTD sub-modules to modify the AdUnit object for each auction
* @method
* @param {Object} reqBidsConfigObj
* @param {doneCallback} onDone
* @param {Object} moduleConfig
* @param {?ModuleParams} moduleConfig.params
* @returns {void}
*/
getBidRequestData(reqBidsConfigObj, onDone, moduleConfig) {
/** @type {ModuleParams} */
const moduleParams = moduleConfig?.params || {};
if (!this.#components.WeboCtx.initialized) {
this.#handleBidRequestData(reqBidsConfigObj, moduleParams);
onDone();
return;
}
/** @type {WeboCtxConf} */
const weboCtxConf = moduleParams.weboCtxConf || {};
this.#fetchContextualProfile(
weboCtxConf,
(data) => {
logger.logMessage(
'fetchContextualProfile on getBidRequestData is done'
);
this.#setWeboContextualProfile(data);
},
() => {
this.#handleBidRequestData(reqBidsConfigObj, moduleParams);
onDone();
}
);
}
/**
* function that provides ad server targeting data to RTD-core
* @method
* @param {string[]} adUnitsCodes
* @param {Object} moduleConfig
* @param {?ModuleParams} moduleConfig.params
* @returns {Object} target data
*/
getTargetingData(adUnitsCodes, moduleConfig) {
/** @type {ModuleParams} */
const moduleParams = moduleConfig?.params || {};
const profileHandlers = this.#buildProfileHandlers(moduleParams);
if (isEmpty(profileHandlers)) {
logger.logMessage('no data to set targeting');
return {};
}
try {
return adUnitsCodes.reduce((data, adUnitCode) => {
data[adUnitCode] = profileHandlers.reduce((targeting, ph) => {
// logger.logMessage(`check if should set targeting for adunit '${adUnitCode}'`);
const [data, metadata] = this.#copyDataAndMetadata(ph);
if (ph.setTargeting(adUnitCode, data, metadata)) {
// logger.logMessage(`set targeting for adunit '${adUnitCode}', source '${metadata.source}'`);
mergeDeep(targeting, data);
}
return targeting;
}, {});
return data;
}, {});
} catch (e) {
logger.logError(`unable to format weborama rtd targeting data:`, e);
return {};
}
}
/**
* Initialize subsection module
* @method
* @private
* @param {ModuleParams} moduleParams
* @param {string} subSection subsection name to initialize
* @param {?Object} extra
* @param {string[]} extra.requiredFields
* @param {?Object} extra.userConsent
* @return {boolean} true if module subsection was initialized with success
*/
#initSubSection(moduleParams, subSection, extra) {
/** @type {CommonConf} */
const weboSectionConf = moduleParams[subSection] || { enabled: false };
if (weboSectionConf.enabled === false) {
delete moduleParams[subSection];
return false;
}
try {
this.#normalizeConf(moduleParams, weboSectionConf);
extra = extra || {};
const requiredFields = extra?.requiredFields || [];
requiredFields.forEach((field) => {
if (!(field in weboSectionConf)) {
throw `missing required field '${field}'`;
}
});
if (
isPlainObject(extra?.userConsent?.gdpr) &&
!this.#checkTCFv2(extra.userConsent.gdpr)
) {
throw 'gdpr consent not ok';
}
} catch (e) {
logger.logError(
`unable to initialize: error on '${subSection}' configuration:`,
e
);
return false;
}
logger.logMessage(`weborama '${subSection}' initialized with success`);
return true;
}
/**
* check gdpr consent data
* @method
* @private
* @param {Object} gdpr
* @param {?boolean} gdpr.gdprApplies
* @param {?Object} gdpr.vendorData
* @param {?Object} gdpr.vendorData.purpose
* @param {?Object.<number, boolean>} gdpr.vendorData.purpose.consents
* @param {?Object} gdpr.vendorData.vendor
* @param {?Object.<number, boolean>} gdpr.vendorData.vendor.consents
* @return {boolean}
*/
// eslint-disable-next-line no-dupe-class-members
#checkTCFv2(gdpr) {
if (gdpr?.gdprApplies !== true) {
return true;
}
if (
deepAccess(gdpr, 'vendorData.vendor.consents') &&
deepAccess(gdpr, 'vendorData.purpose.consents')
) {
return (
gdpr.vendorData.vendor.consents[GVLID] === true && // check weborama vendor id
gdpr.vendorData.purpose.consents[1] === true && // info storage access
gdpr.vendorData.purpose.consents[3] === true && // create personalized ads
gdpr.vendorData.purpose.consents[4] === true && // select personalized ads
gdpr.vendorData.purpose.consents[5] === true && // create personalized content
gdpr.vendorData.purpose.consents[6] === true
); // select personalized content
}
return true;
}
/**
* normalize submodule configuration
* @method
* @private
* @param {ModuleParams} moduleParams
* @param {CommonConf} submoduleParams
* @return {void}
* @throws will throw an error in case of invalid configuration
*/
// eslint-disable-next-line no-dupe-class-members
#normalizeConf(moduleParams, submoduleParams) {
submoduleParams.defaultProfile = submoduleParams.defaultProfile || {};
const { setPrebidTargeting, sendToBidders, onData } = moduleParams;
submoduleParams.setPrebidTargeting ??= setPrebidTargeting;
submoduleParams.sendToBidders ??= sendToBidders;
submoduleParams.onData ??= onData;
// handle setPrebidTargeting
this.#coerceSetPrebidTargeting(submoduleParams);
// handle sendToBidders
this.#coerceSendToBidders(submoduleParams);
if (!isFn(submoduleParams.onData)) {
throw 'onData parameter should be a callback';
}
if (!isValidProfile(submoduleParams.defaultProfile)) {
throw 'defaultProfile is not valid';
}
}
/**
* coerce setPrebidTargeting to a callback
* @method
* @private
* @param {CommonConf} submoduleParams
* @return {void}
* @throws will throw an error in case of invalid configuration
*/
// eslint-disable-next-line no-dupe-class-members
#coerceSetPrebidTargeting(submoduleParams) {
try {
submoduleParams.setPrebidTargeting = this.#wrapValidatorCallback(
submoduleParams.setPrebidTargeting
);
} catch (e) {
throw `invalid setPrebidTargeting: ${e}`;
}
}
/**
* coerce sendToBidders to a callback
* @method
* @private
* @param {CommonConf} submoduleParams
* @return {void}
* @throws will throw an error in case of invalid configuration
*/
// eslint-disable-next-line no-dupe-class-members
#coerceSendToBidders(submoduleParams) {
let sendToBidders = submoduleParams.sendToBidders;
if (isPlainObject(sendToBidders)) {
const sendToBiddersMap = Object.entries(sendToBidders).reduce(
(map, [key, value]) => {
map[key] = this.#wrapValidatorCallback(value);
return map;
},
{}
);
submoduleParams.sendToBidders = (bid, adUnitCode) => {
const bidder = bid.bidder;
if (!(bidder in sendToBiddersMap)) {
return false;
}
const validatorCallback = sendToBiddersMap[bidder];
try {
return validatorCallback(adUnitCode);
} catch (e) {
throw `invalid sendToBidders[${bidder}]: ${e}`;
}
};
return;
}
try {
submoduleParams.sendToBidders = this.#wrapValidatorCallback(
submoduleParams.sendToBidders,
(bid) => bid.bidder
);
} catch (e) {
throw `invalid sendToBidders: ${e}`;
}
}
/**
* @typedef {Object} AdUnit
* @property {Object[]} bids
*/
/**
* function that handles bid request data
* @method
* @private
* @param {Object} reqBidsConfigObj
* @param {AdUnit[]} reqBidsConfigObj.adUnits
* @param {Object} reqBidsConfigObj.ortb2Fragments
* @param {Object} reqBidsConfigObj.ortb2Fragments.bidder
* @param {ModuleParams} moduleParams
* @returns {void}
*/
// eslint-disable-next-line no-dupe-class-members
#handleBidRequestData(reqBidsConfigObj, moduleParams) {
const profileHandlers = this.#buildProfileHandlers(moduleParams);
if (isEmpty(profileHandlers)) {
logger.logMessage('no data to send to bidders');
return;
}
const adUnits = reqBidsConfigObj.adUnits || getGlobal().adUnits;
try {
adUnits.forEach((adUnit) =>
adUnit.bids?.forEach((bid) =>
profileHandlers.forEach((ph) => {
// logger.logMessage(`check if bidder '${bid.bidder}' and adunit '${adUnit.code} are share ${ph.metadata.source} data`);
const [data, metadata] = this.#copyDataAndMetadata(ph);
if (ph.sendToBidders(bid, adUnit.code, data, metadata)) {
// logger.logMessage(`handling bidder '${bid.bidder}' with ${ph.metadata.source} data`);
this.#handleBid(reqBidsConfigObj, bid, data, ph.metadata);
}
})
)
);
} catch (e) {
logger.logError('unable to send data to bidders:', e);
}
profileHandlers.forEach((ph) => {
try {
const [data, metadata] = this.#copyDataAndMetadata(ph);
ph.onData(data, metadata);
} catch (e) {
logger.logError(
`error while execute onData callback with ${ph.metadata.source}-based data:`,
e
);
}
});
}
/**
* onSuccess callback type
* @callback successCallback
* @param {?Object} data
* @returns {void}
*/
/**
* onDone callback type
* @callback doneCallback
* @returns {void}
*/
/**
* Fetch Bigsea Contextual Profile
* @method
* @private
* @param {WeboCtxConf} weboCtxConf
* @param {successCallback} onSuccess callback
* @param {doneCallback} onDone callback
* @returns {void}
*/
// eslint-disable-next-line no-dupe-class-members
#fetchContextualProfile(weboCtxConf, onSuccess, onDone) {
const token = weboCtxConf.token;
const baseURLProfileAPI =
weboCtxConf.baseURLProfileAPI || BASE_URL_CONTEXTUAL_PROFILE_API;
let path = '/profile';
let queryString = '';
queryString = tryAppendQueryString(queryString, 'token', token);
if (weboCtxConf.assetID) {
path = '/document-profile';
let assetID = weboCtxConf.assetID;
if (isFn(assetID)) {
try {
assetID = weboCtxConf.assetID();
} catch (e) {
logger.logError(
'unexpected error while fetching asset id from callback',
e
);
onDone();
return;
}
}
if (!assetID) {
logger.logError('missing asset id');
onDone();
return;
}
queryString = tryAppendQueryString(queryString, 'assetId', assetID);
}
const targetURL = weboCtxConf.targetURL || document.URL;
queryString = tryAppendQueryString(queryString, 'url', targetURL);
const urlProfileAPI = `https://${baseURLProfileAPI}/api${path}?${queryString}`;
const success = (response, req) => {
if (req.status === 200) {
const data = JSON.parse(response);
onSuccess(data);
} else {
throw `unexpected http status response ${req.status} with response ${response}`;
}
onDone();
};
const error = (e, req) => {
logger.logError(`unable to get weborama data`, e, req);
onDone();
};
const callback = {
success,
error,
};
const options = {
method: 'GET',
withCredentials: false,
};
ajax(urlProfileAPI, callback, null, options);
}
/**
* set bigsea contextual profile on module state
* @method
* @private
* @param {?Object} data
* @returns {void}
*/
// eslint-disable-next-line no-dupe-class-members
#setWeboContextualProfile(data) {
if (data && isPlainObject(data) && isValidProfile(data) && !isEmpty(data)) {
this.#components.WeboCtx.data = data;
}
}
/**
* function that provides data handlers based on the configuration
* @method
* @private
* @param {ModuleParams} moduleParams
* @returns {ProfileHandler[]}
*/
// eslint-disable-next-line no-dupe-class-members
#buildProfileHandlers(moduleParams) {
const steps = [
{
component: this.#components.WeboCtx,
conf: moduleParams?.weboCtxConf,
},
{
component: this.#components.WeboUserData,
conf: moduleParams?.weboUserDataConf,
},
{
component: this.#components.SfbxLiteData,
conf: moduleParams?.sfbxLiteDataConf,
},
];
return steps
.filter((step) => step.component.initialized)
.reduce((ph, { component, conf }) => {
const user = component.user;
const source = component.source;
const callback = component.callbackBuilder(
component /* equivalent to this */
);
const profileHandler = this.#buildProfileHandler(
conf,
callback,
user,
source
);
if (profileHandler) {
ph.push(profileHandler);
} else {
logger.logMessage(`skip ${source} profile: no data`);
}
return ph;
}, []);
}
/**
* @typedef {Object} ProfileHandler
* @property {Profile} data
* @property {dataCallbackMetadata} metadata
* @property {setPrebidTargetingCallback} setTargeting
* @property {sendToBiddersCallback} sendToBidders
* @property {dataCallback} onData
*/
/**
* @callback buildProfileHandlerCallbackBuilder
* @param {Component} component
* @returns {buildProfileHandlerCallback}
*/
/**
* @callback buildProfileHandlerCallback
* @param {CommonConf} dataConf
* @returns {[Profile,boolean]} profile + is default flag
*/
/**
* return specific profile handler
* @method
* @private
* @param {CommonConf} dataConf
* @param {buildProfileHandlerCallback} callback
* @param {boolean} user
* @param {string} source
* @returns {ProfileHandler}
*/
// eslint-disable-next-line no-dupe-class-members
#buildProfileHandler(dataConf, callback, user, source) {
if (!dataConf) {
return;
}
const [data, isDefault] = callback(dataConf);
if (isEmpty(data)) {
return;
}
return {
data: data,
metadata: {
user: user,
source: source,
isDefault: !!isDefault,
},
setTargeting: dataConf.setPrebidTargeting,
sendToBidders: dataConf.sendToBidders,
onData: dataConf.onData,
};
}
/**
* handle individual bid
* @method
* @private
* @param {Object} reqBidsConfigObj
* @param {Object} reqBidsConfigObj.ortb2Fragments
* @param {Object} reqBidsConfigObj.ortb2Fragments.bidder
* @param {Object} bid
* @param {string} bid.bidder
* @param {Profile} profile
* @param {dataCallbackMetadata} metadata
* @returns {void}
*/
// eslint-disable-next-line no-dupe-class-members
#handleBid(reqBidsConfigObj, bid, profile, metadata) {
this.#handleBidViaORTB2(reqBidsConfigObj, bid.bidder, profile, metadata);
/** @type {string} */
const bidder = this.#getAdapterNameForAlias(bid.bidder);
if (bidder == 'appnexus') {
this.#handleAppnexusBid(reqBidsConfigObj, bid, profile);
}
}
/**
* return adapter name based on alias, if any
* @method
* @private
* @param {string} aliasName
* @returns {string}
*/
// eslint-disable-next-line no-dupe-class-members
#getAdapterNameForAlias(aliasName) {
return adapterManager.aliasRegistry[aliasName] || aliasName;
}
/**
* function that handles bid request data
* @method
* @private
* @param {ProfileHandler} ph profile handler
* @returns {[Profile,dataCallbackMetadata]} deeply copy data + metadata
*/
// eslint-disable-next-line no-dupe-class-members
#copyDataAndMetadata(ph) {
return [deepClone(ph.data), deepClone(ph.metadata)];
}
/**
* handle appnexus/xandr bid
* @method
* @private
* @param {Object} reqBidsConfigObj
* @param {Object} reqBidsConfigObj.ortb2Fragments
* @param {Object} reqBidsConfigObj.ortb2Fragments.bidder
* @param {Object} bid
* @param {Object} bid.parameters
* @param {Profile} profile
* @returns {void}
*/
// eslint-disable-next-line no-dupe-class-members
#handleAppnexusBid(reqBidsConfigObj, bid, profile) {
const base = 'params.keywords';
this.#assignProfileToObject(bid, base, profile);
// this.#setBidderOrtb2(reqBidsConfigObj.ortb2Fragments?.bidder, bid.bidder, base, profile);
}
/**
* handle generic bid via ortb2 arbitrary data
* @method
* @private
* @param {Object} reqBidsConfigObj
* @param {Object} reqBidsConfigObj.ortb2Fragments
* @param {Object} reqBidsConfigObj.ortb2Fragments.bidder
* @param {string} bidder
* @param {Profile} profile
* @param {dataCallbackMetadata} metadata
* @returns {void}
*/
// eslint-disable-next-line no-dupe-class-members
#handleBidViaORTB2(reqBidsConfigObj, bidder, profile, metadata) {
if (isBoolean(metadata.user)) {
logger.logMessage(
`bidder '${bidder}' is not directly supported, trying set data via bidder ortb2 fpd`
);
const section = metadata.user ? 'user' : 'site';
const path = `${section}.ext.data`;
this.#setBidderOrtb2(
reqBidsConfigObj.ortb2Fragments?.bidder,
bidder,
path,
profile
);
} else {
logger.logMessage(
`SKIP unsupported bidder '${bidder}', data from '${metadata.source}' is not defined as user or site-centric`
);
}
}
/**
* set bidder ortb2 data
* @method
* @private
* @param {Object} bidderOrtb2Fragments
* @param {string} bidder
* @param {string} path
* @param {Profile} profile
* @returns {void}
*/
// eslint-disable-next-line no-dupe-class-members
#setBidderOrtb2(bidderOrtb2Fragments, bidder, path, profile) {
const base = `${bidder}.${path}`;
this.#assignProfileToObject(bidderOrtb2Fragments, base, profile);
}
/**
* assign profile to object
* @method
* @private
* @param {Object} destination
* @param {string} base
* @param {Profile} profile
* @returns {void}
*/
// eslint-disable-next-line no-dupe-class-members
#assignProfileToObject(destination, base, profile) {
Object.entries(profile).forEach(([key, values]) => {
const path = `${base}.${key}`;
deepSetValue(destination, path, values);
});
}
/**
* @callback validatorCallback
* @param {string} target
* @returns {boolean}
*/
/**
* @callback coerceCallback
* @param {*} input
* @returns {*}
*/
/**
* wrap value into validator
* @method
* @private
* @param {*} value
* @param {coerceCallback} coerce
* @returns {validatorCallback}
* @throws will throw an error in case of unsupported type
*/
// eslint-disable-next-line no-dupe-class-members
#wrapValidatorCallback(value, coerce = (x) => x) {
if (isFn(value)) {
return value;
}
if (isBoolean(value)) {
return (_) => value;
}
if (isStr(value)) {
return (target) => {
return value == coerce(target);
};
}
if (isArray(value)) {
return (target) => {
return value.includes(coerce(target));
};
}
throw `unexpected format: ${typeof value} (expects function, boolean, string or array)`;
}
}
/**
* check if profile is valid
* a valid profile must be a plain object and every value should be an array of strings or numbers
* @param {*} profile
* @returns {boolean}
*/
export function isValidProfile(profile) {
if (!isPlainObject(profile)) {
return false;
}
return Object.values(profile).every(
(field) => isArray(field) && field.every(isStrOrNumber)
);
}
/**
* Return if the object is a string or number
* @param {*} object object to test
* @return {Boolean} if object is a string or number
*/
function isStrOrNumber(object) {
return isStr(object) || isNumber(object);
}
/**
* bind callback with component
* @param {Component} component
* @returns {buildProfileHandlerCallback}
*/
function getContextualProfile(component /* equivalent to this */) {
/**