Skip to content
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

Revert "Brightcom adapter: remove adapters (#10925)" #11404

Merged
merged 1 commit into from
Apr 26, 2024
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
303 changes: 303 additions & 0 deletions modules/brightcomBidAdapter.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,303 @@
import {
_each,
isArray,
getWindowTop,
getUniqueIdentifierStr,
deepSetValue,
logError,
logWarn,
createTrackPixelHtml,
getWindowSelf,
isFn,
isPlainObject,
getBidIdParameter
} from '../src/utils.js';
import { registerBidder } from '../src/adapters/bidderFactory.js';
import { BANNER } from '../src/mediaTypes.js';
import { config } from '../src/config.js';

const BIDDER_CODE = 'brightcom';
const URL = 'https://brightcombid.marphezis.com/hb';

export const spec = {
code: BIDDER_CODE,
supportedMediaTypes: [BANNER],
gvlid: 883,
isBidRequestValid,
buildRequests,
interpretResponse,
getUserSyncs
};

function buildRequests(bidReqs, bidderRequest) {
try {
let referrer = '';
if (bidderRequest && bidderRequest.refererInfo) {
referrer = bidderRequest.refererInfo.page;
}
const brightcomImps = [];
const publisherId = getBidIdParameter('publisherId', bidReqs[0].params);
_each(bidReqs, function (bid) {
let bidSizes = (bid.mediaTypes && bid.mediaTypes.banner && bid.mediaTypes.banner.sizes) || bid.sizes;
bidSizes = ((isArray(bidSizes) && isArray(bidSizes[0])) ? bidSizes : [bidSizes]);
bidSizes = bidSizes.filter(size => isArray(size));
const processedSizes = bidSizes.map(size => ({w: parseInt(size[0], 10), h: parseInt(size[1], 10)}));

const element = document.getElementById(bid.adUnitCode);
const minSize = _getMinSize(processedSizes);
const viewabilityAmount = _isViewabilityMeasurable(element)
? _getViewability(element, getWindowTop(), minSize)
: 'na';
const viewabilityAmountRounded = isNaN(viewabilityAmount) ? viewabilityAmount : Math.round(viewabilityAmount);

const imp = {
id: bid.bidId,
banner: {
format: processedSizes,
ext: {
viewability: viewabilityAmountRounded
}
},
tagid: String(bid.adUnitCode)
};
const bidFloor = _getBidFloor(bid);
if (bidFloor) {
imp.bidfloor = bidFloor;
}
brightcomImps.push(imp);
});
const brightcomBidReq = {
id: getUniqueIdentifierStr(),
imp: brightcomImps,
site: {
domain: bidderRequest?.refererInfo?.domain || '',
page: referrer,
publisher: {
id: publisherId
}
},
device: {
devicetype: _getDeviceType(),
w: screen.width,
h: screen.height
},
tmax: bidderRequest?.timeout
};

if (bidderRequest && bidderRequest.gdprConsent) {
deepSetValue(brightcomBidReq, 'regs.ext.gdpr', +bidderRequest.gdprConsent.gdprApplies);
deepSetValue(brightcomBidReq, 'user.ext.consent', bidderRequest.gdprConsent.consentString);
}

if (bidderRequest && bidderRequest.uspConsent) {
deepSetValue(brightcomBidReq, 'regs.ext.us_privacy', bidderRequest.uspConsent);
}

if (config.getConfig('coppa') === true) {
deepSetValue(brightcomBidReq, 'regs.coppa', 1);
}

if (bidReqs[0] && bidReqs[0].schain) {
deepSetValue(brightcomBidReq, 'source.ext.schain', bidReqs[0].schain)
}

if (bidReqs[0] && bidReqs[0].userIdAsEids) {
deepSetValue(brightcomBidReq, 'user.ext.eids', bidReqs[0].userIdAsEids || [])
}

if (bidReqs[0] && bidReqs[0].userId) {
deepSetValue(brightcomBidReq, 'user.ext.ids', bidReqs[0].userId || [])
}

return {
method: 'POST',
url: URL,
data: JSON.stringify(brightcomBidReq),
};
} catch (e) {
logError(e, {bidReqs, bidderRequest});
}
}

function isBidRequestValid(bid) {
if (bid.bidder !== BIDDER_CODE || typeof bid.params === 'undefined') {
return false;
}

if (typeof bid.params.publisherId === 'undefined') {
return false;
}

return true;
}

function interpretResponse(serverResponse) {
if (!serverResponse.body || typeof serverResponse.body != 'object') {
logWarn('Brightcom server returned empty/non-json response: ' + JSON.stringify(serverResponse.body));
return [];
}
const {body: {id, seatbid}} = serverResponse;
try {
const brightcomBidResponses = [];
if (id &&
seatbid &&
seatbid.length > 0 &&
seatbid[0].bid &&
seatbid[0].bid.length > 0) {
seatbid[0].bid.map(brightcomBid => {
brightcomBidResponses.push({
requestId: brightcomBid.impid,
cpm: parseFloat(brightcomBid.price),
width: parseInt(brightcomBid.w),
height: parseInt(brightcomBid.h),
creativeId: brightcomBid.crid || brightcomBid.id,
currency: 'USD',
netRevenue: true,
mediaType: BANNER,
ad: _getAdMarkup(brightcomBid),
ttl: 60,
meta: {
advertiserDomains: brightcomBid && brightcomBid.adomain ? brightcomBid.adomain : []
}
});
});
}
return brightcomBidResponses;
} catch (e) {
logError(e, {id, seatbid});
}
}

// Don't do user sync for now
function getUserSyncs(syncOptions, responses, gdprConsent) {
return [];
}

function _isMobile() {
return (/(ios|ipod|ipad|iphone|android)/i).test(navigator.userAgent);
}

function _isConnectedTV() {
return (/(smart[-]?tv|hbbtv|appletv|googletv|hdmi|netcast\.tv|viera|nettv|roku|\bdtv\b|sonydtv|inettvbrowser|\btv\b)/i).test(navigator.userAgent);
}

function _getDeviceType() {
return _isMobile() ? 1 : _isConnectedTV() ? 3 : 2;
}

function _getAdMarkup(bid) {
let adm = bid.adm;
if ('nurl' in bid) {
adm += createTrackPixelHtml(bid.nurl);
}
return adm;
}

function _isViewabilityMeasurable(element) {
return !_isIframe() && element !== null;
}

function _getViewability(element, topWin, {w, h} = {}) {
return getWindowTop().document.visibilityState === 'visible'
? _getPercentInView(element, topWin, {w, h})
: 0;
}

function _isIframe() {
try {
return getWindowSelf() !== getWindowTop();
} catch (e) {
return true;
}
}

function _getMinSize(sizes) {
return sizes.reduce((min, size) => size.h * size.w < min.h * min.w ? size : min);
}

function _getBoundingBox(element, {w, h} = {}) {
let {width, height, left, top, right, bottom} = element.getBoundingClientRect();

if ((width === 0 || height === 0) && w && h) {
width = w;
height = h;
right = left + w;
bottom = top + h;
}

return {width, height, left, top, right, bottom};
}

function _getIntersectionOfRects(rects) {
const bbox = {
left: rects[0].left,
right: rects[0].right,
top: rects[0].top,
bottom: rects[0].bottom
};

for (let i = 1; i < rects.length; ++i) {
bbox.left = Math.max(bbox.left, rects[i].left);
bbox.right = Math.min(bbox.right, rects[i].right);

if (bbox.left >= bbox.right) {
return null;
}

bbox.top = Math.max(bbox.top, rects[i].top);
bbox.bottom = Math.min(bbox.bottom, rects[i].bottom);

if (bbox.top >= bbox.bottom) {
return null;
}
}

bbox.width = bbox.right - bbox.left;
bbox.height = bbox.bottom - bbox.top;

return bbox;
}

function _getPercentInView(element, topWin, {w, h} = {}) {
const elementBoundingBox = _getBoundingBox(element, {w, h});

// Obtain the intersection of the element and the viewport
const elementInViewBoundingBox = _getIntersectionOfRects([{
left: 0,
top: 0,
right: topWin.innerWidth,
bottom: topWin.innerHeight
}, elementBoundingBox]);

let elementInViewArea, elementTotalArea;

if (elementInViewBoundingBox !== null) {
// Some or all of the element is in view
elementInViewArea = elementInViewBoundingBox.width * elementInViewBoundingBox.height;
elementTotalArea = elementBoundingBox.width * elementBoundingBox.height;

return ((elementInViewArea / elementTotalArea) * 100);
}

// No overlap between element and the viewport; therefore, the element
// lies completely out of view
return 0;
}

function _getBidFloor(bid) {
if (!isFn(bid.getFloor)) {
return bid.params.bidFloor ? bid.params.bidFloor : null;
}

let floor = bid.getFloor({
currency: 'USD',
mediaType: '*',
size: '*'
});
if (isPlainObject(floor) && !isNaN(floor.floor) && floor.currency === 'USD') {
return floor.floor;
}
return null;
}

registerBidder(spec);
46 changes: 46 additions & 0 deletions modules/brightcomBidAdapter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Overview

```
Module Name: Brightcom Bid Adapter
Module Type: Bidder Adapter
Maintainer: vladislavy@brightcom.com
```

# Description

Brightcom's adapter integration to the Prebid library.

# Test Parameters

```
var adUnits = [
{
code: 'test-leaderboard',
mediaTypes: {
banner: {
sizes: [[728, 90]]
}
},
bids: [{
bidder: 'brightcom',
params: {
publisherId: 2141020,
bidFloor: 0.01
}
}]
}, {
code: 'test-banner',
mediaTypes: {
banner: {
sizes: [[300, 250]]
}
},
bids: [{
bidder: 'brightcom',
params: {
publisherId: 2141020
}
}]
}
]
```
Loading