forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
adkernelAdnBidAdapter.js
230 lines (213 loc) · 6.59 KB
/
adkernelAdnBidAdapter.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
import {deepAccess, deepSetValue, isArray, isNumber, isStr, logInfo, parseSizesInput} 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 DEFAULT_ADKERNEL_DSP_DOMAIN = 'tag.adkernel.com';
const DEFAULT_MIMES = ['video/mp4', 'video/webm', 'application/x-shockwave-flash', 'application/javascript'];
const DEFAULT_PROTOCOLS = [2, 3, 5, 6];
const DEFAULT_APIS = [1, 2];
const GVLID = 14;
function isRtbDebugEnabled(refInfo) {
return refInfo.topmostLocation?.indexOf('adk_debug=true') !== -1;
}
function buildImp(bidRequest) {
let imp = {
id: bidRequest.bidId,
tagid: bidRequest.adUnitCode
};
let mediaType;
let bannerReq = deepAccess(bidRequest, `mediaTypes.banner`);
let videoReq = deepAccess(bidRequest, `mediaTypes.video`);
if (bannerReq) {
let sizes = canonicalizeSizesArray(bannerReq.sizes);
imp.banner = {
format: parseSizesInput(sizes)
};
mediaType = BANNER;
} else if (videoReq) {
let size = canonicalizeSizesArray(videoReq.playerSize)[0];
imp.video = {
w: size[0],
h: size[1],
mimes: videoReq.mimes || DEFAULT_MIMES,
protocols: videoReq.protocols || DEFAULT_PROTOCOLS,
api: videoReq.api || DEFAULT_APIS
};
mediaType = VIDEO;
}
let bidFloor = getBidFloor(bidRequest, mediaType, '*');
if (bidFloor) {
imp.bidfloor = bidFloor;
}
return imp;
}
/**
* Convert input array of sizes to canonical form Array[Array[Number]]
* @param sizes
* @return Array[Array[Number]]
*/
function canonicalizeSizesArray(sizes) {
if (sizes.length === 2 && !isArray(sizes[0])) {
return [sizes];
}
return sizes;
}
function buildRequestParams(tags, bidderRequest) {
let {gdprConsent, uspConsent, refererInfo, ortb2} = bidderRequest;
let req = {
id: bidderRequest.bidderRequestId,
// TODO: root-level `tid` is not ORTB; is this intentional?
tid: ortb2?.source?.tid,
site: buildSite(refererInfo),
imp: tags
};
if (gdprConsent) {
if (gdprConsent.gdprApplies !== undefined) {
deepSetValue(req, 'user.gdpr', ~~gdprConsent.gdprApplies);
}
if (gdprConsent.consentString !== undefined) {
deepSetValue(req, 'user.consent', gdprConsent.consentString);
}
}
if (uspConsent) {
deepSetValue(req, 'user.us_privacy', uspConsent);
}
if (config.getConfig('coppa')) {
deepSetValue(req, 'user.coppa', 1);
}
return req;
}
function buildSite(refInfo) {
const result = {
page: refInfo.page,
secure: ~~(refInfo.page && refInfo.page.startsWith('https')),
ref: refInfo.ref
}
let keywords = document.getElementsByTagName('meta')['keywords'];
if (keywords && keywords.content) {
result.keywords = keywords.content;
}
return result;
}
function buildBid(tag) {
let bid = {
requestId: tag.impid,
cpm: tag.bid,
creativeId: tag.crid,
currency: 'USD',
ttl: 720,
netRevenue: true
};
if (tag.w) {
bid.width = tag.w;
}
if (tag.h) {
bid.height = tag.h;
}
if (tag.tag) {
bid.ad = tag.tag;
bid.mediaType = BANNER;
} else if (tag.vast_url) {
bid.vastUrl = tag.vast_url;
bid.mediaType = VIDEO;
}
fillBidMeta(bid, tag);
return bid;
}
function fillBidMeta(bid, tag) {
if (isStr(tag.agencyName)) {
deepSetValue(bid, 'meta.agencyName', tag.agencyName);
}
if (isNumber(tag.advertiserId)) {
deepSetValue(bid, 'meta.advertiserId', tag.advertiserId);
}
if (isStr(tag.advertiserName)) {
deepSetValue(bid, 'meta.advertiserName', tag.advertiserName);
}
if (isArray(tag.advertiserDomains)) {
deepSetValue(bid, 'meta.advertiserDomains', tag.advertiserDomains);
}
if (isStr(tag.primaryCatId)) {
deepSetValue(bid, 'meta.primaryCatId', tag.primaryCatId);
}
if (isArray(tag.secondaryCatIds)) {
deepSetValue(bid, 'meta.secondaryCatIds', tag.secondaryCatIds);
}
}
function getBidFloor(bid, mediaType, sizes) {
var floor;
var size = sizes.length === 1 ? sizes[0] : '*';
if (typeof bid.getFloor === 'function') {
const floorInfo = bid.getFloor({currency: 'USD', mediaType, size});
if (typeof floorInfo === 'object' && floorInfo.currency === 'USD' && !isNaN(parseFloat(floorInfo.floor))) {
floor = parseFloat(floorInfo.floor);
}
}
return floor;
}
export const spec = {
code: 'adkernelAdn',
gvlid: GVLID,
supportedMediaTypes: [BANNER, VIDEO],
aliases: ['engagesimply', 'adpluto_dsp'],
isBidRequestValid: function(bidRequest) {
return 'params' in bidRequest &&
(typeof bidRequest.params.host === 'undefined' || typeof bidRequest.params.host === 'string') &&
typeof bidRequest.params.pubId === 'number' &&
'mediaTypes' in bidRequest &&
('banner' in bidRequest.mediaTypes || 'video' in bidRequest.mediaTypes);
},
buildRequests: function(bidRequests, bidderRequest) {
let dispatch = bidRequests.map(buildImp)
.reduce((acc, curr, index) => {
let bidRequest = bidRequests[index];
let pubId = bidRequest.params.pubId;
let host = bidRequest.params.host || DEFAULT_ADKERNEL_DSP_DOMAIN;
acc[host] = acc[host] || {};
acc[host][pubId] = acc[host][pubId] || [];
acc[host][pubId].push(curr);
return acc;
}, {});
let requests = [];
Object.keys(dispatch).forEach(host => {
Object.keys(dispatch[host]).forEach(pubId => {
let request = buildRequestParams(dispatch[host][pubId], bidderRequest);
requests.push({
method: 'POST',
url: `https://${host}/tag?account=${pubId}&pb=1${isRtbDebugEnabled(bidderRequest.refererInfo) ? '&debug=1' : ''}`,
data: JSON.stringify(request)
})
});
});
return requests;
},
interpretResponse: function(serverResponse) {
let response = serverResponse.body;
if (!response.tags) {
return [];
}
if (response.debug) {
logInfo(`ADKERNEL DEBUG:\n${response.debug}`);
}
return response.tags.map(buildBid);
},
getUserSyncs: function(syncOptions, serverResponses) {
if (!serverResponses || serverResponses.length === 0) {
return [];
}
if (syncOptions.iframeEnabled) {
return buildSyncs(serverResponses, 'syncpages', 'iframe');
} else if (syncOptions.pixelEnabled) {
return buildSyncs(serverResponses, 'syncpixels', 'image');
} else {
return [];
}
}
};
function buildSyncs(serverResponses, propName, type) {
return serverResponses.filter(rps => rps.body && rps.body[propName])
.map(rsp => rsp.body[propName])
.reduce((a, b) => a.concat(b), [])
.map(syncUrl => ({type: type, url: syncUrl}));
}
registerBidder(spec);