-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Globalsun Bid Adapter: Initial Release #9307
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,212 @@ | ||
import { isFn, deepAccess, logMessage, logError } from '../src/utils.js'; | ||
import { convertOrtbRequestToProprietaryNative } from '../src/native.js'; | ||
|
||
import { registerBidder } from '../src/adapters/bidderFactory.js'; | ||
import { BANNER, NATIVE, VIDEO } from '../src/mediaTypes.js'; | ||
import { config } from '../src/config.js'; | ||
|
||
const BIDDER_CODE = 'globalsun'; | ||
const AD_URL = 'https://endpoint.globalsun.io/pbjs'; | ||
const SYNC_URL = 'https://cs.globalsun.io'; | ||
|
||
function isBidResponseValid(bid) { | ||
if (!bid.requestId || !bid.cpm || !bid.creativeId || !bid.ttl || !bid.currency) { | ||
return false; | ||
} | ||
|
||
switch (bid.mediaType) { | ||
case BANNER: | ||
return Boolean(bid.width && bid.height && bid.ad); | ||
case VIDEO: | ||
return Boolean(bid.vastUrl || bid.vastXml); | ||
case NATIVE: | ||
return Boolean(bid.native && bid.native.impressionTrackers && bid.native.impressionTrackers.length); | ||
default: | ||
return false; | ||
} | ||
} | ||
|
||
function getPlacementReqData(bid) { | ||
const { params, bidId, mediaTypes } = bid; | ||
const schain = bid.schain || {}; | ||
const { placementId, endpointId } = params; | ||
const bidfloor = getBidFloor(bid); | ||
|
||
const placement = { | ||
bidId, | ||
schain, | ||
bidfloor | ||
}; | ||
|
||
if (placementId) { | ||
placement.placementId = placementId; | ||
placement.type = 'publisher'; | ||
} else if (endpointId) { | ||
placement.endpointId = endpointId; | ||
placement.type = 'network'; | ||
} | ||
|
||
if (mediaTypes && mediaTypes[BANNER]) { | ||
placement.adFormat = BANNER; | ||
placement.sizes = mediaTypes[BANNER].sizes; | ||
} else if (mediaTypes && mediaTypes[VIDEO]) { | ||
placement.adFormat = VIDEO; | ||
placement.playerSize = mediaTypes[VIDEO].playerSize; | ||
placement.minduration = mediaTypes[VIDEO].minduration; | ||
placement.maxduration = mediaTypes[VIDEO].maxduration; | ||
placement.mimes = mediaTypes[VIDEO].mimes; | ||
placement.protocols = mediaTypes[VIDEO].protocols; | ||
placement.startdelay = mediaTypes[VIDEO].startdelay; | ||
placement.placement = mediaTypes[VIDEO].placement; | ||
placement.skip = mediaTypes[VIDEO].skip; | ||
placement.skipafter = mediaTypes[VIDEO].skipafter; | ||
placement.minbitrate = mediaTypes[VIDEO].minbitrate; | ||
placement.maxbitrate = mediaTypes[VIDEO].maxbitrate; | ||
placement.delivery = mediaTypes[VIDEO].delivery; | ||
placement.playbackmethod = mediaTypes[VIDEO].playbackmethod; | ||
placement.api = mediaTypes[VIDEO].api; | ||
placement.linearity = mediaTypes[VIDEO].linearity; | ||
} else if (mediaTypes && mediaTypes[NATIVE]) { | ||
placement.native = mediaTypes[NATIVE]; | ||
placement.adFormat = NATIVE; | ||
} | ||
|
||
return placement; | ||
} | ||
|
||
function getBidFloor(bid) { | ||
if (!isFn(bid.getFloor)) { | ||
return deepAccess(bid, 'params.bidfloor', 0); | ||
} | ||
|
||
try { | ||
const bidFloor = bid.getFloor({ | ||
currency: 'USD', | ||
mediaType: '*', | ||
size: '*', | ||
}); | ||
return bidFloor.floor; | ||
} catch (err) { | ||
logError(err); | ||
return 0; | ||
} | ||
} | ||
|
||
export const spec = { | ||
code: BIDDER_CODE, | ||
supportedMediaTypes: [BANNER, VIDEO, NATIVE], | ||
|
||
isBidRequestValid: (bid = {}) => { | ||
const { params, bidId, mediaTypes } = bid; | ||
let valid = Boolean(bidId && params && (params.placementId || params.endpointId)); | ||
|
||
if (mediaTypes && mediaTypes[BANNER]) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you may consider of checking the You can, for example, put another condition on the first
or more simply
or, using modern JS :
|
||
valid = valid && Boolean(mediaTypes[BANNER] && mediaTypes[BANNER].sizes); | ||
} else if (mediaTypes && mediaTypes[VIDEO]) { | ||
valid = valid && Boolean(mediaTypes[VIDEO] && mediaTypes[VIDEO].playerSize); | ||
} else if (mediaTypes && mediaTypes[NATIVE]) { | ||
valid = valid && Boolean(mediaTypes[NATIVE]); | ||
} else { | ||
valid = false; | ||
} | ||
return valid; | ||
}, | ||
|
||
buildRequests: (validBidRequests = [], bidderRequest = {}) => { | ||
// convert Native ORTB definition to old-style prebid native definition | ||
validBidRequests = convertOrtbRequestToProprietaryNative(validBidRequests); | ||
|
||
let deviceWidth = 0; | ||
let deviceHeight = 0; | ||
|
||
let winLocation; | ||
try { | ||
const winTop = window.top; | ||
deviceWidth = winTop.screen.width; | ||
deviceHeight = winTop.screen.height; | ||
winLocation = winTop.location; | ||
} catch (e) { | ||
logMessage(e); | ||
winLocation = window.location; | ||
} | ||
|
||
const refferUrl = bidderRequest.refererInfo && bidderRequest.refererInfo.page; | ||
let refferLocation; | ||
try { | ||
refferLocation = refferUrl && new URL(refferUrl); | ||
} catch (e) { | ||
logMessage(e); | ||
} | ||
// TODO: does the fallback make sense here? | ||
let location = refferLocation || winLocation; | ||
const language = (navigator && navigator.language) ? navigator.language.split('-')[0] : ''; | ||
const host = location.host; | ||
const page = location.pathname; | ||
const secure = location.protocol === 'https:' ? 1 : 0; | ||
const placements = []; | ||
const request = { | ||
deviceWidth, | ||
deviceHeight, | ||
language, | ||
secure, | ||
host, | ||
page, | ||
placements, | ||
coppa: config.getConfig('coppa') === true ? 1 : 0, | ||
ccpa: bidderRequest.uspConsent || undefined, | ||
gdpr: bidderRequest.gdprConsent || undefined, | ||
tmax: config.getConfig('bidderTimeout') | ||
}; | ||
|
||
const len = validBidRequests.length; | ||
for (let i = 0; i < len; i++) { | ||
const bid = validBidRequests[i]; | ||
placements.push(getPlacementReqData(bid)); | ||
} | ||
|
||
return { | ||
method: 'POST', | ||
url: AD_URL, | ||
data: request | ||
}; | ||
}, | ||
|
||
interpretResponse: (serverResponse) => { | ||
let response = []; | ||
for (let i = 0; i < serverResponse.body.length; i++) { | ||
let resItem = serverResponse.body[i]; | ||
if (isBidResponseValid(resItem)) { | ||
const advertiserDomains = resItem.adomain && resItem.adomain.length ? resItem.adomain : []; | ||
resItem.meta = { ...resItem.meta, advertiserDomains }; | ||
|
||
response.push(resItem); | ||
} | ||
} | ||
return response; | ||
}, | ||
|
||
getUserSyncs: (syncOptions, serverResponses, gdprConsent, uspConsent) => { | ||
let syncType = syncOptions.iframeEnabled ? 'iframe' : 'image'; | ||
let syncUrl = SYNC_URL + `/${syncType}?pbjs=1`; | ||
if (gdprConsent && gdprConsent.consentString) { | ||
if (typeof gdprConsent.gdprApplies === 'boolean') { | ||
syncUrl += `&gdpr=${Number(gdprConsent.gdprApplies)}&gdpr_consent=${gdprConsent.consentString}`; | ||
} else { | ||
syncUrl += `&gdpr=0&gdpr_consent=${gdprConsent.consentString}`; | ||
} | ||
} | ||
if (uspConsent && uspConsent.consentString) { | ||
syncUrl += `&ccpa_consent=${uspConsent.consentString}`; | ||
} | ||
|
||
const coppa = config.getConfig('coppa') ? 1 : 0; | ||
syncUrl += `&coppa=${coppa}`; | ||
|
||
return [{ | ||
type: syncType, | ||
url: syncUrl | ||
}]; | ||
} | ||
}; | ||
|
||
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,79 @@ | ||
# Overview | ||
|
||
``` | ||
Module Name: Globalsun Bidder Adapter | ||
Module Type: Globalsun Bidder Adapter | ||
Maintainer: prebid@globalsun.io | ||
``` | ||
|
||
# Description | ||
|
||
Connects to Globalsun exchange for bids. | ||
Globalsun bid adapter supports Banner, Video (instream and outstream) and Native. | ||
|
||
# Test Parameters | ||
``` | ||
var adUnits = [ | ||
// Will return static test banner | ||
{ | ||
code: 'adunit1', | ||
mediaTypes: { | ||
banner: { | ||
sizes: [ [300, 250], [320, 50] ], | ||
} | ||
}, | ||
bids: [ | ||
{ | ||
bidder: 'globalsun', | ||
params: { | ||
placementId: 'testBanner', | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
code: 'addunit2', | ||
mediaTypes: { | ||
video: { | ||
playerSize: [ [640, 480] ], | ||
context: 'instream', | ||
minduration: 5, | ||
maxduration: 60, | ||
} | ||
}, | ||
bids: [ | ||
{ | ||
bidder: 'globalsun', | ||
params: { | ||
placementId: 'testVideo', | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
code: 'addunit3', | ||
mediaTypes: { | ||
native: { | ||
title: { | ||
required: true | ||
}, | ||
body: { | ||
required: true | ||
}, | ||
icon: { | ||
required: true, | ||
size: [64, 64] | ||
} | ||
} | ||
}, | ||
bids: [ | ||
{ | ||
bidder: 'globalsun', | ||
params: { | ||
placementId: 'testNative', | ||
} | ||
} | ||
] | ||
} | ||
]; | ||
``` |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here you can use the same syntax shown before,
mediaTypes?.[BANNER]