-
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.
Impactify Bid Adapter: add new bid adapter (#6518)
* Add impactify adapter with MD file * Add impactify adapter
- Loading branch information
1 parent
0ab0964
commit 56bb4ae
Showing
3 changed files
with
693 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,260 @@ | ||
import { registerBidder } from '../src/adapters/bidderFactory.js'; | ||
import * as utils from '../src/utils.js'; | ||
import { config } from '../src/config.js'; | ||
import {ajax} from '../src/ajax.js'; | ||
|
||
const BIDDER_CODE = 'impactify'; | ||
const BIDDER_ALIAS = ['imp']; | ||
const DEFAULT_CURRENCY = 'USD'; | ||
const DEFAULT_VIDEO_WIDTH = 640; | ||
const DEFAULT_VIDEO_HEIGHT = 480; | ||
const ORIGIN = 'https://sonic.impactify.media'; | ||
const LOGGER_URI = 'https://logger.impactify.media'; | ||
const AUCTIONURI = '/bidder'; | ||
const COOKIESYNCURI = '/static/cookie_sync.html'; | ||
const GVLID = 606; | ||
const GETCONFIG = config.getConfig; | ||
|
||
const getDeviceType = () => { | ||
// OpenRTB Device type | ||
if ((/ipad|android 3.0|xoom|sch-i800|playbook|tablet|kindle/i.test(navigator.userAgent.toLowerCase()))) { | ||
return 5; | ||
} | ||
if ((/iphone|ipod|android|blackberry|opera|mini|windows\sce|palm|smartphone|iemobile/i.test(navigator.userAgent.toLowerCase()))) { | ||
return 4; | ||
} | ||
return 2; | ||
} | ||
|
||
const createOpenRtbRequest = (validBidRequests, bidderRequest) => { | ||
// Create request and set imp bids inside | ||
let request = { | ||
id: bidderRequest.auctionId, | ||
validBidRequests, | ||
cur: [DEFAULT_CURRENCY], | ||
imp: [] | ||
}; | ||
|
||
// Force impactify debugging parameter | ||
if (window.localStorage.getItem('_im_db_bidder') == 3) { | ||
request.test = 3; | ||
} | ||
|
||
// Set device/user/site | ||
if (!request.device) request.device = {}; | ||
if (!request.site) request.site = {}; | ||
request.device = { | ||
w: window.innerWidth, | ||
h: window.innerHeight, | ||
devicetype: getDeviceType(), | ||
ua: navigator.userAgent, | ||
js: 1, | ||
dnt: (navigator.doNotTrack == 'yes' || navigator.doNotTrack == '1' || navigator.msDoNotTrack == '1') ? 1 : 0, | ||
language: ((navigator.language || navigator.userLanguage || '').split('-'))[0] || 'en', | ||
}; | ||
request.site = {page: bidderRequest.refererInfo.referer}; | ||
|
||
// Handle privacy settings for GDPR/CCPA/COPPA | ||
if (bidderRequest.gdprConsent) { | ||
let gdprApplies = 0; | ||
if (typeof bidderRequest.gdprConsent.gdprApplies === 'boolean') gdprApplies = bidderRequest.gdprConsent.gdprApplies ? 1 : 0; | ||
utils.deepSetValue(request, 'regs.ext.gdpr', gdprApplies); | ||
utils.deepSetValue(request, 'user.ext.consent', bidderRequest.gdprConsent.consentString); | ||
} | ||
|
||
if (bidderRequest.uspConsent) { | ||
utils.deepSetValue(request, 'regs.ext.us_privacy', bidderRequest.uspConsent); | ||
this.syncStore.uspConsent = bidderRequest.uspConsent; | ||
} | ||
|
||
if (GETCONFIG('coppa') == true) utils.deepSetValue(request, 'regs.coppa', 1); | ||
|
||
if (bidderRequest.uspConsent) { | ||
utils.deepSetValue(request, 'regs.ext.us_privacy', bidderRequest.uspConsent); | ||
} | ||
|
||
// Set buyer uid | ||
utils.deepSetValue(request, 'user.buyeruid', utils.generateUUID()); | ||
|
||
// Create imps with bids | ||
validBidRequests.forEach((bid) => { | ||
let imp = { | ||
id: bid.bidId, | ||
bidfloor: bid.params.bidfloor ? bid.params.bidfloor : 0, | ||
ext: { | ||
impactify: { | ||
appId: bid.params.appId, | ||
format: bid.params.format, | ||
style: bid.params.style | ||
}, | ||
}, | ||
video: { | ||
playerSize: [DEFAULT_VIDEO_WIDTH, DEFAULT_VIDEO_HEIGHT], | ||
context: 'outstream', | ||
mimes: ['video/mp4'], | ||
}, | ||
}; | ||
if (bid.params.container) { | ||
imp.ext.impactify.container = bid.params.container; | ||
} | ||
request.imp.push(imp); | ||
}); | ||
|
||
return request; | ||
}; | ||
|
||
export const spec = { | ||
code: BIDDER_CODE, | ||
gvlid: GVLID, | ||
supportedMediaTypes: ['video'], | ||
aliases: BIDDER_ALIAS, | ||
/** | ||
* Determines whether or not the given bid request is valid. | ||
* | ||
* @param {BidRequest} bid The bid params to validate. | ||
* @return boolean True if this is a valid bid, and false otherwise. | ||
*/ | ||
isBidRequestValid: function (bid) { | ||
if (!bid.params.appId || typeof bid.params.appId != 'string' || !bid.params.format || typeof bid.params.format != 'string' || !bid.params.style || typeof bid.params.style != 'string') { | ||
return false; | ||
} | ||
if (bid.params.format != 'screen' && bid.params.format != 'display') { | ||
return false; | ||
} | ||
if (bid.params.style != 'inline' && bid.params.style != 'impact' && bid.params.style != 'static') { | ||
return false; | ||
} | ||
|
||
return true; | ||
}, | ||
/** | ||
* Make a server request from the list of BidRequests. | ||
* | ||
* @param {validBidRequests[]} - an array of bids | ||
* @param {bidderRequest} - the bidding request | ||
* @return ServerRequest Info describing the request to the server. | ||
*/ | ||
buildRequests: function (validBidRequests, bidderRequest) { | ||
// Create a clean openRTB request | ||
let request = createOpenRtbRequest(validBidRequests, bidderRequest); | ||
|
||
return { | ||
method: 'POST', | ||
url: ORIGIN + AUCTIONURI, | ||
data: JSON.stringify(request), | ||
}; | ||
}, | ||
/** | ||
* Unpack the response from the server into a list of bids. | ||
* | ||
* @param {ServerResponse} serverResponse A successful response from the server. | ||
* @return {Bid[]} An array of bids which were nested inside the server. | ||
*/ | ||
interpretResponse: function (serverResponse, bidRequest) { | ||
const serverBody = serverResponse.body; | ||
let bidResponses = []; | ||
|
||
if (!serverBody) { | ||
return bidResponses; | ||
} | ||
|
||
if (!serverBody.seatbid || !serverBody.seatbid.length) { | ||
return []; | ||
} | ||
|
||
serverBody.seatbid.forEach((seatbid) => { | ||
if (seatbid.bid.length) { | ||
bidResponses = [ | ||
...bidResponses, | ||
...seatbid.bid | ||
.filter((bid) => bid.price > 0) | ||
.map((bid) => ({ | ||
id: bid.id, | ||
requestId: bid.impid, | ||
cpm: bid.price, | ||
currency: serverBody.cur, | ||
netRevenue: true, | ||
ad: bid.adm, | ||
width: bid.w || 0, | ||
height: bid.h || 0, | ||
ttl: 300, | ||
creativeId: bid.crid || 0, | ||
hash: bid.hash, | ||
expiry: bid.expiry | ||
})), | ||
]; | ||
} | ||
}); | ||
|
||
return bidResponses; | ||
}, | ||
|
||
/** | ||
* Register the user sync pixels which should be dropped after the auction. | ||
* | ||
* @param {SyncOptions} syncOptions Which user syncs are allowed? | ||
* @param {ServerResponse[]} serverResponses List of server's responses. | ||
* @return {UserSync[]} The user syncs which should be dropped. | ||
*/ | ||
getUserSyncs: function ( | ||
syncOptions, | ||
serverResponses, | ||
gdprConsent, | ||
uspConsent | ||
) { | ||
if (!serverResponses || serverResponses.length === 0) { | ||
return []; | ||
} | ||
|
||
if (!syncOptions.iframeEnabled) { | ||
return []; | ||
} | ||
|
||
let params = ''; | ||
if (gdprConsent && typeof gdprConsent.consentString === 'string') { | ||
if (typeof gdprConsent.gdprApplies === 'boolean') { | ||
params += `?gdpr=${Number(gdprConsent.gdprApplies)}&gdpr_consent=${gdprConsent.consentString}`; | ||
} else { | ||
params += `?gdpr_consent=${gdprConsent.consentString}`; | ||
} | ||
} | ||
|
||
if (uspConsent) { | ||
params += `${params ? '&' : '?'}us_privacy=${encodeURIComponent(uspConsent)}`; | ||
} | ||
|
||
if (document.location.search.match(/pbs_debug=true/)) params += `&pbs_debug=true`; | ||
|
||
return [{ | ||
type: 'iframe', | ||
url: ORIGIN + COOKIESYNCURI + params | ||
}]; | ||
}, | ||
|
||
/** | ||
* Register bidder specific code, which will execute if a bid from this bidder won the auction | ||
* @param {Bid} The bid that won the auction | ||
*/ | ||
onBidWon: function(bid) { | ||
ajax(`${LOGGER_URI}/log/bidder/won`, null, JSON.stringify(bid), { | ||
method: 'POST', | ||
contentType: 'application/json' | ||
}); | ||
|
||
return true; | ||
}, | ||
|
||
/** | ||
* Register bidder specific code, which will execute if bidder timed out after an auction | ||
* @param {data} Containing timeout specific data | ||
*/ | ||
onTimeout: function(data) { | ||
ajax(`${LOGGER_URI}/log/bidder/timeout`, null, JSON.stringify(data[0]), { | ||
method: 'POST', | ||
contentType: 'application/json' | ||
}); | ||
|
||
return true; | ||
} | ||
}; | ||
registerBidder(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,35 @@ | ||
# Overview | ||
|
||
``` | ||
Module Name: Impactify Bidder Adapter | ||
Module Type: Bidder Adapter | ||
Maintainer: thomas.destefano@impactify.io | ||
``` | ||
|
||
# Description | ||
|
||
Module that connects to the Impactify solution. | ||
The impactify bidder need 3 parameters: | ||
- appId : This is your unique publisher identifier | ||
- format : This is the ad format needed, can be : screen or display | ||
- style : This is the ad style needed, can be : inline, impact or static | ||
|
||
# Test Parameters | ||
``` | ||
var adUnits = [{ | ||
code: 'your-slot-div-id', // This is your slot div id | ||
mediaTypes: { | ||
video: { | ||
context: 'outstream' | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'impactify', | ||
params: { | ||
appId: 'example.com', | ||
format: 'screen', | ||
style: 'inline' | ||
} | ||
}] | ||
}]; | ||
``` |
Oops, something went wrong.