forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathholidBidAdapter.js
261 lines (224 loc) · 7.19 KB
/
holidBidAdapter.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
255
256
257
258
259
260
261
import {
deepAccess,
deepSetValue,
getBidIdParameter,
isStr,
logMessage,
triggerPixel,
} from '../src/utils.js';
import { BANNER } from '../src/mediaTypes.js';
import { registerBidder } from '../src/adapters/bidderFactory.js';
const BIDDER_CODE = 'holid';
const GVLID = 1177;
const ENDPOINT = 'https://helloworld.holid.io/openrtb2/auction';
const COOKIE_SYNC_ENDPOINT = 'https://null.holid.io/sync.html';
const TIME_TO_LIVE = 300;
const TMAX = 500;
let wurlMap = {};
export const spec = {
code: BIDDER_CODE,
gvlid: GVLID,
supportedMediaTypes: [BANNER],
// Validate bid: requires adUnitID parameter
isBidRequestValid: function (bid) {
return !!bid.params.adUnitID;
},
// Build request payload including GDPR, GPP, and US Privacy data if available
buildRequests: function (validBidRequests, bidderRequest) {
return validBidRequests.map((bid) => {
const requestData = {
...bid.ortb2,
source: { schain: bid.schain },
id: bidderRequest.bidderRequestId,
imp: [getImp(bid)],
tmax: TMAX,
...buildStoredRequest(bid),
};
// GDPR: If available, include GDPR signals in the request
if (bidderRequest && bidderRequest.gdprConsent) {
deepSetValue(
requestData,
'regs.ext.gdpr',
bidderRequest.gdprConsent.gdprApplies ? 1 : 0
);
deepSetValue(
requestData,
'user.ext.consent',
bidderRequest.gdprConsent.consentString
);
}
// GPP: If available, include GPP data in regs.ext
if (bidderRequest && bidderRequest.gpp) {
deepSetValue(requestData, 'regs.ext.gpp', bidderRequest.gpp);
}
if (bidderRequest && bidderRequest.gppSids) {
deepSetValue(requestData, 'regs.ext.gpp_sid', bidderRequest.gppSids);
}
// US Privacy: If available, include US Privacy signal in regs.ext
if (bidderRequest && bidderRequest.usPrivacy) {
deepSetValue(requestData, 'regs.ext.us_privacy', bidderRequest.usPrivacy);
}
// If user IDs are available, add them under user.ext.eids
if (bid.userIdAsEids) {
deepSetValue(requestData, 'user.ext.eids', bid.userIdAsEids);
}
return {
method: 'POST',
url: ENDPOINT,
data: JSON.stringify(requestData),
bidId: bid.bidId,
};
});
},
// Interpret response: group bids by unique impid and select the highest CPM bid per imp
interpretResponse: function (serverResponse, bidRequest) {
const bidResponsesMap = {}; // Maps impid -> highest bid object
if (!serverResponse.body || !serverResponse.body.seatbid) {
return [];
}
serverResponse.body.seatbid.forEach((seatbid) => {
seatbid.bid.forEach((bid) => {
const impId = bid.impid; // Unique identifier matching getImp(bid).id
// Build meta object with adomain and networkId, preserving any existing data
let meta = deepAccess(bid, 'ext.prebid.meta', {}) || {};
const adomain = deepAccess(bid, 'adomain', []);
if (adomain.length > 0) {
meta.adomain = adomain;
}
const networkId = deepAccess(bid, 'ext.prebid.meta.networkId');
if (networkId) {
meta.networkId = networkId;
}
deepSetValue(bid, 'ext.prebid.meta', meta);
const currentBidResponse = {
requestId: impId, // Using imp.id as the unique request identifier
cpm: bid.price,
width: bid.w,
height: bid.h,
ad: bid.adm,
creativeId: bid.crid,
currency: serverResponse.body.cur,
netRevenue: true,
ttl: TIME_TO_LIVE,
meta: meta,
};
// For each imp, only keep the bid with the highest CPM
if (
!bidResponsesMap[impId] ||
currentBidResponse.cpm > bidResponsesMap[impId].cpm
) {
bidResponsesMap[impId] = currentBidResponse;
}
// Store win notification URL (if provided) using the impid as key
const wurl = deepAccess(bid, 'ext.prebid.events.win');
if (wurl) {
addWurl(impId, wurl);
}
});
});
return Object.values(bidResponsesMap);
},
// User syncs: supports both image and iframe syncing with privacy parameters if available
getUserSyncs(optionsType, serverResponse, gdprConsent, uspConsent) {
const syncs = [
{
type: 'image',
url: 'https://track.adform.net/Serving/TrackPoint/?pm=2992097&lid=132720821',
},
];
if (!serverResponse || (Array.isArray(serverResponse) && serverResponse.length === 0)) {
return syncs;
}
const responses = Array.isArray(serverResponse)
? serverResponse
: [serverResponse];
const bidders = getBidders(responses);
if (optionsType.iframeEnabled && bidders) {
const queryParams = [];
queryParams.push('bidders=' + bidders);
if (gdprConsent) {
queryParams.push('gdpr=' + (gdprConsent.gdprApplies ? 1 : 0));
queryParams.push(
'gdpr_consent=' +
encodeURIComponent(gdprConsent.consentString || '')
);
} else {
queryParams.push('gdpr=0');
}
if (typeof uspConsent !== 'undefined') {
queryParams.push('us_privacy=' + encodeURIComponent(uspConsent));
}
queryParams.push('type=iframe');
const strQueryParams = '?' + queryParams.join('&');
syncs.push({
type: 'iframe',
url: COOKIE_SYNC_ENDPOINT + strQueryParams,
});
}
return syncs;
},
// On bid win, trigger win notification via an image pixel if available
onBidWon(bid) {
const wurl = getWurl(bid.requestId);
if (wurl) {
logMessage(`Invoking image pixel for wurl on BID_WIN: "${wurl}"`);
triggerPixel(wurl);
removeWurl(bid.requestId);
}
},
};
// Create a unique impression object with bid id as the identifier
function getImp(bid) {
const imp = buildStoredRequest(bid);
imp.id = bid.bidId; // Ensure imp.id is unique to match the bid response correctly
const sizes =
bid.sizes && !Array.isArray(bid.sizes[0]) ? [bid.sizes] : bid.sizes;
if (deepAccess(bid, 'mediaTypes.banner')) {
imp.banner = {
format: sizes.map((size) => {
return { w: size[0], h: size[1] };
}),
};
}
// Include bid floor if defined in bid.params
if (bid.params.floor) {
imp.bidfloor = bid.params.floor;
}
return imp;
}
// Build stored request object using bid parameters
function buildStoredRequest(bid) {
return {
ext: {
prebid: {
storedrequest: {
id: getBidIdParameter('adUnitID', bid.params),
},
},
},
};
}
// Helper: Extract unique bidders from responses for user syncs
function getBidders(responses) {
const bidders = responses
.map((res) => Object.keys(res.body.ext?.responsetimemillis || {}))
.flat();
if (bidders.length) {
return encodeURIComponent(JSON.stringify([...new Set(bidders)]));
}
}
// Win URL helper functions
function addWurl(requestId, wurl) {
if (isStr(requestId)) {
wurlMap[requestId] = wurl;
}
}
function removeWurl(requestId) {
delete wurlMap[requestId];
}
function getWurl(requestId) {
if (isStr(requestId)) {
return wurlMap[requestId];
}
}
registerBidder(spec);