This repository has been archived by the owner on Dec 11, 2019. It is now read-only.
forked from indexexchange/app-nexus-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp-nexus-htb.js
429 lines (368 loc) · 14.5 KB
/
app-nexus-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
/**
* @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 Utilities = require('utilities.js');
var Whoopsie = require('whoopsie.js');
var EventsService;
var RenderService;
var ComplianceService;
//? if (DEBUG) {
var ConfigValidators = require('config-validators.js');
var Inspector = require('schema-inspector.js');
var AppNexusValidator = require('app-nexus-htb-validator.js');
var Scribe = require('scribe.js');
//? }
////////////////////////////////////////////////////////////////////////////////
// Main ////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
/**
* AppNexusHtb Class for the creation of the Header Tag Bidder
*
* @class
*/
function AppNexusHtb(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 __parseFuncPath;
/* =====================================
* 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',
exactLength: 1,
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());
}
//? }
/* MRA partners receive only one parcel in the array. */
var returnParcel = returnParcels[0];
var callbackId = System.generateUniqueId();
var queryObj = {
id: returnParcel.xSlotRef.placementId,
size: Size.arrayToString([returnParcel.xSlotRef.sizes[0]]),
callback: __parseFuncPath,
callback_uid: callbackId, //jshint ignore:line
psa: 0
};
/* Endpoint expects first size to be assigned to the "size" parameter,
* while the rest are added to "promo_sizes".
*/
if (returnParcel.xSlotRef.sizes.length > 1) {
queryObj.promo_sizes = Size.arrayToString(returnParcel.xSlotRef.sizes.slice(1)); //jshint ignore:line
}
var referrer = Browser.getPageUrl();
if (referrer) {
queryObj.referrer = referrer;
}
/* ------------------------ Get consent information -------------------------
* If you want to implement GDPR consent in your adapter, use the function
* ComplianceService.gdpr.getConsent() which will return an object.
*
* Here is what the values in that object mean:
* - applies: the boolean value indicating if the request is subject to
* GDPR regulations
* - consentString: the consent string developed by GDPR Consent Working
* Group under the auspices of IAB Europe
*
* The return object should look something like this:
* {
* applies: true,
* consentString: "BOQ7WlgOQ7WlgABABwAAABJOACgACAAQABA"
* }
*
* You can also determine whether or not the publisher has enabled privacy
* features in their wrapper by querying ComplianceService.isPrivacyEnabled().
*
* This function will return a boolean, which indicates whether the wrapper's
* privacy features are on (true) or off (false). If they are off, the values
* returned from gdpr.getConsent() are safe defaults and no attempt has been
* made by the wrapper to contact a Consent Management Platform.
*/
/* ------- Put GDPR consent code here if you are implementing GDPR ---------- */
if(ComplianceService.isPrivacyEnabled()) {
var gdprStatus = ComplianceService.gdpr.getConsent();
queryObj.gdpr = gdprStatus.applies ? 1 : 0;
queryObj.gdpr_consent = gdprStatus.consentString;
}
return {
url: __baseUrl,
data: queryObj,
callbackId: callbackId
};
}
function adResponseCallback(adResponseData) {
__baseClass._adResponseStore[adResponseData.callback_uid] = adResponseData; //jshint ignore:line
}
/* -------------------------------------------------------------------------- */
/* 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);
}
/* Parse adResponse, put demand into outParcels.
* AppNexus response contains a single result object.
*/
function __parseResponse(sessionId, adResponse, returnParcels) {
//? if (DEBUG){
var results = Inspector.validate({
type: 'array',
exactLength: 1,
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 bidReceived = false;
var returnParcel = returnParcels[0];
/* prepare the info to send to header stats */
var headerStatsInfo = {
sessionId: sessionId,
statsId: __profile.statsId,
htSlotId: returnParcel.htSlot.getId(),
requestId: returnParcel.requestId,
xSlotNames: [returnParcel.xSlotName]
};
var adResult;
if (adResponse && adResponse.hasOwnProperty('result')) {
adResult = adResponse.result;
}
var targetingCpm = '';
if (adResult && adResult.hasOwnProperty('ad') && !Utilities.isEmpty(adResult.ad)) {
if ((adResult.hasOwnProperty('cpm') && adResult.cpm > 0) || adResult.deal_id) { //jshint ignore:line
bidReceived = true;
var bidPrice = adResult.cpm;
var bidSize = [Number(adResult.width), Number(adResult.height)];
var bidDealId = adResult.deal_id || ''; //jshint ignore:line
var bidCreative = '<iframe src="' + adResult.ad +
'" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" topmargin="0" leftmargin="0" allowtransparency="true"' +
' width="' + adResult.width + '" height="' + adResult.height + '"></iframe>';
if (bidPrice !== undefined) {
//? if(FEATURES.GPT_LINE_ITEMS) {
targetingCpm = __baseClass._bidTransformers.targeting.apply(bidPrice);
//? }
}
returnParcel.size = bidSize;
returnParcel.targetingType = 'slot';
returnParcel.targeting = {};
//? if(FEATURES.GPT_LINE_ITEMS) {
var sizeKey = Size.arrayToString(bidSize);
if (bidDealId) {
returnParcel.targeting[__baseClass._configs.targetingKeys.pm] = [sizeKey + '_' + bidDealId]; //jshint ignore:line
}
if (targetingCpm !== undefined && targetingCpm !== '') {
returnParcel.targeting[__baseClass._configs.targetingKeys.om] = [sizeKey + '_' + targetingCpm];
}
returnParcel.targeting[__baseClass._configs.targetingKeys.id] = [returnParcel.requestId];
//? }
//? if(FEATURES.RETURN_CREATIVE) {
returnParcel.adm = bidCreative;
//? }
//? if(FEATURES.RETURN_PRICE) {
returnParcel.price = Number(__baseClass._bidTransformers.price.apply(bidPrice));
//? }
var pubKitAdId = SpaceCamp.services.RenderService.registerAd({
sessionId: sessionId,
partnerId: __profile.partnerId,
adm: bidCreative,
requestId: returnParcel.requestId,
size: returnParcel.size,
price: targetingCpm,
dealId: bidDealId,
timeOfExpiry: __profile.features.demandExpiry.enabled ? (__profile.features.demandExpiry.value + System.now()) : 0
});
//? if(FEATURES.INTERNAL_RENDER) {
returnParcel.targeting.pubKitAdId = pubKitAdId;
//? }
}
}
if (!bidReceived) {
//? if (DEBUG) {
Scribe.info(__profile.partnerId + ' returned no demand for placement: ' + returnParcel.xSlotRef.placementId);
//? }
returnParcel.pass = true;
}
if (__profile.enabledAnalytics.requestTime) {
var result = 'hs_slot_pass';
if (bidReceived) {
result = 'hs_slot_bid';
}
EventsService.emit(result, headerStatsInfo);
}
}
/* =====================================
* Constructors
* ---------------------------------- */
(function __constructor() {
EventsService = SpaceCamp.services.EventsService;
RenderService = SpaceCamp.services.RenderService;
ComplianceService = SpaceCamp.services.ComplianceService;
__profile = {
partnerId: 'AppNexusHtb',
namespace: 'AppNexusHtb',
statsId: 'APNX',
version: '2.2.0',
targetingType: 'slot',
enabledAnalytics: {
requestTime: true
},
features: {
demandExpiry: {
enabled: false,
value: 0
},
rateLimiting: {
enabled: false,
value: 0
}
},
targetingKeys: {
id: 'ix_apnx_id',
om: 'ix_apnx_om',
pm: 'ix_apnx_pm'
},
bidUnitInCents: 0.01,
lineItemType: Constants.LineItemTypes.ID_AND_SIZE,
callbackType: Partner.CallbackTypes.ID,
architecture: Partner.Architectures.MRA,
requestType: Partner.RequestTypes.ANY
};
//? if (DEBUG) {
var PartnerSpecificValidator = AppNexusValidator;
var results = ConfigValidators.partnerBaseConfig(configs) || PartnerSpecificValidator(configs);
if (results) {
throw Whoopsie('INVALID_CONFIG', results);
}
//? }
__baseUrl = Browser.getProtocol() + '//secure.adnxs.com/jpt';
__parseFuncPath = SpaceCamp.NAMESPACE + '.' + __profile.namespace + '.adResponseCallback';
__baseClass = Partner(__profile, configs, null, {
parseResponse: __parseResponse,
generateRequestObj: __generateRequestObj,
adResponseCallback: adResponseCallback
});
/* If wrapper is already active, we might be instantiated late so need to add our callback
since the shell potentially missed its chance */
if (window[SpaceCamp.NAMESPACE]) {
window[SpaceCamp.NAMESPACE][__profile.namespace] = window[SpaceCamp.NAMESPACE][__profile.namespace] || {};
window[SpaceCamp.NAMESPACE][__profile.namespace].adResponseCallback = adResponseCallback;
}
})();
/* =====================================
* Public Interface
* ---------------------------------- */
var derivedClass = {
/* Class Information
* ---------------------------------- */
//? if (DEBUG) {
__type__: 'AppNexusHtb',
//? }
//? if (TEST) {
__baseClass: __baseClass,
//? }
/* Data
* ---------------------------------- */
//? if (TEST) {
__profile: __profile,
__baseUrl: __baseUrl,
//? }
/* Functions
* ---------------------------------- */
//? if (TEST) {
__render: __render,
__parseResponse: __parseResponse,
adResponseCallback: adResponseCallback,
//? }
};
return Classify.derive(__baseClass, derivedClass);
}
////////////////////////////////////////////////////////////////////////////////
// Exports /////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
module.exports = AppNexusHtb;