-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Oxxion Analytics Adapter : initial adapter release (#9682)
* oxxion Analytics Adapter * debug(oxxionRtdProvider): onAuctionInit() * Revert "debug(oxxionRtdProvider): onAuctionInit()" This reverts commit d0894e3. * Update oxxionAnalyticsAdapter.js * Update oxxionAnalyticsAdapter.js * Update oxxionAnalyticsAdapter_spec.js * oxxionAnalyticsAdapter manage referer * Update oxxionAnalyticsAdapter.js --------- Co-authored-by: Anthony Guyot <anthony.guyot@mediasquare.fr>
- Loading branch information
1 parent
e24dc79
commit d0c1d08
Showing
3 changed files
with
569 additions
and
0 deletions.
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,212 @@ | ||
import adapter from '../libraries/analyticsAdapter/AnalyticsAdapter.js'; | ||
import adapterManager from '../src/adapterManager.js'; | ||
import CONSTANTS from '../src/constants.json'; | ||
import { ajax } from '../src/ajax.js'; | ||
import { getRefererInfo } from '../src/refererDetection.js'; | ||
|
||
const analyticsType = 'endpoint'; | ||
const url = 'URL_TO_SERVER_ENDPOINT'; | ||
|
||
const { | ||
EVENTS: { | ||
AUCTION_END, | ||
BID_WON, | ||
BID_RESPONSE, | ||
BID_REQUESTED, | ||
BID_TIMEOUT, | ||
} | ||
} = CONSTANTS; | ||
|
||
let saveEvents = {} | ||
let allEvents = {} | ||
let auctionEnd = {} | ||
let initOptions = {} | ||
let endpoint = 'https://default' | ||
let requestsAttributes = ['adUnitCode', 'auctionId', 'bidder', 'bidderCode', 'bidId', 'cpm', 'creativeId', 'currency', 'width', 'height', 'mediaType', 'netRevenue', 'originalCpm', 'originalCurrency', 'requestId', 'size', 'source', 'status', 'timeToRespond', 'transactionId', 'ttl', 'sizes', 'mediaTypes', 'src', 'params', 'userId', 'labelAny', 'bids', 'adId']; | ||
|
||
function getAdapterNameForAlias(aliasName) { | ||
return adapterManager.aliasRegistry[aliasName] || aliasName; | ||
} | ||
|
||
function filterAttributes(arg, removead) { | ||
let response = {}; | ||
if (typeof arg == 'object') { | ||
if (typeof arg['bidderCode'] == 'string') { | ||
response['originalBidder'] = getAdapterNameForAlias(arg['bidderCode']); | ||
} else if (typeof arg['bidder'] == 'string') { | ||
response['originalBidder'] = getAdapterNameForAlias(arg['bidder']); | ||
} | ||
if (!removead && typeof arg['ad'] != 'undefined') { | ||
response['ad'] = arg['ad']; | ||
} | ||
if (typeof arg['gdprConsent'] != 'undefined') { | ||
response['gdprConsent'] = {}; | ||
if (typeof arg['gdprConsent']['consentString'] != 'undefined') { response['gdprConsent']['consentString'] = arg['gdprConsent']['consentString']; } | ||
} | ||
if (typeof arg['meta'] == 'object' && typeof arg['meta']['advertiserDomains'] != 'undefined') { | ||
response['meta'] = {'advertiserDomains': arg['meta']['advertiserDomains']}; | ||
} | ||
requestsAttributes.forEach((attr) => { | ||
if (typeof arg[attr] != 'undefined') { response[attr] = arg[attr]; } | ||
}); | ||
if (typeof response['creativeId'] == 'number') { response['creativeId'] = response['creativeId'].toString(); } | ||
} | ||
return response; | ||
} | ||
|
||
function cleanAuctionEnd(args) { | ||
let response = {}; | ||
let filteredObj; | ||
let objects = ['bidderRequests', 'bidsReceived', 'noBids', 'adUnits']; | ||
objects.forEach((attr) => { | ||
if (Array.isArray(args[attr])) { | ||
response[attr] = []; | ||
args[attr].forEach((obj) => { | ||
filteredObj = filterAttributes(obj, true); | ||
if (typeof obj['bids'] == 'object') { | ||
filteredObj['bids'] = []; | ||
obj['bids'].forEach((bid) => { | ||
filteredObj['bids'].push(filterAttributes(bid, true)); | ||
}); | ||
} | ||
response[attr].push(filteredObj); | ||
}); | ||
} | ||
}); | ||
return response; | ||
} | ||
|
||
function cleanCreatives(args) { | ||
return filterAttributes(args, false); | ||
} | ||
|
||
function enhanceMediaType(arg) { | ||
saveEvents['bidRequested'].forEach((bidRequested) => { | ||
if (bidRequested['auctionId'] == arg['auctionId'] && Array.isArray(bidRequested['bids'])) { | ||
bidRequested['bids'].forEach((bid) => { | ||
if (bid['transactionId'] == arg['transactionId'] && bid['bidId'] == arg['requestId']) { arg['mediaTypes'] = bid['mediaTypes']; } | ||
}); | ||
} | ||
}); | ||
return arg; | ||
} | ||
|
||
function addBidResponse(args) { | ||
let eventType = BID_RESPONSE; | ||
let argsCleaned = cleanCreatives(JSON.parse(JSON.stringify(args))); ; | ||
if (allEvents[eventType] == undefined) { allEvents[eventType] = [] } | ||
allEvents[eventType].push(argsCleaned); | ||
} | ||
|
||
function addBidRequested(args) { | ||
let eventType = BID_REQUESTED; | ||
let argsCleaned = filterAttributes(args, true); | ||
if (saveEvents[eventType] == undefined) { saveEvents[eventType] = [] } | ||
saveEvents[eventType].push(argsCleaned); | ||
} | ||
|
||
function addTimeout(args) { | ||
let eventType = BID_TIMEOUT; | ||
if (saveEvents[eventType] == undefined) { saveEvents[eventType] = [] } | ||
saveEvents[eventType].push(args); | ||
let argsCleaned = []; | ||
let argsDereferenced = JSON.parse(JSON.stringify(args)); | ||
argsDereferenced.forEach((attr) => { | ||
argsCleaned.push(filterAttributes(JSON.parse(JSON.stringify(attr)), false)); | ||
}); | ||
if (auctionEnd[eventType] == undefined) { auctionEnd[eventType] = [] } | ||
auctionEnd[eventType].push(argsCleaned); | ||
} | ||
|
||
function addAuctionEnd(args) { | ||
let eventType = AUCTION_END; | ||
if (saveEvents[eventType] == undefined) { saveEvents[eventType] = [] } | ||
saveEvents[eventType].push(args); | ||
let argsCleaned = cleanAuctionEnd(JSON.parse(JSON.stringify(args))); | ||
if (auctionEnd[eventType] == undefined) { auctionEnd[eventType] = [] } | ||
auctionEnd[eventType].push(argsCleaned); | ||
} | ||
|
||
function handleBidWon(args) { | ||
args = enhanceMediaType(filterAttributes(JSON.parse(JSON.stringify(args)), true)); | ||
let increment = args['cpm']; | ||
if (typeof saveEvents['auctionEnd'] == 'object') { | ||
saveEvents['auctionEnd'].forEach((auction) => { | ||
if (auction['auctionId'] == args['auctionId'] && typeof auction['bidsReceived'] == 'object') { | ||
auction['bidsReceived'].forEach((bid) => { | ||
if (bid['transactionId'] == args['transactionId'] && bid['adId'] != args['adId']) { | ||
if (args['cpm'] < bid['cpm']) { | ||
increment = 0; | ||
} else if (increment > args['cpm'] - bid['cpm']) { | ||
increment = args['cpm'] - bid['cpm']; | ||
} | ||
} | ||
}); | ||
} | ||
}); | ||
} | ||
args['cpmIncrement'] = increment; | ||
args['referer'] = encodeURIComponent(getRefererInfo().page || getRefererInfo().topmostLocation); | ||
if (typeof saveEvents.bidRequested == 'object' && saveEvents.bidRequested.length > 0 && saveEvents.bidRequested[0].gdprConsent) { args.gdpr = saveEvents.bidRequested[0].gdprConsent; } | ||
ajax(endpoint + '.oxxion.io/analytics/bid_won', null, JSON.stringify(args), {method: 'POST', withCredentials: true}); | ||
} | ||
|
||
function handleAuctionEnd() { | ||
ajax(endpoint + '.oxxion.io/analytics/auctions', function (data) { | ||
let list = JSON.parse(data); | ||
if (Array.isArray(list) && typeof allEvents['bidResponse'] != 'undefined') { | ||
let alreadyCalled = []; | ||
allEvents['bidResponse'].forEach((bidResponse) => { | ||
let tmpId = bidResponse['originalBidder'] + '_' + bidResponse['creativeId']; | ||
if (list.includes(tmpId) && !alreadyCalled.includes(tmpId)) { | ||
alreadyCalled.push(tmpId); | ||
ajax(endpoint + '.oxxion.io/analytics/creatives', null, JSON.stringify(bidResponse), {method: 'POST', withCredentials: true}); | ||
} | ||
}); | ||
} | ||
allEvents = {}; | ||
}, JSON.stringify(auctionEnd), {method: 'POST', withCredentials: true}); | ||
auctionEnd = {}; | ||
} | ||
|
||
let oxxionAnalytics = Object.assign(adapter({url, analyticsType}), { | ||
track({ | ||
eventType, | ||
args | ||
}) { | ||
switch (eventType) { | ||
case AUCTION_END: | ||
addAuctionEnd(args); | ||
handleAuctionEnd(); | ||
break; | ||
case BID_WON: | ||
handleBidWon(args); | ||
break; | ||
case BID_RESPONSE: | ||
addBidResponse(args); | ||
break; | ||
case BID_REQUESTED: | ||
addBidRequested(args); | ||
break; | ||
case BID_TIMEOUT: | ||
addTimeout(args); | ||
break; | ||
} | ||
}}); | ||
|
||
// save the base class function | ||
oxxionAnalytics.originEnableAnalytics = oxxionAnalytics.enableAnalytics; | ||
|
||
// override enableAnalytics so we can get access to the config passed in from the page | ||
oxxionAnalytics.enableAnalytics = function (config) { | ||
oxxionAnalytics.originEnableAnalytics(config); // call the base class function | ||
initOptions = config.options; | ||
if (initOptions.domain) { endpoint = 'https://' + initOptions.domain; } | ||
}; | ||
|
||
adapterManager.registerAnalyticsAdapter({ | ||
adapter: oxxionAnalytics, | ||
code: 'oxxion' | ||
}); | ||
|
||
export default oxxionAnalytics; |
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,33 @@ | ||
# Overview | ||
Module Name: oxxion Analytics Adapter | ||
|
||
Module Type: Analytics Adapter | ||
|
||
Maintainer: tech@oxxion.io | ||
|
||
# Oxxion Analytics Adapter | ||
|
||
Oxxion helps you to understand how your prebid stack performs. | ||
|
||
# Integration | ||
|
||
Add the oxxion analytics adapter module to your prebid configuration : | ||
``` | ||
pbjs.enableAnalytics( | ||
... | ||
{ | ||
provider: 'oxxion', | ||
options : { | ||
domain: 'test.endpoint' | ||
} | ||
} | ||
... | ||
) | ||
``` | ||
|
||
# Parameters | ||
|
||
| Name | Type | Description | | ||
|:-------------------------------|:---------|:------------------------------------------------------------------------------------------------------------| | ||
| domain | String | This string identifies yourself in Oxxion's systems and is provided to you by your Oxxion representative. | | ||
|
Oops, something went wrong.