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

Padsquad bid adapter #4002

Merged
merged 3 commits into from
Jul 22, 2019
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
132 changes: 132 additions & 0 deletions modules/padsquadBidAdapter.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
import {registerBidder} from '../src/adapters/bidderFactory';
import * as utils from '../src/utils';
import {BANNER} from '../src/mediaTypes';

const ENDPOINT_URL = '//x.padsquad.com/auction';

const DEFAULT_BID_TTL = 30;
const DEFAULT_CURRENCY = 'USD';
const DEFAULT_NET_REVENUE = true;

export const spec = {
code: 'padsquad',
supportedMediaTypes: [BANNER],

isBidRequestValid: function (bid) {
return (!!bid.params.unitId && typeof bid.params.unitId === 'string') ||
(!!bid.params.networkId && typeof bid.params.networkId === 'string') ||
(!!bid.params.publisherId && typeof bid.params.publisherId === 'string');
},

buildRequests: function (validBidRequests, bidderRequest) {
if (!validBidRequests || !bidderRequest) {
return;
}
const publisherId = validBidRequests[0].params.publisherId;
const networkId = validBidRequests[0].params.networkId;
const impressions = validBidRequests.map(bidRequest => ({
id: bidRequest.bidId,
banner: {
format: bidRequest.sizes.map(sizeArr => ({
w: sizeArr[0],
h: sizeArr[1]
}))
},
ext: {
exchange: {
unitId: bidRequest.params.unitId
}
}
}));

const openrtbRequest = {
id: bidderRequest.auctionId,
imp: impressions,
site: {
domain: window.location.hostname,
page: window.location.href,
ref: bidderRequest.refererInfo ? bidderRequest.refererInfo.referer || null : null
},
ext: {
exchange: {
publisherId: publisherId,
networkId: networkId,
}
}
};

// apply gdpr
if (bidderRequest.gdprConsent) {
openrtbRequest.regs = {ext: {gdpr: bidderRequest.gdprConsent.gdprApplies ? 1 : 0}};
openrtbRequest.user = {ext: {consent: bidderRequest.gdprConsent.consentString}};
}

const payloadString = JSON.stringify(openrtbRequest);
return {
method: 'POST',
url: ENDPOINT_URL,
data: payloadString,
};
},

interpretResponse: function (serverResponse, request) {
const bidResponses = [];
const response = (serverResponse || {}).body;
// response is always one seat with (optional) bids for each impression
if (response && response.seatbid && response.seatbid.length === 1 && response.seatbid[0].bid && response.seatbid[0].bid.length) {
response.seatbid[0].bid.forEach(bid => {
bidResponses.push({
requestId: bid.impid,
cpm: bid.price,
width: bid.w,
height: bid.h,
ad: bid.adm,
ttl: DEFAULT_BID_TTL,
creativeId: bid.crid,
netRevenue: DEFAULT_NET_REVENUE,
currency: DEFAULT_CURRENCY,
})
})
} else {
utils.logInfo('padsquad.interpretResponse :: no valid responses to interpret');
}
return bidResponses;
},
getUserSyncs: function (syncOptions, serverResponses) {
utils.logInfo('padsquad.getUserSyncs', 'syncOptions', syncOptions, 'serverResponses', serverResponses);
let syncs = [];

if (!syncOptions.iframeEnabled && !syncOptions.pixelEnabled) {
return syncs;
}

serverResponses.forEach(resp => {
const userSync = utils.deepAccess(resp, 'body.ext.usersync');
if (userSync) {
let syncDetails = [];
Object.keys(userSync).forEach(key => {
const value = userSync[key];
if (value.syncs && value.syncs.length) {
syncDetails = syncDetails.concat(value.syncs);
}
});
syncDetails.forEach(syncDetails => {
syncs.push({
type: syncDetails.type === 'iframe' ? 'iframe' : 'image',
url: syncDetails.url
});
});

if (!syncOptions.iframeEnabled) {
syncs = syncs.filter(s => s.type !== 'iframe')
}
if (!syncOptions.pixelEnabled) {
syncs = syncs.filter(s => s.type !== 'image')
}
}
});
return syncs;
},

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

```
Module Name: Padsquad Bid Adapter
Module Type: Bidder Adapter
Maintainer: yeeldpadsquad@gmail.com
```

# Description

Connects to Padsquad exchange for bids.

Padsquad bid adapter supports Banner ads.

# Test Parameters
```
var adUnits = [
{
code: 'banner-ad-div',
mediaTypes: {
banner: {
sizes: [[300, 250], [300,600]]
}
},
bids: [{
bidder: 'padsquad',
params: {
unitId: 'test'
}
}]
}
];
```
Loading