Fix a couple of typos from last commit (one possibly error-causing for picky browsers...
[lhc/web/wiklou.git] / skins / common / ajaxwatch.js
1 // dependencies:
2 // * ajax.js:
3 /*extern sajax_init_object, sajax_do_call */
4 // * wikibits.js:
5 /*extern changeText, akeytt, hookEvent, jsMsg */
6
7 // These should have been initialized in the generated js
8 /*extern wgAjaxWatch, wgPageName */
9
10 if(typeof wgAjaxWatch === "undefined" || !wgAjaxWatch) {
11 var wgAjaxWatch = {
12 watchMsg: "Watch",
13 unwatchMsg: "Unwatch",
14 watchingMsg: "Watching...",
15 unwatchingMsg: "Unwatching..."
16 };
17 }
18
19 wgAjaxWatch.supported = true; // supported on current page and by browser
20 wgAjaxWatch.watching = false; // currently watching page
21 wgAjaxWatch.inprogress = false; // ajax request in progress
22 wgAjaxWatch.timeoutID = null; // see wgAjaxWatch.ajaxCall
23 wgAjaxWatch.watchLinks = []; // "watch"/"unwatch" links
24
25 wgAjaxWatch.setLinkText = function(newText) {
26 for (i = 0; i < wgAjaxWatch.watchLinks.length; i++) {
27 changeText(wgAjaxWatch.watchLinks[i], newText);
28 }
29 };
30
31 wgAjaxWatch.setLinkID = function(newId) {
32 // We can only set the first one
33 wgAjaxWatch.watchLinks[0].setAttribute( 'id', newId );
34 akeytt(newId); // update tooltips for Monobook
35 };
36
37 wgAjaxWatch.setHref = function( string ) {
38 for( i = 0; i < wgAjaxWatch.watchLinks.length; i++ ) {
39 if( string == 'watch' ) {
40 wgAjaxWatch.watchLinks[i].href = wgAjaxWatch.watchLinks[i].href
41 .replace( /&action=unwatch/, '&action=watch' );
42 } else if( string == 'unwatch' ) {
43 wgAjaxWatch.watchLinks[i].href = wgAjaxWatch.watchLinks[i].href
44 .replace( /&action=watch/, '&action=unwatch' );
45 }
46 }
47 }
48
49 wgAjaxWatch.ajaxCall = function() {
50 if(!wgAjaxWatch.supported) {
51 return true;
52 } else if (wgAjaxWatch.inprogress) {
53 return false;
54 }
55 wgAjaxWatch.inprogress = true;
56 wgAjaxWatch.setLinkText( wgAjaxWatch.watching
57 ? wgAjaxWatch.unwatchingMsg : wgAjaxWatch.watchingMsg);
58 sajax_do_call(
59 "wfAjaxWatch",
60 [wgPageName, (wgAjaxWatch.watching ? "u" : "w")],
61 wgAjaxWatch.processResult
62 );
63 // if the request isn't done in 10 seconds, allow user to try again
64 wgAjaxWatch.timeoutID = window.setTimeout(
65 function() { wgAjaxWatch.inprogress = false; },
66 10000
67 );
68 return false;
69 };
70
71 wgAjaxWatch.processResult = function(request) {
72 if(!wgAjaxWatch.supported) {
73 return;
74 }
75 var response = request.responseText;
76 if( response.match(/^<err#>/) ) {
77 window.location.href = wgAjaxWatch.watchLink1.href;
78 return;
79 } else if( response.match(/^<w#>/) ) {
80 wgAjaxWatch.watching = true;
81 wgAjaxWatch.setLinkText(wgAjaxWatch.unwatchMsg);
82 wgAjaxWatch.setLinkID("ca-unwatch");
83 wgAjaxWatch.setHref( 'unwatch' );
84 } else if( response.match(/^<u#>/) ) {
85 wgAjaxWatch.watching = false;
86 wgAjaxWatch.setLinkText(wgAjaxWatch.watchMsg);
87 wgAjaxWatch.setLinkID("ca-watch");
88 wgAjaxWatch.setHref( 'watch' );
89 }
90 jsMsg( response.substr(4), 'watch' );
91 wgAjaxWatch.inprogress = false;
92 if(wgAjaxWatch.timeoutID) {
93 window.clearTimeout(wgAjaxWatch.timeoutID);
94 }
95 return;
96 };
97
98 wgAjaxWatch.onLoad = function() {
99 // This document structure hardcoding sucks. We should make a class and
100 // toss all this out the window.
101 var el1 = document.getElementById("ca-unwatch");
102 var el2 = null;
103 if (!el1) {
104 el1 = document.getElementById("mw-unwatch-link1");
105 el2 = document.getElementById("mw-unwatch-link2");
106 }
107 if(el1) {
108 wgAjaxWatch.watching = true;
109 } else {
110 wgAjaxWatch.watching = false;
111 el1 = document.getElementById("ca-watch");
112 if (!el1) {
113 el1 = document.getElementById("mw-watch-link1");
114 el2 = document.getElementById("mw-watch-link2");
115 }
116 if(!el1) {
117 wgAjaxWatch.supported = false;
118 return;
119 }
120 }
121
122 if(!wfSupportsAjax()) {
123 wgAjaxWatch.supported = false;
124 return;
125 }
126
127 // The id can be either for the parent (Monobook-based) or the element
128 // itself (non-Monobook)
129 wgAjaxWatch.watchLinks.push( el1.tagName.toLowerCase() == "a"
130 ? el1 : el1.firstChild );
131
132 if( el2 ) {
133 wgAjaxWatch.watchLinks.push( el2 );
134 }
135
136 // I couldn't get for (watchLink in wgAjaxWatch.watchLinks) to work, if
137 // you can be my guest.
138 for( i = 0; i < wgAjaxWatch.watchLinks.length; i++ ) {
139 wgAjaxWatch.watchLinks[i].onclick = wgAjaxWatch.ajaxCall;
140 }
141 return;
142 };
143
144 hookEvent("load", wgAjaxWatch.onLoad);
145
146 /**
147 * @return boolean whether the browser supports XMLHttpRequest
148 */
149 function wfSupportsAjax() {
150 var request = sajax_init_object();
151 var supportsAjax = request ? true : false;
152 delete request;
153 return supportsAjax;
154 }