-
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
Add sspBC adapter #5531
Merged
Merged
Add sspBC adapter #5531
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
59a3934
add sspbc adapter
a28b263
tests for sspbc adapter
2350cc8
sspBC adapter v4.5: set correct creativeId, add adomain to bid.meta, …
dc4d0c4
sspBC adapter v4.5: set meta.advertiserDomains, update test to expect…
7672bbc
sspBC Adapter: add ajax tests (test ad with & without gdpr)
a569a8d
sspBC Adapter: remove ajax tests
72269fd
Merge pull request #2 from prebid/master
wojciech-bialy-wpm e87dd78
Merge pull request #3 from prebid/master
wojciech-bialy-wpm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,319 @@ | ||
import * as utils from '../src/utils.js'; | ||
import { registerBidder } from '../src/adapters/bidderFactory.js'; | ||
import { BANNER } from '../src/mediaTypes.js'; | ||
|
||
const BIDDER_CODE = 'sspBC'; | ||
const BIDDER_URL = 'https://ssp.wp.pl/bidder/'; | ||
const SYNC_URL = 'https://ssp.wp.pl/bidder/usersync'; | ||
const TMAX = 450; | ||
const BIDDER_VERSION = '4.5'; | ||
const W = window; | ||
const { navigator } = W; | ||
|
||
const cookieSupport = () => { | ||
const isSafari = /^((?!chrome|android|crios|fxios).)*safari/i.test(navigator.userAgent); | ||
const useCookies = navigator.cookieEnabled || !!document.cookie.length; | ||
|
||
return !isSafari && useCookies; | ||
}; | ||
|
||
const applyClientHints = ortbRequest => { | ||
const connection = navigator.connection || false; | ||
const viewport = W.visualViewport || false; | ||
const segments = []; | ||
const hints = { | ||
'CH-Ect': connection.effectiveType, | ||
'CH-Rtt': connection.rtt, | ||
'CH-SaveData': connection.saveData, | ||
'CH-Downlink': connection.downlink, | ||
'CH-DeviceMemory': navigator.deviceMemory, | ||
'CH-Dpr': W.devicePixelRatio, | ||
'CH-ViewportWidth': viewport.width, | ||
}; | ||
|
||
Object.keys(hints).forEach(key => { | ||
const hint = hints[key]; | ||
|
||
if (hint) { | ||
segments.push({ | ||
name: key, | ||
value: hint.toString(), | ||
}); | ||
} | ||
}); | ||
const data = [ | ||
{ | ||
id: '12', | ||
name: 'NetInfo', | ||
segment: segments, | ||
}]; | ||
|
||
ortbRequest.user = Object.assign(ortbRequest.user, { data }); | ||
}; | ||
|
||
function applyGdpr(bidderRequest, ortbRequest) { | ||
if (bidderRequest && bidderRequest.gdprConsent) { | ||
ortbRequest.regs = Object.assign(ortbRequest.regs, { '[ortb_extensions.gdpr]': bidderRequest.gdprConsent.gdprApplies ? 1 : 0 }); | ||
ortbRequest.user = Object.assign(ortbRequest.user, { '[ortb_extensions.consent]': bidderRequest.gdprConsent.consentString }); | ||
} | ||
} | ||
|
||
function setOnAny(collection, key) { | ||
for (let i = 0, result; i < collection.length; i++) { | ||
result = utils.deepAccess(collection[i], key); | ||
|
||
if (result) { | ||
return result; | ||
} | ||
} | ||
} | ||
|
||
/** | ||
* @param {object} slot Ad Unit Params by Prebid | ||
* @returns {object} Banner by OpenRTB 2.5 §3.2.6 | ||
*/ | ||
function mapBanner(slot) { | ||
if (slot.mediaType === 'banner' || | ||
utils.deepAccess(slot, 'mediaTypes.banner') || | ||
(!slot.mediaType && !slot.mediaTypes)) { | ||
const format = slot.sizes.map(size => ({ | ||
w: size[0], | ||
h: size[1], | ||
})); | ||
|
||
// override - tylko 1szy wymiar | ||
// format = format.slice(0, 1); | ||
return { | ||
format, | ||
id: slot.bidId, | ||
}; | ||
} | ||
} | ||
|
||
function mapImpression(slot) { | ||
const imp = { | ||
id: slot.params.id, | ||
banner: mapBanner(slot), | ||
/* native: mapNative(slot), */ | ||
tagid: slot.params.id, | ||
}; | ||
|
||
const bidfloor = parseFloat(slot.params.bidfloor); | ||
|
||
if (bidfloor) { | ||
imp.bidfloor = bidfloor; | ||
} | ||
|
||
return imp; | ||
} | ||
|
||
function renderCreative(site, auctionId, bid, seat, request) { | ||
let gam; | ||
|
||
const mcad = { | ||
id: auctionId, | ||
seat, | ||
seatbid: [{ | ||
bid: [bid], | ||
}], | ||
}; | ||
|
||
const mcbase = btoa(encodeURI(JSON.stringify(mcad))); | ||
|
||
if (bid.adm) { | ||
// parse adm for gam config | ||
try { | ||
gam = JSON.parse(bid.adm).gam; | ||
|
||
if (!gam || !Object.keys(gam).length) { | ||
gam = undefined; | ||
} else { | ||
gam.namedSizes = ['fluid']; | ||
gam.div = 'div-gpt-ad-x01'; | ||
gam.targeting = Object.assign(gam.targeting || {}, { | ||
OAS_retarg: '0', | ||
PREBID_ON: '1', | ||
emptygaf: '0', | ||
}); | ||
} | ||
|
||
if (gam && !gam.targeting) { | ||
gam.targeting = {}; | ||
} | ||
} catch (err) { | ||
utils.logWarn('Could not parse adm data', bid.adm); | ||
} | ||
} | ||
|
||
let adcode = `<head> | ||
<title></title> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<style> | ||
body { | ||
background-color: transparent; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
</style> | ||
<script> | ||
window.rekid = ${site.id}; | ||
window.wp_sn = "${site.sn}"; | ||
window.mcad = JSON.parse(decodeURI(atob("${mcbase}"))); | ||
window.gdpr = ${JSON.stringify(request.gdprConsent)}; | ||
window.page = "${site.page}"; | ||
window.ref = "${site.ref}"; | ||
`; | ||
|
||
if (gam) { | ||
adcode += `window.gam = ${JSON.stringify(gam)};`; | ||
} | ||
|
||
adcode += `</script> | ||
</head> | ||
<body> | ||
<div id="c"></div> | ||
<script id="wpjslib" crossorigin src="//std.wpcdn.pl/wpjslib/wpjslib-inline.js" async defer></script> | ||
</body> | ||
</html>`; | ||
|
||
return adcode; | ||
} | ||
|
||
const spec = { | ||
code: BIDDER_CODE, | ||
aliases: [], | ||
supportedMediaTypes: [BANNER], | ||
isBidRequestValid(bid) { | ||
if (bid.params && bid.params.siteId && bid.params.id) { | ||
return true; | ||
} | ||
|
||
return false; | ||
}, | ||
buildRequests(validBidRequests, bidderRequest) { | ||
if ((!validBidRequests) || (validBidRequests.length < 1)) { | ||
return false; | ||
} | ||
|
||
const siteId = setOnAny(validBidRequests, 'params.siteId'); | ||
const page = setOnAny(validBidRequests, 'params.page') || bidderRequest.refererInfo.referer; | ||
const domain = setOnAny(validBidRequests, 'params.domain') || utils.parseUrl(page).hostname; | ||
const tmax = setOnAny(validBidRequests, 'params.tmax') ? parseInt(setOnAny(validBidRequests, 'params.tmax'), 10) : TMAX; | ||
const pbver = '$prebid.version$'; | ||
const testMode = setOnAny(validBidRequests, 'params.test') ? 1 : undefined; | ||
|
||
let ref; | ||
|
||
try { | ||
if (W.self === W.top && document.referrer) { ref = document.referrer; } | ||
} catch (e) { | ||
} | ||
|
||
const payload = { | ||
id: bidderRequest.auctionId, | ||
site: { id: siteId, page, domain, ref }, | ||
imp: validBidRequests.map(slot => mapImpression(slot)), | ||
tmax, | ||
user: {}, | ||
regs: {}, | ||
test: testMode, | ||
}; | ||
|
||
applyGdpr(bidderRequest, payload); | ||
applyClientHints(payload); | ||
|
||
return { | ||
method: 'POST', | ||
url: BIDDER_URL + '?cs=' + cookieSupport() + '&bdver=' + BIDDER_VERSION + '&pbver=' + pbver + '&inver=0', | ||
data: JSON.stringify(payload), | ||
bidderRequest, | ||
}; | ||
}, | ||
|
||
interpretResponse(serverResponse, request) { | ||
const response = serverResponse.body; | ||
const bids = []; | ||
let site = JSON.parse(request.data).site; // get page and referer data from request | ||
site.sn = response.sn || 'mc_adapter'; // WPM site name (wp_sn) | ||
let seat; | ||
|
||
if (response.seatbid !== undefined) { | ||
response.seatbid.forEach(seatbid => { | ||
seat = seatbid.seat; | ||
seatbid.bid.forEach(serverBid => { | ||
const bidRequest = request.bidderRequest.bids.filter(b => b.params.id === serverBid.impid)[0]; | ||
|
||
if (bidRequest) { | ||
const bidFloor = bidRequest.params.bidFloor || 0; | ||
const bidCpm = bidRequest.params.flatCpm; | ||
|
||
if (!serverBid.gam && bidRequest.params.gam) { | ||
// build GAM config | ||
serverBid.gam = JSON.stringify({ | ||
placement: bidRequest.params.gam, | ||
multiplier: 1, | ||
floor: bidRequest.params.gamFloor, | ||
ceil: 100, | ||
namedSizes: ['fluid'], | ||
div: 'div-gpt-ad-x01', | ||
targeting: { | ||
OAS_retarg: '0', | ||
PREBID_ON: '1', | ||
DFPHASH: '', | ||
emptygaf: '0', | ||
}, | ||
}); | ||
} | ||
|
||
const bid = { | ||
requestId: bidRequest.bidId, | ||
creativeId: serverBid.crid || 'mcad_' + request.bidderRequest.auctionId + '_' + request.bidderRequest.params.id, | ||
cpm: bidCpm || serverBid.price, | ||
currency: response.cur, | ||
ttl: serverBid.exp || 300, | ||
width: serverBid.w, | ||
height: serverBid.h, | ||
bidderCode: BIDDER_CODE, | ||
mediaType: 'banner', | ||
meta: { | ||
advertiserDomains: serverBid.adomain, | ||
}, | ||
netRevenue: true, | ||
ad: renderCreative(site, response.id, serverBid, seat, request.bidderRequest), | ||
}; | ||
|
||
if (bid.cpm > 0) { | ||
if (bid.cpm >= bidFloor) { | ||
bids.push(bid); | ||
} else { | ||
utils.logWarn('Discarding bid due to bidFloor setting', bid.cpm, bidFloor); | ||
} | ||
} | ||
} else { | ||
utils.logWarn('Discarding response - no matching request', serverBid.impid); | ||
} | ||
}); | ||
}); | ||
} | ||
|
||
return bids; | ||
}, | ||
getUserSyncs(syncOptions) { | ||
if (syncOptions.iframeEnabled) { | ||
return [{ | ||
type: 'iframe', | ||
url: SYNC_URL, | ||
}]; | ||
} | ||
utils.logWarn('sspBC adapter requires iframe based user sync.'); | ||
}, | ||
onTimeout() { | ||
}, | ||
}; | ||
|
||
registerBidder(spec); | ||
|
||
export { | ||
spec, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Overview | ||
|
||
Module Name: sspBC Bidder Adapter | ||
Module Type: Bidder Adapter | ||
Maintainer: wojciech.bialy@grupawp.pl | ||
|
||
# Description | ||
|
||
Module that connects to Wirtualna Polska Media header bidding endpoint to fetch bids. | ||
Only banner format is supported. | ||
Supported currencies: USD, EUR, PLN | ||
|
||
|
||
Required parameters: | ||
|
||
|
||
# Test Parameters | ||
``` | ||
var adUnits = [ | ||
// Banner adUnit | ||
{ | ||
code: 'banner-div', | ||
mediaTypes: { | ||
banner: { | ||
sizes: [[300, 250], [300,600]] | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'sspBC', | ||
params: { | ||
id: '006', // required | ||
siteId: '235911', // required | ||
domain: 'somesite.pl', // optional | ||
page: 'somesite.pl/somepage.html', // optional | ||
tmax: 250 // optional | ||
} | ||
}] | ||
} | ||
]; | ||
``` |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
please create meta.advertiserDomains
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.
see http://prebid.org/dev-docs/bidder-adaptor.html
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.
Understood! I've looked into it, and while our JSON endpoint does not return bid metadata, it should be available server-side (as underlying logic is using openRTB protocol).
I've created a change request, will update adapter & pull request once it's done.
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.
Adapter & test have been updated, bids now have meta.advertiserDomains property:
meta: { advertiserDomains: serverBid.adomain, },