-
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
Sovrn Analytics Adapter #3761
Merged
Merged
Sovrn Analytics Adapter #3761
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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,277 @@ | ||
import adapter from 'src/AnalyticsAdapter' | ||
import adaptermanager from 'src/adapterManager' | ||
import CONSTANTS from 'src/constants.json' | ||
import {ajaxBuilder} from 'src/ajax' | ||
import * as utils from 'src/utils' | ||
import {config} from 'src/config' | ||
import find from 'core-js/library/fn/array/find' | ||
import includes from 'core-js/library/fn/array/includes' | ||
|
||
const ajax = ajaxBuilder(0) | ||
|
||
const { | ||
EVENTS: { | ||
AUCTION_END, | ||
BID_REQUESTED, | ||
BID_ADJUSTMENT, | ||
BID_RESPONSE, | ||
BID_WON | ||
} | ||
} = CONSTANTS | ||
|
||
let pbaUrl = 'https://pba.aws.lijit.com/analytics' | ||
let currentAuctions = {}; | ||
const analyticsType = 'endpoint' | ||
|
||
let sovrnAnalyticsAdapter = Object.assign(adapter({url: pbaUrl, analyticsType}), { | ||
track({ eventType, args }) { | ||
try { | ||
if (eventType === BID_WON) { | ||
new BidWinner(this.sovrnId, args).send(); | ||
return | ||
} | ||
if (args && args.auctionId && currentAuctions[args.auctionId] && currentAuctions[args.auctionId].status === 'complete') { | ||
throw new Error('Event Received after Auction Close Auction Id ' + args.auctionId) | ||
} | ||
if (args && args.auctionId && currentAuctions[args.auctionId] === undefined) { | ||
currentAuctions[args.auctionId] = new AuctionData(this.sovrnId, args.auctionId) | ||
} | ||
switch (eventType) { | ||
case BID_REQUESTED: | ||
currentAuctions[args.auctionId].bidRequested(args) | ||
break | ||
case BID_ADJUSTMENT: | ||
currentAuctions[args.auctionId].originalBid(args) | ||
break | ||
case BID_RESPONSE: | ||
currentAuctions[args.auctionId].adjustedBid(args) | ||
break | ||
case AUCTION_END: | ||
currentAuctions[args.auctionId].send(); | ||
break | ||
} | ||
} catch (e) { | ||
new LogError(e, this.sovrnId, {eventType, args}).send() | ||
} | ||
}, | ||
}) | ||
|
||
sovrnAnalyticsAdapter.getAuctions = function () { | ||
return currentAuctions; | ||
}; | ||
|
||
sovrnAnalyticsAdapter.originEnableAnalytics = sovrnAnalyticsAdapter.enableAnalytics; | ||
|
||
// override enableAnalytics so we can get access to the config passed in from the page | ||
sovrnAnalyticsAdapter.enableAnalytics = function (config) { | ||
let sovrnId = '' | ||
if (config && config.options && (config.options.sovrnId || config.options.affiliateId)) { | ||
sovrnId = config.options.sovrnId || config.options.affiliateId; | ||
} else { | ||
utils.logError('Need Sovrn Id to log auction results. Please contact a Sovrn representative if you do not know your Sovrn Id.') | ||
return | ||
} | ||
sovrnAnalyticsAdapter.sovrnId = sovrnId; | ||
if (config.options.pbaUrl) { | ||
pbaUrl = config.options.pbaUrl; | ||
} | ||
sovrnAnalyticsAdapter.originEnableAnalytics(config) // call the base class function | ||
}; | ||
|
||
adaptermanager.registerAnalyticsAdapter({ | ||
adapter: sovrnAnalyticsAdapter, | ||
code: 'sovrn' | ||
}); | ||
|
||
/** Class Representing a Winning Bid */ | ||
class BidWinner { | ||
/** | ||
* Creates a new bid winner | ||
* @param {string} sovrnId - the affiliate id from the analytics config | ||
* @param {*} event - the args object from the auction event | ||
*/ | ||
constructor(sovrnId, event) { | ||
this.body = {} | ||
this.body.prebidVersion = $$REPO_AND_VERSION$$ | ||
this.body.sovrnId = sovrnId | ||
this.body.winningBid = JSON.parse(JSON.stringify(event)) | ||
this.body.url = utils.getTopWindowLocation().href | ||
this.body.payload = 'winner' | ||
delete this.body.winningBid.ad | ||
} | ||
|
||
/** | ||
* Sends the auction to the the ingest server | ||
*/ | ||
send() { | ||
this.body.ts = utils.timestamp() | ||
ajax( | ||
pbaUrl, | ||
null, | ||
JSON.stringify(this.body), | ||
{ | ||
contentType: 'application/json', | ||
method: 'POST', | ||
} | ||
) | ||
} | ||
} | ||
|
||
/** Class representing an Auction */ | ||
class AuctionData { | ||
/** | ||
* Create a new auction data collector | ||
* @param {string} sovrnId - the affiliate id from the analytics config | ||
* @param {string} auctionId - the auction id from the auction event | ||
*/ | ||
constructor(sovrnId, auctionId) { | ||
this.auction = {} | ||
this.auction.prebidVersion = $$REPO_AND_VERSION$$ | ||
this.auction.sovrnId = sovrnId | ||
this.auction.auctionId = auctionId | ||
this.auction.payload = 'auction' | ||
this.auction.timeouts = { | ||
buffer: config.getConfig('timeoutBuffer'), | ||
bidder: config.getConfig('bidderTimeout'), | ||
} | ||
this.auction.priceGranularity = config.getConfig('priceGranularity') | ||
this.auction.url = utils.getTopWindowLocation().href | ||
this.auction.requests = [] | ||
this.auction.unsynced = [] | ||
this.dropBidFields = ['auctionId', 'ad', 'requestId', 'bidderCode'] | ||
|
||
setTimeout(function(id) { | ||
delete currentAuctions[id] | ||
}, 300000, this.auction.auctionId) | ||
} | ||
|
||
/** | ||
* Record a bid request event | ||
* @param {*} event - the args object from the auction event | ||
*/ | ||
bidRequested(event) { | ||
const eventCopy = JSON.parse(JSON.stringify(event)) | ||
delete eventCopy.doneCbCallCount | ||
delete eventCopy.auctionId | ||
this.auction.requests.push(eventCopy) | ||
} | ||
|
||
/** | ||
* Finds the bid from the auction that the event is associated with | ||
* @param {*} event - the args object from the auction event | ||
* @return {*} - the bid | ||
*/ | ||
findBid(event) { | ||
const bidder = find(this.auction.requests, r => (r.bidderCode === event.bidderCode)) | ||
if (!bidder) { | ||
this.auction.unsynced.push(JSON.parse(JSON.stringify(event))) | ||
} | ||
let bid = find(bidder.bids, b => (b.bidId === event.requestId)) | ||
|
||
if (!bid) { | ||
event.unmatched = true | ||
bidder.bids.push(JSON.parse(JSON.stringify(event))) | ||
} | ||
return bid | ||
} | ||
|
||
/** | ||
* Records the original bid before any adjustments have been made | ||
* @param {*} event - the args object from the auction event | ||
* NOTE: the bid adjustment occurs before the bid response | ||
* the bid adjustment seems to be the bid ready to be adjusted | ||
*/ | ||
originalBid(event) { | ||
let bid = this.findBid(event) | ||
if (bid) { | ||
Object.assign(bid, JSON.parse(JSON.stringify(event))) | ||
this.dropBidFields.forEach((f) => delete bid[f]) | ||
} | ||
} | ||
|
||
/** | ||
* Replaces original values with adjusted values and records the original values for changed values | ||
* in bid.originalValues | ||
* @param {*} event - the args object from the auction event | ||
*/ | ||
adjustedBid(event) { | ||
let bid = this.findBid(event) | ||
if (bid) { | ||
bid.originalValues = Object.keys(event).reduce((o, k) => { | ||
if (JSON.stringify(bid[k]) !== JSON.stringify(event[k]) && !includes(this.dropBidFields, k)) { | ||
o[k] = bid[k] | ||
bid[k] = event[k] | ||
} | ||
return o | ||
}, {}) | ||
} | ||
} | ||
|
||
/** | ||
* Sends the auction to the the ingest server | ||
*/ | ||
send() { | ||
let maxbid = {cpm: 0} | ||
this.auction.requests.forEach(request => { | ||
request.bids.forEach(bid => { | ||
if (bid.cpm > maxbid.cpm) { | ||
maxbid = bid | ||
} | ||
}) | ||
}) | ||
maxbid.isAuctionWinner = true | ||
this.auction.ts = utils.timestamp() | ||
ajax( | ||
pbaUrl, | ||
() => { | ||
currentAuctions[this.auction.auctionId] = {status: 'complete', auctionId: this.auction.auctionId} | ||
}, | ||
JSON.stringify(this.auction), | ||
{ | ||
contentType: 'application/json', | ||
method: 'POST', | ||
} | ||
) | ||
} | ||
} | ||
class LogError { | ||
constructor(e, sovrnId, data) { | ||
this.error = {} | ||
this.error.payload = 'error' | ||
this.error.message = e.message | ||
this.error.stack = e.stack | ||
this.error.data = data | ||
this.error.prebidVersion = $$REPO_AND_VERSION$$ | ||
this.error.sovrnId = sovrnId | ||
this.error.url = utils.getTopWindowLocation().href | ||
this.error.userAgent = navigator.userAgent | ||
} | ||
send() { | ||
if (this.error.data && this.error.data.requests) { | ||
this.error.data.requests.forEach(request => { | ||
if (request.bids) { | ||
request.bids.forEach(bid => { | ||
if (bid.ad) { | ||
delete bid.ad | ||
} | ||
}) | ||
} | ||
}) | ||
} | ||
if (ErrorEvent.data && error.data.ad) { | ||
delete error.data.ad | ||
} | ||
this.error.ts = utils.timestamp() | ||
ajax( | ||
pbaUrl, | ||
null, | ||
JSON.stringify(this.error), | ||
{ | ||
contentType: 'application/json', | ||
method: 'POST', | ||
} | ||
) | ||
} | ||
} | ||
|
||
export default sovrnAnalyticsAdapter; |
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,23 @@ | ||
# Overview | ||
|
||
``` | ||
Module Name: Sovrn Analytics Adapter | ||
Module Type: Analytics Adapter | ||
Maintainer: jrosendahl@sovrn.com | ||
``` | ||
|
||
# Description | ||
|
||
Sovrn's analytics adaptor allows you to view detailed auction information in Meridian. | ||
|
||
For more information, visit Sovrn.com. | ||
|
||
# Test Parameters | ||
``` | ||
{ | ||
provider: 'sovrn', | ||
options: { | ||
sovrnId: 'xxxxx', // Sovrn ID (required) you can get this by contacting Sovrn support. | ||
} | ||
} | ||
``` |
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.
In lieu of this PR #3435, any imported files within a modules file needs to use the relative style path.
Can you please update these imports accordingly?
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.
sure thing. does this apply to npm modules as well?
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.
No it should just be needed for any Prebid imports.