Skip to content

Commit

Permalink
PROPS IPAX - GIANTS Adapter (#2933)
Browse files Browse the repository at this point in the history
* add giants bidder

* add giants bidder spec

* newline end file

newline end file

* add GDPR Module
  • Loading branch information
PROPSIPAX authored and snapwich committed Aug 7, 2018
1 parent d303d1d commit 752e234
Show file tree
Hide file tree
Showing 3 changed files with 674 additions and 0 deletions.
343 changes: 343 additions & 0 deletions modules/giantsBidAdapter.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,343 @@
import * as utils from 'src/utils';
import { registerBidder } from 'src/adapters/bidderFactory';
import { BANNER, NATIVE, VIDEO } from 'src/mediaTypes';
import includes from 'core-js/library/fn/array/includes';

const BIDDER_CODE = 'giants';
const URL = '//d.admp.io/hb';
const VIDEO_TARGETING = ['id', 'mimes', 'minduration', 'maxduration',
'startdelay', 'skippable', 'playback_method', 'frameworks'];
const NATIVE_MAPPING = {
body: 'description',
cta: 'ctatext',
image: {
serverName: 'main_image',
requiredParams: { required: true },
minimumParams: { sizes: [{}] },
},
icon: {
serverName: 'icon',
requiredParams: { required: true },
minimumParams: { sizes: [{}] },
},
sponsoredBy: 'sponsored_by',
};
const SOURCE = 'pbjs';

export const spec = {
code: BIDDER_CODE,
aliases: [],
supportedMediaTypes: [BANNER, VIDEO, NATIVE],

/**
* Determines whether or not the given bid request is valid.
*
* @param {object} bid The bid to validate.
* @return boolean True if this is a valid bid, and false otherwise.
*/
isBidRequestValid: function(bid) {
return !!(bid.params.zoneId);
},

/**
* Make a server request from the list of BidRequests.
*
* @param {BidRequest[]} bidRequests A non-empty list of bid requests which should be sent to the Server.
* @return ServerRequest Info describing the request to the server.
*/
buildRequests: function(bidRequests, bidderRequest) {
const tags = bidRequests.map(bidToTag);
// const zoneIds = bidRequests.map(bidToZoneId);
// var firstBid = bidRequests[0];
var ref = utils.getTopWindowUrl();
const url = URL + '/multi?url=' + ref;
// + '&callback=window.$$PREBID_GLOBAL$$.giantsResponse&callback_uid=' + bid.bidId;

const payload = {
tags: [...tags],
// user: userObj,
sdk: {
source: SOURCE,
version: '$prebid.version$'
}
};
// if (member > 0) {
// payload.member_id = member;
// }

if (bidderRequest && bidderRequest.gdprConsent) {
// note - objects for impbus use underscore instead of camelCase
payload.gdpr_consent = {
consent_string: bidderRequest.gdprConsent.consentString,
consent_required: bidderRequest.gdprConsent.gdprApplies
};
}

const payloadString = JSON.stringify(payload);

return {
method: 'POST',
// url: URL,
url: url,
data: payloadString,
bidderRequest
};
},

/**
* Unpack the response from the server into a list of bids.
*
* @param {*} serverResponse A successful response from the server.
* @return {Bid[]} An array of bids which were nested inside the server.
*/
interpretResponse: function(serverResponse, {bidderRequest}) {
serverResponse = serverResponse.body;
const bids = [];
if (!serverResponse || serverResponse.error) {
let errorMessage = `in response for ${bidderRequest.bidderCode} adapter`;
if (serverResponse && serverResponse.error) { errorMessage += `: ${serverResponse.error}`; }
utils.logError(errorMessage);
return bids;
}
if (serverResponse.tags) {
serverResponse.tags.forEach(serverBid => {
if (serverBid.cpm && serverBid.cpm !== 0) {
const bid = newBid(serverBid, bidderRequest);
bid.mediaType = BANNER;
bids.push(bid);
}
});
}
return bids;
},

getUserSyncs: function(syncOptions) {
if (syncOptions.iframeEnabled) {
return [{
type: 'iframe',
url: '//d.admp.io/ping'
}];
}
}
}

/* Turn keywords parameter into ut-compatible format */
function getKeywords(keywords) {
let arrs = [];

utils._each(keywords, (v, k) => {
if (utils.isArray(v)) {
let values = [];
utils._each(v, (val) => {
val = utils.getValueString('keywords.' + k, val);
if (val) { values.push(val); }
});
v = values;
} else {
v = utils.getValueString('keywords.' + k, v);
if (utils.isStr(v)) {
v = [v];
} else {
return;
} // unsuported types - don't send a key
}
arrs.push({key: k, value: v});
});

return arrs;
}

/**
* Unpack the Server's Bid into a Prebid-compatible one.
* @param serverBid
* @param rtbBid
* @param bidderRequest
* @return Bid
*/
function newBid(serverBid, bidderRequest) {
const bid = {
requestId: serverBid.uuid,
cpm: serverBid.cpm,
creativeId: serverBid.creative_id,
// dealId: rtbBid.deal_id,
currency: 'USD',
netRevenue: true,
ttl: 300
};

Object.assign(bid, {
width: serverBid.width,
height: serverBid.height,
// ad: serverBid.ad
ad: _renderCreative(serverBid.adUrl, serverBid.width, serverBid.height)
});
// try {
// const url = rtbBid.rtb.trackers[0].impression_urls[0];
// const tracker = utils.createTrackPixelHtml(url);
// bid.ad += tracker;
// } catch (error) {
// utils.logError('Error appending tracking pixel', error);
// }

return bid;
}

function bidToTag(bid) {
const tag = {};
tag.sizes = transformSizes(bid.sizes);
tag.primary_size = tag.sizes[0];
tag.ad_types = [];
tag.uuid = bid.bidId;
if (bid.params.zoneId) {
tag.id = bid.params.zoneId;
} else {
tag.code = bid.params.invCode;
}
tag.allow_smaller_sizes = bid.params.allowSmallerSizes || false;
tag.use_pmt_rule = bid.params.usePaymentRule || false
tag.prebid = true;
tag.disable_psa = true;
if (bid.params.reserve) {
tag.reserve = bid.params.reserve;
}
if (bid.params.position) {
tag.position = {'above': 1, 'below': 2}[bid.params.position] || 0;
}
if (bid.params.trafficSourceCode) {
tag.traffic_source_code = bid.params.trafficSourceCode;
}
if (bid.params.privateSizes) {
tag.private_sizes = transformSizes(bid.params.privateSizes);
}
if (bid.params.supplyType) {
tag.supply_type = bid.params.supplyType;
}
if (bid.params.pubClick) {
tag.pubclick = bid.params.pubClick;
}
if (bid.params.extInvCode) {
tag.ext_inv_code = bid.params.extInvCode;
}
if (bid.params.externalImpId) {
tag.external_imp_id = bid.params.externalImpId;
}
if (!utils.isEmpty(bid.params.keywords)) {
tag.keywords = getKeywords(bid.params.keywords);
}

if (bid.mediaType === NATIVE || utils.deepAccess(bid, `mediaTypes.${NATIVE}`)) {
tag.ad_types.push(NATIVE);

if (bid.nativeParams) {
const nativeRequest = buildNativeRequest(bid.nativeParams);
tag[NATIVE] = {layouts: [nativeRequest]};
}
}

const videoMediaType = utils.deepAccess(bid, `mediaTypes.${VIDEO}`);
const context = utils.deepAccess(bid, 'mediaTypes.video.context');

if (bid.mediaType === VIDEO || videoMediaType) {
tag.ad_types.push(VIDEO);
}

// instream gets vastUrl, outstream gets vastXml
if (bid.mediaType === VIDEO || (videoMediaType && context !== 'outstream')) {
tag.require_asset_url = true;
}

if (bid.params.video) {
tag.video = {};
// place any valid video params on the tag
Object.keys(bid.params.video)
.filter(param => includes(VIDEO_TARGETING, param))
.forEach(param => tag.video[param] = bid.params.video[param]);
}

if (
(utils.isEmpty(bid.mediaType) && utils.isEmpty(bid.mediaTypes)) ||
(bid.mediaType === BANNER || (bid.mediaTypes && bid.mediaTypes[BANNER]))
) {
tag.ad_types.push(BANNER);
}

return tag;
}

// function bidToZoneId(bid) {
// return bid.params.zoneId;
// }

/* Turn bid request sizes into ut-compatible format */
function transformSizes(requestSizes) {
let sizes = [];
let sizeObj = {};

if (utils.isArray(requestSizes) && requestSizes.length === 2 &&
!utils.isArray(requestSizes[0])) {
sizeObj.width = parseInt(requestSizes[0], 10);
sizeObj.height = parseInt(requestSizes[1], 10);
sizes.push(sizeObj);
} else if (typeof requestSizes === 'object') {
for (let i = 0; i < requestSizes.length; i++) {
let size = requestSizes[i];
sizeObj = {};
sizeObj.width = parseInt(size[0], 10);
sizeObj.height = parseInt(size[1], 10);
sizes.push(sizeObj);
}
}

return sizes;
}

function buildNativeRequest(params) {
const request = {};

// map standard prebid native asset identifier to /ut parameters
// e.g., tag specifies `body` but /ut only knows `description`.
// mapping may be in form {tag: '<server name>'} or
// {tag: {serverName: '<server name>', requiredParams: {...}}}
Object.keys(params).forEach(key => {
// check if one of the <server name> forms is used, otherwise
// a mapping wasn't specified so pass the key straight through
const requestKey =
(NATIVE_MAPPING[key] && NATIVE_MAPPING[key].serverName) ||
NATIVE_MAPPING[key] ||
key;

// required params are always passed on request
const requiredParams = NATIVE_MAPPING[key] && NATIVE_MAPPING[key].requiredParams;
request[requestKey] = Object.assign({}, requiredParams, params[key]);

// minimum params are passed if no non-required params given on adunit
const minimumParams = NATIVE_MAPPING[key] && NATIVE_MAPPING[key].minimumParams;

if (requiredParams && minimumParams) {
// subtract required keys from adunit keys
const adunitKeys = Object.keys(params[key]);
const requiredKeys = Object.keys(requiredParams);
const remaining = adunitKeys.filter(key => !includes(requiredKeys, key));

// if none are left over, the minimum params needs to be sent
if (remaining.length === 0) {
request[requestKey] = Object.assign({}, request[requestKey], minimumParams);
}
}
});

return request;
}

function _renderCreative(adUrl, width, height) {
return `<html>
<head><script type='text/javascript'>inDapIF=true;</script></head>
<body style='margin : 0; padding: 0;'>
<!-- GIANTS BANNER -->
<iframe src='${adUrl}' style="border: 0px; width: ${width}px; height: ${height}px">
</div>
</body>
</html>`;
}

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

```
Module Name: Giants Bid Adapter
Module Type: Bidder Adapter
Maintainer: info@prebid.org
```

# Description

Connects to Giants exchange for bids.

Giants bid adapter supports Banner.

# Test Parameters
```
var adUnits = [
// Banner adUnit
{
code: 'banner-div',
sizes: [[300, 250], [300,600]],
bids: [{
bidder: 'giants',
params: {
zoneId: '584072408'
}
}]
}
];
```
Loading

0 comments on commit 752e234

Please sign in to comment.