]> git.wh0rd.org - tt-rss.git/blame - tt-rss.js
new article toolbar
[tt-rss.git] / tt-rss.js
CommitLineData
1cd17194
AD
1/*
2 This program is Copyright (c) 2003-2005 Andrew Dolgov <cthulhoo@gmail.com>
3 Licensed under GPL v.2 or (at your preference) any later version.
4*/
5
6var xmlhttp = false;
525116d4 7var xmlhttp_rpc = false;
c3a8d71a 8var xmlhttp_view = false;
1cd17194 9
76798ff3 10var total_unread = 0;
525116d4 11var first_run = true;
76798ff3 12
9cfc649a
AD
13var active_post_id = false;
14var active_feed_id = false;
c3a8d71a
AD
15var active_offset = false;
16
17var total_feed_entries = false;
18
c374a3fe
AD
19var search_query = "";
20
1cd17194
AD
21/*@cc_on @*/
22/*@if (@_jscript_version >= 5)
23// JScript gives us Conditional compilation, we can cope with old IE versions.
24// and security blocked creation of the objects.
25try {
26 xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
27} catch (e) {
28 try {
29 xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
508a81e1 30 xmlhttp_rpc = new ActiveXObject("Microsoft.XMLHTTP");
c3a8d71a 31 xmlhttp_view = new ActiveXObject("Microsoft.XMLHTTP");
1cd17194
AD
32 } catch (E) {
33 xmlhttp = false;
508a81e1 34 xmlhttp_rpc = false;
c3a8d71a 35 xmlhttp_view = false;
1cd17194
AD
36 }
37}
38@end @*/
39
40if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
41 xmlhttp = new XMLHttpRequest();
525116d4 42 xmlhttp_rpc = new XMLHttpRequest();
c3a8d71a 43 xmlhttp_view = new XMLHttpRequest();
1cd17194
AD
44}
45
1cd17194 46function feedlist_callback() {
d76a3b03 47 var container = document.getElementById('feeds');
1cd17194 48 if (xmlhttp.readyState == 4) {
d76a3b03 49 container.innerHTML=xmlhttp.responseText;
76798ff3 50
525116d4 51 if (first_run) {
cb246176 52 scheduleFeedUpdate(false);
525116d4
AD
53 first_run = false;
54 } else {
55 notify("");
c0e5a40e
AD
56 }
57 }
1cd17194
AD
58}
59
525116d4 60function refetch_callback() {
c0e5a40e 61
525116d4 62 if (xmlhttp_rpc.readyState == 4) {
c3b81db0 63 notify("All feeds updated");
c3b81db0 64 var container = document.getElementById('feeds');
c3b81db0 65 container.innerHTML = xmlhttp_rpc.responseText;
55193822 66 document.title = "Tiny Tiny RSS";
c0e5a40e 67 }
525116d4
AD
68}
69
caa4e57f
AD
70function updateFeed(feed_id) {
71
72 var query_str = "backend.php?op=rpc&subop=updateFeed&feed=" + feed_id;
73
74 if (xmlhttp_ready(xmlhttp_rpc)) {
75 xmlhttp_rpc.open("GET", query_str, true);
76 xmlhttp_rpc.onreadystatechange=feed_update_callback;
77 xmlhttp_rpc.send(null);
78 } else {
79 printLockingError();
80 }
81
82}
83
cb246176 84function scheduleFeedUpdate(force) {
525116d4
AD
85
86 notify("Updating feeds in background...");
87
55193822
AD
88 document.title = "Tiny Tiny RSS - Updating...";
89
cb246176
AD
90 var query_str = "backend.php?op=rpc&subop=";
91
92 if (force) {
c3b81db0 93 query_str = query_str + "forceUpdateAllFeeds";
cb246176 94 } else {
c3b81db0 95 query_str = query_str + "updateAllFeeds";
cb246176 96 }
525116d4 97
c0e5a40e 98 if (xmlhttp_ready(xmlhttp_rpc)) {
525116d4
AD
99 xmlhttp_rpc.open("GET", query_str, true);
100 xmlhttp_rpc.onreadystatechange=refetch_callback;
101 xmlhttp_rpc.send(null);
102 } else {
103 printLockingError();
c0e5a40e 104 }
525116d4 105}
1cd17194 106
525116d4 107function updateFeedList(silent, fetch) {
c0e5a40e 108
525116d4 109 if (silent != true) {
11c2f3fa 110 notify("Loading feed list...");
40d13c28 111 }
82baad4a 112
331900c6
AD
113 var query_str = "backend.php?op=feeds";
114
115 if (fetch) query_str = query_str + "&fetch=yes";
116
c0e5a40e 117 if (xmlhttp_ready(xmlhttp)) {
076682aa
AD
118 xmlhttp.open("GET", query_str, true);
119 xmlhttp.onreadystatechange=feedlist_callback;
120 xmlhttp.send(null);
121 } else {
a234aee5 122 printLockingError();
076682aa 123 }
1cd17194
AD
124}
125
f0601b87 126/*
175847de
AD
127function catchupPage(feed) {
128
c0e5a40e 129 if (!xmlhttp_ready(xmlhttp)) {
a234aee5 130 printLockingError();
076682aa
AD
131 return
132 }
133
175847de
AD
134 var content = document.getElementById("headlinesList");
135
136 var rows = new Array();
137
138 for (i = 0; i < content.rows.length; i++) {
139 var row_id = content.rows[i].id.replace("RROW-", "");
140 if (row_id.length > 0) {
cb0bd8bd
AD
141 if (content.rows[i].className.match("Unread")) {
142 rows.push(row_id);
143 content.rows[i].className = content.rows[i].className.replace("Unread", "");
144 }
bf66b95b
AD
145
146 var upd_img_pic = document.getElementById("FUPDPIC-" + row_id);
147 if (upd_img_pic) {
148 upd_img_pic.innerHTML = "";
149 }
175847de
AD
150 }
151 }
152
cb0bd8bd 153 if (rows.length > 0) {
175847de 154
cb0bd8bd
AD
155 var feedr = document.getElementById("FEEDR-" + feed);
156 var feedu = document.getElementById("FEEDU-" + feed);
157
158 feedu.innerHTML = feedu.innerHTML - rows.length;
159
160 if (feedu.innerHTML > 0 && !feedr.className.match("Unread")) {
161 feedr.className = feedr.className + "Unread";
162 } else if (feedu.innerHTML <= 0) {
163 feedr.className = feedr.className.replace("Unread", "");
164 }
165
166 var query_str = "backend.php?op=rpc&subop=catchupPage&ids=" +
167 param_escape(rows.toString());
168
169 notify("Marking this page as read...");
e1123aee
AD
170
171 var button = document.getElementById("btnCatchupPage");
172
40789bbf
AD
173 if (button) {
174 button.className = "disabledButton";
175 button.href = "";
176 }
cb0bd8bd
AD
177
178 xmlhttp.open("GET", query_str, true);
179 xmlhttp.onreadystatechange=notify_callback;
180 xmlhttp.send(null);
175847de 181
cb0bd8bd
AD
182 } else {
183 notify("No unread items on this page.");
175847de 184
cb0bd8bd 185 }
f0601b87 186} */
175847de 187
476cac42 188function catchupAllFeeds() {
076682aa 189
c0e5a40e 190 if (!xmlhttp_ready(xmlhttp)) {
a234aee5 191 printLockingError();
076682aa
AD
192 return
193 }
476cac42
AD
194 var query_str = "backend.php?op=feeds&subop=catchupAll";
195
196 notify("Marking all feeds as read...");
197
198 xmlhttp.open("GET", query_str, true);
199 xmlhttp.onreadystatechange=feedlist_callback;
200 xmlhttp.send(null);
201
202}
1cd17194 203
f0601b87
AD
204function viewCurrentFeed(skip, subop) {
205 if (active_feed_id) {
206 viewfeed(active_feed_id, skip, subop);
207 }
208}
209
476cac42 210function viewfeed(feed, skip, subop) {
1cd17194 211
c05608c2
AD
212// notify("Loading headlines...");
213
36bf7496
AD
214 enableHotkeys();
215
c374a3fe
AD
216 var searchbox = document.getElementById("searchbox");
217
218 if (searchbox) {
219 search_query = searchbox.value;
220 } else {
221 search_query = "";
222 }
223
f175937c
AD
224 var viewbox = document.getElementById("viewbox");
225
226 var view_mode;
227
228 if (viewbox) {
229 view_mode = viewbox.value;
230 } else {
231 view_mode = "All Posts";
232 }
233
cb1083a1
AD
234 var limitbox = document.getElementById("limitbox");
235
236 var limit;
237
238 if (limitbox) {
239 limit = limitbox.value;
240 } else {
241 limit = "All";
242 }
243
c3a8d71a
AD
244 if (skip < 0 || skip > total_feed_entries) {
245 return;
246 }
247
c0e5a40e 248 if (!xmlhttp_ready(xmlhttp)) {
a234aee5 249 printLockingError();
076682aa
AD
250 return
251 }
c3a8d71a 252
431ade55 253 if (active_feed_id != feed || skip != active_offset) {
b5daec98 254 active_post_id = false;
431ade55 255 }
b5daec98 256
9cfc649a 257 active_feed_id = feed;
c3a8d71a 258 active_offset = skip;
076682aa 259
f0601b87
AD
260 if (subop == "MarkAllRead") {
261
262 var feedr = document.getElementById("FEEDR-" + feed);
263 var feedt = document.getElementById("FEEDT-" + feed);
264 var feedu = document.getElementById("FEEDU-" + feed);
265
266 feedu.innerHTML = "0";
267
268 if (feedr.className.match("Unread")) {
269 feedr.className = feedr.className.replace("Unread", "");
270 }
271 }
272
c374a3fe 273 var query = "backend.php?op=viewfeed&feed=" + param_escape(feed) +
f175937c 274 "&skip=" + param_escape(skip) + "&subop=" + param_escape(subop) +
cb1083a1 275 "&view=" + param_escape(view_mode) + "&limit=" + limit;
c374a3fe
AD
276
277 if (search_query != "") {
278 query = query + "&search=" + param_escape(search_query);
279 }
280
f0601b87
AD
281 var headlines_frame = document.getElementById("headlines-frame");
282
283 headlines_frame.src = query + "&addheader=true";
caa4e57f 284
f0601b87 285 var feedr = document.getElementById("FEEDR-" + feed);
caa4e57f 286
f0601b87
AD
287 cleanSelected("feedsList");
288 feedr.className = feedr.className + "Selected";
9cfc649a 289
f0601b87
AD
290 var ftitle_d = document.getElementById("headlinesTitle");
291 var ftitle_s = document.getElementById("FEEDN-" + feed);
9cfc649a 292
f0601b87
AD
293 ftitle_d.innerHTML = ftitle_s.innerHTML;
294
c05608c2 295// notify("");
9cfc649a
AD
296
297}
298
40d13c28 299function timeout() {
cb246176 300 scheduleFeedUpdate(true);
ac53063a 301 setTimeout("timeout()", 1800*1000);
ac53063a
AD
302}
303
c374a3fe
AD
304function resetSearch() {
305 document.getElementById("searchbox").value = "";
306 viewfeed(active_feed_id, 0, "");
307}
ac53063a 308
f0601b87
AD
309function search() {
310 if (active_feed_id) {
311 viewfeed(active_feed_id, 0, "");
312 } else {
313 notify("Please select some feed first.");
314 }
76798ff3 315}
1cd17194 316
13ad9102
AD
317function localPiggieFunction(enable) {
318 if (enable) {
319 var query_str = "backend.php?op=feeds&subop=piggie";
320
c0e5a40e 321 if (xmlhttp_ready(xmlhttp)) {
13ad9102
AD
322
323 xmlhttp.open("GET", query_str, true);
324 xmlhttp.onreadystatechange=feedlist_callback;
325 xmlhttp.send(null);
326 }
327 }
328}
329
f0601b87 330/*
c3a8d71a 331function moveToPost(mode) {
9cfc649a
AD
332
333 var rows = getVisibleHeadlineIds();
334
335 var prev_id;
336 var next_id;
337
c3a8d71a
AD
338 if (active_post_id == false) {
339 next_id = getFirstVisibleHeadlineId();
340 prev_id = getLastVisibleHeadlineId();
341 } else {
342 for (var i = 0; i < rows.length; i++) {
343 if (rows[i] == active_post_id) {
344 prev_id = rows[i-1];
345 next_id = rows[i+1];
346 }
9cfc649a
AD
347 }
348 }
349
c3a8d71a
AD
350 if (mode == "next") {
351 if (next_id != undefined) {
352 view(next_id, active_feed_id);
353 } else {
354 _viewfeed_autoselect_first = true;
355 viewfeed(active_feed_id, active_offset+15);
356 }
9cfc649a
AD
357 }
358
c3a8d71a
AD
359 if (mode == "prev") {
360 if ( prev_id != undefined) {
361 view(prev_id, active_feed_id);
362 } else {
363 _viewfeed_autoselect_last = true;
364 viewfeed(active_feed_id, active_offset-15);
365 }
9cfc649a
AD
366 }
367
368}
f0601b87 369*/
9cfc649a
AD
370
371function localHotkeyHandler(keycode) {
372
f0601b87 373/* if (keycode == 78) {
c3a8d71a 374 return moveToPost('next');
9cfc649a
AD
375 }
376
377 if (keycode == 80) {
c3a8d71a 378 return moveToPost('prev');
f0601b87 379 } */
c3a8d71a
AD
380
381 if (keycode == 82) {
382 return scheduleFeedUpdate(true);
383 }
384
385 if (keycode == 85) {
386 return viewfeed(active_feed_id, active_offset, "ForceUpdate");
387 }
388
389// notify("KC: " + keycode);
390
9cfc649a
AD
391}
392
76798ff3 393function init() {
c0e5a40e
AD
394
395 // IE kludge
396
397 if (xmlhttp && !xmlhttp_rpc) {
398 xmlhttp_rpc = xmlhttp;
399 xmlhttp_view = xmlhttp;
400 }
401
402 if (!xmlhttp || !xmlhttp_rpc || !xmlhttp_view) {
c3a8d71a
AD
403 document.getElementById("headlines").innerHTML =
404 "<b>Fatal error:</b> This program needs XmlHttpRequest " +
405 "to function properly. Your browser doesn't seem to support it.";
406 return;
407 }
408
476cac42 409 updateFeedList(false, false);
13ad9102 410 document.onkeydown = hotkey_handler;
ac53063a 411 setTimeout("timeout()", 1800*1000);
70830c87
AD
412
413 var content = document.getElementById("content");
1cd17194 414}