@@ -7,6 +7,7 @@ import { mark } from './lib/mark';
7
7
import {
8
8
constructBannerMessageId ,
9
9
sendConsentChoicesToOphan ,
10
+ sendJurisdictionMismatchToOphan ,
10
11
sendMessageReadyToOphan ,
11
12
} from './lib/ophan' ;
12
13
import type { Property } from './lib/property' ;
@@ -22,7 +23,7 @@ import {
22
23
} from './lib/sourcepointConfig' ;
23
24
import { mergeVendorList } from './mergeUserConsent' ;
24
25
import { invokeCallbacks } from './onConsentChange' ;
25
- import { stub } from './stub' ;
26
+ import { loadAllStubs } from './stub' ;
26
27
import type { ConsentFramework } from './types' ;
27
28
import type { SPUserConsent } from './types/tcfv2' ;
28
29
@@ -100,7 +101,7 @@ export const init = (
100
101
useNonAdvertisedList : boolean ,
101
102
pubData = { } ,
102
103
) : void => {
103
- stub ( framework ) ;
104
+ loadAllStubs ( ) ;
104
105
105
106
// make sure nothing else on the page has accidentally
106
107
// used the `_sp_` name as well
@@ -169,7 +170,17 @@ export const init = (
169
170
onConsentReady : ( message_type , consentUUID , euconsent ) => {
170
171
log ( 'cmp' , `onConsentReady ${ message_type } ` ) ;
171
172
if ( message_type != frameworkMessageType ) {
172
- return ;
173
+ sendJurisdictionMismatchToOphan (
174
+ JSON . stringify ( {
175
+ sp : message_type ,
176
+ gu : frameworkMessageType ,
177
+ } ) ,
178
+ ) ;
179
+
180
+ log (
181
+ 'cmp' ,
182
+ `onMessageReceiveData Data mismatch ;sp:${ message_type } ;fastly:${ frameworkMessageType } ;` ,
183
+ ) ;
173
184
}
174
185
175
186
log ( 'cmp' , `consentUUID ${ consentUUID } ` ) ;
@@ -182,9 +193,6 @@ export const init = (
182
193
} ,
183
194
onMessageReady : ( message_type ) => {
184
195
log ( 'cmp' , `onMessageReady ${ message_type } ` ) ;
185
- if ( message_type != frameworkMessageType ) {
186
- return ;
187
- }
188
196
189
197
// Event fires when a message is about to display.
190
198
mark ( 'cmp-ui-displayed' ) ;
@@ -194,9 +202,6 @@ export const init = (
194
202
// Event fires when a message is displayed to the user and sends data about the message and campaign to the callback.
195
203
// The data sent to the callback is in the following structure:
196
204
log ( 'cmp' , `onMessageReceiveData ${ message_type } ` ) ;
197
- if ( message_type != frameworkMessageType ) {
198
- return ;
199
- }
200
205
201
206
// The messageId is 0 when no message is displayed
202
207
if ( data . messageId !== 0 ) {
@@ -213,10 +218,6 @@ export const init = (
213
218
onMessageChoiceSelect : ( message_type , choice_id , choiceTypeID ) => {
214
219
log ( 'cmp' , `onMessageChoiceSelect message_type: ${ message_type } ` ) ;
215
220
216
- if ( message_type != frameworkMessageType ) {
217
- return ;
218
- }
219
-
220
221
log ( 'cmp' , `onMessageChoiceSelect choice_id: ${ choice_id } ` ) ;
221
222
log ( 'cmp' , `onMessageChoiceSelect choice_type_id: ${ choiceTypeID } ` ) ;
222
223
@@ -236,35 +237,21 @@ export const init = (
236
237
} ,
237
238
onPrivacyManagerAction : function ( message_type , pmData ) {
238
239
log ( 'cmp' , `onPrivacyManagerAction message_type: ${ message_type } ` ) ;
239
- if ( message_type != frameworkMessageType ) {
240
- return ;
241
- }
242
-
243
240
log ( 'cmp' , `onPrivacyManagerAction ${ pmData } ` ) ;
244
241
} ,
245
242
onMessageChoiceError : function ( message_type , err ) {
246
243
log ( 'cmp' , `onMessageChoiceError ${ message_type } ` ) ;
247
- if ( message_type != frameworkMessageType ) {
248
- return ;
249
- }
250
244
251
245
log ( 'cmp' , `onMessageChoiceError ${ err } ` ) ;
252
246
} ,
253
247
onPMCancel : function ( message_type ) {
254
248
log ( 'cmp' , `onPMCancel ${ message_type } ` ) ;
255
- if ( message_type != frameworkMessageType ) {
256
- return ;
257
- }
258
249
} ,
259
250
onSPPMObjectReady : function ( ) {
260
251
log ( 'cmp' , 'onSPPMObjectReady' ) ;
261
252
} ,
262
253
onError : function ( message_type , errorCode , errorObject , userReset ) {
263
254
log ( 'cmp' , `errorCode: ${ message_type } ` ) ;
264
- if ( message_type != frameworkMessageType ) {
265
- return ;
266
- }
267
-
268
255
log ( 'cmp' , `errorCode: ${ errorCode } ` ) ;
269
256
log ( 'cmp' , errorObject ) ;
270
257
log ( 'cmp' , `userReset: ${ userReset } ` ) ;
@@ -286,33 +273,29 @@ export const init = (
286
273
// advertisers seem to assume that __tcfapi is the one to use, breaking CCPA consent.
287
274
// https://documentation.sourcepoint.com/implementation/web-implementation/multi-campaign-web-implementation#implementation-code-snippet-overview
288
275
289
- switch ( framework ) {
290
- case 'tcfv2' :
291
- window . _sp_ . config . gdpr = {
292
- targetingParams : {
293
- framework,
294
- excludePage : isExcludedFromCMP ( pageSection ) ,
295
- isCorP : isConsentOrPayCountry ( countryCode ) ,
296
- isUserSignedIn,
297
- } ,
298
- } ;
299
- break ;
300
- case 'usnat' :
301
- window . _sp_ . config . usnat = {
302
- targetingParams : {
303
- framework,
304
- } ,
305
- includeUspApi : true ,
306
- transitionCCPAAuth : true ,
307
- } ;
308
- break ;
309
- case 'aus' :
310
- window . _sp_ . config . ccpa = {
311
- targetingParams : {
312
- framework,
313
- } ,
314
- } ;
315
- break ;
276
+ window . _sp_ . config . gdpr = {
277
+ targetingParams : {
278
+ framework,
279
+ excludePage : isExcludedFromCMP ( pageSection ) ,
280
+ isCorP : isConsentOrPayCountry ( countryCode ) ,
281
+ isUserSignedIn,
282
+ } ,
283
+ } ;
284
+
285
+ if ( framework == 'aus' ) {
286
+ window . _sp_ . config . ccpa = {
287
+ targetingParams : {
288
+ framework : framework ,
289
+ } ,
290
+ } ;
291
+ } else {
292
+ window . _sp_ . config . usnat = {
293
+ targetingParams : {
294
+ framework,
295
+ } ,
296
+ includeUspApi : true ,
297
+ transitionCCPAAuth : true ,
298
+ } ;
316
299
}
317
300
318
301
// TODO use libs function loadScript,
0 commit comments