-
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
Brainx Bid Adapter : initial release #12413
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
c34d66c
add brainx adpater
c52b2e7
fix adpater md
5426a3b
delete console
59e0a80
fix repeat
bb0a25b
Modify fixed parameters
bf48d1f
Modify endpoint to be optional
5714faa
fix email
cc503eb
update endpoint url
bbd6677
Merge branch 'prebid:master' into master
Hugh0222 4273be8
remove hello_html & x-domain history changes
d949c07
Merge branch 'master' of https://github.com/Hugh0222/Prebid.js
f57629a
fix size
ChrisHuie 8af84c4
remove empty line
ChrisHuie 4d530d1
Update brainxBidAdapter.md
ChrisHuie 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 |
---|---|---|
|
@@ -92,4 +92,4 @@ <h5>Div-1</h5> | |
</div> | ||
</body> | ||
|
||
</html> | ||
</html> |
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,117 @@ | ||
import { deepAccess, generateUUID, isArray, logWarn } from '../src/utils.js'; | ||
import { registerBidder } from '../src/adapters/bidderFactory.js'; | ||
// import { config } from 'src/config.js'; | ||
import { BANNER } from '../src/mediaTypes.js'; | ||
import { ortbConverter } from '../libraries/ortbConverter/converter.js' | ||
// import { config } from '../src/config.js'; | ||
|
||
const BIDDER_CODE = 'brainx'; | ||
const METHOD = 'POST'; | ||
const TTL = 200; | ||
const NET_REV = true; | ||
let ENDPOINT = 'https://dsp.brainx.tech/bid' | ||
// let ENDPOINT = 'http://adx-engine-gray.tec-do.cn/bid' | ||
|
||
const converter = ortbConverter({ | ||
context: { | ||
// `netRevenue` and `ttl` are required properties of bid responses - provide a default for them | ||
netRevenue: NET_REV, // or false if your adapter should set bidResponse.netRevenue = false | ||
ttl: TTL // default bidResponse.ttl (when not specified in ORTB response.seatbid[].bid[].exp) | ||
} | ||
}); | ||
|
||
export const spec = { | ||
code: BIDDER_CODE, | ||
// gvlid: IAB_GVL_ID, | ||
// aliases: [ | ||
// { code: "myalias", gvlid: IAB_GVL_ID_IF_DIFFERENT } | ||
// ], | ||
isBidRequestValid: function (bid) { | ||
if (!(hasBanner(bid) || hasVideo(bid))) { | ||
logWarn('Invalid bid request - missing required mediaTypes'); | ||
return false; | ||
} | ||
if (!(bid && bid.params)) { | ||
logWarn('Invalid bid request - missing required bid data'); | ||
return false; | ||
} | ||
|
||
if (!(bid.params.pubId)) { | ||
logWarn('Invalid bid request - missing required field pubId'); | ||
return false; | ||
} | ||
return true; | ||
}, | ||
buildRequests(bidRequests, bidderRequest) { | ||
const data = converter.toORTB({ bidRequests, bidderRequest }) | ||
ENDPOINT = String(deepAccess(bidRequests[0], 'params.endpoint')) ? deepAccess(bidRequests[0], 'params.endpoint') : ENDPOINT | ||
data.user = { | ||
buyeruid: generateUUID() | ||
} | ||
return { | ||
method: METHOD, | ||
url: `${ENDPOINT}?token=${String(deepAccess(bidRequests[0], 'params.pubId'))}`, | ||
data | ||
} | ||
}, | ||
interpretResponse(response, request) { | ||
let bids = []; | ||
if (response.body && response.body.seatbid && isArray(response.body.seatbid)) { | ||
response.body.seatbid.forEach(function (bidder) { | ||
if (isArray(bidder.bid)) { | ||
bidder.bid.map((bid) => { | ||
let serverBody = response.body; | ||
// bidRequest = request.originalBidRequest, | ||
let mediaType = BANNER; | ||
let currency = serverBody.cur || 'USD' | ||
|
||
const cpm = (parseFloat(bid.price) || 0).toFixed(2); | ||
const categories = deepAccess(bid, 'cat', []); | ||
|
||
const bidRes = { | ||
ad: bid.adm, | ||
width: bid.w, | ||
height: bid.h, | ||
requestId: bid.impid, | ||
cpm: cpm, | ||
currency: currency, | ||
mediaType: mediaType, | ||
ttl: TTL, | ||
creativeId: bid.crid || bid.id, | ||
netRevenue: NET_REV, | ||
nurl: bid.nurl, | ||
lurl: bid.lurl, | ||
meta: { | ||
mediaType: mediaType, | ||
primaryCatId: categories[0], | ||
secondaryCatIds: categories.slice(1), | ||
} | ||
}; | ||
if (bid.adomain && isArray(bid.adomain) && bid.adomain.length > 0) { | ||
bidRes.meta.advertiserDomains = bid.adomain; | ||
bidRes.meta.clickUrl = bid.adomain[0]; | ||
} | ||
bids.push(bidRes); | ||
}) | ||
} | ||
}); | ||
} | ||
|
||
return bids; | ||
}, | ||
// getUserSyncs: function (syncOptions, serverResponses, gdprConsent, uspConsent) { }, | ||
// onTimeout: function (timeoutData) { }, | ||
// onBidWon: function (bid) { }, | ||
// onSetTargeting: function (bid) { }, | ||
// onBidderError: function ({ error, bidderRequest }) { }, | ||
// onAdRenderSucceeded: function (bid) { }, | ||
supportedMediaTypes: [BANNER] | ||
} | ||
function hasBanner(bidRequest) { | ||
return !!deepAccess(bidRequest, 'mediaTypes.banner'); | ||
} | ||
function hasVideo(bidRequest) { | ||
return !!deepAccess(bidRequest, 'mediaTypes.video'); | ||
} | ||
|
||
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,56 @@ | ||
# brianx Bidder Adapter | ||
|
||
## Overview | ||
|
||
``` | ||
Module Name: brianx Bidder Adapter | ||
Module Type: Bidder Adapter | ||
Maintainer: [email protected] | ||
``` | ||
|
||
## Description | ||
|
||
Module that connects to brianx's demand sources | ||
|
||
## Bid Parameters | ||
|
||
| Name | Scope | Type | Description | Example | | ||
| ---------- | ------------ | ------ | ------------------------------------ | -------------------------------------- | | ||
| `pubId` | required | String | The Pub Id provided by Brainx Ads. | `F7B53DBC-85C1-4685-9A06-9CF4B6261FA3` | | ||
| `endpoint` | optional | String | The endpoint provided by Brainx Url. | `https://dsp.brainx.tech/bid` | | ||
|
||
## Example | ||
|
||
### Banner Ads | ||
|
||
```javascript | ||
var adUnits = [{ | ||
code: 'banner-ad-div', | ||
mediaTypes: { | ||
banner: { | ||
sizes: [ | ||
[320, 250], | ||
[320, 480] | ||
] | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'brianx', | ||
params: { | ||
pubId: 'F7B53DBC-85C1-4685-9A06-9CF4B6261FA3', | ||
endpoint: 'https://dsp.brainx.tech/bid' | ||
} | ||
}] | ||
}]; | ||
``` | ||
|
||
* For video ads, enable prebid cache. | ||
|
||
```javascript | ||
pbjs.setConfig({ | ||
ortb2: { | ||
ortbVersion: '2.5' | ||
}, | ||
debug: false // or true | ||
}); | ||
``` |
Oops, something went wrong.
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.
this is odd, it will change every request