Simplified code
[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 = document_write;
24     document.writeln = document_write;
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_ads();
64
65   }
66
67   function render_ads() {
68
69     while (ads.length > 0) {
70
71       id = ads.pop();
72       node = slots[id];
73
74       // node.append(id + ": " + node.attr('class'));
75
76       var result, src, inline;
77
78       while ((result = /<script/i.exec(OA_output[id])) != null) {
79         node.append(OA_output[id].slice(0,result.index));
80         /** Strip all text before "<script" from OA_output[id] */
81         OA_output[id] = OA_output[id].slice(result.index,OA_output[id].length);
82         result = /^([^>]*)>([\s\S]*?)<\\?\/script>/i.exec(OA_output[id]);
83         if (result == null) {
84           /** Invalid syntax in delivered banner-code: ignoring the rest of this banner-code! */
85           // alert(OA_output[id]);
86           OA_output[id] = "";
87         }
88         else {
89           /** Remember iinline-code, if present */
90           src = result[1]
91           inline = result[2];
92           /** Strip all text up to and including "</script>" from OA_output[id] */
93           OA_output[id] = OA_output[id].slice(result[0].length,OA_output[id].length);
94           result = /src\s*=\s*['"]([^'"]*)['"]/i.exec(src);
95           if (result == null) {
96             /** script-tag with inline-code: execute inline-code! */
97             result = /^\s*<.*$/m.exec(inline);
98             if (result != null) {
99               /** Remove leading HTML-comments, because IE will stumble otherwise */
100               inline = inline.slice(result[0].length,inline.length);
101             }
102             $.globalEval(inline);
103           }
104           else {
105             /** script-tag with src-URL! */
106             ads.push(id); // << The banner might not be rendered fully, or include more calls to document.write().
107             /** Load the script and halt all work until the script is loaded and executed... */
108             $.getScript(result[1], render_ads); // << jQuery.getScript() generates onload-Handler for _all_ browsers ;)
109             return;
110           }
111         }
112       }
113
114       node.append(OA_output[id]);
115       OA_output[id] = "";
116     }
117
118     /** All entries from OA_output were rendered */
119
120     id = undefined;
121     node = undefined;
122   }
123
124   function document_write() {
125
126     if (id == undefined)
127       return;
128
129     var
130     str = "",
131     i;
132
133     for (i=0; i < arguments.length; i++)
134       str += arguments[i];
135
136     OA_output[id] = str + OA_output[id];
137
138   }
139
140 } ( window.openx = window.openx || {}, jQuery ));
141
142 var OA_output = {}; // << Needed, because IE will complain loudly otherwise!