]> git.wh0rd.org - tt-rss.git/blobdiff - functions.js
new style exception reporting
[tt-rss.git] / functions.js
index b3673b03f56bc4ac034053bfb2bc30f57410b56e..0e9ec02a162db1642a124f25246274ee4c018aff 100644 (file)
@@ -2,6 +2,7 @@ var hotkeys_enabled = true;
 var xmlhttp_rpc = Ajax.getTransport();
 var notify_silent = false;
 var last_progress_point = 0;
+var async_counters_work = false;
 
 /* add method to remove element from array */
 
@@ -15,7 +16,44 @@ function is_opera() {
        return window.opera;
 }
 
-function exception_error(location, e, silent) {
+function exception_error(location, e, ext_info) {
+       var msg = format_exception_error(location, e);
+
+       disableHotkeys();
+
+       try {
+
+               var ebc = document.getElementById("xebContent");
+       
+               if (ebc) {
+       
+                       Element.show("dialog_overlay");
+                       Element.show("errorBoxShadow");
+       
+                       if (ext_info) {
+                               if (ext_info.responseText) {
+                                       ext_info = ext_info.responseText;
+                               }
+                       }
+       
+                       ebc.innerHTML = 
+                               "<div><b>Error message:</b></div>" +
+                               "<pre>" + msg + "</pre>" +
+                               "<div><b>Additional information:</b></div>" +
+                               "<textarea readonly=\"1\">" + ext_info + "</textarea>";
+       
+               } else {
+                       alert(msg);
+               }
+
+       } catch (e) {
+               alert(msg);
+
+       }
+
+}
+
+function format_exception_error(location, e) {
        var msg;
 
        if (e.fileName) {
@@ -33,11 +71,10 @@ function exception_error(location, e, silent) {
 
        debug("<b>EXCEPTION: " + msg + "</b>");
 
-       if (!silent) {
-               alert(msg);
-       }
+       return msg;
 }
 
+
 function disableHotkeys() {
        hotkeys_enabled = false;
 }
@@ -405,30 +442,6 @@ function gotoExportOpml() {
        document.location.href = "opml.php?op=Export";
 }
 
-function getActiveFeedId() {
-//     return getCookie("ttrss_vf_actfeed");
-       try {
-               debug("gAFID: " + active_feed_id);
-               return active_feed_id;
-       } catch (e) {
-               exception_error("getActiveFeedId", e);
-       }
-}
-
-function activeFeedIsCat() {
-       return active_feed_is_cat;
-}
-
-function setActiveFeedId(id) {
-//     return setCookie("ttrss_vf_actfeed", id);
-       try {
-               debug("sAFID(" + id + ")");
-               active_feed_id = id;
-       } catch (e) {
-               exception_error("setActiveFeedId", e);
-       }
-}
-
 function parse_counters(reply, scheduled_call) {
        try {
 
@@ -531,7 +544,7 @@ function parse_counters(reply, scheduled_call) {
                                }
        
                                if (ctr > 0) {                                  
-                                       feedctr.className = "odd";
+                                       feedctr.className = "feedCtrHasUnread";
                                        if (!feedr.className.match("Unread")) {
                                                var is_selected = feedr.className.match("Selected");
                
@@ -551,7 +564,7 @@ function parse_counters(reply, scheduled_call) {
                                                        queue: { position:'end', scope: 'EFQ-' + id, limit: 1 } } );
                                        }
                                } else {
-                                       feedctr.className = "invisible";
+                                       feedctr.className = "feedCtrNoUnread";
                                        feedr.className = feedr.className.replace("Unread", "");
                                }                       
                        }
@@ -626,14 +639,16 @@ function parse_counters_reply(transport, scheduled_call) {
 
 }
 
-function all_counters_callback2(transport) {
+function all_counters_callback2(transport, async_call) {
        try {
+               if (async_call) async_counters_work = true;
+
                debug("<b>all_counters_callback2 IN: " + transport + "</b>");
                parse_counters_reply(transport);
                debug("<b>all_counters_callback2 OUT: " + transport + "</b>");
 
        } catch (e) {
-               exception_error("all_counters_callback2", e);
+               exception_error("all_counters_callback2", e, transport);
        }
 }
 
@@ -641,7 +656,17 @@ function get_feed_unread(id) {
        try {
                return parseInt(document.getElementById("FEEDU-" + id).innerHTML);      
        } catch (e) {
-               exception_error("get_feed_unread", e, true);
+               return -1;
+       }
+}
+
+function get_cat_unread(id) {
+       try {
+               var ctr = document.getElementById("FCATCTR-" + id).innerHTML;
+               ctr = ctr.replace("(", "");
+               ctr = ctr.replace(")", "");
+               return parseInt(ctr);
+       } catch (e) {
                return -1;
        }
 }
@@ -1020,6 +1045,110 @@ function toggleSelectRow(sender) {
        }
 }
 
+function getNextUnreadCat(id) {
+       try {
+               var rows = document.getElementById("feedList").getElementsByTagName("LI");
+               var feeds = new Array();
+
+               var unread_only = true;
+               var is_cat = true;
+
+               for (var i = 0; i < rows.length; i++) {
+                       if (rows[i].id.match("FCAT-")) {
+                               if (rows[i].id == "FCAT-" + id && is_cat || (Element.visible(rows[i]) && Element.visible(rows[i].parentNode))) {
+
+                                       var cat_id = parseInt(rows[i].id.replace("FCAT-", ""));
+
+                                       if (cat_id >= 0) {
+                                               if (!unread_only || get_cat_unread(cat_id) > 0) {
+                                                       feeds.push(cat_id);
+                                               }
+                                       }
+                               }
+                       }
+               }
+
+               var idx = feeds.indexOf(id);
+               if (idx != -1 && idx < feeds.length) {
+                       return feeds[idx+1];                                    
+               } else {
+                       return feeds.shift();
+               }
+
+       } catch (e) {
+               exception_error("getNextUnreadCat", e);
+       }
+}
+
+function getRelativeFeedId2(id, is_cat, direction, unread_only) {      
+       try {
+
+//             alert(id + " IC: " + is_cat + " D: " + direction + " U: " + unread_only);
+
+               var rows = document.getElementById("feedList").getElementsByTagName("LI");
+               var feeds = new Array();
+       
+               for (var i = 0; i < rows.length; i++) {
+                       if (rows[i].id.match("FEEDR-")) {
+       
+                               if (rows[i].id == "FEEDR-" + id && !is_cat || (Element.visible(rows[i]) && Element.visible(rows[i].parentNode))) {
+       
+                                       if (!unread_only || 
+                                                       (rows[i].className.match("Unread") || rows[i].id == "FEEDR-" + id)) {
+                                               feeds.push(rows[i].id.replace("FEEDR-", ""));
+                                       }
+                               }
+                       }
+
+                       if (rows[i].id.match("FCAT-")) {
+                               if (rows[i].id == "FCAT-" + id && is_cat || (Element.visible(rows[i]) && Element.visible(rows[i].parentNode))) {
+
+                                       var cat_id = parseInt(rows[i].id.replace("FCAT-", ""));
+
+                                       if (cat_id >= 0) {
+                                               if (!unread_only || get_cat_unread(cat_id) > 0) {
+                                                       feeds.push("CAT:"+cat_id);
+                                               }
+                                       }
+                               }
+                       }
+               }
+       
+//             alert(feeds.toString());
+
+               if (!id) {
+                       if (direction == "next") {
+                               return feeds.shift();
+                       } else {
+                               return feeds.pop();
+                       }
+               } else {
+                       if (direction == "next") {
+                               if (is_cat) id = "CAT:" + id;
+                               var idx = feeds.indexOf(id);
+                               if (idx != -1 && idx < feeds.length) {
+                                       return feeds[idx+1];                                    
+                               } else {
+                                       return getRelativeFeedId2(false, is_cat, direction, unread_only);
+                               }
+                       } else {
+                               if (is_cat) id = "CAT:" + id;
+                               var idx = feeds.indexOf(id);
+                               if (idx > 0) {
+                                       return feeds[idx-1];
+                               } else {
+                                       return getRelativeFeedId2(false, is_cat, direction, unread_only);
+                               }
+                       }
+       
+               }
+
+       } catch (e) {
+               exception_error("getRelativeFeedId2", e);
+       }
+}
+
+
 function getRelativeFeedId(list, id, direction, unread_only) { 
        var rows = list.getElementsByTagName("LI");
        var feeds = new Array();
@@ -1086,9 +1215,9 @@ function appearBlockElement_afh(effect) {
 
 function checkboxToggleElement(elem, id) {
        if (elem.checked) {
-               Effect.SlideDown(id, {duration : 0.5});
+               Effect.Appear(id, {duration : 0.5});
        } else {
-               Effect.SlideUp(id, {duration : 0.5});
+               Effect.Fade(id, {duration : 0.5});
        }
 }
 
@@ -1148,22 +1277,32 @@ function leading_zero(p) {
        return s;
 }
 
-function closeInfoBox(cleanup) {
+function closeErrorBox() {
 
-       Element.hide("dialog_overlay");
+       if (Element.visible("errorBoxShadow")) {
+               Element.hide("dialog_overlay");
+               Element.hide("errorBoxShadow");
 
-       var box = document.getElementById('infoBox');
-       var shadow = document.getElementById('infoBoxShadow');
-
-       if (shadow) {
-               shadow.style.display = "none";
-       } else if (box) {
-               box.style.display = "none";
+               enableHotkeys();
        }
 
-       if (cleanup) box.innerHTML = "&nbsp;";
+       return false;
+}
 
-       enableHotkeys();
+function closeInfoBox(cleanup) {
+
+       if (Element.visible("infoBoxShadow")) {
+               Element.hide("dialog_overlay");
+       
+               var shadow = document.getElementById('infoBoxShadow');
+               var box = document.getElementById('infoBoxShadow');
+
+               Element.hide(shadow);
+
+               if (cleanup) box.innerHTML = "&nbsp;";
+
+               enableHotkeys();
+       }
 
        return false;
 }
@@ -1366,7 +1505,7 @@ function storeInitParam(key, value) {
        init_params[key] = value;
 }
 
-function fatalError(code, message) {
+function fatalError(code, msg, ext_info) {
        try {   
 
                if (code == 6) {
@@ -1374,14 +1513,29 @@ function fatalError(code, message) {
                } else if (code == 5) {
                        window.location.href = "update.php";
                } else {
-                       var fe = document.getElementById("fatal_error");
-                       var fc = document.getElementById("fatal_error_msg");
        
-                       if (message == "") message = "Unknown error";
+                       if (msg == "") msg = "Unknown error";
 
-                       fc.innerHTML = "<img src='images/sign_excl.gif'> " + message + " (Code " + code + ")";
+                       var ebc = document.getElementById("xebContent");
+       
+                       if (ebc) {
        
-                       fe.style.display = "block";
+                               Element.show("dialog_overlay");
+                               Element.show("errorBoxShadow");
+                               Element.hide("xebBtn");
+
+                               if (ext_info) {
+                                       if (ext_info.responseText) {
+                                               ext_info = ext_info.responseText;
+                                       }
+                               }
+       
+                               ebc.innerHTML = 
+                                       "<div><b>Error message:</b></div>" +
+                                       "<pre>" + msg + "</pre>" +
+                                       "<div><b>Additional information:</b></div>" +
+                                       "<textarea readonly=\"1\">" + ext_info + "</textarea>";
+                       }
                }
 
        } catch (e) {
@@ -1404,6 +1558,39 @@ function getFeedName(id, is_cat) {
        }
 }
 
+function filterDlgCheckType(sender) {
+
+       try {
+
+               var ftype = sender[sender.selectedIndex].value;
+
+               var form = document.forms["filter_add_form"];
+       
+               if (!form) {
+                       form = document.forms["filter_edit_form"];
+               }
+
+               if (!form) {
+                       debug("filterDlgCheckType: can't find form!");
+                       return;
+               }
+
+               // if selected filter type is 5 (Date) enable the modifier dropbox
+               if (ftype == 5) {
+                       Element.show("filter_dlg_date_mod_box");
+                       Element.show("filter_dlg_date_chk_box");
+               } else {
+                       Element.hide("filter_dlg_date_mod_box");
+                       Element.hide("filter_dlg_date_chk_box");
+
+               }
+
+       } catch (e) {
+               exception_error("filterDlgCheckType", e);
+       }
+
+}
+
 function filterDlgCheckAction(sender) {
 
        try {
@@ -1421,18 +1608,25 @@ function filterDlgCheckAction(sender) {
                        return;
                }
 
-               var action_param = form.action_param;
+               var action_param = document.getElementById("filter_dlg_param_box");
 
                if (!action_param) {
-                       debug("filterDlgCheckAction: can't find action param!");
+                       debug("filterDlgCheckAction: can't find action param box!");
                        return;
                }
 
                // if selected action supports parameters, enable params field
-               if (action == 4 || action == 6) {
-                       action_param.disabled = false;
+               if (action == 4 || action == 6 || action == 7) {
+                       Element.show(action_param);
+                       if (action != 7) {
+                               Element.show(form.action_param);
+                               Element.hide(form.action_param_label);
+                       } else {
+                               Element.show(form.action_param_label);
+                               Element.hide(form.action_param);
+                       }
                } else {
-                       action_param.disabled = true;
+                       Element.hide(action_param);
                }
 
        } catch (e) {
@@ -1441,6 +1635,55 @@ function filterDlgCheckAction(sender) {
 
 }
 
+function filterDlgCheckDate() {
+       try {
+               var form = document.forms["filter_add_form"];
+       
+               if (!form) {
+                       form = document.forms["filter_edit_form"];
+               }
+
+               if (!form) {
+                       debug("filterDlgCheckAction: can't find form!");
+                       return;
+               }
+
+               var reg_exp = form.reg_exp.value;
+
+               var query = "backend.php?op=rpc&subop=checkDate&date=" + reg_exp;
+
+               new Ajax.Request(query, {
+                       onComplete: function(transport) { 
+
+                               var form = document.forms["filter_add_form"];
+       
+                               if (!form) {
+                                       form = document.forms["filter_edit_form"];
+                               }
+
+                               if (transport.responseXML) {
+                                       var result = transport.responseXML.getElementsByTagName("result")[0];
+
+                                       if (result && result.firstChild) {
+                                               if (result.firstChild.nodeValue == "1") {
+
+                                                       new Effect.Highlight(form.reg_exp, {startcolor : '#00ff00'});
+
+                                                       return;
+                                               }
+                                       }
+                               }
+
+                               new Effect.Highlight(form.reg_exp, {startcolor : '#ff0000'});
+
+                       } });
+
+
+       } catch (e) {
+               exception_error("filterDlgCheckDate", e);
+       }
+}
+
 function explainError(code) {
        return displayDlg("explainError", code);
 }
@@ -1652,3 +1895,123 @@ function remove_splash() {
                debug("removed splash!");
        }
 }
+
+function addLabelExample() {
+       try {
+               var form = document.forms["label_edit_form"];
+
+               var text = form.sql_exp;
+               var op = form.label_fields[form.label_fields.selectedIndex];
+               var p = form.label_fields_param;
+
+               if (op) {
+                       op = op.value;
+
+                       var tmp = "";
+
+                       if (text.value != "") {                 
+                               if (text.value.substring(text.value.length-3, 3).toUpperCase() != "AND") {
+                                       tmp = " AND ";
+                               } else {
+                                       tmp = " ";
+                               }
+                       }
+
+                       if (op == "unread") {
+                               tmp = tmp + "unread = true";
+                       }
+
+                       if (op == "updated") {
+                               tmp = tmp + "last_read is null and unread = false";
+                       }
+
+                       if (op == "kw_title") {
+                               if (p.value == "") {
+                                       alert("This action requires a parameter.");
+                                       return false;
+                               }
+                               tmp = tmp + "ttrss_entries.title like '%"+p.value+"%'";
+                       }
+
+                       if (op == "kw_content") {
+                               if (p.value == "") {
+                                       alert("This action requires a parameter.");
+                                       return false;
+                               }
+
+                               tmp = tmp + "ttrss_entries.content like '%"+p.value+"%'";
+                       }
+
+                       if (op == "scoreE") {
+                               if (isNaN(parseInt(p.value))) {
+                                       alert("This action expects numeric parameter.");
+                                       return false;
+                               }
+                               tmp = tmp + "score = " + p.value;
+                       }
+
+                       if (op == "scoreG") {
+                               if (isNaN(parseInt(p.value))) {
+                                       alert("This action expects numeric parameter.");
+                                       return false;
+                               }
+                               tmp = tmp + "score > " + p.value;
+                       }
+
+                       if (op == "scoreL") {
+                               if (isNaN(parseInt(p.value))) {
+                                       alert("This action expects numeric parameter.");
+                                       return false;
+                               }
+                               tmp = tmp + "score < " + p.value;
+                       }
+
+                       if (op == "newerD") {
+                               if (isNaN(parseInt(p.value))) {
+                                       alert("This action expects numeric parameter.");
+                                       return false;
+                               }
+                               tmp = tmp + "updated > NOW() - INTERVAL '"+parseInt(p.value)+" days'";
+                       }
+
+                       if (op == "newerH") {
+                               if (isNaN(parseInt(p.value))) {
+                                       alert("This action expects numeric parameter.");
+                                       return false;
+                               }
+
+                               tmp = tmp + "updated > NOW() - INTERVAL '"+parseInt(p.value)+" hours'";
+                       }
+
+                       text.value = text.value + tmp;
+
+                       p.value = "";
+
+               }
+               
+       } catch (e) {
+               exception_error("addLabelExample", e);
+       }
+
+       return false;
+}
+
+function labelFieldsCheck(elem) {
+       try {
+               var op = elem[elem.selectedIndex].value;
+
+               var p = document.forms["label_edit_form"].label_fields_param;
+
+               if (op == "kw_title" || op == "kw_content" || op == "scoreL" || 
+                               op == "scoreG" ||       op == "scoreE" || op == "newerD" ||
+                               op == "newerH" ) {
+                       Element.show(p);
+               } else {
+                       Element.hide(p);
+               }
+
+       } catch (e) {
+               exception_error("labelFieldsCheck", e);
+
+       }
+}