mk9-prebid
Version:
Header Bidding Management Library
92 lines (82 loc) • 2.05 kB
JavaScript
/**
* This module adds Adtelligent DMP Tokens to the User ID module
* The {@link module:modules/userId} module is required
* @module modules/adtelligentIdSystem
* @requires module:modules/userId
*/
import * as ajax from '../src/ajax.js';
import { submodule } from '../src/hook.js';
const gvlid = 410;
const moduleName = 'adtelligent';
const syncUrl = 'https://idrs.adtelligent.com/get';
function buildUrl(opts) {
const queryPairs = [];
for (let key in opts) {
queryPairs.push(`${key}=${encodeURIComponent(opts[key])}`);
}
return `${syncUrl}?${queryPairs.join('&')}`;
}
function requestRemoteIdAsync(url, cb) {
ajax.ajaxBuilder()(
url,
{
success: response => {
const jsonResponse = JSON.parse(response);
const { u: dmpId } = jsonResponse;
cb(dmpId);
},
error: () => {
cb();
}
},
null,
{
method: 'GET',
contentType: 'application/json',
withCredentials: true
}
);
}
/** @type {Submodule} */
export const adtelligentIdModule = {
/**
* used to link submodule with config
* @type {string}
*/
name: moduleName,
gvlid: gvlid,
/**
* decode the stored id value for passing to bid requests
* @function
* @returns {{adtelligentId: string}}
*/
decode(uid) {
return { adtelligentId: uid };
},
/**
* get the Adtelligent Id from local storages and initiate a new user sync
* @function
* @param {SubmoduleConfig} [config]
* @param {ConsentData} [consentData]
* @returns {IdResponse}
*/
getId(config, consentData) {
const gdpr = consentData && consentData.gdprApplies ? 1 : 0;
const gdprConsent = gdpr ? consentData.consentString : '';
const url = buildUrl({
gdpr,
gdprConsent
});
if (window.adtDmp && window.adtDmp.ready) {
return { id: window.adtDmp.getUID() }
}
return {
callback: (cb) => {
requestRemoteIdAsync(url, (id) => {
cb(id);
});
}
}
}
};
submodule('userId', adtelligentIdModule);