forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrightMountainMediaBidAdapter.js
254 lines (224 loc) · 6.12 KB
/
brightMountainMediaBidAdapter.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
import { generateUUID, deepAccess, logWarn, deepSetValue, isPlainObject } from '../src/utils.js';
import { registerBidder } from '../src/adapters/bidderFactory.js';
import { BANNER, VIDEO } from '../src/mediaTypes.js';
import { config } from '../src/config.js';
const BIDDER_CODE = 'bmtm';
const AD_URL = 'https://one.elitebidder.com/api/hb?sid=';
const SYNC_URL = 'https://console.brightmountainmedia.com:8443/cookieSync';
const CURRENCY = 'USD';
export const spec = {
code: BIDDER_CODE,
aliases: ['brightmountainmedia'],
supportedMediaTypes: [BANNER, VIDEO],
isBidRequestValid: (bid) => {
if (bid.bidId && bid.bidder && bid.params && bid.params.placement_id) {
return true;
}
if (bid.params.placement_id == 0 && bid.params.test === 1) {
return true;
}
return false;
},
buildRequests: (validBidRequests, bidderRequest) => {
let requestData = [];
let size = [0, 0];
let oRTBRequest = {
at: 2,
site: buildSite(bidderRequest),
device: buildDevice(),
cur: [CURRENCY],
tmax: Math.min(1000, bidderRequest.timeout),
regs: buildRegs(bidderRequest),
user: {},
source: {},
};
validBidRequests.forEach((bid) => {
oRTBRequest['id'] = generateUUID();
oRTBRequest['imp'] = [
{
id: '1',
bidfloor: 0,
bidfloorcur: CURRENCY,
secure: document.location.protocol === 'https:' ? 1 : 0,
ext: {
placement_id: bid.params.placement_id,
prebidVersion: '$prebid.version$',
}
},
];
if (deepAccess(bid, 'mediaTypes.banner')) {
if (bid.mediaTypes.banner.sizes) {
size = bid.mediaTypes.banner.sizes[0];
}
oRTBRequest.imp[0].banner = {
h: size[0],
w: size[1],
}
} else {
if (bid.mediaTypes.video.playerSize) {
size = bid.mediaTypes.video.playerSize[0];
}
oRTBRequest.imp[0].video = {
h: size[0],
w: size[1],
mimes: bid.mediaTypes.video.mimes ? bid.mediaTypes.video.mimes : [],
skip: bid.mediaTypes.video.skip ? 1 : 0,
playbackmethod: bid.mediaTypes.video.playbackmethod ? bid.mediaTypes.video.playbackmethod : [],
protocols: bid.mediaTypes.video.protocols ? bid.mediaTypes.video.protocols : [],
api: bid.mediaTypes.video.api ? bid.mediaTypes.video.api : [],
minduration: bid.mediaTypes.video.minduration ? bid.mediaTypes.video.minduration : 1,
maxduration: bid.mediaTypes.video.maxduration ? bid.mediaTypes.video.maxduration : 999,
}
}
oRTBRequest.imp[0].bidfloor = getFloor(bid, size);
oRTBRequest.user = getUserIdAsEids(bid.userIdAsEids)
oRTBRequest.source = getSchain(bid.schain)
requestData.push({
method: 'POST',
url: `${AD_URL}${bid.params.placement_id}`,
data: JSON.stringify(oRTBRequest),
bidRequest: bid,
})
});
return requestData;
},
interpretResponse: (serverResponse, { bidRequest }) => {
let bidResponse = [];
let bid;
let response;
try {
response = serverResponse.body;
bid = response.seatbid[0].bid[0];
} catch (e) {
response = null;
}
if (!response || !bid || !bid.adm || !bid.price) {
logWarn(`Bidder ${spec.code} no valid bid`);
return [];
}
let tempResponse = {
requestId: bidRequest.bidId,
cpm: bid.price,
currency: response.cur,
width: bid.w,
height: bid.h,
creativeId: bid.crid,
mediaType: deepAccess(bidRequest, 'mediaTypes.banner') ? BANNER : VIDEO,
ttl: 3000,
netRevenue: true,
meta: {
advertiserDomains: bid.adomain
}
};
if (tempResponse.mediaType === BANNER) {
tempResponse.ad = replaceAuctionPrice(bid.adm, bid.price);
} else {
tempResponse.vastXml = replaceAuctionPrice(bid.adm, bid.price);
}
bidResponse.push(tempResponse);
return bidResponse;
},
getUserSyncs: (syncOptions) => {
if (syncOptions.iframeEnabled) {
return [{
type: 'iframe',
url: SYNC_URL
}];
}
},
};
registerBidder(spec);
function buildSite(bidderRequest) {
// TODO: should name/domain be the domain?
let site = {
name: window.location.hostname,
publisher: {
domain: window.location.hostname,
}
};
if (bidderRequest && bidderRequest.refererInfo) {
deepSetValue(
site,
'page',
bidderRequest.refererInfo.page
);
deepSetValue(
site,
'ref',
bidderRequest.refererInfo.ref
);
}
return site;
}
function buildDevice() {
return {
ua: navigator.userAgent,
w: window.top.screen.width,
h: window.top.screen.height,
js: 1,
language: navigator.language,
dnt: navigator.doNotTrack === 'yes' || navigator.doNotTrack == '1' ||
navigator.msDoNotTrack == '1' ? 1 : 0,
}
}
function buildRegs(bidderRequest) {
let regs = {
coppa: config.getConfig('coppa') == true ? 1 : 0,
};
if (bidderRequest && bidderRequest.gdprConsent) {
deepSetValue(
regs,
'ext.gdpr',
bidderRequest.gdprConsent.gdprApplies ? 1 : 0,
);
deepSetValue(
regs,
'ext.gdprConsentString',
bidderRequest.gdprConsent.consentString || 'ALL',
);
}
if (bidderRequest && bidderRequest.uspConsent) {
deepSetValue(regs,
'ext.us_privacy',
bidderRequest.uspConsent);
}
return regs;
}
function replaceAuctionPrice(str, cpm) {
if (!str) return;
return str.replace(/\$\{AUCTION_PRICE\}/g, cpm);
}
function getFloor(bid, size) {
if (typeof bid.getFloor === 'function') {
let floorInfo = {};
floorInfo = bid.getFloor({
currency: 'USD',
mediaType: 'banner',
size: size,
});
if (isPlainObject(floorInfo) && floorInfo.currency === 'USD') {
return parseFloat(floorInfo.floor);
}
}
return 0;
}
function getUserIdAsEids(userIds) {
if (userIds) {
return {
ext: {
eids: userIds,
}
}
};
return {};
}
function getSchain(schain) {
if (schain) {
return {
ext: {
schain: schain,
}
}
}
return {};
}