]> git.wh0rd.org Git - tt-rss.git/blob - feedlist.js
api: add updateFeed (2)
[tt-rss.git] / feedlist.js
1 var _feed_cur_page = 0;
2 var _infscroll_disable = 0;
3 var _infscroll_request_sent = 0;
4 var feed_under_pointer = undefined;
5
6 var mouse_is_down = false;
7 var mouse_y = 0;
8 var mouse_x = 0;
9
10 var resize_enabled = false;
11 var selection_disabled = false;
12 var counters_last_request = 0;
13
14 function toggle_sortable_feedlist(enabled) {
15         try {
16
17                 if (enabled) {
18                         Sortable.create('feedList', {onChange: feedlist_dragsorted, only: "feedCat"});
19                 } else {
20                         Sortable.destroy('feedList');
21                 }
22
23         } catch (e) {
24                 exception_error("toggle_sortable_feedlist", e);
25         }
26 }
27
28 function viewCategory(cat) {
29         viewfeed(cat, '', true);
30         return false;
31 }
32
33 function printFeedEntry(id, title, row_class, unread, icon) {
34
35         var tmp = "";
36         var fctr_class = "";
37         var feed_icon = "";
38
39         if (unread > 0) {
40                 row_class += "Unread";
41                 fctr_class = "feedCtrHasUnread";
42         } else {
43                 fctr_class = "feedCtrNoUnread";
44         }
45
46         if (icon) {
47                 feed_icon = "<img id='FIMG-"+id+"' src='" + icon + "'>";
48         } else {
49                 feed_icon = "<img id='FIMG-"+id+"' src='images/blank_icon.gif'>";
50         }
51
52         var link = "<a title=\"FIXME\" id=\"FEEDL-"+id+"\""+
53                 "href=\"javascript:viewfeed('"+id+"', '', false, '', false, 0);\">"+
54                 title + "</a>";
55
56         tmp += "<li id='FEEDR-"+id+"' class="+row_class+">" + feed_icon + 
57                 "<span id=\"FEEDN-"+id+"\">" + link + "</span>";
58
59         tmp += " <span class='"+fctr_class+"' id=\"FEEDCTR-"+id+"\">" +
60            "(<span id=\"FEEDU-"+id+"\">"+unread+"</span>)</span>";
61                         
62         tmp += "</li>";
63
64         return tmp;
65 }
66
67 function render_feedlist(data) {
68         try {
69
70                 var f = $("feeds-frame");
71                 f.innerHTML = data;
72 //              cache_invalidate("FEEDLIST");
73 //              cache_inject("FEEDLIST", data, getInitParam("num_feeds"));
74                 feedlist_init();
75
76         } catch (e) {
77                 exception_error("render_feedlist", e);
78         }
79 }
80
81 function feedlist_callback2(transport) {
82         try {
83                 debug("feedlist_callback2");
84                 if (!transport_error_check(transport)) return;
85                 render_feedlist(transport.responseText);
86         } catch (e) {
87                 exception_error("feedlist_callback2", e);
88         }
89 }
90
91 function viewNextFeedPage() {
92         try {
93                 //if (!getActiveFeedId()) return;
94
95                 debug("viewNextFeedPage: calling viewfeed(), p: " + parseInt(_feed_cur_page+1));
96
97                 viewfeed(getActiveFeedId(), undefined, activeFeedIsCat(), undefined,
98                         undefined, parseInt(_feed_cur_page+1));
99
100         } catch (e) {
101                 exception_error("viewNextFeedPage", e);
102         }
103 }
104
105
106 function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
107         try {
108
109                 if (offline_mode) return viewfeed_offline(feed, subop, is_cat, subop_param,
110                         skip_history, offset);
111
112 //              if (!offset) page_offset = 0;
113
114                 last_requested_article = 0;
115                 //counters_last_request = 0;
116
117                 if (feed == getActiveFeedId()) {
118                         cache_invalidate("F:" + feed);
119                 }
120
121 /*              if (getInitParam("theme") == "" || getInitParam("theme") == "compact") {
122                         if (getInitParam("hide_feedlist") == 1) {
123                                 Element.hide("feeds-holder");
124                         }               
125                 } */
126
127                 var force_nocache = false;
128
129                 var page_offset = 0;
130
131                 if (offset > 0) {
132                         page_offset = offset;
133                 } else {
134                         page_offset = 0;
135                         _feed_cur_page = 0;
136                         _infscroll_disable = 0;
137                 }
138
139                 if (getActiveFeedId() != feed) {
140                         _feed_cur_page = 0;
141                         active_post_id = 0;
142                         _infscroll_disable = 0;
143                 }
144
145                 if (page_offset != 0 && !subop) {
146                         var date = new Date();
147                         var timestamp = Math.round(date.getTime() / 1000);
148
149                         debug("<b>" + _infscroll_request_sent + " : " + timestamp + "</b>");
150
151                         if (_infscroll_request_sent && _infscroll_request_sent + 30 > timestamp) {
152                                 debug("infscroll request in progress, aborting");
153                                 return;
154                         }
155
156                         _infscroll_request_sent = timestamp;                    
157                 }
158
159                 enableHotkeys();
160                 hideAuxDlg();
161                 closeInfoBox();
162
163                 Form.enable("main_toolbar_form");
164
165                 var toolbar_form = document.forms["main_toolbar_form"];
166                 var toolbar_query = Form.serialize("main_toolbar_form");
167
168                 if (toolbar_form.query) {
169                         if (toolbar_form.query.value != "") {
170                                 force_nocache = true;
171                         }
172                         toolbar_form.query.value = "";
173                 }
174
175                 var query = "backend.php?op=viewfeed&feed=" + feed + "&" +
176                         toolbar_query + "&subop=" + param_escape(subop);
177
178                 if ($("search_form")) {
179                         var search_query = Form.serialize("search_form");
180                         query = query + "&" + search_query;
181                         $("search_form").query.value = "";
182                         closeInfoBox(true);
183                         force_nocache = true;
184                 }
185
186 //              debug("IS_CAT_STORED: " + activeFeedIsCat() + ", IS_CAT: " + is_cat);
187
188                 if (subop == "MarkAllRead") {
189
190                         catchup_local_feed(feed, is_cat);
191
192                         var show_next_feed = getInitParam("on_catchup_show_next_feed") == "1";
193
194                         if (show_next_feed) {
195
196                                 if (!activeFeedIsCat()) {
197         
198                                         var feedlist = $('feedList');
199                                 
200                                         var next_unread_feed = getRelativeFeedId(feedlist,
201                                                         feed, "next", true);
202         
203                                         if (!next_unread_feed) {
204                                                 next_unread_feed = getRelativeFeedId(feedlist,
205                                                         -3, "next", true);
206                                         }
207                 
208                                         if (next_unread_feed) {
209                                                 query = query + "&nuf=" + param_escape(next_unread_feed);
210                                                 //setActiveFeedId(next_unread_feed);
211                                                 feed = next_unread_feed;
212                                         }
213                                 } else {
214         
215                                         var next_unread_feed = getNextUnreadCat(feed);
216
217                                         /* we don't need to specify that our next feed is actually
218                                         a category, because we're in the is_cat mode by definition
219                                         already */
220
221                                         if (next_unread_feed && show_next_feed) {
222                                                 query = query + "&nuf=" + param_escape(next_unread_feed);
223                                                 feed = next_unread_feed;
224                                         }
225
226                                 }
227                         }
228                 }
229
230                 if (is_cat) {
231                         query = query + "&cat=1";
232                 }
233
234                 if (page_offset != 0) {
235                         query = query + "&skip=" + page_offset;
236
237                         // to prevent duplicate feed titles when showing grouped vfeeds
238                         if (vgroup_last_feed) {
239                                 query = query + "&vgrlf=" + param_escape(vgroup_last_feed);
240                         }
241                 }
242
243                 var date = new Date();
244                 var timestamp = Math.round(date.getTime() / 1000);
245                 query = query + "&ts=" + timestamp
246                 
247                 disableContainerChildren("headlinesToolbar", false);
248                 Form.enable("main_toolbar_form");
249
250                 // for piggybacked counters
251
252                 if (tagsAreDisplayed()) {
253                         query = query + "&omode=lt";
254                 } else {
255                         query = query + "&omode=flc";
256                 }
257
258                 if (!async_counters_work) {
259                         query = query + "&csync=true";
260                 }
261
262                 debug(query);
263
264                 var container = $("headlinesInnerContainer");
265
266 /*              if (container && page_offset == 0 && !isCdmMode()) {
267                         new Effect.Fade(container, {duration: 1, to: 0.01,
268                                 queue: { position:'end', scope: 'FEEDL-' + feed, limit: 1 } } );
269                 } */
270
271                 var unread_ctr = -1;
272                 
273                 if (!is_cat) unread_ctr = get_feed_unread(feed);
274
275                 var cache_check = false;
276
277                 if (unread_ctr != -1 && !page_offset && !force_nocache && !subop) {
278
279                         var cache_prefix = "";
280                                 
281                         if (is_cat) {
282                                 cache_prefix = "C:";
283                         } else {
284                                 cache_prefix = "F:";
285                         }
286
287                         cache_check = cache_check_param(cache_prefix + feed, unread_ctr);
288                         debug("headline cache check: " + cache_check);
289                 }
290
291                 if (cache_check) {
292                         var f = $("headlines-frame");
293
294                         clean_feed_selections();
295
296                         setActiveFeedId(feed, is_cat);
297                 
298                         if (!is_cat) {
299                                 var feedr = $("FEEDR-" + feed);
300                                 if (feedr && !feedr.className.match("Selected")) {      
301                                         feedr.className = feedr.className + "Selected";
302                                 } 
303                         } else {
304                                 var feedr = $("FCAT-" + feed_id);
305                                 if (feedr && !feedr.className.match("Selected")) {      
306                                         feedr.className = feedr.className + "Selected";
307                                 } 
308                         }
309
310                         f.innerHTML = cache_find_param(cache_prefix + feed, unread_ctr);
311
312                         request_counters();
313                         remove_splash();
314
315                 } else {
316
317                         if (!page_offset) {
318                                 var feedr;
319
320                                 if (is_cat) {
321                                         feedr = $('FCAP-' + feed);
322                                 } else {
323                                         feedr = $('FEEDR-' + feed);
324                                 }
325
326                                 if (feedr && !$('FLL-' + feed)) {
327
328                                         var img = $('FIMG-' + feed);
329
330                                         if (!is_cat && img) {
331
332                                                 if (!img.src.match("indicator_white")) {
333                                                         img.alt = img.src;
334                                                         img.src = 'images/indicator_white.gif';
335                                                 }
336
337                                         } else {
338
339                                                 if (!$('FLL-' + feed)) {
340                                                         var ll = document.createElement('img');
341
342                                                         ll.src = 'images/indicator_tiny.gif';
343                                                         ll.className = 'hlLoading';
344                                                         ll.id = 'FLL-' + feed;
345         
346                                                         feedr.appendChild(ll);
347                                                 }
348                                         }
349                                 }
350                         }
351
352                         new Ajax.Request(query, {
353                                 onComplete: function(transport) { 
354                                         headlines_callback2(transport, page_offset); 
355                                 } });
356                 }
357
358         } catch (e) {
359                 exception_error("viewfeed", e);
360         }               
361 }
362
363 function toggleCollapseCat_af(effect) {
364         //var caption = elem.id.replace("FCATLIST-", "");
365
366         try {
367
368                 var elem = effect.element;
369                 var cat = elem.id.replace("FCATLIST-", "");
370                 var cap = $("FCAP-" + cat);
371
372                 if (Element.visible(elem)) {
373                         cap.innerHTML = cap.innerHTML.replace("…", "");
374                 } else {
375                         if (cap.innerHTML.lastIndexOf("…") != cap.innerHTML.length-3) {
376                                 cap.innerHTML = cap.innerHTML + "…";
377                         }
378                 }
379
380         } catch (e) {
381                 exception_error("toggleCollapseCat_af", e);
382         }
383 }
384
385 function toggleCollapseCat(cat) {
386         try {
387         
388                 var cat_elem = $("FCAT-" + cat);
389                 var cat_list = $("FCATLIST-" + cat).parentNode;
390                 var caption = $("FCAP-" + cat);
391                 
392 /*              if (cat_list.className.match("invisible")) {
393                         cat_list.className = "";
394                         caption.innerHTML = caption.innerHTML.replace("...", "");
395                         if (cat == 0) {
396                                 setCookie("ttrss_vf_uclps", "0");
397                         }
398                 } else {
399                         cat_list.className = "invisible";
400                         caption.innerHTML = caption.innerHTML + "...";
401                         if (cat == 0) {
402                                 setCookie("ttrss_vf_uclps", "1");
403                         } 
404
405                 } */
406
407                 if (cat == 0) {
408                         if (Element.visible("FCATLIST-" + cat)) {
409                                 setCookie("ttrss_vf_uclps", "1");
410                         } else {
411                                 setCookie("ttrss_vf_uclps", "0");
412                         }
413                 } 
414
415                 if (cat == -2) {
416                         if (Element.visible("FCATLIST-" + cat)) {
417                                 setCookie("ttrss_vf_lclps", "1");
418                         } else {
419                                 setCookie("ttrss_vf_lclps", "0");
420                         }
421                 } 
422
423                 if (cat == -1) {
424                         if (Element.visible("FCATLIST-" + cat)) {
425                                 setCookie("ttrss_vf_vclps", "1");
426                         } else {
427                                 setCookie("ttrss_vf_vclps", "0");
428                         }
429                 } 
430
431                 Effect.toggle('FCATLIST-' + cat, 'blind', { duration: 0.5,
432                         afterFinish: toggleCollapseCat_af });
433
434                 new Ajax.Request("backend.php?op=feeds&subop=collapse&cid=" + 
435                         param_escape(cat));
436
437                 local_collapse_cat(cat);
438
439         } catch (e) {
440                 exception_error("toggleCollapseCat", e);
441         }
442 }
443
444 function feedlist_dragsorted(ctr) {
445         try {
446                 var elem = $("feedList");
447
448                 var cats = elem.getElementsByTagName("LI");
449                 var ordered_cats = new Array();
450
451                 for (var i = 0; i < cats.length; i++) {
452                         if (cats[i].id && cats[i].id.match("FCAT-")) {
453                                 ordered_cats.push(cats[i].id.replace("FCAT-", ""));
454                         }
455                 }
456
457                 if (ordered_cats.length > 0) {
458
459                         var query = "backend.php?op=feeds&subop=catsort&corder=" + 
460                                 param_escape(ordered_cats.toString());
461
462                         debug(query);
463
464                         new Ajax.Request(query);
465                 }
466
467         } catch (e) {
468                 exception_error("feedlist_dragsorted", e);
469         }
470 }
471
472 function feedlist_init() {
473         try {
474 //              if (arguments.callee.done) return;
475 //              arguments.callee.done = true;           
476                 
477                 loading_set_progress(90);
478
479                 debug("in feedlist init");
480                 
481                 hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
482                 document.onkeydown = hotkey_handler;
483                 document.onmousemove = mouse_move_handler;
484                 document.onmousedown = mouse_down_handler;
485                 document.onmouseup = mouse_up_handler;
486
487                 if (!offline_mode) setTimeout("timeout()", 1);
488
489                 setTimeout("hotkey_prefix_timeout()", 5*1000);
490
491                 if (typeof correctPNG != 'undefined') {
492                         correctPNG();
493                 }
494
495                 if (getActiveFeedId()) {
496                         //debug("some feed is open on feedlist refresh, reloading");
497                         //setTimeout("viewCurrentFeed()", 100);
498                 } else {
499                         if (getInitParam("cdm_auto_catchup") != 1 && get_feed_unread(-3) > 0) {
500                                 notify_silent_next();
501                                 setTimeout("viewfeed(-3)", 100);
502                         } else {
503                                 remove_splash();
504                         }
505                 }
506
507                 if (getInitParam("theme") == "") {
508                         setTimeout("hide_footer()", 5000);
509                 }
510
511                 init_collapsable_feedlist(getInitParam("theme"));
512
513                 toggle_sortable_feedlist(isFeedlistSortable());
514
515         } catch (e) {
516                 exception_error("feedlist/init", e);
517         }
518 }
519
520 function hide_footer_af(effect) {
521         try {
522                 var c = $("content-frame");
523
524                 if (c) {
525                         c.style.bottom = "0px";
526
527                         var ioa = $("inline_orig_article");
528
529                         if (ioa) {
530                                 ioa.height = c.offsetHeight;
531                         }
532
533                 } else {
534                         var h = $("headlines-frame");
535
536                         if (h) {
537                                 h.style.bottom = "0px";
538                         }
539                 }
540
541         } catch (e) {
542                 exception_error("hide_footer_af", e);
543         }
544 }
545
546 function hide_footer() {
547         try {
548                 if (Element.visible("footer")) {
549                         new Effect.Fade("footer", { afterFinish: hide_footer_af });
550                 }
551         } catch (e) {
552                 exception_error("hide_footer", e);
553         }
554 }
555
556 /*
557 function init_hidden_feedlist(theme) {
558         try {
559                 debug("init_hidden_feedlist");
560
561                 if (theme != "" && theme != "compact") return;
562
563                 var fl = $("feeds-holder");
564                 var fh = $("headlines-frame");
565                 var fc = $("content-frame");
566                 var ft = $("toolbar");
567                 var ff = $("footer");
568                 var fhdr = $("header");
569
570                 var fbtn = $("toggle_feeds_btn");
571
572                 if (fbtn) Element.show(fbtn);
573
574                 fl.style.top = fh.offsetTop + "px";
575                 fl.style.backgroundColor = "white"; //FIXME
576
577                 Element.hide(fl);
578                 
579                 fh.style.left = "0px";
580                 ft.style.left = "0px";
581                 if (fc) fc.style.left = "0px";
582                 if (ff) ff.style.left = "0px";
583
584                 if (theme == "compact") {
585                         fhdr.style.left = "10px";
586                         fl.style.top = (fh.offsetTop + 1) + "px";
587                 }
588
589         } catch (e) {
590                 exception_error("init_hidden_feedlist", e);
591         }
592 } */
593
594 function init_collapsable_feedlist(theme) {
595         try {
596                 debug("init_collapsable_feedlist");
597
598                 if (theme != "" && theme != "compact" && theme != "graycube" &&
599                                 theme != "compat") return;
600
601                 var fbtn = $("collapse_feeds_btn");
602
603                 if (fbtn) Element.show(fbtn);
604
605                 if (getCookie("ttrss_vf_fclps") == 1) {
606                         collapse_feedlist();
607                 }
608
609         } catch (e) {
610                 exception_error("init_hidden_feedlist", e);
611         }
612
613 }
614
615 function mouse_move_handler(e) {
616         try {
617                 var client_y;
618                 var client_x;
619
620                 if (window.event) {
621                         client_y = window.event.clientY;
622                         client_x = window.event.clientX;
623                 } else if (e) {
624                         client_x = e.screenX;
625                         client_y = e.screenY;
626                 }
627
628                 if (mouse_is_down) {
629
630                         if (mouse_y == 0) mouse_y = client_y;
631                         if (mouse_x == 0) mouse_x = client_x;
632
633                         resize_headlines(mouse_x - client_x, mouse_y - client_y);
634
635                         mouse_y = client_y;
636                         mouse_x = client_x;
637
638                         return false;
639                 }
640
641         } catch (e) {
642                 exception_error("mouse_move_handler", e);
643         }
644 }
645
646 function enable_selection(b) {
647         selection_disabled = !b;
648 }
649
650 function enable_resize(b) {
651         resize_enabled = b;
652 }
653
654 function mouse_down_handler(e) {
655         try {
656
657                 /* do not prevent right click */
658                 if (e && e.button && e.button == 2) return;
659
660                 if (resize_enabled) { 
661                         mouse_is_down = true;
662                         mouse_x = 0;
663                         mouse_y = 0;
664                         document.onselectstart = function() { return false; };
665                         return false;
666                 }
667
668                 if (selection_disabled) {
669                         document.onselectstart = function() { return false; };
670                         return false;
671                 }
672
673         } catch (e) {
674                 exception_error("mouse_down_handler", e);
675         }
676 }
677
678 function mouse_up_handler(e) {
679         try {
680                 mouse_is_down = false;
681
682                 if (!selection_disabled) {
683                         document.onselectstart = null;
684                         var e = $("headlineActionsBody");
685                         if (e) Element.hide(e);
686                         
687                         var e = $("offlineModeDrop");
688                         if (e) Element.hide(e);
689
690                 }
691
692         } catch (e) {
693                 exception_error("mouse_up_handler", e);
694         }
695 }
696
697 function request_counters_real() {
698
699         try {
700
701                 if (offline_mode) return;
702
703                 debug("requesting counters...");
704
705                 var query = "backend.php?op=rpc&subop=getAllCounters";
706
707                 if (tagsAreDisplayed()) {
708                         query = query + "&omode=tl";
709                 } else {
710                         query = query + "&omode=flc";
711                 }
712
713                 new Ajax.Request(query, {
714                         onComplete: function(transport) { 
715                                 try {
716                                         all_counters_callback2(transport, true);
717                                 } catch (e) {
718                                         exception_error("viewfeed/getcounters", e);
719                                 }
720                         } });
721
722         } catch (e) {
723                 exception_error("request_counters_real", e);
724         }
725 }
726
727
728 function request_counters() {
729
730         try {
731
732                 if (getInitParam("bw_limit") == "1") return;
733
734                 var date = new Date();
735                 var timestamp = Math.round(date.getTime() / 1000);
736
737 //              if (getInitParam("sync_counters") == "1" || 
738 //                              timestamp - counters_last_request > 10) {
739
740                 if (timestamp - counters_last_request > 15) {
741                         debug("scheduling request of counters...");
742                         window.setTimeout("request_counters_real()", 1000);
743                         counters_last_request = timestamp;
744                 } else {
745                         debug("request_counters: rate limit reached: " + (timestamp - counters_last_request));
746                 }
747
748         } catch (e) {
749                 exception_error("request_counters", e);
750         }
751 }
752
753