forked from indexexchange/ix-library-adapters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp-nexus-network-htb.js
491 lines (409 loc) · 15.6 KB
/
app-nexus-network-htb.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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
/**
* @author: Partner
* @license: UNLICENSED
*
* @copyright: Copyright (c) 2017 by Index Exchange. All rights reserved.
*
* The information contained within this document is confidential, copyrighted
* and or a trade secret. No part of this document may be reproduced or
* distributed in any form or by any means, in whole or in part, without the
* prior written permission of Index Exchange.
*/
'use strict';
////////////////////////////////////////////////////////////////////////////////
// Dependencies ////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
var Browser = require('browser.js');
var Classify = require('classify.js');
var Constants = require('constants.js');
var Partner = require('partner.js');
var Size = require('size.js');
var SpaceCamp = require('space-camp.js');
var System = require('system.js');
var Network = require('network.js');
var Utilities = require('utilities.js');
var Whoopsie = require('whoopsie.js');
var RenderService;
var ComplianceService;
//? if (DEBUG) {
var ConfigValidators = require('config-validators.js');
var Inspector = require('schema-inspector.js');
var PartnerSpecificValidator = require('app-nexus-network-htb-validator.js');
var Scribe = require('scribe.js');
//? }
////////////////////////////////////////////////////////////////////////////////
// Main ////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
/**
* AppNexusNetworkHtb Class for the creation of the Header Tag Bidder
*
* @class
*/
function AppNexusNetworkHtb(configs) {
/* =====================================
* Data
* ---------------------------------- */
/* Private
* ---------------------------------- */
/**
* Reference to the partner base class.
*
* @private {object}
*/
var __baseClass;
/**
* Profile for this partner.
*
* @private {object}
*/
var __profile;
/**
* Base URL for the bidding end-point.
*
* @private {object}
*/
var __baseUrl;
var __version = '2.5.0';
/* =====================================
* Functions
* ---------------------------------- */
/* Utilities
* ---------------------------------- */
/**
* Generates the request URL to the endpoint for the xSlots in the given
* returnParcels.
*
* @param {Object[]} returnParcels Array of parcels.
* @return {Object} Request object.
*/
function __generateRequestObj(returnParcels) {
//? if (DEBUG){
var results = Inspector.validate({
type: 'array',
items: {
type: 'object',
properties: {
htSlot: {
type: 'object'
},
xSlotRef: {
type: 'object'
},
xSlotName: {
type: 'string',
minLength: 1
}
}
}
}, returnParcels);
if (!results.valid) {
throw Whoopsie('INVALID_ARGUMENT', results.format());
}
//? }
var queryObj = {};
var callbackId = System.generateUniqueId();
queryObj.sdk = {
version: __version
};
/* eslint-disable camelcase */
queryObj.hb_source = 2;
queryObj.referrer_detection = {
rd_ifs: null,
rd_ref: encodeURIComponent(Browser.getPageUrl()),
rd_stk: encodeURIComponent(Browser.getPageUrl()),
rd_top: null
};
/* eslint-enable camelcase */
queryObj.tags = [];
returnParcels.forEach(function (parcel) {
var objSizes = parcel.xSlotRef.sizes.map(function (reqSize) {
return {
width: reqSize[0],
height: reqSize[1]
};
});
var numPlacementId = parseInt(parcel.xSlotRef.placementId, 10);
var allowSmallerSizes = parcel.xSlotRef.allowSmallerSizes || false;
var usePaymentRule = parcel.xSlotRef.usePaymentRule || false;
/* eslint-disable camelcase */
var tag = {
ad_types: ['banner'],
allow_smaller_sizes: allowSmallerSizes,
disable_psa: true,
id: numPlacementId,
prebid: true,
primary_size: objSizes[0],
sizes: objSizes,
use_pmt_rule: usePaymentRule,
uuid: System.generateUniqueId(14, 'ALPHANUM')
};
/* eslint-enable camelcase */
if (Utilities.isObject(parcel.xSlotRef.keywords) && !Utilities.isEmpty(parcel.xSlotRef.keywords)) {
var keywordsObj = parcel.xSlotRef.keywords;
tag.keywords = [];
Object.keys(keywordsObj)
.forEach(function (key) {
tag.keywords.push({
key: key,
value: keywordsObj[key]
});
});
}
queryObj.tags.push(tag);
});
/* ------- Put GDPR consent code here if you are implementing GDPR ---------- */
if (ComplianceService.isPrivacyEnabled()) {
var gdprStatus = ComplianceService.gdpr.getConsent();
/* eslint-disable camelcase */
queryObj.gdpr_consent = {
consent_required: gdprStatus.applies,
consent_string: gdprStatus.consentString
};
var uspStatus = ComplianceService.usp.getConsent();
queryObj.us_privacy = uspStatus.uspString;
/* eslint-enable camelcase */
}
return {
url: __baseUrl,
data: queryObj,
callbackId: callbackId,
/* Signals a POST request and the content type */
networkParamOverrides: {
method: 'POST',
contentType: 'text/plain'
}
};
}
/* -------------------------------------------------------------------------- */
/* Helpers
* ---------------------------------- */
/**
* This function will render the ad given.
* @param {Object} doc The document of the iframe where the ad will go.
* @param {string} adm The ad code that came with the original demand.
*/
function __render(doc, adm) {
System.documentWrite(doc, adm);
}
/**
* This function will render the pixel given.
* @param {string} pixelUrl Tracking pixel img url.
*/
function __renderPixel(pixelUrl) {
if (pixelUrl) {
Network.img({
url: decodeURIComponent(pixelUrl),
method: 'GET'
});
}
}
/* Parse adResponse, put demand into outParcels.
*/
function __parseResponse(sessionId, adResponse, returnParcels) {
//? if (DEBUG){
var results = Inspector.validate({
type: 'array',
items: {
type: 'object',
properties: {
htSlot: {
type: 'object'
},
xSlotRef: {
type: 'object'
},
xSlotName: {
type: 'string',
minLength: 1
}
}
}
}, returnParcels);
if (!results.valid) {
throw Whoopsie('INVALID_ARGUMENT', results.format());
}
//? }
var bids = adResponse.tags;
for (var j = 0; j < returnParcels.length; j++) {
var curReturnParcel = returnParcels[j];
var headerStatsInfo = {};
var htSlotId = curReturnParcel.htSlot.getId();
headerStatsInfo[htSlotId] = {};
headerStatsInfo[htSlotId][curReturnParcel.requestId] = [curReturnParcel.xSlotName];
var curBid;
for (var i = 0; i < bids.length; i++) {
/* ----------- Fill this out to find a matching bid for the current parcel ------------- */
if (curReturnParcel.xSlotRef.placementId === bids[i].tag_id.toString() && !bids[i].nobid) {
curBid = bids[i];
bids.splice(i, 1);
break;
}
}
/* No matching bid found so its a pass */
if (!curBid) {
if (__profile.enabledAnalytics.requestTime) {
__baseClass._emitStatsEvent(sessionId, 'hs_slot_pass', headerStatsInfo);
}
curReturnParcel.pass = true;
continue;
}
/* ---------- Fill the bid variables with data from the bid response here. ------------ */
/* Using the above variable, curBid, extract various information about the bid and assign it to
* these local variables */
// Need to find the curBid.ads[] to read properties
var curBidData = curBid.ads[0];
/* The bid price for the given slot */
var bidPrice = curBidData.cpm;
/* The size of the given slot */
var bidSize = [Number(curBidData.rtb.banner.width), Number(curBidData.rtb.banner.height)];
/* The creative/adm for the given slot that will be rendered if is the winner.
* Please make sure the URL is decoded and ready to be document.written.
*/
var bidCreative = curBidData.rtb.banner.content;
/* The dealId if applicable for this slot. */
var bidDealId = curBid.deal_id;
/* Explicitly pass */
var bidIsPass = bidPrice <= 0;
/* OPTIONAL: tracking pixel url to be fired AFTER rendering a winning creative.
* If firing a tracking pixel is not required or the pixel url is part of the adm,
* leave empty;
*/
var pixelUrl = curBidData.rtb.trackers[0].impression_urls[0];
/* --------------------------------------------------------------------------------------- */
curBid = null;
if (bidIsPass) {
//? if (DEBUG) {
Scribe.info(__profile.partnerId + ' returned pass for { id: ' + adResponse.id + ' }.');
//? }
if (__profile.enabledAnalytics.requestTime) {
__baseClass._emitStatsEvent(sessionId, 'hs_slot_pass', headerStatsInfo);
}
curReturnParcel.pass = true;
continue;
}
if (__profile.enabledAnalytics.requestTime) {
__baseClass._emitStatsEvent(sessionId, 'hs_slot_bid', headerStatsInfo);
}
curReturnParcel.size = bidSize;
curReturnParcel.targetingType = 'slot';
curReturnParcel.targeting = {};
var targetingCpm = '';
//? if (FEATURES.GPT_LINE_ITEMS) {
targetingCpm = __baseClass._bidTransformers.targeting.apply(bidPrice);
var sizeKey = Size.arrayToString(curReturnParcel.size);
if (bidDealId) {
curReturnParcel.targeting[__baseClass._configs.targetingKeys.pm] = [sizeKey + '_' + bidDealId];
}
curReturnParcel.targeting[__baseClass._configs.targetingKeys.om] = [sizeKey + '_' + targetingCpm];
curReturnParcel.targeting[__baseClass._configs.targetingKeys.id] = [curReturnParcel.requestId];
//? }
//? if (FEATURES.RETURN_CREATIVE) {
curReturnParcel.adm = bidCreative;
if (pixelUrl) {
curReturnParcel.winNotice = __renderPixel.bind(null, pixelUrl);
}
//? }
//? if (FEATURES.RETURN_PRICE) {
curReturnParcel.price = Number(__baseClass._bidTransformers.price.apply(bidPrice));
//? }
var expiry = 0;
if (__profile.features.demandExpiry.enabled) {
expiry = __profile.features.demandExpiry.value + System.now();
}
var pubKitAdId = RenderService.registerAd({
sessionId: sessionId,
partnerId: __profile.partnerId,
adm: bidCreative,
requestId: curReturnParcel.requestId,
size: curReturnParcel.size,
price: targetingCpm,
dealId: bidDealId || null,
timeOfExpiry: expiry,
auxFn: __renderPixel,
auxArgs: [pixelUrl]
});
//? if (FEATURES.INTERNAL_RENDER) {
curReturnParcel.targeting.pubKitAdId = pubKitAdId;
//? }
}
}
/* =====================================
* Constructors
* ---------------------------------- */
(function __constructor() {
RenderService = SpaceCamp.services.RenderService;
ComplianceService = SpaceCamp.services.ComplianceService;
__profile = {
partnerId: 'AppNexusNetworkHtb',
namespace: 'AppNexusNetworkHtb',
statsId: 'APNXNET',
version: __version,
targetingType: 'slot',
enabledAnalytics: {
requestTime: true
},
features: {
demandExpiry: {
enabled: false,
value: 0
},
rateLimiting: {
enabled: false,
value: 0
}
},
targetingKeys: {
id: 'ix_apnxnet_id',
om: 'ix_apnxnet_om',
pm: 'ix_apnxnet_dealid'
},
bidUnitInCents: 100,
lineItemType: Constants.LineItemTypes.ID_AND_SIZE,
callbackType: Partner.CallbackTypes.NONE,
architecture: Partner.Architectures.SRA,
requestType: Partner.RequestTypes.AJAX
};
//? if (DEBUG) {
var results = ConfigValidators.partnerBaseConfig(configs) || PartnerSpecificValidator(configs);
if (results) {
throw Whoopsie('INVALID_CONFIG', results);
}
//? }
__baseUrl = Browser.getProtocol() + '//ib.adnxs.com/ut/v3/prebid';
__baseClass = Partner(__profile, configs, null, {
parseResponse: __parseResponse,
generateRequestObj: __generateRequestObj
});
})();
/* =====================================
* Public Interface
* ---------------------------------- */
var derivedClass = {
/* Class Information
* ---------------------------------- */
//? if (DEBUG) {
__type__: 'AppNexusNetworkHtb',
//? }
//? if (TEST) {
__baseClass: __baseClass,
//? }
/* Data
* ---------------------------------- */
//? if (TEST) {
__profile: __profile,
__baseUrl: __baseUrl,
//? }
/* Functions
* ---------------------------------- */
//? if (TEST) {
__render: __render,
__parseResponse: __parseResponse,
generateRequestObj: __generateRequestObj
//? }
};
return Classify.derive(__baseClass, derivedClass);
}
////////////////////////////////////////////////////////////////////////////////
// Exports /////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
module.exports = AppNexusNetworkHtb;