mk9-prebid
Version:
Header Bidding Management Library
74 lines (68 loc) • 2.17 kB
JavaScript
/**
* This module adds UnifiedId to the User ID module
* The {@link module:modules/userId} module is required
* @module modules/unifiedIdSystem
* @requires module:modules/userId
*/
import * as utils from '../src/utils.js'
import {ajax} from '../src/ajax.js';
import {submodule} from '../src/hook.js'
const MODULE_NAME = 'unifiedId';
/** @type {Submodule} */
export const unifiedIdSubmodule = {
/**
* used to link submodule with config
* @type {string}
*/
name: MODULE_NAME,
/**
* required for the gdpr enforcement module
*/
gvlid: 21,
/**
* decode the stored id value for passing to bid requests
* @function
* @param {{TDID:string}} value
* @returns {{tdid:Object}}
*/
decode(value) {
return (value && typeof value['TDID'] === 'string') ? { 'tdid': value['TDID'] } : undefined;
},
/**
* performs action to obtain id and return a value in the callback's response argument
* @function
* @param {SubmoduleConfig} [config]
* @returns {IdResponse|undefined}
*/
getId(config) {
const configParams = (config && config.params) || {};
if (!configParams || (typeof configParams.partner !== 'string' && typeof configParams.url !== 'string')) {
utils.logError('User ID - unifiedId submodule requires either partner or url to be defined');
return;
}
// use protocol relative urls for http or https
const url = configParams.url || `https://match.adsrvr.org/track/rid?ttd_pid=${configParams.partner}&fmt=json`;
const resp = function (callback) {
const callbacks = {
success: response => {
let responseObj;
if (response) {
try {
responseObj = JSON.parse(response);
} catch (error) {
utils.logError(error);
}
}
callback(responseObj);
},
error: error => {
utils.logError(`${MODULE_NAME}: ID fetch encountered an error`, error);
callback();
}
};
ajax(url, callbacks, undefined, {method: 'GET', withCredentials: true});
};
return {callback: resp};
}
};
submodule('userId', unifiedIdSubmodule);