forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbmsBidAdapter.js
160 lines (141 loc) · 4 KB
/
bmsBidAdapter.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
import { ortbConverter } from '../libraries/ortbConverter/converter.js';
import { registerBidder } from '../src/adapters/bidderFactory.js';
import { BANNER } from '../src/mediaTypes.js';
import { getStorageManager } from '../src/storageManager.js';
import {
replaceAuctionPrice,
isFn,
isPlainObject,
deepSetValue,
isEmpty,
triggerPixel,
} from '../src/utils.js';
const BIDDER_CODE = 'bms';
const ENDPOINT_URL =
'https://api.prebid.int.us-east-1.bluems.com/v1/bid?exchangeId=prebid';
const GVLID = 1105;
const DEFAULT_CURRENCY = 'USD';
const DEFAULT_BID_TTL = 1200;
export const storage = getStorageManager({ bidderCode: BIDDER_CODE });
function getBidFloor(bid) {
if (isFn(bid.getFloor)) {
let floor = bid.getFloor({
currency: DEFAULT_CURRENCY,
mediaType: BANNER,
size: '*',
});
if (
isPlainObject(floor) &&
!isNaN(floor.floor) &&
floor.currency === DEFAULT_CURRENCY
) {
return floor.floor;
}
}
return null;
}
const converter = ortbConverter({
context: {
netRevenue: true, // Default net revenue configuration
ttl: 100, // Default time-to-live for bid responses
},
imp,
request,
});
function request(buildRequest, imps, bidderRequest, context) {
let request = buildRequest(imps, bidderRequest, context);
// Add publisher ID
deepSetValue(request, 'site.publisher.id', context.publisherId);
return request;
}
function imp(buildImp, bidRequest, context) {
let imp = buildImp(bidRequest, context);
const floor = getBidFloor(bidRequest);
imp.tagid = bidRequest.params.placementId;
if (floor) {
imp.bidfloor = floor;
imp.bidfloorcur = DEFAULT_CURRENCY;
}
return imp;
}
export const spec = {
code: BIDDER_CODE,
gvlid: GVLID,
supportedMediaTypes: [BANNER],
// Validate bid request
isBidRequestValid: function (bid) {
return !!bid.params.placementId && !!bid.params.publisherId;
},
// Build OpenRTB requests using `ortbConverter`
buildRequests: function (validBidRequests, bidderRequest) {
const context = {
publisherId: validBidRequests.find(
(bidRequest) => bidRequest.params?.publisherId
)?.params.publisherId,
};
const ortbRequest = converter.toORTB({
bidRequests: validBidRequests,
bidderRequest,
context,
});
// Add extensions to the request
ortbRequest.ext = ortbRequest.ext || {};
deepSetValue(ortbRequest, 'ext.gvlid', GVLID);
return [
{
method: 'POST',
url: ENDPOINT_URL,
data: JSON.stringify(ortbRequest),
options: {
contentType: 'text/plain',
withCredentials: true,
},
},
];
},
interpretResponse: (serverResponse) => {
if (!serverResponse || isEmpty(serverResponse.body)) return [];
let bids = [];
serverResponse.body.seatbid.forEach((response) => {
response.bid.forEach((bid) => {
const mediaType = bid.ext?.mediaType || 'banner';
bids.push({
ad: replaceAuctionPrice(bid.adm, bid.price),
adapterCode: BIDDER_CODE,
cpm: bid.price,
creativeId: bid.ext.bms.adId,
currency: serverResponse.body.cur || 'USD',
deferBilling: false,
deferRendering: false,
width: bid.w,
height: bid.h,
mediaType,
netRevenue: true,
originalCpm: bid.price,
originalCurrency: serverResponse.body.cur || 'USD',
requestId: bid.impid,
seatBidId: bid.id,
ttl: typeof bid.exp === 'number' ? bid.exp : DEFAULT_BID_TTL,
nurl: bid.nurl || null,
burl: bid.burl || null,
meta: {
advertiserDomains: bid.adomain || [],
networkId: bid.ext?.networkId || 1105,
networkName: bid.ext?.networkName || 'BMS',
}
});
});
});
return bids;
},
onBidWon: function (bid) {
const { burl, nurl } = bid || {};
if (nurl) {
triggerPixel(nurl);
}
if (burl) {
triggerPixel(burl);
}
},
};
registerBidder(spec);