Skip to content

Browsi Bid Adapter: initial release #9562

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

Merged
merged 3 commits into from
Mar 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
171 changes: 171 additions & 0 deletions modules/browsiBidAdapter.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,171 @@
import {registerBidder} from '../src/adapters/bidderFactory.js';
import {config} from '../src/config.js';
import {VIDEO} from '../src/mediaTypes.js';
import {logError, logInfo, isArray, isStr} from '../src/utils.js';

const BIDDER_CODE = 'browsi';
const DATA = 'brwvidtag';
const ADAPTER = '__bad';
const USP_TO_REPLACE = '__USP__';
const GDPR_STR_TO_REPLACE = '__GDPR_STR__';
const GDPR_TO_REPLACE = '__GDPR__';
export const ENDPOINT = 'https://rtb.avantisvideo.com/api/v2/auction/getbid';

export const spec = {
code: BIDDER_CODE,
gvlid: 329,
supportedMediaTypes: [VIDEO],
/**
* Determines whether or not the given bid request is valid.
* @param bid
* @returns {boolean}
*/
isBidRequestValid: function (bid) {
if (!bid.params) {
return false;
}
const {pubId, tagId} = bid.params
const {mediaTypes} = bid;
return !!(validateBrowsiIds(pubId, tagId) && mediaTypes?.[VIDEO]);
},
/**
* Make a server request from the list of BidRequests
* @param validBidRequests
* @param bidderRequest
* @returns ServerRequest Info describing the request to the server.
*/
buildRequests: function (validBidRequests, bidderRequest) {
const requests = [];
const {refererInfo, bidderRequestId, gdprConsent, uspConsent} = bidderRequest;
validBidRequests.forEach(bidRequest => {
const {bidId, adUnitCode, auctionId, transactionId, schain, params} = bidRequest;
const video = getVideoMediaType(bidRequest);

const request = {
method: 'POST',
url: params.endpoint || ENDPOINT,
data: {
requestId: bidderRequestId,
bidId: bidId,
timeout: getTimeout(bidderRequest),
baData: getData(),
referer: refererInfo.page || refererInfo,
gdpr: gdprConsent,
ccpa: uspConsent,
sizes: video.playerSize,
video: video,
aUCode: adUnitCode,
aID: auctionId,
tID: transactionId,
schain: schain,
params: params
}
};
requests.push(request);
})
return requests;
},
/**
* Unpack the response from the server into a list of bids.
* @param serverResponse A successful response from the server.
* @param request
* @returns {Bid[]} An array of bids which were nested inside the server.
*/
interpretResponse: function (serverResponse, request) {
const bidResponses = [];
const response = serverResponse?.body;
if (!response) { return bidResponses; }
const {
bidId,
w,
h,
vXml,
vUrl,
cpm,
cur,
ttl,
...extraParams
} = response;
delete extraParams.userSyncs;
const bidResponse = {
requestId: request.data.bidId,
bidId,
vastXml: vXml,
vastUrl: vUrl,
cpm,
ttl,
mediaType: VIDEO,
width: w,
height: h,
currency: cur,
bidderCode: BIDDER_CODE,
...extraParams
};
bidResponses.push(bidResponse);
return bidResponses;
},
/**
* Extracts user-syncs information from server response
* @param syncOptions {SyncOptions}
* @param serverResponses {ServerResponse[]}
* @param gdprConsent
* @param uspConsent
* @returns {UserSync[]}
*/
getUserSyncs: function (syncOptions, serverResponses, gdprConsent, uspConsent) {
const serverResponse = isArray(serverResponses) ? serverResponses[0] : serverResponses;
const syncParams = serverResponse?.body?.userSyncs;
const userSyncs = [];
const allowedTypes = [];
syncOptions.iframeEnabled && allowedTypes.push('iframe');
syncOptions.pixelEnabled && allowedTypes.push('image');
if (syncParams && allowedTypes.length) {
syncParams.forEach(syncParam => {
let { url, type } = syncParam;
if (!allowedTypes.includes(type)) { return; }
url = getValidUrl(url, gdprConsent, uspConsent);
userSyncs.push({
type,
url
});
})
}
return userSyncs;
},
onTimeout(timeoutData) {
logInfo(`${BIDDER_CODE} bidder timed out`, timeoutData);
},
onBidderError: function ({error}) {
logError(`${BIDDER_CODE} bidder error`, error);
}
}
/**
* Replaces GdprConsent and uspConsent params in url
* @param url {String}
* @param gdprConsent
* @param uspConsent
* @returns {string}
*/
const getValidUrl = function (url, gdprConsent, uspConsent) {
let validUrl = url.replace(GDPR_TO_REPLACE, gdprConsent?.gdprApplies || '')
.replace(GDPR_STR_TO_REPLACE, encodeURIComponent(gdprConsent?.consentString || ''))
.replace(USP_TO_REPLACE, encodeURIComponent(uspConsent?.consentString || ''));
if (validUrl.indexOf('http') < 0) {
validUrl = 'http://' + validUrl;
}
return validUrl;
}

const validateBrowsiIds = function (pubId, tagId) {
return pubId && tagId && isStr(pubId) && isStr(tagId);
}
const getData = function () {
return window[DATA]?.[ADAPTER];
}
const getTimeout = function (bidderRequest) {
return bidderRequest.timeout || config.getConfig('bidderTimeout');
}
const getVideoMediaType = function (bidRequest) {
return bidRequest.mediaTypes?.[VIDEO];
}
registerBidder(spec);
38 changes: 38 additions & 0 deletions modules/browsiBidAdapter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Overview

```
Module Name: Browsi Bid Adapter
Module Type: Bidder Adapter
Maintainer: [email protected]
```

# Description

Connects to Browsi Ad server for bids.

Browsi bid adapter supports Video media type.

**Note:** The bid adapter requires correct setup and approval, including an existing publisher account.

For more information about [Browsi](https://www.browsi.com), please contact [[email protected]]([email protected]).

# Sample Ad Unit:
```javascript
let videoAdUnit = [
{
code: 'videoAdUnit',
mediaTypes: {
video: {
playerSize: [[300, 250]],
context: 'outstream'
},
},
bids: [{
bidder: 'browsi',
params: {
pubId: '117a476f-9791-4a82-80db-4c01c1683db0', // Publisher ID provided by Browsi
tagId: '1' // Tag ID provided by Browsi
}
}]
}];
```
Loading