-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lane4 Bid Adapter : initial release (#12749)
* Audiencelogy Bid Adapter : Initial Release * removed duplicates * removed duplicates * added common code in library libraries/audiencelogyUtils * solved linter issues * imported getRequest from library and solved linting issue * solved trailing space issue * new adapter : lane4 * new adapter : lane4 * removed linter errors * removed trailing space
- Loading branch information
1 parent
589f8c0
commit cacab4f
Showing
4 changed files
with
430 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import { | ||
BANNER, | ||
NATIVE | ||
} from '../src/mediaTypes.js'; | ||
import { | ||
registerBidder | ||
} from '../src/adapters/bidderFactory.js'; | ||
import { | ||
getBannerRequest, | ||
getBannerResponse, | ||
getNativeResponse, | ||
} from '../libraries/audUtils/bidderUtils.js'; | ||
|
||
const EP = 'https://rtb.lane4.io/hb'; | ||
// Export const spec | ||
export const spec = { | ||
code: 'lane4', | ||
supportedMediaTypes: [BANNER, NATIVE], | ||
// Determines whether or not the given bid request is valid | ||
isBidRequestValid: (bidRequestParam) => { | ||
return !!(bidRequestParam.params.placement_id); | ||
}, | ||
// Make a server request from the list of BidRequests | ||
buildRequests: (bidR, serverR) => { | ||
// Get Requests based on media types | ||
return getBannerRequest(bidR, serverR, EP); | ||
}, | ||
// Unpack the response from the server into a list of bids. | ||
interpretResponse: (bidRS, bidRQ) => { | ||
let Response = {}; | ||
const mediaType = JSON.parse(bidRQ.data)[0].MediaType; | ||
if (mediaType == BANNER) { | ||
Response = getBannerResponse(bidRS, BANNER); | ||
} else if (mediaType == NATIVE) { | ||
Response = getNativeResponse(bidRS, bidRQ, NATIVE); | ||
} | ||
return Response; | ||
} | ||
} | ||
|
||
registerBidder(spec); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Overview | ||
|
||
``` | ||
Module Name: Lane4 Bidder Adapter | ||
Module Type: Bidder Adapter | ||
Maintainer: adsupport@lane4.io | ||
``` | ||
|
||
# Description | ||
|
||
Lane4 currently supports the BANNER and NATIVE type ads through prebid js | ||
|
||
Module that connects to Lane4's demand sources. | ||
|
||
# Test Request | ||
``` | ||
var adUnits = [ | ||
{ | ||
code: 'display-ad', | ||
mediaTypes: { | ||
banner: { | ||
sizes: [[300, 250]], | ||
} | ||
} | ||
bids: [ | ||
{ | ||
bidder: 'lane4', | ||
params: { | ||
placement_id: 5550, // Required parameter | ||
width: 300, // Optional parameter | ||
height: 250, // Optional parameter | ||
bid_floor: 0.5 // Optional parameter | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
code: 'native-ad-container', | ||
mediaTypes: { | ||
native: { | ||
title: { required: true, len: 100 }, | ||
image: { required: true, sizes: [300, 250] }, | ||
sponsored: { required: false }, | ||
clickUrl: { required: true }, | ||
desc: { required: true }, | ||
icon: { required: false, sizes: [50, 50] }, | ||
cta: { required: false } | ||
} | ||
}, | ||
bids: [ | ||
{ | ||
bidder: 'lane4', | ||
params: { | ||
placement_id: 5551, // Required parameter | ||
bid_floor: 1 // Optional parameter | ||
} | ||
} | ||
] | ||
} | ||
]; | ||
``` |
Oops, something went wrong.