ttrss/tt-rss.js

557 lines
11 KiB
JavaScript
Raw Normal View History

2005-08-21 12:13:10 +02:00
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-09-09 09:45:54 +02:00
var display_tags = false;
var global_unread = -1;
2005-11-25 09:20:32 +01:00
var active_title_text = "";
var current_subtitle = "";
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();
}
function dlg_frefresh_callback() {
2005-08-21 12:13:10 +02:00
if (xmlhttp.readyState == 4) {
updateFeedList(false, false);
2005-10-28 07:59:29 +02:00
closeDlg();
2005-08-25 17:15:27 +02:00
}
2005-08-21 12:13:10 +02:00
}
2005-10-28 07:59:29 +02:00
function dialog_refresh_callback() {
if (xmlhttp.readyState == 4) {
var dlg = document.getElementById("userDlg");
2005-11-27 11:48:07 +01:00
var dlg_s = document.getElementById("userDlgShadow");
2005-10-28 07:59:29 +02:00
dlg.innerHTML = xmlhttp.responseText;
2005-11-27 11:48:07 +01:00
dlg_s.style.display = "block";
2005-10-28 07:59:29 +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-11-26 11:06:56 +01:00
try {
2005-09-07 09:33:33 +02:00
2005-11-26 11:06:56 +01:00
if (!xmlhttp.responseXML) {
notify("refetch_callback: backend did not return valid XML");
return;
}
var reply = xmlhttp.responseXML.firstChild;
2005-11-26 11:06:56 +01:00
if (!reply) {
notify("refetch_callback: backend did not return expected XML object");
return;
}
2005-11-26 11:06:56 +01:00
var error_code = reply.getAttribute("error-code");
if (error_code && error_code != 0) {
return fatalError(error_code);
}
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");
var feedctr = f_document.getElementById("FEEDCTR-" + id);
var feedu = f_document.getElementById("FEEDU-" + id);
var feedr = f_document.getElementById("FEEDR-" + id);
if (id == "global-unread") {
global_unread = ctr;
continue;
}
2005-11-26 11:06:56 +01:00
if (feedctr && feedu && feedr) {
2005-09-09 09:45:54 +02:00
2005-11-26 11:06:56 +01:00
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-09 09:45:54 +02:00
}
}
2005-11-26 11:06:56 +01:00
}
updateTitle("");
notify("All feeds updated.");
} catch (e) {
exception_error("refetch_callback", e);
}
}
}
2005-09-07 05:53:29 +02:00
function backend_sanity_check_callback() {
if (xmlhttp.readyState == 4) {
2005-11-26 11:06:56 +01:00
try {
if (!xmlhttp.responseXML) {
fatalError(3);
return;
}
2005-11-26 11:06:56 +01:00
var reply = xmlhttp.responseXML.firstChild;
if (!reply) {
fatalError(3);
return;
}
var error_code = reply.getAttribute("error-code");
if (error_code && error_code != 0) {
return fatalError(error_code);
}
init_second_stage();
2005-11-26 11:06:56 +01:00
} catch (e) {
exception_error("backend_sanity_check_callback", e);
}
}
}
function scheduleFeedUpdate(force) {
2005-08-23 08:13:28 +02:00
notify("Updating feeds in background...");
// document.title = "Tiny Tiny RSS - Updating...";
2005-11-25 09:20:32 +01:00
updateTitle("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
var omode;
if (display_tags) {
omode = "t";
} else {
omode = "fl";
}
query_str = query_str + "&omode=" + omode;
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;
global_unread = 0;
2005-11-25 09:20:32 +01:00
updateTitle("");
}
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);
} else {
disableContainerChildren("headlinesToolbar", false, document);
viewfeed(-1, skip, subop); // FIXME
}
}
function viewfeed(feed, skip, subop) {
var f = window.frames["feeds-frame"];
f.viewfeed(feed, skip, subop);
}
2005-08-21 17:35:22 +02:00
function timeout() {
2005-11-19 09:18:34 +01:00
scheduleFeedUpdate(false);
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');
} */
2005-11-16 06:40:03 +01:00
if (keycode == 82) { // r
return scheduleFeedUpdate(true);
}
2005-11-16 06:40:03 +01:00
if (keycode == 85) { // u
if (getActiveFeedId()) {
return viewfeed(getActiveFeedId(), 0, "ForceUpdate");
}
}
if (keycode == 65) { // a
return toggleDispRead();
}
2005-11-28 07:28:33 +01:00
var f_doc = window.frames["feeds-frame"].document;
var feedlist = f_doc.getElementById('feedList');
if (keycode == 74) { // j
var feed = getActiveFeedId();
var new_feed = getRelativeFeedId(feedlist, feed, 'prev');
if (new_feed) viewfeed(new_feed, 0, '');
}
if (keycode == 75) { // k
var feed = getActiveFeedId();
var new_feed = getRelativeFeedId(feedlist, feed, 'next');
if (new_feed) viewfeed(new_feed, 0, '');
}
// notify("KC: " + keycode);
}
// if argument is undefined, current subtitle is not updated
// use blank string to clear subtitle
function updateTitle(s) {
var tmp = "Tiny Tiny RSS";
2005-11-25 09:20:32 +01:00
if (s && s.length > 0) {
current_subtitle = s;
}
if (global_unread > 0) {
tmp = tmp + " (" + global_unread + ")";
}
if (s) {
2005-11-25 09:20:32 +01:00
tmp = tmp + " - " + current_subtitle;
}
2005-11-25 09:20:32 +01:00
if (active_title_text.length > 0) {
tmp = tmp + " > " + active_title_text;
}
document.title = tmp;
}
function genericSanityCheck() {
if (!xmlhttp) fatalError(1);
setCookie("ttrss_vf_test", "TEST");
if (getCookie("ttrss_vf_test") != "TEST") {
fatalError(2);
}
return true;
}
function init() {
2005-11-26 11:06:56 +01:00
try {
2005-10-14 05:43:44 +02:00
2005-11-26 11:06:56 +01:00
disableContainerChildren("headlinesToolbar", true);
2005-11-26 11:06:56 +01:00
if (!genericSanityCheck())
return;
2005-11-26 11:06:56 +01:00
xmlhttp.open("GET", "backend.php?op=rpc&subop=sanityCheck", true);
xmlhttp.onreadystatechange=backend_sanity_check_callback;
xmlhttp.send(null);
2005-11-26 11:06:56 +01:00
} catch (e) {
exception_error("init", e);
2005-09-06 06:39:31 +02:00
}
2005-11-26 11:06:56 +01:00
}
2005-11-26 11:06:56 +01:00
function init_second_stage() {
2005-11-26 11:06:56 +01:00
try {
2005-11-16 09:45:00 +01:00
2005-11-26 11:06:56 +01:00
setCookie("ttrss_vf_actfeed", "");
updateFeedList(false, false);
document.onkeydown = hotkey_handler;
var content = document.getElementById("content");
if (getCookie("ttrss_vf_vmode")) {
var viewbox = document.getElementById("viewbox");
viewbox.value = getCookie("ttrss_vf_vmode");
}
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, '');
// }
// setTimeout("timeout()", 2*1000);
// scheduleFeedUpdate(true);
} catch (e) {
exception_error("init_second_stage", e);
2005-11-16 09:45:00 +01:00
}
2005-08-21 12:13:10 +02:00
}
function quickMenuGo() {
2005-11-16 06:16:43 +01:00
var chooser = document.getElementById("quickMenuChooser");
var opid = chooser[chooser.selectedIndex].id;
2005-11-16 06:16:43 +01:00
if (opid == "qmcPrefs") {
gotoPreferences();
}
2005-11-16 06:16:43 +01:00
if (opid == "qmcAdvSearch") {
displayDlg("search");
return;
}
2005-11-16 06:16:43 +01:00
if (opid == "qmcAddFeed") {
2005-10-28 07:59:29 +02:00
displayDlg("quickAddFeed");
return;
}
2005-11-16 06:16:43 +01:00
if (opid == "qmcRemoveFeed") {
var actid = getActiveFeedId();
if (!actid) {
notify("Please select some feed first.");
return;
}
displayDlg("quickDelFeed", actid);
return;
}
2005-11-16 06:16:43 +01:00
if (opid == "qmcUpdateFeeds") {
scheduleFeedUpdate(true);
return;
}
2005-11-16 06:16:43 +01:00
if (opid == "qmcCatchupAll") {
catchupAllFeeds();
return;
}
2005-11-16 06:16:43 +01:00
if (opid == "qmcShowOnlyUnread") {
toggleDispRead();
return;
}
}
function qafAdd() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
var link = document.getElementById("qafInput");
if (link.value.length == 0) {
notify("Missing feed URL.");
} else {
notify("Adding feed...");
var feeds_doc = window.frames["feeds-frame"].document;
feeds_doc.location.href = "backend.php?op=error&msg=Loading,%20please wait...";
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=add&link=" +
param_escape(link.value), true);
xmlhttp.onreadystatechange=dlg_frefresh_callback;
xmlhttp.send(null);
link.value = "";
}
2005-10-28 07:59:29 +02:00
}
function displayDlg(id, param) {
2005-10-28 08:30:11 +02:00
notify("");
2005-10-28 07:59:29 +02:00
xmlhttp.open("GET", "backend.php?op=dlg&id=" +
param_escape(id) + "&param=" + param_escape(param), true);
2005-10-28 07:59:29 +02:00
xmlhttp.onreadystatechange=dialog_refresh_callback;
xmlhttp.send(null);
}
2005-10-28 07:59:29 +02:00
function closeDlg() {
2005-11-27 11:48:07 +01:00
var dlg = document.getElementById("userDlgShadow");
2005-10-28 07:59:29 +02:00
dlg.style.display = "none";
}
function qfdDelete(feed_id) {
notify("Removing feed...");
var feeds_doc = window.frames["feeds-frame"].document;
feeds_doc.location.href = "backend.php?op=error&msg=Loading,%20please wait...";
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=remove&ids=" + feed_id);
xmlhttp.onreadystatechange=dlg_frefresh_callback;
xmlhttp.send(null);
}
function allFeedsMenuGo() {
var chooser = document.getElementById("allFeedsChooser");
var opname = chooser[chooser.selectedIndex].text;
if (opname == "Update") {
scheduleFeedUpdate(true);
return;
}
if (opname == "Mark as read") {
catchupAllFeeds();
return;
}
2005-11-20 08:53:23 +01:00
if (opname == "Show only unread") {
toggleDispRead();
return;
}
}
2005-11-25 09:20:32 +01:00
function updateFeedTitle(t) {
active_title_text = t;
updateTitle();
}
function toggleDispRead() {
var hide_read_feeds = (getCookie("ttrss_vf_hreadf") == 1);
hide_read_feeds = !hide_read_feeds;
var feeds_doc = window.frames["feeds-frame"].document;
hideOrShowFeeds(feeds_doc, hide_read_feeds);
if (hide_read_feeds) {
setCookie("ttrss_vf_hreadf", 1);
} else {
setCookie("ttrss_vf_hreadf", 0);
}
}