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

Axonix Bid Adapter: add new bid adapter #6341

Merged
merged 2 commits into from
Feb 25, 2021
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
178 changes: 178 additions & 0 deletions modules/axonixBidAdapter.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,178 @@
import { registerBidder } from '../src/adapters/bidderFactory.js';
import { BANNER, VIDEO } from '../src/mediaTypes.js';
import { config } from '../src/config.js';
import * as utils from '../src/utils.js';
import { ajax } from '../src/ajax.js';

const BIDDER_CODE = 'axonix';
const BIDDER_VERSION = '1.0.0';

const CURRENCY = 'USD';
const DEFAULT_REGION = 'us-east-1';

function getBidFloor(bidRequest) {
let floorInfo = {};

if (typeof bidRequest.getFloor === 'function') {
floorInfo = bidRequest.getFloor({
currency: CURRENCY,
mediaType: '*',
size: '*'
});
}

return floorInfo.floor || 0;
}

function getPageUrl(bidRequest, bidderRequest) {
let pageUrl = config.getConfig('pageUrl');

if (bidRequest.params.referrer) {
pageUrl = bidRequest.params.referrer;
} else if (!pageUrl) {
pageUrl = bidderRequest.refererInfo.referer;
}

return bidRequest.params.secure ? pageUrl.replace(/^http:/i, 'https:') : pageUrl;
}

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 getURL(params, path) {
let { supplyId, region, endpoint } = params;
let url;

if (endpoint) {
url = endpoint;
} else if (region) {
url = `https://openrtb-${region}.axonix.com/supply/${path}/${supplyId}`;
} else {
url = `https://openrtb-${DEFAULT_REGION}.axonix.com/supply/${path}/${supplyId}`
}

return url;
}

export const spec = {
code: BIDDER_CODE,
version: BIDDER_VERSION,
supportedMediaTypes: [BANNER, VIDEO],

isBidRequestValid: function(bid) {
// video bid request validation
if (bid.hasOwnProperty('mediaTypes') && bid.mediaTypes.hasOwnProperty(VIDEO)) {
if (!bid.mediaTypes[VIDEO].hasOwnProperty('mimes') ||
!utils.isArray(bid.mediaTypes[VIDEO].mimes) ||
bid.mediaTypes[VIDEO].mimes.length === 0) {
utils.logError('mimes are mandatory for video bid request. Ad Unit: ', JSON.stringify(bid));

return false;
}
}

return !!(bid.params && bid.params.supplyId);
},

buildRequests: function(validBidRequests, bidderRequest) {
// device.connectiontype
let connection = navigator.connection || navigator.webkitConnection;
let connectiontype = 'unknown';

if (connection && connection.effectiveType) {
connectiontype = connection.effectiveType;
}

const requests = validBidRequests.map(validBidRequest => {
// app/site
let app;
let site;

if (typeof config.getConfig('app') === 'object') {
app = config.getConfig('app');
} else {
site = {
page: getPageUrl(validBidRequest, bidderRequest)
}
}

const data = {
app,
site,
validBidRequest,
connectiontype,
devicetype: isMobile() ? 1 : isConnectedTV() ? 3 : 2,
bidfloor: getBidFloor(validBidRequest),
dnt: (navigator.doNotTrack === 'yes' || navigator.doNotTrack === '1' || navigator.msDoNotTrack === '1') ? 1 : 0,
language: navigator.language,
prebidVersion: '$prebid.version$',
screenHeight: screen.height,
screenWidth: screen.width,
tmax: config.getConfig('bidderTimeout'),
ua: navigator.userAgent,
};

return {
method: 'POST',
url: getURL(validBidRequest.params, 'prebid'),
options: {
withCredentials: false,
contentType: 'application/json'
},
data
};
});

return requests;
},

interpretResponse: function(serverResponse) {
if (!utils.isArray(serverResponse)) {
return [];
}

const responses = [];

for (const response of serverResponse) {
if (response.requestId) {
responses.push(Object.assign(response, {
ttl: config.getConfig('_bidderTimeout')
}));
}
}

return responses;
},

onTimeout: function(timeoutData) {
const params = utils.deepAccess(timeoutData, '0.params.0');

if (!utils.isEmpty(params)) {
ajax(getURL(params, 'prebid/timeout'), null, timeoutData[0], {
method: 'POST',
options: {
withCredentials: false,
contentType: 'application/json'
}
});
}
},

onBidWon: function(bids) {
for (const bid of bids) {
const { nurl } = bid || {};

if (bid.nurl) {
utils.replaceAuctionPrice(nurl, bid.cpm)
utils.triggerPixel(nurl);
};
}
}
}

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

```
Module Name : Axonix Bidder Adapter
Module Type : Bidder Adapter
Maintainer : support-prebid@axonix.com
```

# Description

Module that connects to Axonix's exchange for bids.

# Parameters

| Name | Scope | Description | Example |
| :------------ | :------- | :---------------------------------------------- | :------------------------------------- |
| `supplyId` | required | Supply UUID | `"2c426f78-bb18-4a16-abf4-62c6cd0ee8de"` |
| `region` | optional | Cloud region | `"us-east-1"` |
| `endpoint` | optional | Supply custom endpoint | `"https://open-rtb.axonix.com/custom"` |
| `instl` | optional | Set to 1 if using interstitial (default: 0) | `1` |

# Test Parameters

## Banner

```javascript
var bannerAdUnit = {
code: 'test-banner',
mediaTypes: {
banner: {
sizes: [[120, 600], [300, 250], [320, 50], [468, 60], [728, 90]]
}
},
bids: [{
bidder: 'axonix',
params: {
supplyId: 'abc',
region: 'def',
endpoint: 'url'
}
}]
};
```

## Video

```javascript
var videoAdUnit = {
code: 'test-video',
mediaTypes: {
video: {
protocols: [1, 2, 3, 4, 5, 6, 7, 8]
}
},
bids: [{
bidder: 'axonix',
params: {
supplyId: 'abc',
region: 'def',
endpoint: 'url'
}
}]
};
```

## Native

```javascript
var nativeAdUnit = {
code: 'test-native',
mediaTypes: {
native: {

}
},
bids: [{
bidder: 'axonix',
params: {
supplyId: 'abc',
region: 'def',
endpoint: 'url'
}
}]
};
```

## Multiformat

```javascript
var adUnits = [
{
code: 'test-banner',
mediaTypes: {
banner: {
sizes: [[120, 600], [300, 250], [320, 50], [468, 60], [728, 90]]
}
},
bids: [{
bidder: 'axonix',
params: {
supplyId: 'abc',
region: 'def',
endpoint: 'url'
}
}]
},
{
code: 'test-video',
mediaTypes: {
video: {
protocols: [1, 2, 3, 4, 5, 6, 7, 8]
}
},
bids: [{
bidder: 'axonix',
params: {
supplyId: 'abc',
region: 'def',
endpoint: 'url'
}
}]
},
{
code: 'test-native',
mediaTypes: {
native: {

}
},
bids: [{
bidder: 'axonix',
params: {
supplyId: 'abc',
region: 'def',
endpoint: 'url'
}
}]
}
];
```
Loading