]> git.wh0rd.org - tt-rss.git/blobdiff - tt-rss.js
cdm tweaks, misc fixes
[tt-rss.git] / tt-rss.js
index 0c3584c8eb704afe1c510b3759058b64833bce32..0e4c15485995af926e5a53860314a91a9c730f57 100644 (file)
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -6,15 +6,25 @@ var global_unread = -1;
 var active_title_text = "";
 var current_subtitle = "";
 var daemon_enabled = false;
+var daemon_refresh_only = false;
 var _qfd_deleted_feed = 0;
 var firsttime_update = true;
 var last_refetch = 0;
 var cookie_lifetime = 0;
 var active_feed_id = 0;
+var active_feed_is_cat = false;
+var number_of_feeds = 0;
 
 var xmlhttp = Ajax.getTransport();
+var xmlhttp_ctr = Ajax.getTransport();
 
-var init_params = new Array();
+var init_params = new Object();
+
+var op_history = new Array();
+
+function tagsAreDisplayed() {
+       return display_tags;
+}
 
 function toggleTags() {
        display_tags = !display_tags;
@@ -27,55 +37,40 @@ function toggleTags() {
                p.innerHTML = "display tags";
        }
        
+       notify("Loading, please wait...");
+
        updateFeedList();
 }
 
 function dlg_frefresh_callback() {
-       if (xmlhttp.readyState == 4) {
-               notify(xmlhttp.responseText);
-               updateFeedList(false, false);
-               if (_qfd_deleted_feed) {
-                       var hframe = document.getElementById("headlines-frame");
-                       if (hframe) {
-                               hframe.src = "backend.php?op=error&msg=No%20feed%20selected.";
+       if (xmlhttp.readyState == 4) {          
+//             notify(xmlhttp.responseText);
+
+               if (getActiveFeedId() == _qfd_deleted_feed) {
+                       var h = document.getElementById("headlines-frame");
+                       if (h) {
+                               h.innerHTML = "<div class='whiteBox'>No feed selected.</div>";
                        }
                }
+
+               setTimeout('updateFeedList(false, false)', 50);
                closeInfoBox();
        } 
 }
 
 function refetch_callback() {
-       if (xmlhttp.readyState == 4) {
+       if (xmlhttp_ctr.readyState == 4) {
                try {
 
                        var date = new Date();
 
                        last_refetch = date.getTime() / 1000;
 
-                       if (!xmlhttp.responseXML) {
-                               notify("refetch_callback: backend did not return valid XML", true, true);
-                               return;
-                       }
-               
-                       var reply = xmlhttp.responseXML.firstChild;
-       
-                       if (!reply) {
-                               notify("refetch_callback: backend did not return expected XML object", true, true);
-                               updateTitle("");
-                               return;
-                       } 
-       
-                       var error_code = reply.getAttribute("error-code");
-               
-                       if (error_code && error_code != 0) {
-                               return fatalError(error_code, reply.getAttribute("error-msg"));
-                       }
-       
-                       parse_counters(reply, true);
+                       parse_counters_reply(xmlhttp_ctr, true);
 
                        debug("refetch_callback: done");
 
-                       if (!daemon_enabled) {
+                       if (!daemon_enabled && !daemon_refresh_only) {
                                notify("All feeds updated.");
                                updateTitle("");
                        } else {
@@ -139,7 +134,7 @@ function backend_sanity_check_callback() {
 
 function scheduleFeedUpdate(force) {
 
-       if (!daemon_enabled) {
+       if (!daemon_enabled && !daemon_refresh_only) {
                notify("Updating feeds, please wait.", true);
                updateTitle("Updating");
        }
@@ -159,7 +154,7 @@ function scheduleFeedUpdate(force) {
                omode = "T";
        } else {
                if (display_tags) {
-                       omode = "t";
+                       omode = "tl";
                } else {
                        omode = "flc";
                }
@@ -172,18 +167,20 @@ function scheduleFeedUpdate(force) {
 
        var date = new Date();
 
-       if (!xmlhttp_ready(xmlhttp) && last_refetch < date.getTime() / 1000 - 60) {
-               debug("xmlhttp seems to be stuck, aborting");
-               xmlhttp.abort();
+       if (!xmlhttp_ready(xmlhttp_ctr) && last_refetch < date.getTime() / 1000 - 60) {
+               debug("<b>xmlhttp seems to be stuck, aborting</b>");
+               xmlhttp_ctr.abort();
        }
 
-       if (xmlhttp_ready(xmlhttp)) {
-               xmlhttp.open("GET", query_str, true);
-               xmlhttp.onreadystatechange=refetch_callback;
-               xmlhttp.send(null);
+       debug("REFETCH query: " + query_str);
+
+       if (xmlhttp_ready(xmlhttp_ctr)) {
+               xmlhttp_ctr.open("GET", query_str, true);
+               xmlhttp_ctr.onreadystatechange=refetch_callback;
+               xmlhttp_ctr.send(null);
        } else {
-               debug("xmlhttp busy");
-               printLockingError();
+               debug("xmlhttp_ctr busy");
+               //printLockingError();
        }   
 }
 
@@ -193,13 +190,15 @@ function updateFeedList(silent, fetch) {
 //             notify("Loading feed list...");
 //     }
 
+       debug("<b>updateFeedList</b>");
+
        var query_str = "backend.php?op=feeds";
 
        if (display_tags) {
                query_str = query_str + "&tags=1";
        }
 
-       if (getActiveFeedId()) {
+       if (getActiveFeedId() && !activeFeedIsCat()) {
                query_str = query_str + "&actid=" + getActiveFeedId();
        }
 
@@ -211,9 +210,20 @@ function updateFeedList(silent, fetch) {
        
        if (fetch) query_str = query_str + "&fetch=yes";
 
-       var feeds_frame = document.getElementById("feeds-frame");
+//     var feeds_frame = document.getElementById("feeds-frame");
+//     feeds_frame.src = query_str;
+
+       debug("updateFeedList Q=" + query_str);
+
+       if (xmlhttp_ready(xmlhttp)) {
+               xmlhttp.open("GET", query_str, true);
+               xmlhttp.onreadystatechange=feedlist_callback;
+               xmlhttp.send(null);
+       } else {
+               debug("xmlhttp busy");
+               //printLockingError();
+       }   
 
-       feeds_frame.src = query_str;
 }
 
 function catchupAllFeeds() {
@@ -222,29 +232,37 @@ function catchupAllFeeds() {
 
        notify("Marking all feeds as read...");
 
-       var feeds_frame = document.getElementById("feeds-frame");
+       debug("catchupAllFeeds Q=" + query_str);
 
-       feeds_frame.src = query_str;
+       if (xmlhttp_ready(xmlhttp)) {
+               xmlhttp.open("GET", query_str, true);
+               xmlhttp.onreadystatechange=feedlist_callback;
+               xmlhttp.send(null);
+       } else {
+               debug("xmlhttp busy");
+               //printLockingError();
+       }   
 
        global_unread = 0;
        updateTitle("");
 
 }
 
-function viewCurrentFeed(skip, subop) {
+function viewCurrentFeed(subop) {
 
-       if (getActiveFeedId()) {
-               viewfeed(getActiveFeedId(), skip, subop);
+//     if (getActiveFeedId()) {
+       if (getActiveFeedId() != undefined) {
+               viewfeed(getActiveFeedId(), subop);
        } else {
                disableContainerChildren("headlinesToolbar", false, document);
-               viewfeed(-1, skip, subop); // FIXME
+//             viewfeed(-1, subop); // FIXME
        }
        return false; // block unneeded form submits
 }
 
-function viewfeed(feed, skip, subop) {
+function viewfeed(feed, subop) {
        var f = window.frames["feeds-frame"];
-       f.viewfeed(feed, skip, subop);
+       f.viewfeed(feed, subop);
 }
 
 function timeout() {
@@ -262,7 +280,7 @@ function resetSearch() {
 
        if (searchbox.value != "" && getActiveFeedId()) {       
                searchbox.value = "";
-               viewfeed(getActiveFeedId(), 0, "");
+               viewfeed(getActiveFeedId(), "");
        }
 }
 
@@ -346,7 +364,9 @@ function init() {
                        debug('debug mode activated');
                }
 
-               xmlhttp.open("GET", "backend.php?op=rpc&subop=sanityCheck", true);
+               var params = "&ua=" + param_escape(navigator.userAgent);
+
+               xmlhttp.open("GET", "backend.php?op=rpc&subop=sanityCheck" + params, true);
                xmlhttp.onreadystatechange=backend_sanity_check_callback;
                xmlhttp.send(null);
 
@@ -355,15 +375,6 @@ function init() {
        }
 }
 
-function resize_feeds_frame() {
-       var f = document.getElementById("feeds-frame");
-       var tf = document.getElementById("mainFooter");
-       var th = document.getElementById("mainHeader");
-                
-       f.style.height = document.body.scrollHeight - tf.scrollHeight - 
-               th.scrollHeight - 50 + "px";
-}
-
 function init_second_stage() {
 
        try {
@@ -372,33 +383,17 @@ function init_second_stage() {
 
                delCookie("ttrss_vf_test");
        
-               updateFeedList(false, false);
                document.onkeydown = hotkey_handler;
 
                var tb = parent.document.forms["main_toolbar_form"];
 
-               dropboxSelect(tb.view_mode, getInitParam("toolbar_view_mode"));
-               dropboxSelect(tb.limit, getInitParam("toolbar_limit"));
-
-               daemon_enabled = getInitParam("daemon_enabled");
+//             dropboxSelect(tb.view_mode, getInitParam("toolbar_view_mode"));
+//             dropboxSelect(tb.limit, getInitParam("toolbar_limit"));
 
-               // FIXME should be callled after window resize
+               daemon_enabled = getInitParam("daemon_enabled") == 1;
+               daemon_refresh_only = getInitParam("daemon_refresh_only") == 1;
 
-               var h = document.getElementById("headlines");
-               var c = document.getElementById("content");
-
-               if (navigator.userAgent.match("Opera")) {
-                       resize_feeds_frame();
-
-/*                     // fix headlines frame height for Opera
-                       var h = document.getElementById("headlines");
-                       var c = document.getElementById("content");
-                       var nh = document.body.scrollHeight * 0.25;
-       
-                       h.style.height = nh + "px";
-                       c.style.height = c.scrollHeight - nh + "px"; */
-                       
-               }
+               setTimeout('updateFeedList(false, false)', 50);
 
                debug("second stage ok");
        
@@ -423,7 +418,7 @@ function quickMenuGo(opid) {
                }
        
                if (opid == "qmcSearch") {
-                       displayDlg("search", getActiveFeedId());
+                       displayDlg("search", getActiveFeedId() + ":" + activeFeedIsCat());
                        return;
                }
        
@@ -431,16 +426,22 @@ function quickMenuGo(opid) {
                        displayDlg("quickAddFeed");
                        return;
                }
+
+               if (opid == "qmcEditFeed") {
+                       editFeedDlg(getActiveFeedId());
+               }
        
                if (opid == "qmcRemoveFeed") {
                        var actid = getActiveFeedId();
        
-                       if (!actid) {
+                       if (!actid || activeFeedIsCat()) {
                                alert("Please select some feed first.");
                                return;
                        }
+
+                       var fn = getFeedName(actid);
        
-                       if (confirm("Unsubscribe from current feed?")) {
+                       if (confirm("Unsubscribe from " + fn + "?")) {
                                qfdDelete(actid);
                        }
                
@@ -479,14 +480,13 @@ function qfdDelete(feed_id) {
                return
        }
 
-//     var feeds_doc = window.frames["feeds-frame"].document;
-//     feeds_doc.location.href = "backend.php?op=error&msg=Loading,%20please wait...";
-
        _qfd_deleted_feed = feed_id;
 
        xmlhttp.open("GET", "backend.php?op=pref-feeds&quiet=1&subop=remove&ids=" + feed_id);
        xmlhttp.onreadystatechange=dlg_frefresh_callback;
        xmlhttp.send(null);
+
+       return false;
 }
 
 
@@ -523,18 +523,194 @@ function toggleDispRead() {
        }
 }
 
-function fatalError(code, message) {
-       try {   
-               var fe = document.getElementById("fatal_error");
-               var fc = document.getElementById("fatal_error_msg");
+function parse_runtime_info(elem) {
+       if (!elem) {
+               debug("parse_runtime_info: elem is null, aborting");
+               return;
+       }
+
+       var param = elem.firstChild;
+
+       debug("parse_runtime_info: " + param);
+
+       while (param) {
+               var k = param.getAttribute("key");
+               var v = param.getAttribute("value");
+
+               debug("RI: " + k + " => " + v);
+
+               var w = document.getElementById("noDaemonWarning");
+               
+               if (w) {
+                       if (k == "daemon_is_running" && v != 1) {
+                               w.style.display = "block";
+                       } else {
+                               w.style.display = "none";
+                       }
+               }
+               param = param.nextSibling;
+       }
+}
+
+function catchupCurrentFeed() {
+
+       var fn = getFeedName(getActiveFeedId(), active_feed_is_cat);
+       
+       var str = "Mark all articles in " + fn + " as read?";
+
+/*     if (active_feed_is_cat) {
+               str = "Mark all articles in this category as read?";
+       } */
+
+       if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
+               return viewCurrentFeed('MarkAllRead')
+       }
+}
+
+function userSwitch() {
+       var chooser = document.getElementById("userSwitch");
+       var user = chooser[chooser.selectedIndex].value;
+       window.location = "tt-rss.php?swu=" + user;
+}
+
+function editFeedDlg(feed) {
+
+       disableHotkeys();
+
+       if (!feed) {
+               alert("Please select some feed first.");
+               return;
+       }
+
+       if (feed <= 0 || active_feed_is_cat || tagsAreDisplayed()) {
+               alert("You can't edit this kind of feed.");
+               return;
+       }
+
+       if (xmlhttp_ready(xmlhttp)) {
+               xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editfeed&id=" +
+                       param_escape(feed), true);
+               xmlhttp.onreadystatechange=infobox_callback;
+               xmlhttp.send(null);
+       } else {
+               printLockingError();
+       }
+}
+
+/* this functions duplicate those of prefs.js feed editor, with
+       some differences because there is no feedlist */
+
+function feedEditCancel() {
+       closeInfoBox();
+       return false;
+}
+
+function feedEditSave() {
+
+       try {
+       
+               if (!xmlhttp_ready(xmlhttp)) {
+                       printLockingError();
+                       return
+               }
+
+               // FIXME: add parameter validation
 
-               fc.innerHTML = "Code " + code + ": " + message;
+               var query = Form.serialize("edit_feed_form");
+
+               notify("Saving feed...");
+
+               xmlhttp.open("POST", "backend.php", true);
+               xmlhttp.onreadystatechange=dlg_frefresh_callback;
+               xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
+               xmlhttp.send(query);
+
+               closeInfoBox();
 
-               fe.style.display = "block";
+               return false;
 
        } catch (e) {
-               exception_error("fatalError", e);
+               exception_error("feedEditSave (main)", e);
+       } 
+}
+
+function localHotkeyHandler(e) {
+
+       var keycode;
+
+       if (window.event) {
+               keycode = window.event.keyCode;
+       } else if (e) {
+               keycode = e.which;
+       }
+
+       var shift_key = false;
+
+       try {
+               shift_key = e.shiftKey;
+       } catch (e) { }
+
+       if (keycode == 66 && shift_key) { // shift-B
+
+               var op = history_pop();
+
+               if (op) {
+                       var op_s = op.split(":");
+
+                       var i;
+                       for (i = 0; i < op_s.length; i++) {
+                               if (op_s[i] == 'undefined') {
+                                       op_s[i] = undefined;
+                               }
+
+                               if (op_s[i] == 'false') {
+                                       op_s[i] = false;
+                               }
+
+                               if (op_s[i] == 'true') {
+                                       op_s[i] = true;
+                               }
+                               
+                       }
+
+                       debug("history split: " + op_s);
+
+                       if (op_s[0] == "ARTICLE") {
+                               debug("history: reverting to article " + op_s[1] + "/" + op_s[2]);
+                               view(op_s[1], op_s[2], true);
+                       }
+
+                       if (op_s[0] == "FEED") {
+                               viewfeed(op_s[1], op_s[2], op_s[3], op_s[4], true);
+                       }
+
+               } else {
+                       notify("No operation to undo");
+               }
+
+               return false;
+
+       }       
+
+       debug("LKP=" + keycode);
+}
+
+function history_push(op) {
+       debug("history_push: " + op);
+       op_history.push(op);
+
+       while (op_history.length > 30) {
+               op_history.shift();
        }
 }
 
+function history_pop() {
+       var op = op_history.pop();
+       debug("history_pop: " + op);
+       return op;
+}
 
+function history_clear() {
+       debug("history_clear");
+       op_history.clear();
+}