-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
New Module: Bid response filter #12147
Changes from 7 commits
ce5bcdb
a89fcbd
ed8dda8
5697f4e
585bb46
66bc55a
8366048
f90c448
fb9458c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import { auctionManager } from '../../src/auctionManager.js'; | ||
import { config } from '../../src/config.js'; | ||
import { getHook } from '../../src/hook.js'; | ||
|
||
export const MODULE_NAME = 'bidResponseFilter'; | ||
export const BID_CATEGORY_REJECTION_REASON = 'Category is not allowed'; | ||
export const BID_ADV_DOMAINS_REJECTION_REASON = 'Adv domain is not allowed'; | ||
export const BID_ATTR_REJECTION_REASON = 'Attr is not allowed'; | ||
|
||
function init() { | ||
getHook('addBidResponse').before(addBidResponseHook); | ||
}; | ||
|
||
export function addBidResponseHook(next, adUnitCode, bid, reject, index = auctionManager.index) { | ||
const {bcat = [], badv = []} = index.getOrtb2(bid) || {}; | ||
const battr = index.getBidRequest(bid)?.ortb2Imp[bid.mediaType]?.battr || index.getAdUnit(bid)?.ortb2Imp[bid.mediaType]?.battr || []; | ||
const moduleConfig = config.getConfig(MODULE_NAME); | ||
|
||
const catConfig = {enforce: true, blockUnknown: true, ...(moduleConfig?.cat || {})}; | ||
const advConfig = {enforce: true, blockUnknown: true, ...(moduleConfig?.adv || {})}; | ||
const attrConfig = {enforce: true, blockUnknown: true, ...(moduleConfig?.attr || {})}; | ||
|
||
const { primaryCatId, secondaryCatIds = [], advertiserDomains = [], attr: metaAttr } = bid.meta || {}; | ||
|
||
// checking if bid fulfills ortb2 fields rules | ||
if ((catConfig.enforce && bcat.some(category => [primaryCatId, ...secondaryCatIds].includes(category))) || | ||
(catConfig.blockUnknown && !primaryCatId)) { | ||
reject(BID_CATEGORY_REJECTION_REASON); | ||
} else if ((advConfig.enforce && badv.some(domain => advertiserDomains.includes(domain))) || | ||
(advConfig.blockUnknown && !advertiserDomains.length)) { | ||
reject(BID_ADV_DOMAINS_REJECTION_REASON); | ||
} else if ((attrConfig.enforce && battr.includes(metaAttr)) || | ||
(attrConfig.blockUnknown && !metaAttr)) { | ||
reject(BID_ATTR_REJECTION_REASON); | ||
} else { | ||
return next(adUnitCode, bid, reject); | ||
} | ||
} | ||
|
||
init(); |
Original file line number | Diff line number | Diff line change | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -100,6 +100,20 @@ function validateSizes(sizes, targLength) { | |||||||||||
return cleanSizes; | ||||||||||||
} | ||||||||||||
|
||||||||||||
function setBattrForAdUnit(adUnit, mediaType) { | ||||||||||||
const ortb2Imp = adUnit.ortb2Imp || {}; | ||||||||||||
const mediaTypes = adUnit.mediaTypes || {}; | ||||||||||||
|
||||||||||||
if (ortb2Imp[mediaType]?.battr && mediaTypes[mediaType]?.battr && (ortb2Imp[mediaType]?.battr !== mediaTypes[mediaType]?.battr)) { | ||||||||||||
logWarn('battr field differ between ortb2Imp and mediaTypes'); | ||||||||||||
} | ||||||||||||
|
||||||||||||
const battr = ortb2Imp[mediaType]?.battr || mediaTypes[mediaType]?.battr; | ||||||||||||
|
||||||||||||
adUnit.ortb2Imp = {...ortb2Imp, [mediaType]: {...(ortb2Imp[mediaType] || {}), battr}}; | ||||||||||||
adUnit.mediaTypes = {...mediaTypes, [mediaType]: {...(mediaTypes[mediaType] || {}), battr}}; | ||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this would add
Suggested change
could you please also add some tests? |
||||||||||||
} | ||||||||||||
|
||||||||||||
function validateBannerMediaType(adUnit) { | ||||||||||||
const validatedAdUnit = deepClone(adUnit); | ||||||||||||
const banner = validatedAdUnit.mediaTypes.banner; | ||||||||||||
|
@@ -112,6 +126,7 @@ function validateBannerMediaType(adUnit) { | |||||||||||
logError('Detected a mediaTypes.banner object without a proper sizes field. Please ensure the sizes are listed like: [[300, 250], ...]. Removing invalid mediaTypes.banner object from request.'); | ||||||||||||
delete validatedAdUnit.mediaTypes.banner | ||||||||||||
} | ||||||||||||
setBattrForAdUnit(validatedAdUnit, 'banner'); | ||||||||||||
return validatedAdUnit; | ||||||||||||
} | ||||||||||||
|
||||||||||||
|
@@ -135,6 +150,7 @@ function validateVideoMediaType(adUnit) { | |||||||||||
} | ||||||||||||
} | ||||||||||||
validateOrtbVideoFields(validatedAdUnit); | ||||||||||||
setBattrForAdUnit(validatedAdUnit, 'video'); | ||||||||||||
return validatedAdUnit; | ||||||||||||
} | ||||||||||||
|
||||||||||||
|
@@ -184,6 +200,7 @@ function validateNativeMediaType(adUnit) { | |||||||||||
logError('Please use an array of sizes for native.icon.sizes field. Removing invalid mediaTypes.native.icon.sizes property from request.'); | ||||||||||||
delete validatedAdUnit.mediaTypes.native.icon.sizes; | ||||||||||||
} | ||||||||||||
setBattrForAdUnit(validatedAdUnit, 'native'); | ||||||||||||
return validatedAdUnit; | ||||||||||||
} | ||||||||||||
|
||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
import { BID_ADV_DOMAINS_REJECTION_REASON, BID_ATTR_REJECTION_REASON, BID_CATEGORY_REJECTION_REASON, MODULE_NAME, PUBLISHER_FILTER_REJECTION_REASON, addBidResponseHook } from '../../../modules/bidResponseFilter'; | ||
import { config } from '../../../src/config'; | ||
|
||
describe('bidResponseFilter', () => { | ||
let mockAuctionIndex | ||
beforeEach(() => { | ||
config.resetConfig(); | ||
mockAuctionIndex = { | ||
getBidRequest: () => {}, | ||
getAdUnit: () => {} | ||
}; | ||
}); | ||
|
||
it('should pass the bid after successful ortb2 rules validation', () => { | ||
const call = sinon.stub(); | ||
|
||
mockAuctionIndex.getOrtb2 = () => ({ | ||
badv: [], bcat: ['BANNED_CAT1', 'BANNED_CAT2'] | ||
}); | ||
|
||
const bid = { | ||
meta: { | ||
advertiserDomains: ['domain1.com', 'domain2.com'], | ||
primaryCatId: 'EXAMPLE-CAT-ID', | ||
attr: 'attr' | ||
} | ||
}; | ||
|
||
addBidResponseHook(call, 'adcode', bid, () => {}, mockAuctionIndex); | ||
sinon.assert.calledOnce(call); | ||
}); | ||
|
||
it('should reject the bid after failed ortb2 cat rule validation', () => { | ||
const reject = sinon.stub(); | ||
const call = sinon.stub(); | ||
const bid = { | ||
meta: { | ||
advertiserDomains: ['domain1.com', 'domain2.com'], | ||
primaryCatId: 'BANNED_CAT1', | ||
attr: 'attr' | ||
} | ||
}; | ||
mockAuctionIndex.getOrtb2 = () => ({ | ||
badv: [], bcat: ['BANNED_CAT1', 'BANNED_CAT2'] | ||
}); | ||
|
||
addBidResponseHook(call, 'adcode', bid, reject, mockAuctionIndex); | ||
sinon.assert.calledWith(reject, BID_CATEGORY_REJECTION_REASON); | ||
}); | ||
|
||
it('should reject the bid after failed ortb2 adv domains rule validation', () => { | ||
const rejection = sinon.stub(); | ||
const call = sinon.stub(); | ||
const bid = { | ||
meta: { | ||
advertiserDomains: ['domain1.com', 'domain2.com'], | ||
primaryCatId: 'VALID_CAT', | ||
attr: 'attr' | ||
} | ||
}; | ||
mockAuctionIndex.getOrtb2 = () => ({ | ||
badv: ['domain2.com'], bcat: ['BANNED_CAT1', 'BANNED_CAT2'] | ||
}); | ||
|
||
addBidResponseHook(call, 'adcode', bid, rejection, mockAuctionIndex); | ||
sinon.assert.calledWith(rejection, BID_ADV_DOMAINS_REJECTION_REASON); | ||
}); | ||
|
||
it('should reject the bid after failed ortb2 attr rule validation', () => { | ||
const reject = sinon.stub(); | ||
const call = sinon.stub(); | ||
const bid = { | ||
meta: { | ||
advertiserDomains: ['validdomain1.com', 'validdomain2.com'], | ||
primaryCatId: 'VALID_CAT', | ||
attr: 'BANNED_ATTR' | ||
}, | ||
mediaType: 'video' | ||
}; | ||
mockAuctionIndex.getOrtb2 = () => ({ | ||
badv: ['domain2.com'], bcat: ['BANNED_CAT1', 'BANNED_CAT2'] | ||
}); | ||
|
||
mockAuctionIndex.getBidRequest = () => ({ | ||
ortb2Imp: { | ||
video: { | ||
battr: 'BANNED_ATTR' | ||
} | ||
} | ||
}) | ||
|
||
addBidResponseHook(call, 'adcode', bid, reject, mockAuctionIndex); | ||
sinon.assert.calledWith(reject, BID_ATTR_REJECTION_REASON); | ||
}); | ||
|
||
it('should omit the validation if the flag is set to false', () => { | ||
const call = sinon.stub(); | ||
const bid = { | ||
meta: { | ||
advertiserDomains: ['validdomain1.com', 'validdomain2.com'], | ||
primaryCatId: 'BANNED_CAT1', | ||
attr: 'valid_attr' | ||
} | ||
}; | ||
|
||
mockAuctionIndex.getOrtb2 = () => ({ | ||
badv: ['domain2.com'], bcat: ['BANNED_CAT1', 'BANNED_CAT2'] | ||
}); | ||
|
||
config.setConfig({[MODULE_NAME]: {cat: {enforce: false}}}); | ||
|
||
addBidResponseHook(call, 'adcode', bid, () => {}, mockAuctionIndex); | ||
sinon.assert.calledOnce(call); | ||
}); | ||
|
||
it('should allow bid for unknown flag set to false', () => { | ||
const call = sinon.stub(); | ||
const bid = { | ||
meta: { | ||
advertiserDomains: ['validdomain1.com', 'validdomain2.com'], | ||
primaryCatId: undefined, | ||
attr: 'valid_attr' | ||
} | ||
}; | ||
|
||
mockAuctionIndex.getOrtb2 = () => ({ | ||
badv: ['domain2.com'], bcat: ['BANNED_CAT1', 'BANNED_CAT2'] | ||
}); | ||
|
||
config.setConfig({[MODULE_NAME]: {cat: {blockUnknown: false}}}); | ||
|
||
addBidResponseHook(call, 'adcode', bid, () => {}); | ||
sinon.assert.calledOnce(call); | ||
}); | ||
}) |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -121,7 +121,9 @@ describe('Geniee adapter tests', () => { | |
currency: 'JPY', | ||
mediaType: 'banner', | ||
meta: { | ||
advertiserDomains: ['geniee.co.jp'] | ||
advertiserDomains: ['geniee.co.jp'], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. was this failing tests? it shouldn't need to be changed - you may need to tear down the bidResponseFilter tests. (if this was failing, more will likely be affected in the future, so it's better to try to get rid of test side effects). |
||
primaryCatId: 'IAB1', | ||
secondaryCatIds: ['IAB1'] | ||
}, | ||
netRevenue: true, | ||
requestId: 'bid-id', | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should give some clue as to where the problem is - e.g.
adUnit '${adUnit.code}' has ...
or...and mediaTypes:', adUnit
), or both