-
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
MediaConsortium bid adapter: initial release #11892
Merged
Merged
Changes from all commits
Commits
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,273 @@ | ||
import {BANNER, VIDEO} from '../src/mediaTypes.js' | ||
import {registerBidder} from '../src/adapters/bidderFactory.js' | ||
import {generateUUID, isPlainObject, isArray, logWarn, deepClone} from '../src/utils.js' | ||
import {Renderer} from '../src/Renderer.js' | ||
import {OUTSTREAM} from '../src/video.js' | ||
import {config} from '../src/config.js'; | ||
import { getStorageManager } from '../src/storageManager.js'; | ||
|
||
const BIDDER_CODE = 'mediaConsortium' | ||
|
||
const PROFILE_API_USAGE_CONFIG_KEY = 'useProfileApi' | ||
const ONE_PLUS_X_ID_USAGE_CONFIG_KEY = 'readOnePlusXId' | ||
|
||
const SYNC_ENDPOINT = 'https://relay.hubvisor.io/v1/sync/big' | ||
const AUCTION_ENDPOINT = 'https://relay.hubvisor.io/v1/auction/big' | ||
|
||
const XANDR_OUTSTREAM_RENDERER_URL = 'https://acdn.adnxs.com/video/outstream/ANOutstreamVideo.js'; | ||
|
||
export const OPTIMIZATIONS_STORAGE_KEY = 'media_consortium_optimizations' | ||
|
||
const SYNC_TYPES = { | ||
image: 'image', | ||
redirect: 'image', | ||
iframe: 'iframe' | ||
} | ||
|
||
const storageManager = getStorageManager({ bidderCode: BIDDER_CODE }); | ||
|
||
export const spec = { | ||
version: '0.0.1', | ||
code: BIDDER_CODE, | ||
gvlid: 1112, | ||
supportedMediaTypes: [BANNER, VIDEO], | ||
isBidRequestValid(bid) { | ||
return true | ||
}, | ||
buildRequests(bidRequests, bidderRequest) { | ||
const useProfileApi = config.getConfig(PROFILE_API_USAGE_CONFIG_KEY) ?? false | ||
const readOnePlusXId = config.getConfig(ONE_PLUS_X_ID_USAGE_CONFIG_KEY) ?? false | ||
|
||
const { | ||
auctionId, | ||
bids, | ||
gdprConsent: {gdprApplies = false, consentString} = {}, | ||
ortb2: {device, site} | ||
} = bidderRequest | ||
|
||
const currentTimestamp = Date.now() | ||
const optimizations = getOptimizationsFromLocalStorage() | ||
|
||
const impressions = bids.reduce((acc, bidRequest) => { | ||
const {bidId, adUnitCode, mediaTypes} = bidRequest | ||
const optimization = optimizations[adUnitCode] | ||
|
||
if (optimization) { | ||
const {expiresAt, isEnabled} = optimization | ||
|
||
if (expiresAt >= currentTimestamp && !isEnabled) { | ||
return acc | ||
} | ||
} | ||
|
||
let finalizedMediatypes = deepClone(mediaTypes) | ||
|
||
if (mediaTypes.video && mediaTypes.video.context !== OUTSTREAM) { | ||
logWarn(`Filtering video request for adUnitCode ${adUnitCode} because context is not ${OUTSTREAM}`) | ||
|
||
if (Object.keys(finalizedMediatypes).length > 1) { | ||
delete finalizedMediatypes.video | ||
} else { | ||
return acc | ||
} | ||
} | ||
|
||
return acc.concat({id: bidId, adUnitCode, mediaTypes: finalizedMediatypes}) | ||
}, []) | ||
|
||
if (!impressions.length) { | ||
return | ||
} | ||
|
||
const request = { | ||
id: auctionId ?? generateUUID(), | ||
impressions, | ||
device, | ||
site, | ||
user: { | ||
ids: {} | ||
}, | ||
regulations: { | ||
gdpr: { | ||
applies: gdprApplies, | ||
consentString | ||
} | ||
}, | ||
timeout: 3600, | ||
options: { | ||
useProfileApi | ||
} | ||
} | ||
|
||
if (readOnePlusXId) { | ||
const fpId = getFpIdFromLocalStorage() | ||
|
||
if (fpId) { | ||
request.user.ids['1plusX'] = fpId | ||
} | ||
} | ||
|
||
const syncData = { | ||
gdpr: gdprApplies, | ||
ad_unit_codes: impressions.map(({adUnitCode}) => adUnitCode).join(',') | ||
} | ||
|
||
if (consentString) { | ||
syncData.gdpr_consent = consentString | ||
} | ||
|
||
return [ | ||
{ | ||
method: 'GET', | ||
url: SYNC_ENDPOINT, | ||
data: syncData | ||
}, | ||
{ | ||
method: 'POST', | ||
url: AUCTION_ENDPOINT, | ||
data: request | ||
} | ||
] | ||
}, | ||
interpretResponse(serverResponse, params) { | ||
if (!isValidResponse(serverResponse)) return [] | ||
|
||
const {body: {bids, optimizations}} = serverResponse | ||
|
||
if (optimizations && isArray(optimizations)) { | ||
const currentTimestamp = Date.now() | ||
|
||
const optimizationsToStore = optimizations.reduce((acc, optimization) => { | ||
const {adUnitCode, isEnabled, ttl} = optimization | ||
|
||
return { | ||
...acc, | ||
[adUnitCode]: {isEnabled, expiresAt: currentTimestamp + ttl} | ||
} | ||
}, getOptimizationsFromLocalStorage()) | ||
|
||
storageManager.setDataInLocalStorage(OPTIMIZATIONS_STORAGE_KEY, JSON.stringify(optimizationsToStore)) | ||
} | ||
|
||
return bids.map((bid) => { | ||
const { | ||
impressionId, | ||
price: {cpm, currency}, | ||
dealId, | ||
ad: { | ||
creative: {id, mediaType, size: {width, height}, markup} | ||
}, | ||
ttl = 360 | ||
} = bid | ||
|
||
const formattedBid = { | ||
requestId: impressionId, | ||
cpm, | ||
currency, | ||
dealId, | ||
ttl, | ||
netRevenue: true, | ||
creativeId: id, | ||
mediaType, | ||
width, | ||
height, | ||
ad: markup, | ||
adUrl: null | ||
} | ||
|
||
if (mediaType === VIDEO) { | ||
const impressionRequest = params.data.impressions.find(({id}) => id === impressionId) | ||
|
||
formattedBid.vastXml = markup | ||
|
||
if (impressionRequest) { | ||
formattedBid.renderer = buildXandrOutstreamRenderer(impressionId, impressionRequest.adUnitCode) | ||
} else { | ||
logWarn(`Could not find adUnitCode matching the impressionId ${impressionId} to setup the renderer`) | ||
} | ||
} | ||
|
||
return formattedBid | ||
}) | ||
}, | ||
getUserSyncs(syncOptions, serverResponses) { | ||
if (serverResponses.length !== 2) { | ||
return | ||
} | ||
|
||
const [sync] = serverResponses | ||
|
||
return sync.body?.bidders?.reduce((acc, {type, url}) => { | ||
const syncType = SYNC_TYPES[type] | ||
|
||
if (!syncType || !url) { | ||
return acc | ||
} | ||
|
||
return acc.concat({type: syncType, url}) | ||
}, []) | ||
} | ||
} | ||
|
||
registerBidder(spec) | ||
|
||
export function getOptimizationsFromLocalStorage() { | ||
try { | ||
const storedOptimizations = storageManager.getDataFromLocalStorage(OPTIMIZATIONS_STORAGE_KEY) | ||
|
||
return storedOptimizations ? JSON.parse(storedOptimizations) : {} | ||
} catch (err) { | ||
return {} | ||
} | ||
} | ||
|
||
function getFpIdFromLocalStorage() { | ||
try { | ||
return storageManager.getDataFromLocalStorage('ope_fpid') | ||
} catch (err) { | ||
return null | ||
} | ||
} | ||
|
||
function isValidResponse(response) { | ||
return isPlainObject(response) && | ||
isPlainObject(response.body) && | ||
isArray(response.body.bids) | ||
} | ||
|
||
function buildXandrOutstreamRenderer(bidId, adUnitCode) { | ||
const renderer = Renderer.install({ | ||
id: bidId, | ||
url: XANDR_OUTSTREAM_RENDERER_URL, | ||
loaded: false, | ||
adUnitCode, | ||
targetId: adUnitCode | ||
}); | ||
|
||
try { | ||
renderer.setRender(xandrOutstreamRenderer); | ||
} catch (err) { | ||
logWarn('Prebid Error calling setRender on renderer', err); | ||
} | ||
|
||
return renderer; | ||
} | ||
|
||
function xandrOutstreamRenderer(bid) { | ||
const {width, height, adUnitCode, vastXml} = bid | ||
|
||
bid.renderer.push(() => { | ||
window.ANOutstreamVideo.renderAd({ | ||
sizes: [width, height], | ||
targetId: adUnitCode, | ||
rendererOptions: { | ||
showBigPlayButton: false, | ||
showProgressBar: 'bar', | ||
content: vastXml, | ||
showVolume: false, | ||
allowFullscreen: true, | ||
skippable: false | ||
} | ||
}); | ||
}); | ||
} |
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,79 @@ | ||
# Media Consortium Bid adapter | ||
|
||
## Overview | ||
|
||
``` | ||
- Module Name: Media Consortium Bidder Adapter | ||
- Module Type: Media Consortium Bidder Adapter | ||
- Maintainer: mediaconsortium-develop@bi.garage.co.jp | ||
``` | ||
|
||
## Description | ||
|
||
Module that connects to Media Consortium demand sources and supports the following media types: `banner`, `video`. | ||
|
||
To get access to the full feature set of the adapter you'll need to allow localstorage usage in the `bidderSettings`. | ||
|
||
```javascript | ||
pbjs.bidderSettings = { | ||
mediaConsortium: { | ||
storageAllowed: true | ||
} | ||
} | ||
``` | ||
|
||
## Managing 1plusX profile API usage and FPID retrieval | ||
|
||
You can use the `setBidderConfig` function to enable or disable 1plusX profile API usage and fpid retrieval. | ||
|
||
If the keys found below are not defined, their values will default to `false`. | ||
|
||
```javascript | ||
pbjs.setBidderConfig({ | ||
bidders: ['mediaConsortium'], | ||
config: { | ||
// Controls the 1plusX profile API usage | ||
useProfileApi: true, | ||
// Controls the 1plusX fpid retrieval | ||
readOnePlusXId: true | ||
} | ||
}); | ||
``` | ||
|
||
## Test Parameters | ||
|
||
```javascript | ||
var adUnits = [ | ||
{ | ||
code: 'div-prebid-banner', | ||
mediaTypes:{ | ||
banner: { | ||
sizes: [[300, 250]], | ||
} | ||
}, | ||
bids:[ | ||
{ | ||
bidder: 'mediaConsortium', | ||
Rothalack marked this conversation as resolved.
Show resolved
Hide resolved
|
||
params: {} | ||
} | ||
] | ||
}, | ||
{ | ||
code: 'div-prebid-video', | ||
mediaTypes:{ | ||
video: { | ||
playerSize: [ | ||
[300, 250] | ||
], | ||
context: 'outstream' | ||
} | ||
}, | ||
bids:[ | ||
{ | ||
bidder: 'mediaConsortium', | ||
params: {} | ||
} | ||
] | ||
} | ||
]; | ||
``` |
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.
The user object can be useful :)