ttrss/tt-rss.js

400 lines
8.2 KiB
JavaScript
Raw Normal View History

2005-08-21 12:13:10 +02:00
/*
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;
2005-08-22 07:58:37 +02:00
var total_unread = 0;
2005-08-23 08:13:28 +02:00
var first_run = true;
2005-08-22 07:58:37 +02:00
2005-08-25 15:27:12 +02:00
var search_query = "";
2005-10-16 18:16:34 +02:00
var search_mode = "";
2005-08-25 15:27:12 +02:00
2005-09-09 09:45:54 +02:00
var display_tags = false;
2005-08-21 12:13:10 +02:00
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
// JScript gives us Conditional compilation, we can cope with old IE versions.
// and security blocked creation of the objects.
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
}
}
@end @*/
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
}
2005-09-09 09:45:54 +02:00
function toggleTags() {
display_tags = !display_tags;
var p = document.getElementById("dispSwitchPrompt");
if (display_tags) {
p.innerHTML = "display feeds";
} else {
p.innerHTML = "display tags";
}
updateFeedList();
}
2005-09-07 05:53:29 +02:00
/*
2005-08-21 12:13:10 +02:00
function feedlist_callback() {
2005-08-21 15:46:43 +02:00
var container = document.getElementById('feeds');
2005-08-21 12:13:10 +02:00
if (xmlhttp.readyState == 4) {
2005-08-21 15:46:43 +02:00
container.innerHTML=xmlhttp.responseText;
2005-08-22 07:58:37 +02:00
2005-08-23 08:13:28 +02:00
if (first_run) {
scheduleFeedUpdate(false);
if (getCookie("ttrss_vf_actfeed")) {
viewfeed(getCookie("ttrss_vf_actfeed"), 0, "");
}
2005-08-23 08:13:28 +02:00
first_run = false;
} else {
notify("");
2005-08-25 17:15:27 +02:00
}
}
2005-08-21 12:13:10 +02:00
}
2005-09-07 05:53:29 +02:00
*/
2005-09-07 15:31:21 +02:00
function refetch_callback() {
if (xmlhttp.readyState == 4) {
2005-09-07 09:33:33 +02:00
2005-09-07 05:53:29 +02:00
document.title = "Tiny Tiny RSS";
2005-09-07 09:33:33 +02:00
notify("All feeds updated.");
2005-10-16 16:15:32 +02:00
if (!xmlhttp.responseXML) {
notify("refetch_callback: backend did not return valid XML");
return;
}
var reply = xmlhttp.responseXML.firstChild;
2005-10-16 16:15:32 +02:00
if (!reply) {
notify("refetch_callback: backend did not return expected XML object");
return;
2005-10-16 17:46:37 +02:00
}
2005-10-16 16:15:32 +02:00
var f_document = window.frames["feeds-frame"].document;
for (var l = 0; l < reply.childNodes.length; l++) {
var id = reply.childNodes[l].getAttribute("id");
var ctr = reply.childNodes[l].getAttribute("counter");
2005-08-23 08:13:28 +02:00
var feedctr = f_document.getElementById("FEEDCTR-" + id);
var feedu = f_document.getElementById("FEEDU-" + id);
var feedr = f_document.getElementById("FEEDR-" + id);
2005-09-09 09:45:54 +02:00
if (feedctr && feedu && feedr) {
feedu.innerHTML = ctr;
if (ctr > 0) {
feedctr.className = "odd";
if (!feedr.className.match("Unread")) {
feedr.className = feedr.className + "Unread";
}
} else {
feedctr.className = "invisible";
feedr.className = feedr.className.replace("Unread", "");
}
}
}
}
}
2005-09-07 05:53:29 +02:00
function updateFeed(feed_id) {
var query_str = "backend.php?op=rpc&subop=updateFeed&feed=" + feed_id;
if (xmlhttp_ready(xmlhttp)) {
xmlhttp.open("GET", query_str, true);
xmlhttp.onreadystatechange=feed_update_callback;
xmlhttp.send(null);
} else {
printLockingError();
}
}
function scheduleFeedUpdate(force) {
2005-08-23 08:13:28 +02:00
notify("Updating feeds in background...");
document.title = "Tiny Tiny RSS - Updating...";
var query_str = "backend.php?op=rpc&subop=";
if (force) {
query_str = query_str + "forceUpdateAllFeeds";
} else {
query_str = query_str + "updateAllFeeds";
}
2005-08-23 08:13:28 +02:00
if (xmlhttp_ready(xmlhttp)) {
xmlhttp.open("GET", query_str, true);
xmlhttp.onreadystatechange=refetch_callback;
xmlhttp.send(null);
2005-08-23 08:13:28 +02:00
} else {
printLockingError();
2005-08-25 17:15:27 +02:00
}
2005-08-23 08:13:28 +02:00
}
2005-08-21 12:13:10 +02:00
2005-08-23 08:13:28 +02:00
function updateFeedList(silent, fetch) {
2005-08-25 17:15:27 +02:00
2005-09-07 05:53:29 +02:00
// if (silent != true) {
// notify("Loading feed list...");
// }
2005-08-21 17:23:44 +02:00
2005-08-22 06:56:40 +02:00
var query_str = "backend.php?op=feeds";
2005-09-09 09:45:54 +02:00
if (display_tags) {
query_str = query_str + "&tags=1";
}
if (getActiveFeedId()) {
query_str = query_str + "&actid=" + getActiveFeedId();
}
2005-09-07 05:53:29 +02:00
if (fetch) query_str = query_str + "&fetch=yes";
2005-09-07 05:53:29 +02:00
var feeds_frame = document.getElementById("feeds-frame");
2005-09-07 05:53:29 +02:00
feeds_frame.src = query_str;
}
function catchupAllFeeds() {
2005-08-22 13:53:39 +02:00
var query_str = "backend.php?op=feeds&subop=catchupAll";
notify("Marking all feeds as read...");
2005-09-07 05:53:29 +02:00
var feeds_frame = document.getElementById("feeds-frame");
feeds_frame.src = query_str;
}
2005-08-21 12:13:10 +02:00
function viewCurrentFeed(skip, subop) {
2005-09-07 05:53:29 +02:00
if (getActiveFeedId()) {
viewfeed(getActiveFeedId(), skip, subop);
}
}
function viewfeed(feed, skip, subop) {
2005-08-21 12:13:10 +02:00
2005-09-07 16:08:19 +02:00
// notify("Loading headlines...");
2005-09-05 17:49:39 +02:00
enableHotkeys();
2005-08-25 15:27:12 +02:00
var searchbox = document.getElementById("searchbox");
if (searchbox) {
search_query = searchbox.value;
} else {
search_query = "";
}
2005-10-16 18:16:34 +02:00
var searchmodebox = document.getElementById("searchmodebox");
if (searchmodebox) {
search_mode = searchmodebox.value;
} else {
search_mode = "";
}
setCookie("ttrss_vf_smode", search_mode);
var viewbox = document.getElementById("viewbox");
var view_mode;
if (viewbox) {
2005-09-08 07:02:49 +02:00
view_mode = viewbox[viewbox.selectedIndex].text;
} else {
view_mode = "All Posts";
}
setCookie("ttrss_vf_vmode", view_mode);
2005-09-05 14:54:07 +02:00
var limitbox = document.getElementById("limitbox");
var limit;
if (limitbox) {
2005-09-08 07:02:49 +02:00
limit = limitbox[limitbox.selectedIndex].text;
setCookie("ttrss_vf_limit", limit);
2005-09-05 14:54:07 +02:00
} else {
limit = "All";
}
setActiveFeedId(feed);
2005-09-07 05:53:29 +02:00
var f_doc = frames["feeds-frame"].document;
// f_doc.getElementById("ACTFEEDID").innerHTML = feed;
2005-09-07 16:08:19 +02:00
if (subop == "MarkAllRead") {
2005-09-07 05:53:29 +02:00
var feedr = f_doc.getElementById("FEEDR-" + feed);
2005-09-07 16:03:30 +02:00
var feedctr = f_doc.getElementById("FEEDCTR-" + feed);
2005-09-07 05:53:29 +02:00
2005-09-07 16:03:30 +02:00
feedctr.className = "invisible";
if (feedr.className.match("Unread")) {
feedr.className = feedr.className.replace("Unread", "");
}
}
2005-08-25 15:27:12 +02:00
var query = "backend.php?op=viewfeed&feed=" + param_escape(feed) +
"&skip=" + param_escape(skip) + "&subop=" + param_escape(subop) +
2005-10-16 18:16:34 +02:00
"&view=" + param_escape(view_mode) + "&limit=" + limit +
"&smode=" + param_escape(search_mode);
2005-08-25 15:27:12 +02:00
if (search_query != "") {
query = query + "&search=" + param_escape(search_query);
}
2005-09-07 05:53:29 +02:00
var headlines_frame = parent.frames["headlines-frame"];
headlines_frame.location.href = query + "&addheader=true";
cleanSelected("feedsList");
var feedr = document.getElementById("FEEDR-" + feed);
if (feedr) {
feedr.className = feedr.className + "Selected";
}
2005-09-07 05:53:29 +02:00
disableContainerChildren("headlinesToolbar", false, doc);
var btnMarkAsRead = document.getElementById("btnMarkFeedAsRead");
if (btnMarkAsRead && (feed < 0 || !isNumeric(feed))) {
btnMarkAsRead.disabled = true;
btnMarkAsRead.className = "disabledButton";
}
2005-09-05 17:49:39 +02:00
// notify("");
}
2005-09-07 05:53:29 +02:00
2005-08-21 17:35:22 +02:00
function timeout() {
scheduleFeedUpdate(true);
2005-08-21 18:16:41 +02:00
setTimeout("timeout()", 1800*1000);
}
2005-08-25 15:27:12 +02:00
function resetSearch() {
var searchbox = document.getElementById("searchbox")
if (searchbox.value != "" && getActiveFeedId()) {
searchbox.value = "";
viewfeed(getActiveFeedId(), 0, "");
}
2005-08-25 15:27:12 +02:00
}
2005-08-21 18:16:41 +02:00
function search() {
2005-09-11 05:02:23 +02:00
viewCurrentFeed(0, "");
2005-08-22 07:58:37 +02:00
}
2005-08-21 12:13:10 +02:00
2005-08-25 08:57:51 +02:00
function localPiggieFunction(enable) {
if (enable) {
var query_str = "backend.php?op=feeds&subop=piggie";
2005-08-25 17:15:27 +02:00
if (xmlhttp_ready(xmlhttp)) {
2005-08-25 08:57:51 +02:00
xmlhttp.open("GET", query_str, true);
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);
}
}
}
function localHotkeyHandler(keycode) {
/* if (keycode == 78) {
return moveToPost('next');
}
if (keycode == 80) {
return moveToPost('prev');
} */
if (keycode == 82) {
return scheduleFeedUpdate(true);
}
if (keycode == 85) {
return viewfeed(getActiveFeedId(), 0, "ForceUpdate");
}
// notify("KC: " + keycode);
}
function genericSanityCheck() {
if (!xmlhttp) {
document.getElementById("headlines").innerHTML =
"<b>Fatal error:</b> This program requires XmlHttpRequest " +
"to function properly. Your browser doesn't seem to support it.";
return false;
}
setCookie("ttrss_vf_test", "TEST");
if (getCookie("ttrss_vf_test") != "TEST") {
document.getElementById("headlines").innerHTML =
"<b>Fatal error:</b> This program requires cookies " +
"to function properly. Your browser doesn't seem to support them.";
return false;
}
return true;
}
function init() {
disableContainerChildren("headlinesToolbar", true);
if (!genericSanityCheck())
return;
2005-10-14 05:43:44 +02:00
setCookie("ttrss_vf_actfeed", "");
updateFeedList(false, false);
2005-08-25 08:57:51 +02:00
document.onkeydown = hotkey_handler;
2005-09-07 15:34:55 +02:00
setTimeout("timeout()", 1800*1000);
scheduleFeedUpdate(true);
2005-09-07 05:53:29 +02:00
var content = document.getElementById("content");
if (getCookie("ttrss_vf_vmode")) {
var viewbox = document.getElementById("viewbox");
viewbox.value = getCookie("ttrss_vf_vmode");
}
2005-09-06 06:39:31 +02:00
if (getCookie("ttrss_vf_limit")) {
var limitbox = document.getElementById("limitbox");
limitbox.value = getCookie("ttrss_vf_limit");
}
// if (getCookie("ttrss_vf_actfeed")) {
// viewfeed(getCookie("ttrss_vf_actfeed"), 0, '');
// }
2005-08-21 12:13:10 +02:00
}