Skip to content

Commit

Permalink
ATS-identityLinkIdSystem - add use3P config property to control firin…
Browse files Browse the repository at this point in the history
…g of 3P envelope endpoint (prebid#6568)
  • Loading branch information
mamatic authored and marc_tappx committed Apr 13, 2021
1 parent 67de22f commit 4297d45
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 10 deletions.
3 changes: 2 additions & 1 deletion integrationExamples/gpt/idImportLibrary_example.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
}, {
name: 'identityLink',
params: {
pid: '14' // Set your real identityLink placement ID here
pid: '14', // Set your real identityLink placement ID here
// use3P: false // true/false - If you want to use 3P endpoint to retrieve envelope. If you do not set this property to true, 3p endpoint will not be fired. By default this property is undefined and 3p request will not be fired.
},
storage: {
type: 'html5',
Expand Down
3 changes: 2 additions & 1 deletion integrationExamples/gpt/userId_example.html
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,8 @@
}, {
name: 'identityLink',
params: {
pid: '14' // Set your real identityLink placement ID here
pid: '14', // Set your real identityLink placement ID here
// use3P: false // true/false - If you want to use 3P endpoint to retrieve envelope. If you do not set this property to true, 3p endpoint will not be fired. By default this property is undefined and 3p request will not be fired.
},
storage: {
type: 'cookie',
Expand Down
8 changes: 4 additions & 4 deletions modules/identityLinkIdSystem.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,19 +67,19 @@ export const identityLinkSubmodule = {
setEnvelopeSource(true);
callback(JSON.parse(envelope).envelope);
} else {
getEnvelope(url, callback);
getEnvelope(url, callback, configParams);
}
});
} else {
getEnvelope(url, callback);
getEnvelope(url, callback, configParams);
}
};

return { callback: resp };
}
};
// return envelope from third party endpoint
function getEnvelope(url, callback) {
function getEnvelope(url, callback, configParams) {
const callbacks = {
success: response => {
let responseObj;
Expand All @@ -98,7 +98,7 @@ function getEnvelope(url, callback) {
}
};

if (!storage.getCookie('_lr_retry_request')) {
if (configParams.use3P && !storage.getCookie('_lr_retry_request')) {
setRetryCookie();
utils.logInfo('identityLink: A 3P retrieval is attempted!');
setEnvelopeSource(false);
Expand Down
1 change: 1 addition & 0 deletions modules/userId/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
* @property {(LiveIntentCollectConfig|undefined)} liCollectConfig - the config for LiveIntent's collect requests
* @property {(string|undefined)} pd - publisher provided data for reconciling ID5 IDs
* @property {(string|undefined)} emailHash - if provided, the hashed email address of a user
* @property {(string|undefined)} use3P - use to retrieve envelope from 3p endpoint
*/

/**
Expand Down
6 changes: 4 additions & 2 deletions modules/userId/userId.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ pbjs.setConfig({
}, {
name: 'identityLink',
params: {
pid: '999' // Set your real identityLink placement ID here
pid: '999', // Set your real identityLink placement ID here
// use3P: false // true/false - If you want to use 3P endpoint to retrieve envelope. If you do not set this property to true, 3p endpoint will not be fired. By default this propertt is undefined and 3p request will not be fired.
},
storage: {
type: 'cookie',
Expand Down Expand Up @@ -144,7 +145,8 @@ pbjs.setConfig({
}, {
name: 'identityLink',
params: {
pid: '999' // Set your real identityLink placement ID here
pid: '999', // Set your real identityLink placement ID here
// use3P: false // true/false - If you want to use 3P endpoint to retrieve envelope. If you do not set this property to true, 3p endpoint will not be fired. By default this property is undefined and 3p request will not be fired.
},
storage: {
type: 'html5',
Expand Down
29 changes: 27 additions & 2 deletions test/spec/modules/identityLinkIdSystem_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,21 @@ import {getStorageManager} from '../../../src/storageManager.js';
export const storage = getStorageManager();

const pid = '14';
const defaultConfigParams = { params: {pid: pid} };
let defaultConfigParams;
const responseHeader = {'Content-Type': 'application/json'}

describe('IdentityLinkId tests', function () {
let logErrorStub;

beforeEach(function () {
defaultConfigParams = { params: {pid: pid} };
logErrorStub = sinon.stub(utils, 'logError');
// remove _lr_retry_request cookie before test
storage.setCookie('_lr_retry_request', 'true', 'Thu, 01 Jan 1970 00:00:01 GMT');
});

afterEach(function () {
defaultConfigParams = {};
logErrorStub.restore();
});

Expand All @@ -34,6 +36,7 @@ describe('IdentityLinkId tests', function () {

it('should call the LiveRamp envelope endpoint', function () {
let callBackSpy = sinon.spy();
defaultConfigParams.params.use3P = true;
let submoduleCallback = identityLinkSubmodule.getId(defaultConfigParams).callback;
submoduleCallback(callBackSpy);
let request = server.requests[0];
Expand Down Expand Up @@ -62,6 +65,7 @@ describe('IdentityLinkId tests', function () {
});

it('should call the LiveRamp envelope endpoint with IAB consent string v1', function () {
defaultConfigParams.params.use3P = true;
let callBackSpy = sinon.spy();
let consentData = {
gdprApplies: true,
Expand All @@ -80,6 +84,7 @@ describe('IdentityLinkId tests', function () {
});

it('should call the LiveRamp envelope endpoint with IAB consent string v2', function () {
defaultConfigParams.params.use3P = true;
let callBackSpy = sinon.spy();
let consentData = {
gdprApplies: true,
Expand All @@ -101,6 +106,7 @@ describe('IdentityLinkId tests', function () {
});

it('should not throw Uncaught TypeError when envelope endpoint returns empty response', function () {
defaultConfigParams.params.use3P = true;
let callBackSpy = sinon.spy();
let submoduleCallback = identityLinkSubmodule.getId(defaultConfigParams).callback;
submoduleCallback(callBackSpy);
Expand All @@ -117,6 +123,7 @@ describe('IdentityLinkId tests', function () {
});

it('should log an error and continue to callback if ajax request errors', function () {
defaultConfigParams.params.use3P = true;
let callBackSpy = sinon.spy();
let submoduleCallback = identityLinkSubmodule.getId(defaultConfigParams).callback;
submoduleCallback(callBackSpy);
Expand All @@ -141,7 +148,8 @@ describe('IdentityLinkId tests', function () {
expect(request).to.be.eq(undefined);
});

it('should call the LiveRamp envelope endpoint if cookie _lr_retry_request does not exist', function () {
it('should call the LiveRamp envelope endpoint if cookie _lr_retry_request does not exist and use3P config property was set to true', function () {
defaultConfigParams.params.use3P = true;
let callBackSpy = sinon.spy();
let submoduleCallback = identityLinkSubmodule.getId(defaultConfigParams).callback;
submoduleCallback(callBackSpy);
Expand All @@ -154,4 +162,21 @@ describe('IdentityLinkId tests', function () {
);
expect(callBackSpy.calledOnce).to.be.true;
});

it('should not call the LiveRamp envelope endpoint if config property use3P is set to false', function () {
defaultConfigParams.params.use3P = false;
let callBackSpy = sinon.spy();
let submoduleCallback = identityLinkSubmodule.getId(defaultConfigParams).callback;
submoduleCallback(callBackSpy);
let request = server.requests[0];
expect(request).to.be.eq(undefined);
});

it('should not call the LiveRamp envelope endpoint if config property use3P is undefined', function () {
let callBackSpy = sinon.spy();
let submoduleCallback = identityLinkSubmodule.getId(defaultConfigParams).callback;
submoduleCallback(callBackSpy);
let request = server.requests[0];
expect(request).to.be.eq(undefined);
});
});

0 comments on commit 4297d45

Please sign in to comment.