forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclickforceBidAdapter.js
142 lines (133 loc) · 4.29 KB
/
clickforceBidAdapter.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
import { _each } from '../src/utils.js';
import {registerBidder} from '../src/adapters/bidderFactory.js';
import {BANNER, NATIVE} from '../src/mediaTypes.js';
import { convertOrtbRequestToProprietaryNative } from '../src/native.js';
/**
* @typedef {import('../src/adapters/bidderFactory.js').BidRequest} BidRequest
* @typedef {import('../src/adapters/bidderFactory.js').Bid} Bid
*/
const BIDDER_CODE = 'clickforce';
const ENDPOINT_URL = 'https://ad.holmesmind.com/adserver/prebid.json?cb=' + new Date().getTime() + '&hb=1&ver=1.21';
export const spec = {
code: BIDDER_CODE,
supportedMediaTypes: [BANNER, NATIVE],
/**
* Determines whether or not the given bid request is valid.
*
* @param {BidRequest} bid The bid params to validate.
* @return boolean True if this is a valid bid, and false otherwise.
*/
isBidRequestValid: function(bid) {
return bid && bid.params && !!bid.params.zone;
},
/**
* Make a server request from the list of BidRequests.
*
* @param {BidRequest[]} validBidRequests - an array of bids
* @return ServerRequest Info describing the request to the server.
*/
buildRequests: function(validBidRequests) {
// convert Native ORTB definition to old-style prebid native definition
validBidRequests = convertOrtbRequestToProprietaryNative(validBidRequests);
const bidParams = [];
_each(validBidRequests, function(bid) {
bidParams.push({
z: bid.params.zone,
bidId: bid.bidId
});
});
return {
method: 'POST',
url: ENDPOINT_URL,
data: bidParams,
validBidRequests: validBidRequests
};
},
/**
* Unpack the response from the server into a list of bids.
*
* @param {*} serverResponse A successful response from the server.
* @param {*} bidRequest
* @return {Bid[]} An array of bids which were nested inside the server.
*/
interpretResponse: function(serverResponse, bidRequest) {
const cfResponses = [];
const bidRequestList = [];
if (typeof bidRequest != 'undefined') {
_each(bidRequest.validBidRequests, function(req) {
bidRequestList[req.bidId] = req;
});
}
_each(serverResponse.body, function(response) {
if (response.requestId != null) {
// native ad size
if (response.width == 3) {
cfResponses.push({
requestId: response.requestId,
cpm: response.cpm,
width: response.width,
height: response.height,
creativeId: response.creativeId,
currency: response.currency,
netRevenue: response.netRevenue,
ttl: response.ttl,
native: {
title: response.tag.content.title,
body: response.tag.content.content,
image: {
url: response.tag.content.image,
height: 900,
width: 1600
},
icon: {
url: response.tag.content.icon,
height: 900,
width: 900
},
clickUrl: response.tag.cu,
cta: response.tag.content.button_text,
sponsoredBy: response.tag.content.advertiser,
impressionTrackers: response.tag.iu,
},
mediaType: 'native',
meta: {
advertiserDomains: response.adomain || []
},
});
} else {
// display ad
cfResponses.push({
requestId: response.requestId,
cpm: response.cpm,
width: response.width,
height: response.height,
creativeId: response.creativeId,
currency: response.currency,
netRevenue: response.netRevenue,
ttl: response.ttl,
ad: response.tag,
mediaType: 'banner',
meta: {
advertiserDomains: response.adomain || []
},
});
}
}
});
return cfResponses;
},
getUserSyncs: function(syncOptions, serverResponses) {
if (syncOptions.iframeEnabled) {
return [{
type: 'iframe',
url: 'https://cdn.holmesmind.com/js/capmapping.htm'
}]
} else if (syncOptions.pixelEnabled) {
return [{
type: 'image',
url: 'https://c.holmesmind.com/cm'
}]
}
}
};
registerBidder(spec);