eb85805f83aeaa98e9e9b4647893f86575cb86a1
[openx] / openx.js
1 /** Optimized methods for fetching ad-banners via OpenX */
2
3 /** see: http://enterprisejquery.com/2010/10/how-good-c-habits-can-encourage-bad-javascript-habits-part-1/ */
4
5 (function( openx, $, undefined ) {
6
7   var
8
9   id,
10   node,
11
12   count = 0,
13   slots = {},
14   ads = [];
15
16
17   openx.show_ads = function(server, zones) {
18
19     var
20     domain = document.location.protocol == 'https:' ? 'https://' + server + ':8443':'http://' + server,
21     src = domain;
22
23     document.write = render;
24     document.writeln = render;
25
26     src += "/www/delivery/spc.php?zones=";
27
28     /** Only fetch banners, that are really included in this page */
29     $('.oa').each(function() {
30       var
31       node = $(this),
32       name, id;
33       for(name in zones) {
34         if (node.hasClass(name)) {
35           id = 'oa_' + ++count;
36           slots[id] = node;
37           src += escape(id + '=' + zones[name] + "|");
38         }
39       }
40     });
41
42     src += "&nz=1&source=" + escape(OA_source);
43     src += "&r=" + Math.floor(Math.random()*99999999);
44     src += "&block=1&charset=UTF-8";
45
46     if (window.location)   src += "&loc=" + escape(window.location);
47     if (document.referrer) src += "&referer=" + escape(document.referrer);
48
49     $.getScript(src, init_ads);
50
51     src = domain + '/www/delivery/fl.js';
52     $.getScript(src);
53
54   }
55
56   function init_ads() {
57
58     for (var id in slots) {
59       if (typeof(OA_output[id]) != 'undefined' && OA_output[id] != '')
60         ads.push(id);
61     }
62
63     render_ad();
64
65   }
66
67   function render_ad() {
68
69     if (ads.length == 0) {
70       id = undefined;
71       node = undefined;
72       return;
73     }
74
75     id = ads.pop();
76     node = slots[id];
77
78     // node.append(id + ": " + node.attr('class'));
79
80     var result, src, inline;
81
82     while ((result = /<script/i.exec(OA_output[id])) != null) {
83       node.append(OA_output[id].slice(0,result.index));
84       /** Strip all text before "<script" from OA_output[id] */
85       OA_output[id] = OA_output[id].slice(result.index,OA_output[id].length);
86       result = /^([^>]*)>([\s\S]*?)<\\?\/script>/i.exec(OA_output[id]);
87       if (result == null) {
88         /** Invalid syntax in delivered banner-code: ignoring the rest of this banner-code! */
89         // alert(OA_output[id]);
90         OA_output[id] = "";
91         render_ad();
92         return;
93       }
94       /** Remember iinline-code, if present */
95       src = result[1]
96       inline = result[2];
97       /** Strip all text up to and including "</script>" from OA_output[id] */
98       OA_output[id] = OA_output[id].slice(result[0].length,OA_output[id].length);
99       result = /src\s*=\s*['"]([^'"]*)['"]/i.exec(src);
100       if (result == null) {
101         /** script-tag with inline-code: execute inline-code! */
102         result = /^\s*<.*$/m.exec(inline);
103         if (result != null) {
104           /** Remove leading HTML-comments, because IE will stumble otherwise */
105           inline = inline.slice(result[0].length,inline.length);
106         }
107         $.globalEval(inline);
108       }
109       else {
110         /** script-tag with src-URL! */
111         ads.push(id); // << The banner might not be rendered fully, or include more calls to document.write().
112         /** Load the script and halt all work until the script is loaded and executed... */
113         $.getScript(result[1], render_ad); // << jQuery.getScript() generates onload-Handler for _all_ browsers ;)
114         return;
115       }
116     }
117     node.append(OA_output[id]);
118     OA_output[id] = "";
119
120     /** This statement will only reached, when no script-element was rendered! */
121     render_ad();
122
123   }
124
125   function render() {
126
127     if (id == undefined)
128       return;
129
130     var
131     str = "",
132     i;
133
134     for (i=0; i < arguments.length; i++)
135       str += arguments[i];
136
137     OA_output[id] = str + OA_output[id];
138
139   }
140
141 } ( window.openx = window.openx || {}, jQuery ));
142
143 var OA_output = {}; // << Needed, because IE will complain loudly otherwise!