]> git.wh0rd.org - tt-rss.git/blobdiff - prefs.js
initial feed browser work
[tt-rss.git] / prefs.js
index 04dd88c7e9df12c3a91e3962e9e567a67ee95d99..3f88fff1977b14f8d520fc6dfbc8fdba0a61b8f1 100644 (file)
--- a/prefs.js
+++ b/prefs.js
@@ -1,8 +1,3 @@
-/*
-       This program is Copyright (c) 2003-2005 Andrew Dolgov <cthulhoo@gmail.com>              
-       Licensed under GPL v.2 or (at your preference) any later version.
-*/
-
 var xmlhttp = false;
 
 var active_feed = false;
@@ -33,22 +28,26 @@ if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
 }
 
 function feedlist_callback() {
-       var container = document.getElementById('prefContent');
        if (xmlhttp.readyState == 4) {
-               container.innerHTML=xmlhttp.responseText;
-               if (active_feed) {
-                       var row = document.getElementById("FEEDR-" + active_feed);
-                       if (row) {
-                               if (!row.className.match("Selected")) {
-                                       row.className = row.className + "Selected";
-                               }               
-                       }
-                       var checkbox = document.getElementById("FRCHK-" + active_feed);
-                       if (checkbox) {
-                               checkbox.checked = true;
+               try {   
+                       var container = document.getElementById('prefContent'); 
+                       container.innerHTML=xmlhttp.responseText;
+                       if (active_feed) {
+                               var row = document.getElementById("FEEDR-" + active_feed);
+                               if (row) {
+                                       if (!row.className.match("Selected")) {
+                                               row.className = row.className + "Selected";
+                                       }               
+                               }
+                               var checkbox = document.getElementById("FRCHK-" + active_feed);
+                               if (checkbox) {
+                                       checkbox.checked = true;
+                               }
                        }
+                       p_notify("");
+               } catch (e) {
+                       exception_error("feedlist_callback", e);
                }
-               p_notify("");
        }
 }
 
@@ -130,7 +129,7 @@ function infobox_callback() {
                        if (shadow) {
                                shadow.style.display = "block";
                        } else {
-                               box.style.display = "block";
+                               box.style.display = "block";                            
                        }
                }
        }
@@ -176,8 +175,13 @@ function updateFeedList(sort_key) {
 
        p_notify("Loading, please wait...");
 
+       var feed_search = document.getElementById("feed_search");
+       var search = "";
+       if (feed_search) { search = feed_search.value; }
+
        xmlhttp.open("GET", "backend.php?op=pref-feeds" +
-               "&sort=" + param_escape(sort_key), true);
+               "&sort=" + param_escape(sort_key) + 
+               "&search=" + param_escape(search), true);
        xmlhttp.onreadystatechange=feedlist_callback;
        xmlhttp.send(null);
 
@@ -200,20 +204,6 @@ function updateUsersList() {
 
 }
 
-function toggleSelectRow(sender) {
-       var parent_row = sender.parentNode.parentNode;
-
-       if (sender.checked) {
-               if (!parent_row.className.match("Selected")) {
-                       parent_row.className = parent_row.className + "Selected";
-               }
-       } else {
-               if (parent_row.className.match("Selected")) {
-                       parent_row.className = parent_row.className.replace("Selected", "");
-               }
-       }
-}
-
 function addLabel() {
 
        if (!xmlhttp_ready(xmlhttp)) {
@@ -249,6 +239,7 @@ function addFilter() {
        var regexp = document.getElementById("fadd_regexp");
        var match = document.getElementById("fadd_match");
        var feed = document.getElementById("fadd_feed");
+       var action = document.getElementById("fadd_action");
 
        if (regexp.value.length == 0) {
                notify("Missing filter expression.");
@@ -256,12 +247,12 @@ function addFilter() {
                notify("Adding filter...");
 
                var v_match = match[match.selectedIndex].text;
-
                var feed_id = feed[feed.selectedIndex].id;
+               var action_id = action[action.selectedIndex].id;
 
                xmlhttp.open("GET", "backend.php?op=pref-filters&subop=add&regexp=" +
                        param_escape(regexp.value) + "&match=" + v_match +
-                       "&fid=" + param_escape(feed_id), true);                 
+                       "&fid=" + param_escape(feed_id) + "&aid=" + param_escape(action_id), true);
                        
                xmlhttp.onreadystatechange=filterlist_callback;
                xmlhttp.send(null);
@@ -404,9 +395,21 @@ function editFeed(feed) {
 
        active_feed = feed;
 
-       xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=edit&id=" +
+/*     xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=edit&id=" +
                param_escape(feed), true);
        xmlhttp.onreadystatechange=feedlist_callback;
+       xmlhttp.send(null); */
+
+       selectTableRowsByIdPrefix('prefFeedList', 'FEEDR-', 'FRCHK-', false);
+//     selectTableRowsByIdPrefix('prefFeedList', 'FEEDR-'+feed, 'FRCHK-'+feed, 
+//             true, false);
+
+       selectTableRowById('FEEDR-'+feed, 'FRCHK-'+feed, true);
+
+       xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editfeed&id=" +
+               param_escape(active_feed), true);
+
+       xmlhttp.onreadystatechange=infobox_callback;
        xmlhttp.send(null);
 
 }
@@ -490,13 +493,16 @@ function removeSelectedLabels() {
 
        if (sel_rows.length > 0) {
 
-               notify("Removing selected labels...");
-
-               xmlhttp.open("GET", "backend.php?op=pref-labels&subop=remove&ids="+
-                       param_escape(sel_rows.toString()), true);
-               xmlhttp.onreadystatechange=labellist_callback;
-               xmlhttp.send(null);
+               var ok = confirm("Remove selected labels?");
 
+               if (ok) {
+                       notify("Removing selected labels...");
+       
+                       xmlhttp.open("GET", "backend.php?op=pref-labels&subop=remove&ids="+
+                               param_escape(sel_rows.toString()), true);
+                       xmlhttp.onreadystatechange=labellist_callback;
+                       xmlhttp.send(null);
+               }
        } else {
                notify("Please select some labels first.");
        }
@@ -513,12 +519,16 @@ function removeSelectedUsers() {
 
        if (sel_rows.length > 0) {
 
-               notify("Removing selected users...");
+               var ok = confirm("Remove selected users?");
 
-               xmlhttp.open("GET", "backend.php?op=pref-users&subop=remove&ids="+
-                       param_escape(sel_rows.toString()), true);
-               xmlhttp.onreadystatechange=userlist_callback;
-               xmlhttp.send(null);
+               if (ok) {
+                       notify("Removing selected users...");
+       
+                       xmlhttp.open("GET", "backend.php?op=pref-users&subop=remove&ids="+
+                               param_escape(sel_rows.toString()), true);
+                       xmlhttp.onreadystatechange=userlist_callback;
+                       xmlhttp.send(null);
+               }
 
        } else {
                notify("Please select some labels first.");
@@ -536,13 +546,16 @@ function removeSelectedFilters() {
 
        if (sel_rows.length > 0) {
 
-               notify("Removing selected filters...");
-
-               xmlhttp.open("GET", "backend.php?op=pref-filters&subop=remove&ids="+
-                       param_escape(sel_rows.toString()), true);
-               xmlhttp.onreadystatechange=filterlist_callback;
-               xmlhttp.send(null);
+               var ok = confirm("Remove selected filters?");
 
+               if (ok) {
+                       notify("Removing selected filters...");
+       
+                       xmlhttp.open("GET", "backend.php?op=pref-filters&subop=remove&ids="+
+                               param_escape(sel_rows.toString()), true);
+                       xmlhttp.onreadystatechange=filterlist_callback;
+                       xmlhttp.send(null);
+               }
        } else {
                notify("Please select some filters first.");
        }
@@ -560,12 +573,17 @@ function removeSelectedFeeds() {
 
        if (sel_rows.length > 0) {
 
-               notify("Removing selected feeds...");
+               var ok = confirm("Remove selected feeds?");
 
-               xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=remove&ids="+
-                       param_escape(sel_rows.toString()), true);
-               xmlhttp.onreadystatechange=feedlist_callback;
-               xmlhttp.send(null);
+               if (ok) {
+
+                       notify("Removing selected feeds...");
+       
+                       xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=remove&ids="+
+                               param_escape(sel_rows.toString()), true);
+                       xmlhttp.onreadystatechange=feedlist_callback;
+                       xmlhttp.send(null);
+               }
 
        } else {
 
@@ -586,12 +604,16 @@ function removeSelectedFeedCats() {
 
        if (sel_rows.length > 0) {
 
-               notify("Removing selected categories...");
+               var ok = confirm("Remove selected categories?");
 
-               xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=removeCats&ids="+
-                       param_escape(sel_rows.toString()), true);
-               xmlhttp.onreadystatechange=feedlist_callback;
-               xmlhttp.send(null);
+               if (ok) {
+                       notify("Removing selected categories...");
+       
+                       xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=removeCats&ids="+
+                               param_escape(sel_rows.toString()), true);
+                       xmlhttp.onreadystatechange=feedlist_callback;
+                       xmlhttp.send(null);
+               }
 
        } else {
 
@@ -608,13 +630,15 @@ function feedEditCancel() {
                return
        }
 
+       closeInfoBox();
+
        active_feed = false;
 
        notify("Operation cancelled.");
 
-       xmlhttp.open("GET", "backend.php?op=pref-feeds", true);
+/*     xmlhttp.open("GET", "backend.php?op=pref-feeds", true);
        xmlhttp.onreadystatechange=feedlist_callback;
-       xmlhttp.send(null);
+       xmlhttp.send(null); */
 
 }
 
@@ -637,56 +661,81 @@ function feedCatEditCancel() {
 
 function feedEditSave() {
 
-       var feed = active_feed;
-
-       if (!xmlhttp_ready(xmlhttp)) {
-               printLockingError();
-               return
-       }
+       try {
 
-       var link = document.getElementById("iedit_link").value;
-       var title = document.getElementById("iedit_title").value;
-       var upd_intl = document.getElementById("iedit_updintl").value;
-       var purge_intl = document.getElementById("iedit_purgintl").value;
-       var fcat = document.getElementById("iedit_fcat");
+               var feed = active_feed;
+       
+               if (!xmlhttp_ready(xmlhttp)) {
+                       printLockingError();
+                       return
+               }
+       
+               var link = document.getElementById("iedit_link").value;
+               var title = document.getElementById("iedit_title").value;
+               var upd_intl = document.getElementById("iedit_updintl").value;
+               var purge_intl = document.getElementById("iedit_purgintl").value;
+               var fcat = document.getElementById("iedit_fcat");
+       
+               var fcat_id = fcat[fcat.selectedIndex].id;
 
-       var fcat_id = fcat[fcat.selectedIndex].id;
+               var pfeed = document.getElementById("iedit_parent_feed");
+               var parent_feed_id = pfeed[pfeed.selectedIndex].id;
+       
+               if (link.length == 0) {
+                       notify("Feed link cannot be blank.");
+                       return;
+               }
+       
+               if (title.length == 0) {
+                       notify("Feed title cannot be blank.");
+                       return;
+               }
+       
+               var auth_login = document.getElementById("iedit_login").value;
+               var auth_pass = document.getElementById("iedit_pass").value;
+       
+               active_feed = false;
+       
+               notify("Saving feed...");
 
-//     notify("Saving feed.");
+               var query = "op=pref-feeds&subop=editSave&id=" +
+                       feed + "&l=" + param_escape(link) + "&t=" + param_escape(title) +
+                       "&ui=" + param_escape(upd_intl) + "&pi=" + param_escape(purge_intl) +
+                       "&catid=" + param_escape(fcat_id) + "&login=" + param_escape(auth_login) +
+                       "&pfeed=" + param_escape(parent_feed_id) + "&pass=" + param_escape(auth_pass);
 
-/*     if (upd_intl < 0) {
-               notify("Update interval must be &gt;= 0 (0 = default)");
-               return;
+               xmlhttp.open("POST", "backend.php", true);
+               xmlhttp.onreadystatechange=feedlist_callback;
+               xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
+               xmlhttp.send(query);
+       
+       } catch (e) {
+               exception_error("feedEditSave", e);
        }
+}
 
-       if (purge_intl < 0) {
-               notify("Purge days must be &gt;= 0 (0 = default)");
-               return;
-       } */
+function feedCatEditSave() {
 
-       if (link.length == 0) {
-               notify("Feed link cannot be blank.");
-               return;
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
        }
 
-       if (title.length == 0) {
-               notify("Feed title cannot be blank.");
-               return;
-       }
+       notify("Saving category...");
 
-       active_feed = false;
+       var cat_title = document.getElementById("iedit_title").value;
 
-       notify("");
-
-       xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editSave&id=" +
-               feed + "&l=" + param_escape(link) + "&t=" + param_escape(title) +
-               "&ui=" + param_escape(upd_intl) + "&pi=" + param_escape(purge_intl) +
-               "&catid=" + param_escape(fcat_id), true);
+       xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=saveCat&id=" +
+               param_escape(active_feed_cat) + "&title=" + param_escape(cat_title), 
+               true);
        xmlhttp.onreadystatechange=feedlist_callback;
        xmlhttp.send(null);
 
+       active_feed_cat = false;
+
 }
 
+
 function labelTest() {
 
        var sqlexp = document.getElementById("iedit_expr").value;
@@ -700,6 +749,16 @@ function labelTest() {
 
 }
 
+function displayHelpInfobox(topic_id) {
+
+       xmlhttp.open("GET", "backend.php?op=help&tid=" +
+               param_escape(topic_id) + "&noheaders=1", true);
+
+       xmlhttp.onreadystatechange=infobox_callback;
+       xmlhttp.send(null);
+
+}
+
 function labelEditCancel() {
 
        if (!xmlhttp_ready(xmlhttp)) {
@@ -775,7 +834,7 @@ function labelEditSave() {
                return;
        }
 
-       notify("");
+       notify("Saving label...");
 
        active_label = false;
 
@@ -799,6 +858,7 @@ function userEditSave() {
 
        var login = document.getElementById("iedit_ulogin").value;
        var level = document.getElementById("iedit_ulevel").value;
+       var email = document.getElementById("iedit_email").value;
 
        if (login.length == 0) {
                notify("Login cannot be blank.");
@@ -812,11 +872,11 @@ function userEditSave() {
 
        active_user = false;
 
-       notify("");
+       notify("Saving user...");
 
        xmlhttp.open("GET", "backend.php?op=pref-users&subop=editSave&id=" +
-               user + "&l=" + param_escape(login) + "&al=" + param_escape(level),
-               true);
+               user + "&l=" + param_escape(login) + "&al=" + param_escape(level) +
+               "&e=" + param_escape(email), true);
                
        xmlhttp.onreadystatechange=userlist_callback;
        xmlhttp.send(null);
@@ -836,12 +896,15 @@ function filterEditSave() {
        var regexp = document.getElementById("iedit_regexp").value;
        var descr = document.getElementById("iedit_descr").value;
        var match = document.getElementById("iedit_match");
-       
+
        var v_match = match[match.selectedIndex].text;
 
        var feed = document.getElementById("iedit_feed");
        var feed_id = feed[feed.selectedIndex].id;
 
+       var action = document.getElementById("iedit_filter_action");
+       var action_id = action[action.selectedIndex].id;
+
 //     notify("Saving filter " + filter + ": " + regexp + ", " + descr + ", " + match);
 
        if (regexp.length == 0) {
@@ -853,9 +916,10 @@ function filterEditSave() {
 
        xmlhttp.open("GET", "backend.php?op=pref-filters&subop=editSave&id=" +
                filter + "&r=" + param_escape(regexp) + "&d=" + param_escape(descr) +
-               "&m=" + param_escape(v_match) + "&fid=" + param_escape(feed_id), true);
+               "&m=" + param_escape(v_match) + "&fid=" + param_escape(feed_id) + 
+               "&aid=" + param_escape(action_id), true);
 
-       notify("");
+       notify("Saving filter...");
 
        xmlhttp.onreadystatechange=filterlist_callback;
        xmlhttp.send(null); 
@@ -912,15 +976,18 @@ function resetSelectedUserPass() {
                return;
        }
 
-       notify("Resetting password for selected user...");
-
-       var id = rows[0];
-
-       xmlhttp.open("GET", "backend.php?op=pref-users&subop=resetPass&id=" +
-               param_escape(id), true);
-       xmlhttp.onreadystatechange=userlist_callback;
-       xmlhttp.send(null);
+       var ok = confirm("Reset password of selected user?");
 
+       if (ok) {
+               notify("Resetting password for selected user...");
+       
+               var id = rows[0];
+       
+               xmlhttp.open("GET", "backend.php?op=pref-users&subop=resetPass&id=" +
+                       param_escape(id), true);
+               xmlhttp.onreadystatechange=userlist_callback;
+               xmlhttp.send(null);
+       }
 }
 
 function selectedUserDetails() {
@@ -966,16 +1033,17 @@ function selectedFeedDetails() {
                return;
        }
 
-       if (rows.length > 1) {
-               notify("Please select one feed.");
-               return;
-       }
+//     if (rows.length > 1) {
+//             notify("Please select one feed.");
+//             return;
+//     }
 
-       var id = rows[0];
+//     var id = rows[0];
 
        notify("");
 
-       xmlhttp.open("GET", "backend.php?op=feed-details&id=" + id, true);
+       xmlhttp.open("GET", "backend.php?op=feed-details&id=" + 
+               param_escape(rows.toString()), true);
        xmlhttp.onreadystatechange=infobox_callback;
        xmlhttp.send(null);
 
@@ -1147,56 +1215,81 @@ function selectTab(id) {
 
        active_tab = id;
 
+       setCookie('ttrss_pref_acttab', active_tab);
+
 }
 
 function init() {
 
-       // IE kludge
+       try {
+       
+               // IE kludge
+               if (!xmlhttp) {
+                       document.getElementById("prefContent").innerHTML = 
+                               "<b>Fatal error:</b> This program needs XmlHttpRequest " + 
+                               "to function properly. Your browser doesn't seem to support it.";
+                       return;
+               }
 
-       if (!xmlhttp) {
-               document.getElementById("prefContent").innerHTML = 
-                       "<b>Fatal error:</b> This program needs XmlHttpRequest " + 
-                       "to function properly. Your browser doesn't seem to support it.";
-               return;
+               active_tab = getCookie("ttrss_pref_acttab");
+               if (!active_tab) active_tab = "genConfig";
+               selectTab(active_tab);
+       
+               document.onkeydown = hotkey_handler;
+               notify("");
+       } catch (e) {
+               exception_error("init", e);
        }
+}
 
-       selectTab("genConfig");
-
-       document.onkeydown = hotkey_handler;
-       notify("");
+function closeInfoBox() {
+       var box = document.getElementById('infoBox');
+       var shadow = document.getElementById('infoBoxShadow');
 
+       if (shadow) {
+               shadow.style.display = "none";
+       } else if (box) {
+               box.style.display = "none";
+       }
 }
 
-/*
-var help_topic_id = false;
-
-function do_dispOptionHelp() {
+function categorizeSelectedFeeds() {
 
-       if (!xmlhttp_ready(xmlhttp))
-               return;
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
 
-       xmlhttp.open("GET", "backend.php?op=pref-prefs&subop=getHelp&pn=" +
-               param_escape(help_topic_id), true);
-       xmlhttp.onreadystatechange=gethelp_callback;
-       xmlhttp.send(null);
+       var sel_rows = getSelectedFeeds();
 
-}
+       var cat_sel = document.getElementById("sfeed_set_fcat");
+       var cat_id = cat_sel[cat_sel.selectedIndex].id;
 
-function dispOptionHelp(event, sender) {
+       if (sel_rows.length > 0) {
 
-       help_topic_id = sender.id;
+               notify("Changing category of selected feeds...");
 
-//     document.setTimeout("do_dispOptionHelp()", 100);
+               xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=categorize&ids="+
+                       param_escape(sel_rows.toString()) + "&cat_id=" + param_escape(cat_id), true);
+               xmlhttp.onreadystatechange=feedlist_callback;
+               xmlhttp.send(null);
 
-} */
+       } else {
 
-function closeInfoBox() {
-       var box = document.getElementById('infoBox');
-       var shadow = document.getElementById('infoBoxShadow');
+               notify("Please select some feeds first.");
 
-       if (shadow) {
-               shadow.style.display = "none";
-       } else if (box) {
-               box.style.display = "none";
        }
+
+}
+
+function validatePrefsReset() {
+       return confirm("Reset to defaults?");
+}
+
+function browseFeeds() {
+
+       xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=browse", true);
+       xmlhttp.onreadystatechange=infobox_callback;
+       xmlhttp.send(null);
+
 }