ttrss/tt-rss.js

415 lines
8.6 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-23 08:13:28 +02:00
var xmlhttp_rpc = false;
var xmlhttp_view = false;
2005-08-21 12:13:10 +02:00
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
var active_post_id = false;
var active_feed_id = false;
var active_offset = false;
var total_feed_entries = false;
2005-08-25 15:27:12 +02:00
var search_query = "";
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");
xmlhttp_rpc = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp_view = new ActiveXObject("Microsoft.XMLHTTP");
2005-08-21 12:13:10 +02:00
} catch (E) {
xmlhttp = false;
xmlhttp_rpc = false;
xmlhttp_view = false;
2005-08-21 12:13:10 +02:00
}
}
@end @*/
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
2005-08-23 08:13:28 +02:00
xmlhttp_rpc = new XMLHttpRequest();
xmlhttp_view = new XMLHttpRequest();
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);
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-08-23 08:13:28 +02:00
function refetch_callback() {
2005-08-25 17:15:27 +02:00
2005-08-23 08:13:28 +02:00
if (xmlhttp_rpc.readyState == 4) {
notify("All feeds updated");
var container = document.getElementById('feeds');
container.innerHTML = xmlhttp_rpc.responseText;
document.title = "Tiny Tiny RSS";
2005-08-25 17:15:27 +02:00
}
2005-08-23 08:13:28 +02:00
}
function updateFeed(feed_id) {
var query_str = "backend.php?op=rpc&subop=updateFeed&feed=" + feed_id;
if (xmlhttp_ready(xmlhttp_rpc)) {
xmlhttp_rpc.open("GET", query_str, true);
xmlhttp_rpc.onreadystatechange=feed_update_callback;
xmlhttp_rpc.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
2005-08-25 17:15:27 +02:00
if (xmlhttp_ready(xmlhttp_rpc)) {
2005-08-23 08:13:28 +02:00
xmlhttp_rpc.open("GET", query_str, true);
xmlhttp_rpc.onreadystatechange=refetch_callback;
xmlhttp_rpc.send(null);
} 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-08-23 08:13:28 +02:00
if (silent != true) {
notify("Loading feed list...");
2005-08-21 17:35:22 +02:00
}
2005-08-21 17:23:44 +02:00
2005-08-22 06:56:40 +02:00
var query_str = "backend.php?op=feeds";
if (fetch) query_str = query_str + "&fetch=yes";
2005-08-25 17:15:27 +02:00
if (xmlhttp_ready(xmlhttp)) {
2005-08-22 13:53:39 +02:00
xmlhttp.open("GET", query_str, true);
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);
} else {
2005-08-22 14:44:50 +02:00
printLockingError();
2005-08-22 13:53:39 +02:00
}
2005-08-21 12:13:10 +02:00
}
/*
function catchupPage(feed) {
2005-08-25 17:15:27 +02:00
if (!xmlhttp_ready(xmlhttp)) {
2005-08-22 14:44:50 +02:00
printLockingError();
2005-08-22 13:53:39 +02:00
return
}
var content = document.getElementById("headlinesList");
var rows = new Array();
for (i = 0; i < content.rows.length; i++) {
var row_id = content.rows[i].id.replace("RROW-", "");
if (row_id.length > 0) {
if (content.rows[i].className.match("Unread")) {
rows.push(row_id);
content.rows[i].className = content.rows[i].className.replace("Unread", "");
}
var upd_img_pic = document.getElementById("FUPDPIC-" + row_id);
if (upd_img_pic) {
upd_img_pic.innerHTML = "";
}
}
}
if (rows.length > 0) {
var feedr = document.getElementById("FEEDR-" + feed);
var feedu = document.getElementById("FEEDU-" + feed);
feedu.innerHTML = feedu.innerHTML - rows.length;
if (feedu.innerHTML > 0 && !feedr.className.match("Unread")) {
feedr.className = feedr.className + "Unread";
} else if (feedu.innerHTML <= 0) {
feedr.className = feedr.className.replace("Unread", "");
}
var query_str = "backend.php?op=rpc&subop=catchupPage&ids=" +
param_escape(rows.toString());
notify("Marking this page as read...");
var button = document.getElementById("btnCatchupPage");
2005-08-29 09:56:12 +02:00
if (button) {
button.className = "disabledButton";
button.href = "";
}
xmlhttp.open("GET", query_str, true);
xmlhttp.onreadystatechange=notify_callback;
xmlhttp.send(null);
} else {
notify("No unread items on this page.");
}
} */
function catchupAllFeeds() {
2005-08-22 13:53:39 +02:00
2005-08-25 17:15:27 +02:00
if (!xmlhttp_ready(xmlhttp)) {
2005-08-22 14:44:50 +02:00
printLockingError();
2005-08-22 13:53:39 +02:00
return
}
var query_str = "backend.php?op=feeds&subop=catchupAll";
notify("Marking all feeds as read...");
xmlhttp.open("GET", query_str, true);
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);
}
2005-08-21 12:13:10 +02:00
function viewCurrentFeed(skip, subop) {
if (active_feed_id) {
viewfeed(active_feed_id, skip, subop);
}
}
function viewfeed(feed, skip, subop) {
2005-08-21 12:13:10 +02:00
2005-09-05 17:49:39 +02:00
// notify("Loading headlines...");
enableHotkeys();
2005-08-25 15:27:12 +02:00
var searchbox = document.getElementById("searchbox");
if (searchbox) {
search_query = searchbox.value;
} else {
search_query = "";
}
var viewbox = document.getElementById("viewbox");
var view_mode;
if (viewbox) {
view_mode = viewbox.value;
} else {
view_mode = "All Posts";
}
2005-09-05 14:54:07 +02:00
var limitbox = document.getElementById("limitbox");
var limit;
if (limitbox) {
limit = limitbox.value;
} else {
limit = "All";
}
if (skip < 0 || skip > total_feed_entries) {
return;
}
2005-08-25 17:15:27 +02:00
if (!xmlhttp_ready(xmlhttp)) {
2005-08-22 14:44:50 +02:00
printLockingError();
2005-08-22 13:53:39 +02:00
return
}
2005-08-26 06:39:20 +02:00
if (active_feed_id != feed || skip != active_offset) {
active_post_id = false;
2005-08-26 06:39:20 +02:00
}
active_feed_id = feed;
active_offset = skip;
2005-08-22 13:53:39 +02:00
if (subop == "MarkAllRead") {
var feedr = document.getElementById("FEEDR-" + feed);
var feedt = document.getElementById("FEEDT-" + feed);
var feedu = document.getElementById("FEEDU-" + feed);
feedu.innerHTML = "0";
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-09-05 14:54:07 +02:00
"&view=" + param_escape(view_mode) + "&limit=" + limit;
2005-08-25 15:27:12 +02:00
if (search_query != "") {
query = query + "&search=" + param_escape(search_query);
}
var headlines_frame = document.getElementById("headlines-frame");
headlines_frame.src = query + "&addheader=true";
var feedr = document.getElementById("FEEDR-" + feed);
cleanSelected("feedsList");
feedr.className = feedr.className + "Selected";
var ftitle_d = document.getElementById("headlinesTitle");
var ftitle_s = document.getElementById("FEEDN-" + feed);
ftitle_d.innerHTML = ftitle_s.innerHTML;
2005-09-05 17:49:39 +02:00
// notify("");
}
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() {
document.getElementById("searchbox").value = "";
viewfeed(active_feed_id, 0, "");
}
2005-08-21 18:16:41 +02:00
function search() {
if (active_feed_id) {
viewfeed(active_feed_id, 0, "");
} else {
notify("Please select some feed first.");
}
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 moveToPost(mode) {
var rows = getVisibleHeadlineIds();
var prev_id;
var next_id;
if (active_post_id == false) {
next_id = getFirstVisibleHeadlineId();
prev_id = getLastVisibleHeadlineId();
} else {
for (var i = 0; i < rows.length; i++) {
if (rows[i] == active_post_id) {
prev_id = rows[i-1];
next_id = rows[i+1];
}
}
}
if (mode == "next") {
if (next_id != undefined) {
view(next_id, active_feed_id);
} else {
_viewfeed_autoselect_first = true;
viewfeed(active_feed_id, active_offset+15);
}
}
if (mode == "prev") {
if ( prev_id != undefined) {
view(prev_id, active_feed_id);
} else {
_viewfeed_autoselect_last = true;
viewfeed(active_feed_id, active_offset-15);
}
}
}
*/
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(active_feed_id, active_offset, "ForceUpdate");
}
// notify("KC: " + keycode);
}
2005-08-22 07:58:37 +02:00
function init() {
2005-08-25 17:15:27 +02:00
// IE kludge
if (xmlhttp && !xmlhttp_rpc) {
xmlhttp_rpc = xmlhttp;
xmlhttp_view = xmlhttp;
}
if (!xmlhttp || !xmlhttp_rpc || !xmlhttp_view) {
document.getElementById("headlines").innerHTML =
"<b>Fatal error:</b> This program needs XmlHttpRequest " +
"to function properly. Your browser doesn't seem to support it.";
return;
}
updateFeedList(false, false);
2005-08-25 08:57:51 +02:00
document.onkeydown = hotkey_handler;
2005-08-21 18:16:41 +02:00
setTimeout("timeout()", 1800*1000);
var content = document.getElementById("content");
2005-08-21 12:13:10 +02:00
}