diff --git a/modules/insticatorBidAdapter.js b/modules/insticatorBidAdapter.js new file mode 100644 index 00000000000..ed0bd480616 --- /dev/null +++ b/modules/insticatorBidAdapter.js @@ -0,0 +1,265 @@ +import {config} from '../src/config.js'; +import {BANNER} from '../src/mediaTypes.js'; +import {registerBidder} from '../src/adapters/bidderFactory.js'; +import { + cookiesAreEnabled, + deepAccess, + generateUUID, + getCookie, + localStorageIsEnabled, + logError, + setCookie, +} from '../src/utils.js'; + +const BIDDER_CODE = 'insticator'; +const ENDPOINT = 'https://ex.hunchme.com/v1/openrtb'; // staging endpoint! +const USER_ID_KEY = 'hb_insticator_uid'; +const USER_ID_COOKIE_EXP = 2592000000; // 30 days + +config.setDefaults({ + insticator: { + endpointUrl: ENDPOINT, + }, +}); + +function getUserId() { + let uid; + + if (localStorageIsEnabled()) { + uid = localStorage.getItem(USER_ID_KEY); + } else { + uid = getCookie(USER_ID_KEY); + } + + if (uid && uid.length !== 36) { + uid = undefined; + } + + return uid; +} + +function setUserId(userId) { + if (localStorageIsEnabled()) { + localStorage.setItem(USER_ID_KEY, userId); + } + + if (cookiesAreEnabled()) { + const expires = new Date(Date.now() + USER_ID_COOKIE_EXP).toISOString(); + setCookie(USER_ID_KEY, userId, expires); + } +} + +function buildImpression(bidRequest) { + const format = []; + const sizes = deepAccess(bidRequest, 'mediaTypes.banner.sizes') || bidRequest.sizes; + + for (const size of sizes) { + format.push({ + w: size[0], + h: size[1], + }) + } + + return { + id: bidRequest.bidId, + tagid: bidRequest.adUnitCode, + banner: { + format, + }, + ext: { + insticator: { + adUnitId: bidRequest.params.adUnitId, + }, + }, + }; +} + +function buildDevice() { + const device = { + w: window.innerWidth, + h: window.innerHeight, + js: true, + ext: { + localStorage: localStorageIsEnabled(), + cookies: cookiesAreEnabled(), + }, + }; + + const deviceConfig = config.getConfig('device'); + + if (typeof deviceConfig === 'object') { + Object.assign(device, deviceConfig); + } + + return device; +} + +function buildRegs(bidderRequest) { + if (bidderRequest.gdprConsent) { + return { + ext: { + gdpr: bidderRequest.gdprConsent.gdprApplies ? 1 : 0, + gdprConsentString: bidderRequest.gdprConsent.consentString, + }, + }; + } + + return {}; +} + +function buildUser() { + const userId = getUserId() || generateUUID(); + + setUserId(userId); + + return { + id: userId, + }; +} + +function buildRequest(validBidRequests, bidderRequest) { + const req = { + id: bidderRequest.bidderRequestId, + tmax: bidderRequest.timeout, + source: { + fd: 1, + tid: bidderRequest.auctionId, + }, + site: { + domain: location.hostname, + page: location.href, + ref: bidderRequest.refererInfo.referer, + }, + device: buildDevice(), + regs: buildRegs(bidderRequest), + user: buildUser(), + imp: validBidRequests.map(bidRequest => buildImpression(bidRequest)), + }; + + const params = config.getConfig('insticator.params'); + + if (params) { + req.ext = { + insticator: params, + }; + } + + return req; +} + +function buildBid(bid, bidderRequest) { + const originalBid = bidderRequest.bids.find(b => b.bidId === bid.impid); + + return { + requestId: bid.impid, + creativeId: bid.crid, + cpm: bid.price, + currency: 'USD', + netRevenue: true, + ttl: bid.exp, + width: bid.w, + height: bid.h, + mediaType: 'banner', + ad: bid.adm, + adUnitCode: originalBid.adUnitCode, + }; +} + +function buildBidSet(seatbid, bidderRequest) { + return seatbid.bid.map(bid => buildBid(bid, bidderRequest)); +} + +function validateSize(size) { + return (size instanceof Array) && + size.length === 2 && + typeof size[0] === 'number' && + typeof size[1] === 'number'; +} + +function validateSizes(sizes) { + return (sizes instanceof Array) && + sizes.length > 0 && + sizes.map(validateSize) + .reduce((a, b) => a && b, true); +} + +export const spec = { + code: BIDDER_CODE, + supportedMediaTypes: [BANNER], + + isBidRequestValid: function (bid) { + if (!bid.params.adUnitId) { + logError('insticator: missing adUnitId bid parameter'); + return false; + } + + if (!(BANNER in bid.mediaTypes)) { + logError('insticator: expected banner in mediaTypes'); + return false; + } + + if (!validateSizes(bid.sizes) && !validateSizes(bid.mediaTypes.banner.sizes)) { + logError('insticator: banner sizes not specified or invalid'); + return false; + } + + return true; + }, + + buildRequests: function (validBidRequests, bidderRequest) { + const requests = []; + + if (validBidRequests.length > 0) { + requests.push({ + method: 'POST', + url: config.getConfig('insticator.endpointUrl') || ENDPOINT, + options: { + contentType: 'application/json', + withCredentials: true, + }, + data: JSON.stringify(buildRequest(validBidRequests, bidderRequest)), + bidderRequest, + }); + } + + return requests; + }, + + interpretResponse: function (serverResponse, request) { + const bidderRequest = request.bidderRequest; + const body = serverResponse.body; + + if (!body || body.id !== bidderRequest.bidderRequestId) { + logError('insticator: response id does not match bidderRequestId'); + return []; + } + + if (!body.seatbid) { + return []; + } + + const bidsets = body.seatbid.map( + seatbid => buildBidSet(seatbid, bidderRequest), + ); + + return bidsets.reduce((a, b) => a.concat(b), []); + }, + + getUserSyncs: function (options, responses) { + const syncs = []; + + for (const response of responses) { + if ( + response.body && + response.body.ext && + response.body.ext.sync instanceof Array + ) { + syncs.push(...response.body.ext.sync); + } + } + + return syncs; + }, +}; + +registerBidder(spec); diff --git a/modules/insticatorBidAdapter.md b/modules/insticatorBidAdapter.md new file mode 100644 index 00000000000..da66739b333 --- /dev/null +++ b/modules/insticatorBidAdapter.md @@ -0,0 +1,49 @@ +Overview +======== + +``` +Module Name: Insticator Adapter +Module Type: Bidder Adapter +Maintainer: contact@insticator.com +``` + +Description +=========== + +This module connects publishers to Insticator exchange of demand sources through Prebid.js. + +### Supported Media Types + +| Type | Support +| --- | --- +| Banner | Fully supported for all approved sizes. + +# Bid Parameters + +Each of the Insticator-specific parameters provided under the `adUnits[].bids[].params` +object are detailed here. + +### Banner + +| Key | Scope | Type | Description +| --- | --- | --- | --- +| adUnitId | Required | String | The ad unit ID provided by Insticator. + + +# Test Parameters +``` + var adUnits = [ + { + code: 'test-div', + sizes: [[300, 250]], + bids: [ + { + bidder: 'insticator', + params: { + adUnitId: 'test' + } + } + ] + } + ] +``` diff --git a/modules/serverbidBidAdapter.js b/modules/serverbidBidAdapter.js index faeeafdd53f..6670c110958 100644 --- a/modules/serverbidBidAdapter.js +++ b/modules/serverbidBidAdapter.js @@ -13,9 +13,6 @@ const CONFIG = { 'onefiftytwo': { 'BASE_URI': 'https://e.serverbid.com/api/v2' }, - 'insticator': { - 'BASE_URI': 'https://e.serverbid.com/api/v2' - }, 'automatad': { 'BASE_URI': 'https://e.serverbid.com/api/v2' }, @@ -35,7 +32,7 @@ let bidder = 'serverbid'; export const spec = { code: BIDDER_CODE, - aliases: ['connectad', 'onefiftytwo', 'insticator', 'automatad', 'archon', 'buysellads', 'answermedia'], + aliases: ['connectad', 'onefiftytwo', 'automatad', 'archon', 'buysellads', 'answermedia'], /** * Determines whether or not the given bid request is valid. diff --git a/test/spec/modules/insticatorBidAdapter_spec.js b/test/spec/modules/insticatorBidAdapter_spec.js new file mode 100644 index 00000000000..f084199d934 --- /dev/null +++ b/test/spec/modules/insticatorBidAdapter_spec.js @@ -0,0 +1,339 @@ +import { expect } from 'chai'; +import * as utils from 'src/utils.js'; +import { spec } from 'modules/insticatorBidAdapter.js'; + +describe('Insticator bid adapter', () => { + const bidderRequestWithGDPR = { + auctionId: 'ccaabb112233', + bidderRequestId: '123d12231aa', + timeout: 200, + refererInfo: { + referer: 'http://domain.com/foo', + }, + gdprConsent: { + gdprApplies: 1, + consentString: 'foobar', + }, + }; + + const validBid = { + bidder: 'insticator', + params: { + adUnitId: '123456', + }, + sizes: [ + [300, 250], + [300, 600], + ], + mediaTypes: { + banner: { + sizes: [ + [300, 250], + [300, 600], + ], + }, + }, + adUnitCode: 'div-gpt-ad-837465923534-0', + transactionId: 'f160fc1d-3db4-4dbe-ab1d-b2814e5c2d57', + bidId: '1234abcd', + bidderRequestId: '123d12231aa', + auctionId: 'ccaabb112233', + }; + + const validBid2 = { + bidder: 'insticator', + params: { + adUnitId: '234567', + }, + sizes: [[300, 600]], + mediaTypes: { + banner: { + sizes: [[300, 600]], + }, + }, + adUnitCode: 'div-gpt-ad-4645345744-0', + transactionId: 'b47af70a-cecd-4974-8a01-50721d6033cb', + bidId: '2345abcd', + bidderRequestId: '123d12231aa', + auctionId: 'ccaabb112233', + }; + + const bidderRequest = { + auctionId: 'ccaabb112233', + bidderRequestId: '123d12231aa', + timeout: 200, + refererInfo: { + referer: 'http://domain.com/foo', + }, + bids: [validBid, validBid2], + }; + + const validResponse = { + id: '123d12231aa', + seatbid: [ + { + seat: 'insticator', + group: 0, + bid: [ + { + id: 'bid123456', + w: 300, + h: 250, + impid: '1234abcd', + price: 0.5, + exp: 300, + crid: '987654321', + adm: '