Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Data Controller Module: initial release #8484

Merged
merged 10 commits into from
Jul 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
195 changes: 195 additions & 0 deletions modules/dataControllerModule/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,195 @@
/**
* This module validates the configuration and filters data accordingly
* @module modules/dataController
*/
import {config} from '../../src/config.js';
import {getHook, module} from '../../src/hook.js';
import {deepAccess, deepSetValue, prefixLog} from '../../src/utils.js';
import {startAuction} from '../../src/prebid.js';

const LOG_PRE_FIX = 'Data_Controller : ';
const ALL = '*';
const MODULE_NAME = 'dataController';
const GLOBAL = {};
let _dataControllerConfig;

const _logger = prefixLog(LOG_PRE_FIX);

/**
* BidderRequests hook to intiate module and reset data object
*/
export function filterBidData(fn, req) {
if (_dataControllerConfig.filterEIDwhenSDA) {
filterEIDs(req.adUnits, req.ortb2Fragments);
}

if (_dataControllerConfig.filterSDAwhenEID) {
filterSDA(req.adUnits, req.ortb2Fragments);
}
fn.call(this, req);
return req;
}

function containsConfiguredEIDS(eidSourcesMap, bidderCode) {
if (_dataControllerConfig.filterSDAwhenEID.includes(ALL)) {
return true;
}
let bidderEIDs = eidSourcesMap.get(bidderCode);
if (bidderEIDs == undefined) {
return false;
}
let containsEIDs = false;
_dataControllerConfig.filterSDAwhenEID.some(source => {
if (bidderEIDs.has(source)) {
containsEIDs = true;
}
});
return containsEIDs;
}

function containsConfiguredSDA(segementMap, bidderCode) {
if (_dataControllerConfig.filterEIDwhenSDA.includes(ALL)) {
return true;
}
return hasValue(segementMap.get(bidderCode)) || hasValue(segementMap.get(GLOBAL))
}

function hasValue(bidderSegement) {
let containsSDA = false;
if (bidderSegement == undefined) {
return false;
}
_dataControllerConfig.filterEIDwhenSDA.some(segment => {
if (bidderSegement.has(segment)) {
containsSDA = true;
}
});
return containsSDA;
}

function getSegmentConfig(ortb2Fragments) {
let bidderSDAMap = new Map();
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there's some duplication in here, which you could avoid by reusing the same logic for both global and bidder data. Here's a possible refactor to illustrate what I mean:

let bidderSDAMap = new Map();
function collectSegments(key, data) {
   let segmentSet = constructSegment(deepAccess(data, 'user.data') || []);
   if (segmentSet && segmentSet.size > 0) bidderSDAMap.set(key, segmentSet);
}
collectSegments(GLOBAL, ortb2Fragments.global); 
Object.entries(ortb2Fragments.bidder).forEach(([bidder, data]) => collectSegments(bidder, data));
return bidderSDAMap;

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed

let globalObject = deepAccess(ortb2Fragments, 'global') || {};

collectSegments(bidderSDAMap, GLOBAL, globalObject);
if (ortb2Fragments.bidder) {
for (const [key, value] of Object.entries(ortb2Fragments.bidder)) {
collectSegments(bidderSDAMap, key, value);
}
}
return bidderSDAMap;
}

function collectSegments(bidderSDAMap, key, data) {
let segmentSet = constructSegment(deepAccess(data, 'user.data') || []);
if (segmentSet && segmentSet.size > 0) bidderSDAMap.set(key, segmentSet);
}

function constructSegment(userData) {
let segmentSet;
if (userData) {
segmentSet = new Set();
for (let i = 0; i < userData.length; i++) {
let segments = userData[i].segment;
let segmentPrefix = '';
if (userData[i].name) {
segmentPrefix = userData[i].name + ':';
}

if (userData[i].ext && userData[i].ext.segtax) {
segmentPrefix += userData[i].ext.segtax + ':';
}
for (let j = 0; j < segments.length; j++) {
segmentSet.add(segmentPrefix + segments[j].id);
}
}
}

return segmentSet;
}

function getEIDsSource(adUnits) {
let bidderEIDSMap = new Map();
adUnits.forEach(adUnit => {
adUnit.bids.forEach(bid => {
let userEIDs = deepAccess(bid, 'userIdAsEids') || [];

if (userEIDs) {
let sourceSet = new Set();
for (let i = 0; i < userEIDs.length; i++) {
let source = userEIDs[i].source;
sourceSet.add(source);
}
bidderEIDSMap.set(bid.bidder, sourceSet);
}
});
});

return bidderEIDSMap;
}

function filterSDA(adUnits, ortb2Fragments) {
let bidderEIDSMap = getEIDsSource(adUnits);
let resetGlobal = false;
for (const [key, value] of Object.entries(ortb2Fragments.bidder)) {
Copy link
Collaborator

@dgirardi dgirardi Jul 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. should this also remove user.data from global configuration, if it's not set by bidder? I'm not sure what the intent of the feature is.

If as the pub I do

setConfig({
  ortb2: {
    user: {
      data: [... stuff here ..]
    }
  }
})

and assuming there's nothing else, here ortb2Fragments would come in as:

{
   global: {user: {data: [.. stuff ..]}},
   bidder: {}
}

so this logic would have no effect, and downstream in the adapters the final ortb2 object would still contain user.data. Is that correct?

  1. value.user.data = [] should be deepSetValue(value, 'user.data', []), otherwise it can throw if any of the intermediates is missing. (Or should it be delete value?.user?.data - should it be empty, or missing?)

let resetSDA = containsConfiguredEIDS(bidderEIDSMap, key);
if (resetSDA) {
deepSetValue(value, 'user.data', []);
resetGlobal = true;
}
}
if (resetGlobal) {
deepSetValue(ortb2Fragments, 'global.user.data', [])
}
}

function filterEIDs(adUnits, ortb2Fragments) {
let segementMap = getSegmentConfig(ortb2Fragments);
let globalEidUpdate = false;
adUnits.forEach(adUnit => {
adUnit.bids.forEach(bid => {
let resetEID = containsConfiguredSDA(segementMap, bid.bidder);
if (resetEID) {
globalEidUpdate = true;
bid.userIdAsEids = [];
bid.userId = {};
if (ortb2Fragments.bidder) {
let bidderFragment = ortb2Fragments.bidder[bid.bidder];
let userExt = deepAccess(bidderFragment, 'user.ext.eids') || [];
if (userExt) {
deepSetValue(bidderFragment, 'user.ext.eids', [])
}
}
}
});
});

if (globalEidUpdate) {
deepSetValue(ortb2Fragments, 'global.user.ext.eids', [])
}
return adUnits;
}

export function init() {
const confListener = config.getConfig(MODULE_NAME, dataControllerConfig => {
const dataController = dataControllerConfig && dataControllerConfig.dataController;
if (!dataController) {
_logger.logInfo(`Data Controller is not configured`);
startAuction.getHooks({hook: filterBidData}).remove();
return;
}

if (dataController.filterEIDwhenSDA && dataController.filterSDAwhenEID) {
_logger.logInfo(`Data Controller can be configured with either filterEIDwhenSDA or filterSDAwhenEID`);
startAuction.getHooks({hook: filterBidData}).remove();
return;
}
confListener(); // unsubscribe config listener
_dataControllerConfig = dataController;

getHook('startAuction').before(filterBidData);
});
}

init();
module(MODULE_NAME, init);
29 changes: 29 additions & 0 deletions modules/dataControllerModule/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Overview

```
Module Name: Data Controller Module
```

# Description

This module will filter EIDs and SDA based on the configurations.

Sub module object with the following keys:

| param name | type | Scope | Description | Params |
| :------------ | :------------ | :------ | :------ | :------ |
| filterEIDwhenSDA | function | optional | Filters user EIDs based on SDA | bidrequest |
| filterSDAwhenEID | function | optional | Filters SDA based on configured EIDs | bidrequest |

# Module Control Configuration

```

pbjs.setConfig({
dataController: {
filterEIDwhenSDA: ['*']
filterSDAwhenEID: ['id5-sync.com']
}
});

```
Loading