Skip to content

Commit 22d702b

Browse files
Merge 28e981e into 07092ac
2 parents 07092ac + 28e981e commit 22d702b

File tree

5 files changed

+65
-67
lines changed

5 files changed

+65
-67
lines changed

libs/@guardian/libs/src/consent-management-platform/lib/ophan.ts

+13
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,16 @@ export const sendMessageReadyToOphan = (messageId: string): void => {
7474
const record = getOphanRecordFunction();
7575
record({ componentEvent });
7676
};
77+
78+
export const sendJurisdictionMismatchToOphan = (value: string): void => {
79+
const componentEvent: OphanComponentEvent = {
80+
component: {
81+
componentType: 'CONSENT',
82+
},
83+
value: value,
84+
action: 'VIEW',
85+
};
86+
87+
const record = getOphanRecordFunction();
88+
record({ componentEvent });
89+
};

libs/@guardian/libs/src/consent-management-platform/sourcepoint.test.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ describe('Sourcepoint unified', () => {
4444
expect(window._sp_.config.gdpr.targetingParams.framework).toEqual(
4545
frameworkAndCountryCode.framework,
4646
);
47-
expect(window._sp_.config.usnat).toBeUndefined();
48-
expect(window.__tcfapi).toBeDefined();
49-
expect(window.__uspapi).toBeUndefined();
50-
expect(window.__gpp).toBeUndefined();
47+
expect(window._sp_.config.usnat).toBeDefined();
48+
// expect(window.__tcfapi).toBeDefined();
49+
expect(window.__uspapi).toBeDefined();
50+
expect(window.__gpp).toBeDefined();
5151
} else if (frameworkAndCountryCode.framework == 'usnat') {
5252
expect(window._sp_.config.usnat.includeUspApi).toBeTruthy();
5353
expect(window._sp_.config.usnat.transitionCCPAAuth).toBeTruthy();
@@ -65,7 +65,7 @@ describe('Sourcepoint unified', () => {
6565
expect(window._sp_.config.gdpr).toBeUndefined;
6666
expect(window.__uspapi).toBeDefined();
6767
expect(window.__tcfapi).toBeUndefined();
68-
expect(window.__gpp).toBeUndefined();
68+
expect(window.__gpp).toBeDefined();
6969
}
7070
},
7171
);

libs/@guardian/libs/src/consent-management-platform/sourcepoint.ts

+37-54
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { mark } from './lib/mark';
77
import {
88
constructBannerMessageId,
99
sendConsentChoicesToOphan,
10+
sendJurisdictionMismatchToOphan,
1011
sendMessageReadyToOphan,
1112
} from './lib/ophan';
1213
import type { Property } from './lib/property';
@@ -22,7 +23,7 @@ import {
2223
} from './lib/sourcepointConfig';
2324
import { mergeVendorList } from './mergeUserConsent';
2425
import { invokeCallbacks } from './onConsentChange';
25-
import { stub } from './stub';
26+
import { loadAllStubs } from './stub';
2627
import type { ConsentFramework } from './types';
2728
import type { SPUserConsent } from './types/tcfv2';
2829

@@ -100,7 +101,7 @@ export const init = (
100101
useNonAdvertisedList: boolean,
101102
pubData = {},
102103
): void => {
103-
stub(framework);
104+
loadAllStubs();
104105

105106
// make sure nothing else on the page has accidentally
106107
// used the `_sp_` name as well
@@ -169,7 +170,17 @@ export const init = (
169170
onConsentReady: (message_type, consentUUID, euconsent) => {
170171
log('cmp', `onConsentReady ${message_type}`);
171172
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+
);
173184
}
174185

175186
log('cmp', `consentUUID ${consentUUID}`);
@@ -182,9 +193,6 @@ export const init = (
182193
},
183194
onMessageReady: (message_type) => {
184195
log('cmp', `onMessageReady ${message_type}`);
185-
if (message_type != frameworkMessageType) {
186-
return;
187-
}
188196

189197
// Event fires when a message is about to display.
190198
mark('cmp-ui-displayed');
@@ -194,9 +202,6 @@ export const init = (
194202
// Event fires when a message is displayed to the user and sends data about the message and campaign to the callback.
195203
// The data sent to the callback is in the following structure:
196204
log('cmp', `onMessageReceiveData ${message_type}`);
197-
if (message_type != frameworkMessageType) {
198-
return;
199-
}
200205

201206
// The messageId is 0 when no message is displayed
202207
if (data.messageId !== 0) {
@@ -213,10 +218,6 @@ export const init = (
213218
onMessageChoiceSelect: (message_type, choice_id, choiceTypeID) => {
214219
log('cmp', `onMessageChoiceSelect message_type: ${message_type}`);
215220

216-
if (message_type != frameworkMessageType) {
217-
return;
218-
}
219-
220221
log('cmp', `onMessageChoiceSelect choice_id: ${choice_id}`);
221222
log('cmp', `onMessageChoiceSelect choice_type_id: ${choiceTypeID}`);
222223

@@ -236,35 +237,21 @@ export const init = (
236237
},
237238
onPrivacyManagerAction: function (message_type, pmData) {
238239
log('cmp', `onPrivacyManagerAction message_type: ${message_type}`);
239-
if (message_type != frameworkMessageType) {
240-
return;
241-
}
242-
243240
log('cmp', `onPrivacyManagerAction ${pmData}`);
244241
},
245242
onMessageChoiceError: function (message_type, err) {
246243
log('cmp', `onMessageChoiceError ${message_type}`);
247-
if (message_type != frameworkMessageType) {
248-
return;
249-
}
250244

251245
log('cmp', `onMessageChoiceError ${err}`);
252246
},
253247
onPMCancel: function (message_type) {
254248
log('cmp', `onPMCancel ${message_type}`);
255-
if (message_type != frameworkMessageType) {
256-
return;
257-
}
258249
},
259250
onSPPMObjectReady: function () {
260251
log('cmp', 'onSPPMObjectReady');
261252
},
262253
onError: function (message_type, errorCode, errorObject, userReset) {
263254
log('cmp', `errorCode: ${message_type}`);
264-
if (message_type != frameworkMessageType) {
265-
return;
266-
}
267-
268255
log('cmp', `errorCode: ${errorCode}`);
269256
log('cmp', errorObject);
270257
log('cmp', `userReset: ${userReset}`);
@@ -286,33 +273,29 @@ export const init = (
286273
// advertisers seem to assume that __tcfapi is the one to use, breaking CCPA consent.
287274
// https://documentation.sourcepoint.com/implementation/web-implementation/multi-campaign-web-implementation#implementation-code-snippet-overview
288275

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+
};
316299
}
317300

318301
// TODO use libs function loadScript,

libs/@guardian/libs/src/consent-management-platform/stub.ts

+7-5
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,7 @@ import { stub_tcfv2 } from './stub_tcfv2';
33
import { stub_uspapi_ccpa } from './stub_uspapi_ccpa';
44
import type { ConsentFramework } from './types';
55

6-
export const stub = (framework: ConsentFramework): void => {
7-
// NOTE - Contrary to the SourcePoint documentation, it's important that we only run the stub file
8-
// for the framework currently in use. The presence of __tcfapi on the window object signals to GPT
9-
// that it should take precedence over __uspapi
10-
// documentation.sourcepoint.com/implementation/web-implementation/multi-campaign-web-implementation#stub-file
6+
export const loadStubsFor = (framework: ConsentFramework): void => {
117
switch (framework) {
128
case 'tcfv2':
139
stub_tcfv2();
@@ -21,3 +17,9 @@ export const stub = (framework: ConsentFramework): void => {
2117
break;
2218
}
2319
};
20+
21+
export const loadAllStubs = (): void => {
22+
stub_tcfv2();
23+
stub_gpp_usnat();
24+
stub_uspapi_ccpa();
25+
};

libs/@guardian/libs/src/consent-management-platform/types/window.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ declare global {
3737
propertyId?: number;
3838
campaignEnv?: 'prod' | 'stage';
3939
isSPA: boolean;
40-
targetingParams: {
40+
targetingParams?: {
4141
framework: ConsentFramework;
4242
excludePage: boolean;
4343
};
4444
ccpa?: {
4545
targetingParams?: {
46-
framework: ConsentFramework;
46+
framework?: ConsentFramework;
4747
};
4848
};
4949
gdpr?: {
@@ -58,7 +58,7 @@ declare global {
5858
includeUspApi?: boolean;
5959
transitionCCPAAuth?: boolean;
6060
targetingParams?: {
61-
framework: ConsentFramework;
61+
framework?: ConsentFramework;
6262
};
6363
};
6464
pubData: PubData;

0 commit comments

Comments
 (0)