forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
adxcgBidAdapter.js
166 lines (145 loc) · 4.5 KB
/
adxcgBidAdapter.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
// jshint esversion: 6, es3: false, node: true
import { ortbConverter } from '../libraries/ortbConverter/converter.js';
import { registerBidder } from '../src/adapters/bidderFactory.js';
import { BANNER, NATIVE, VIDEO } from '../src/mediaTypes.js';
import {
isArray,
replaceAuctionPrice,
triggerPixel,
logMessage,
deepSetValue,
getBidIdParameter
} from '../src/utils.js';
import { config } from '../src/config.js';
const BIDDER_CODE = 'adxcg';
const SECURE_BID_URL = 'https://pbc.adxcg.net/rtb/ortb/pbc?adExchangeId=1';
const DEFAULT_CURRENCY = 'EUR';
const KNOWN_PARAMS = ['battr', 'deals'];
const DEFAULT_TMAX = 500;
/**
* Adxcg Bid Adapter.
*
*/
export const spec = {
code: BIDDER_CODE,
aliases: ['mediaopti'],
supportedMediaTypes: [BANNER, NATIVE, VIDEO],
isBidRequestValid: (bid) => {
logMessage('adxcg - validating isBidRequestValid');
const params = bid.params || {};
const { adzoneid } = params;
return !!(adzoneid);
},
buildRequests: (bidRequests, bidderRequest) => {
const data = converter.toORTB({ bidRequests, bidderRequest });
return {
method: 'POST',
url: SECURE_BID_URL,
data,
options: {
contentType: 'application/json'
},
bidderRequest
};
},
interpretResponse: (response, request) => {
if (response.body) {
const bids = converter.fromORTB({ response: response.body, request: request.data }).bids;
return bids;
}
return [];
},
getUserSyncs: (syncOptions, responses, gdprConsent, uspConsent) => {
const syncs = [];
let syncUrl = config.getConfig('adxcg.usersyncUrl');
let query = [];
if (syncOptions.pixelEnabled && syncUrl) {
if (gdprConsent) {
query.push('gdpr=' + (gdprConsent.gdprApplies & 1));
query.push('gdpr_consent=' + encodeURIComponent(gdprConsent.consentString || ''));
}
if (uspConsent) {
query.push('us_privacy=' + encodeURIComponent(uspConsent));
}
syncs.push({
type: 'image',
url: syncUrl + (query.length ? '?' + query.join('&') : '')
});
}
return syncs;
},
onBidWon: (bid) => {
// for native requests we put the nurl as an imp tracker, otherwise if the auction takes place on prebid server
// the server JS adapter puts the nurl in the adm as a tracking pixel and removes the attribute
if (bid.nurl) {
triggerPixel(replaceAuctionPrice(bid.nurl, bid.originalCpm))
}
}
};
const converter = ortbConverter({
context: {
netRevenue: true,
ttl: 300,
currency: 'EUR'
},
imp(buildImp, bidRequest, context) {
const imp = buildImp(bidRequest, context);
// tagid
imp.tagid = bidRequest.params.adzoneid.toString();
// unknown params
const unknownParams = slotUnknownParams(bidRequest);
if (imp.ext || unknownParams) {
imp.ext = Object.assign({}, imp.ext, unknownParams);
}
// battr
if (bidRequest.params.battr) {
['banner', 'video', 'audio', 'native'].forEach(k => {
if (imp[k]) {
imp[k].battr = bidRequest.params.battr;
}
});
}
// deals
if (bidRequest.params.deals && isArray(bidRequest.params.deals)) {
imp.pmp = {
private_auction: 0,
deals: bidRequest.params.deals
};
}
imp.secure = Number(window.location.protocol === 'https:');
if (!imp.bidfloor && bidRequest.params.bidFloor) {
imp.bidfloor = bidRequest.params.bidFloor;
imp.bidfloorcur = getBidIdParameter('bidFloorCur', bidRequest.params).toUpperCase() || 'USD'
}
return imp;
},
request(buildRequest, imps, bidderRequest, context) {
const request = buildRequest(imps, bidderRequest, context);
request.tmax = request.tmax || DEFAULT_TMAX;
request.test = config.getConfig('debug') ? 1 : 0;
request.at = 1;
deepSetValue(request, 'ext.prebid.channel.name', 'pbjs');
deepSetValue(request, 'ext.prebid.channel.version', '$prebid.version$');
return request;
},
bidResponse(buildBidResponse, bid, context) {
const bidResponse = buildBidResponse(bid, context);
bidResponse.cur = bid.cur || DEFAULT_CURRENCY;
return bidResponse;
},
});
/**
* Unknown params are captured and sent on ext
*/
function slotUnknownParams(slot) {
const ext = {};
const knownParamsMap = {};
KNOWN_PARAMS.forEach(value => knownParamsMap[value] = 1);
Object.keys(slot.params).forEach(key => {
if (!knownParamsMap[key]) {
ext[key] = slot.params[key];
}
});
return Object.keys(ext).length > 0 ? { prebid: ext } : null;
}
registerBidder(spec);