Skip to content
This repository was archived by the owner on Feb 13, 2021. It is now read-only.

Commit b736fae

Browse files
committed
Merge pull request prebid#134 in AOLP_ADS_JS/prebid.js from release/1.34.0 to aolgithub-master
* commit 'f0ba90afa8b52de7a646d43928b2d51ee42e74a1': (53 commits) Added changelog entry. Added partners ids. Added dynamic ttl property for One Display and One Mobile. Prebid.js 0.34.1 release Vertamedia adapter outstream support (prebid#1860) Expose native image-type asset dimensions on bid response object (prebid#1919) Remove for of (prebid#1932) Unit-test fix (prebid#1927) Remove description_url (prebid#1922) Trion Interactive Adapter Bugfix (prebid#1925) Remove config setting from Optimatic adapter (prebid#1909) IE bug fix (prebid#1930) Clarify ad unit media filtering warning (prebid#1903) Add ReadPeak Bid Adapter (prebid#1838) Change clone function to make deep copies (prebid#1910) Serverbid 1.0 (prebid#1802) sekindoUM for prebid1.0 (prebid#1777) update auctionId to be requestId (prebid#1896) bug fixed to populate userSync default values (prebid#1897) Increment pre version ...
2 parents e9bf890 + f0ba90a commit b736fae

File tree

95 files changed

+5566
-2173
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+5566
-2173
lines changed

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
AOL Prebid 1.34.0
2+
----------------
3+
Updated to Prebid 0.34.1.
4+
Changed ttl for aol adapter endpoints.
5+
6+
17
AOL Prebid 1.33.0
28
----------------
39
Updated to Prebid 0.33.0

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,11 @@ To run the unit tests:
146146
```bash
147147
gulp test
148148
```
149+
To run tests for a single file:
150+
151+
```bash
152+
gulp test --file "path/to/spec/file.js"
153+
```
149154

150155
To generate and view the code coverage reports:
151156

gulpfile.js

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ var gulpif = require('gulp-if');
2828
var sourcemaps = require('gulp-sourcemaps');
2929
var through = require('through2');
3030
var fs = require('fs');
31+
var jsEscape = require('gulp-js-escape');
3132

3233
var prebid = require('./package.json');
3334
var banner = '/* <%= prebid.name %> v<%= prebid.version %>*/\n';
@@ -311,10 +312,21 @@ gulp.task('e2etest-report', function() {
311312
}, 5000);
312313
});
313314

314-
gulp.task('build-postbid', function() {
315+
// This task creates postbid.js. Postbid setup is different from prebid.js
316+
// More info can be found here http://prebid.org/overview/what-is-post-bid.html
317+
gulp.task('build-postbid', ['escape-postbid-config'], function() {
318+
var fileContent = fs.readFileSync('./build/postbid/postbid-config.js', 'utf8');
319+
315320
return gulp.src('./integrationExamples/postbid/oas/postbid.js')
316-
.pipe(uglify())
317-
.pipe(gulp.dest('build/dist'));
321+
.pipe(replace('\[%%postbid%%\]', fileContent))
322+
.pipe(gulp.dest('build/postbid/'));
323+
});
324+
325+
// Dependant task for building postbid. It escapes postbid-config file.
326+
gulp.task('escape-postbid-config', function() {
327+
gulp.src('./integrationExamples/postbid/oas/postbid-config.js')
328+
.pipe(jsEscape())
329+
.pipe(gulp.dest('build/postbid/'));
318330
});
319331

320332
module.exports = nodeBundle;

integrationExamples/gpt/pbjs_example_gpt.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,12 @@
402402
placement_id: 0
403403
}
404404
},
405+
{
406+
bidder: 'huddledmasses',
407+
params: {
408+
placement_id: 0
409+
}
410+
},
405411
{
406412
bidder: 'pollux',
407413
params: {
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<script type="text/javascript">
2+
var pbjs = pbjs || {};
3+
pbjs.que = pbjs.que || [];
4+
5+
(function() {
6+
var pbjsEl = document.createElement("script"); pbjsEl.type = "text/javascript";
7+
pbjsEl.async = true; var isHttps = 'https:' === document.location.protocol;
8+
pbjsEl.src = (isHttps ? "https" : "http") + "://acdn.adnxs.com/prebid/not-for-prod/prebid.js";
9+
var pbjsTargetEl = document.getElementsByTagName("head")[0];
10+
pbjsTargetEl.insertBefore(pbjsEl, pbjsTargetEl.firstChild);
11+
})();
12+
13+
pbjs.que.push(function() {
14+
var adUnits = [{
15+
code: '[%%adUnitCode%%]',
16+
sizes: [%%sizes%%],
17+
bids: [%%adUnitBids%%]
18+
}];
19+
pbjs.addAdUnits(adUnits);
20+
21+
pbjs.requestBids({
22+
timeout: [%%timeout%%],
23+
bidsBackHandler: function() {
24+
var iframe = document.getElementById('postbid_if_3');
25+
var iframeDoc = iframe.contentWindow.document;
26+
var params = pbjs.getAdserverTargetingForAdUnitCode('[%%adUnitCode%%]');
27+
28+
// If any bidders return any creatives
29+
var bid;
30+
if(params && params['hb_adid']){
31+
var bid;
32+
for(i=0; i< pbjs._bidsReceived.length; i++ ) {
33+
if (params['hb_adid'] === pbjs._bidsReceived[i].adId) {
34+
bid = pbjs._bidsReceived[i];
35+
break;
36+
}
37+
}
38+
pbjs.renderAd(iframeDoc, params['hb_adid']);
39+
} else {
40+
// If no bidder return any creatives,
41+
// Passback 3rd party tag in Javascript
42+
iframe.width = [%%size0%%];
43+
iframe.height = [%%size1%%];
44+
iframeDoc.write('[%%passbackTagHtml%%]');
45+
}
46+
47+
var iframeResize = window.parent.document.getElementById('[%%targetId%%]');
48+
iframeResize.height = (bid.height) ? bid.height+'px' : '[%%size1%%]px';
49+
iframeResize.width = (bid.width) ? bid.width+'px' : '[%%size0%%]px';
50+
}
51+
});
52+
});
53+
</script>
54+
<iframe id='postbid_if_3' FRAMEBORDER="0" SCROLLING="no" MARGINHEIGHT="0" MARGINWIDTH="0" TOPMARGIN="0" LEFTMARGIN="0" ALLOWTRANSPARENCY="true" WIDTH="0" HEIGHT="0"></iframe>

integrationExamples/postbid/oas/postbid.js

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable */
12
(function(window){
23
var postbid = {};
34
postbid.que = [];
@@ -100,7 +101,22 @@
100101
}
101102

102103
postbid.que.push(function(conf) {
103-
var content = "\n <script type=\"text/javascript\">\n if (!Array.prototype.find) {\n Object.defineProperty(Array.prototype, 'find', {\n value: function(predicate) {\n if (this == null) {\n throw new TypeError('\"this\" is null or not defined');\n }\n var o = Object(this);\n var len = o.length >>> 0;\n if (typeof predicate !== 'function') {\n throw new TypeError('predicate must be a function');\n }\n var thisArg = arguments[1];\n var k = 0;\n while (k < len) {\n var kValue = o[k];\n if (predicate.call(thisArg, kValue, k, o)) {\n return kValue;\n }\n k++;\n }\n return undefined;\n }\n });\n }\n\n var pbjs = pbjs || {};\n pbjs.que = pbjs.que || [];\n\n (function() {\n var pbjsEl = document.createElement(\"script\"); pbjsEl.type = \"text/javascript\";\n pbjsEl.async = true; var isHttps = 'https:' === document.location.protocol;\n pbjsEl.src = (isHttps ? \"https\" : \"http\") + \"://acdn.adnxs.com/prebid/not-for-prod/prebid.js\";\n var pbjsTargetEl = document.getElementsByTagName(\"head\")[0];\n pbjsTargetEl.insertBefore(pbjsEl, pbjsTargetEl.firstChild);\n })();\n\n pbjs.que.push(function() {\n var adUnits = [{\n code: '" + conf.adUnitCode + "',\n sizes: " + conf.adUnitSizes + ",\n bids: " + conf.adUnitBids + "\n }];\n\n pbjs.addAdUnits(adUnits);\n\n pbjs.requestBids({\n timeout: " + conf.timout + ",\n bidsBackHandler: function() {\n var iframe = document.getElementById('postbid_if_3');\n\n var iframeDoc = iframe.contentWindow.document;\n\n var params = pbjs.getAdserverTargetingForAdUnitCode('" + conf.adUnitCode + "');\n\n // If any bidders return any creatives\n var bid;\n if(params && params['hb_adid']){\n bid = pbjs._bidsReceived.find(function(bid) {\n return bid.adId === params['hb_adid'];\n });\n pbjs.renderAd(iframeDoc, params['hb_adid']);\n } else {\n // If no bidder return any creatives,\n // Passback 3rd party tag in Javascript\n\n iframe.width = '" + conf.adUnitSizes[0] + "';\n iframe.height = '" + conf.adUnitSizes[1] + "';\n\n iframeDoc.write('" + conf.passbackTagHtml + "');\n }\n\n var iframeResize = window.parent.document.getElementById('" + conf.targetId + "');\n iframeResize.height = (bid.height) ? bid.height+'px' : '" + conf.adUnitSizes[1] + "px';\n iframeResize.width = (bid.width) ? bid.width+'px' : '" + conf.adUnitSizes[0] + "px';\n }\n });\n });\n <"+ '' +"/script>\n <iframe id='postbid_if_3' FRAMEBORDER=\"0\" SCROLLING=\"no\" MARGINHEIGHT=\"0\" MARGINWIDTH=\"0\" TOPMARGIN=\"0\" LEFTMARGIN=\"0\" ALLOWTRANSPARENCY=\"true\" WIDTH=\"0\" HEIGHT=\"0\"></iframe>";
104+
var sizes = JSON.parse(conf.adUnitSizes);
105+
var timeout = conf.timeout;
106+
var adUnitCode = conf.adUnitCode;
107+
var adUnitBids = conf.adUnitBids;
108+
var targetId = conf.targetId;
109+
var passbackTagHtml = conf.passbackTagHtml;
110+
111+
var content = [%%postbid%%];
112+
content = content.replace(/\[%%targetId%%\]/g, targetId);
113+
content = content.replace(/\[%%adUnitCode%%\]/g, adUnitCode);
114+
content = content.replace(/\[%%timeout%%\]/g, timeout);
115+
content = content.replace(/\[%%adUnitBids%%\]/g, adUnitBids);
116+
content = content.replace(/\[%%passbackTagHtml%%\]/g, passbackTagHtml);
117+
content = content.replace(/\[%%sizes%%\]/g, conf.adUnitSizes);
118+
content = content.replace(/\[%%size0%%\]/g, sizes[0]);
119+
content = content.replace(/\[%%size1%%\]/g, sizes[1]);
104120

105121
var iframe = createIframe(conf.targetId);
106122
var div = document.getElementById(conf.divId);
@@ -116,3 +132,4 @@
116132
window.processQue = processQue;
117133

118134
})(window);
135+
/* eslint-enable */

modules/adformBidAdapter.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ function AdformAdapter() {
3737

3838
request.unshift('//' + globalParams[0][1] + '/adx/?rp=4');
3939

40+
request.push('auctionId=' + params.requestId);
4041
for (i = 1, l = globalParams.length; i < l; i++) {
4142
_key = globalParams[i][0];
4243
_value = globalParams[i][1];

0 commit comments

Comments
 (0)