2007-08-24 05:31:57 +00:00
|
|
|
var _infscroll_disable = 0;
|
2007-08-28 05:05:45 +00:00
|
|
|
var _infscroll_request_sent = 0;
|
2010-11-21 10:35:16 +00:00
|
|
|
var _search_query = false;
|
2012-08-14 15:30:49 +00:00
|
|
|
var _viewfeed_last = 0;
|
2013-06-14 05:39:26 +00:00
|
|
|
var _viewfeed_timeout = false;
|
2007-08-09 07:36:04 +00:00
|
|
|
|
2008-05-21 04:09:04 +00:00
|
|
|
var counters_last_request = 0;
|
2008-05-19 16:55:57 +00:00
|
|
|
|
2006-03-04 07:09:13 +00:00
|
|
|
function viewCategory(cat) {
|
2006-08-01 12:53:41 +00:00
|
|
|
viewfeed(cat, '', true);
|
2007-04-28 11:07:01 +00:00
|
|
|
return false;
|
2006-03-04 07:09:13 +00:00
|
|
|
}
|
|
|
|
|
2011-08-04 11:20:23 +00:00
|
|
|
function loadMoreHeadlines() {
|
2007-08-09 07:36:04 +00:00
|
|
|
try {
|
2011-10-13 06:45:10 +00:00
|
|
|
console.log("loadMoreHeadlines");
|
|
|
|
|
2011-08-04 11:20:23 +00:00
|
|
|
var offset = 0;
|
|
|
|
|
|
|
|
var view_mode = document.forms["main_toolbar_form"].view_mode.value;
|
2012-08-16 15:11:39 +00:00
|
|
|
var unread_in_buffer = $$("#headlines-frame > div[id*=RROW][class*=Unread]").length;
|
2011-08-04 11:20:23 +00:00
|
|
|
var num_all = $$("#headlines-frame > div[id*=RROW]").length;
|
2012-08-28 12:07:02 +00:00
|
|
|
var num_unread = getFeedUnread(getActiveFeedId(), activeFeedIsCat());
|
2011-08-04 11:20:23 +00:00
|
|
|
|
|
|
|
// TODO implement marked & published
|
|
|
|
|
|
|
|
if (view_mode == "marked") {
|
|
|
|
console.warn("loadMoreHeadlines: marked is not implemented, falling back.");
|
|
|
|
offset = num_all;
|
|
|
|
} else if (view_mode == "published") {
|
|
|
|
console.warn("loadMoreHeadlines: published is not implemented, falling back.");
|
|
|
|
offset = num_all;
|
|
|
|
} else if (view_mode == "unread") {
|
2012-08-28 12:02:44 +00:00
|
|
|
offset = unread_in_buffer;
|
2012-10-10 12:30:26 +00:00
|
|
|
} else if (_search_query) {
|
|
|
|
offset = num_all;
|
2011-08-04 11:20:23 +00:00
|
|
|
} else if (view_mode == "adaptive") {
|
2013-09-01 10:07:31 +00:00
|
|
|
offset = num_unread > 0 ? unread_in_buffer : num_all;
|
2011-08-04 11:20:23 +00:00
|
|
|
} else {
|
|
|
|
offset = num_all;
|
|
|
|
}
|
2008-05-17 05:21:57 +00:00
|
|
|
|
2012-10-10 12:30:26 +00:00
|
|
|
console.log("offset: " + offset);
|
|
|
|
|
2011-11-07 11:46:28 +00:00
|
|
|
viewfeed(getActiveFeedId(), '', activeFeedIsCat(), offset, false, true);
|
2007-08-09 07:36:04 +00:00
|
|
|
|
|
|
|
} catch (e) {
|
2008-05-18 06:04:14 +00:00
|
|
|
exception_error("viewNextFeedPage", e);
|
2007-08-09 07:36:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-03 15:43:44 +00:00
|
|
|
|
2013-06-14 05:39:26 +00:00
|
|
|
function viewfeed(feed, method, is_cat, offset, background, infscroll_req, can_wait) {
|
2005-11-26 10:06:56 +00:00
|
|
|
try {
|
2011-08-31 10:03:52 +00:00
|
|
|
if (is_cat == undefined)
|
|
|
|
is_cat = false;
|
|
|
|
else
|
|
|
|
is_cat = !!is_cat;
|
|
|
|
|
2011-12-12 18:46:25 +00:00
|
|
|
if (method == undefined) method = '';
|
2011-08-04 11:20:23 +00:00
|
|
|
if (offset == undefined) offset = 0;
|
2011-08-31 11:25:42 +00:00
|
|
|
if (background == undefined) background = false;
|
2011-12-10 17:43:03 +00:00
|
|
|
if (infscroll_req == undefined) infscroll_req = false;
|
2007-01-26 05:36:19 +00:00
|
|
|
|
2008-05-20 16:08:31 +00:00
|
|
|
last_requested_article = 0;
|
|
|
|
|
2013-02-28 11:52:30 +00:00
|
|
|
if (feed != getActiveFeedId() || activeFeedIsCat() != is_cat) {
|
2012-10-27 09:18:58 +00:00
|
|
|
if (!background && _search_query) _search_query = false;
|
2011-11-26 19:19:04 +00:00
|
|
|
}
|
|
|
|
|
2011-08-31 11:25:42 +00:00
|
|
|
if (!background) {
|
2012-08-14 15:30:49 +00:00
|
|
|
_viewfeed_last = get_timestamp();
|
|
|
|
|
2011-08-31 11:25:42 +00:00
|
|
|
if (getActiveFeedId() != feed || offset == 0) {
|
2013-02-28 09:18:58 +00:00
|
|
|
setActiveArticleId(0);
|
2011-08-31 11:25:42 +00:00
|
|
|
_infscroll_disable = 0;
|
|
|
|
}
|
2007-01-19 09:38:16 +00:00
|
|
|
|
2011-12-12 18:46:25 +00:00
|
|
|
if (offset != 0 && !method) {
|
2012-08-14 15:30:49 +00:00
|
|
|
var timestamp = get_timestamp();
|
2007-08-28 05:05:45 +00:00
|
|
|
|
2011-08-31 11:25:42 +00:00
|
|
|
if (_infscroll_request_sent && _infscroll_request_sent + 30 > timestamp) {
|
|
|
|
//console.log("infscroll request in progress, aborting");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_infscroll_request_sent = timestamp;
|
2007-08-28 05:05:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-19 13:03:47 +00:00
|
|
|
Form.enable("main_toolbar_form");
|
|
|
|
|
|
|
|
var toolbar_query = Form.serialize("main_toolbar_form");
|
2006-05-21 04:28:51 +00:00
|
|
|
|
2013-07-12 10:15:03 +00:00
|
|
|
var query = "?op=feeds&method=view&feed=" + param_escape(feed) + "&" +
|
2012-10-25 09:15:14 +00:00
|
|
|
toolbar_query;
|
|
|
|
|
|
|
|
if (method) {
|
|
|
|
query = query + "&m=" + param_escape(method);
|
|
|
|
}
|
2011-08-31 11:25:42 +00:00
|
|
|
|
2015-07-12 10:30:00 +00:00
|
|
|
if (offset > 0) {
|
2015-07-12 14:55:35 +00:00
|
|
|
if (current_first_id) {
|
|
|
|
query = query + "&fid=" + param_escape(current_first_id);
|
2015-07-12 10:30:00 +00:00
|
|
|
}
|
2015-07-11 22:29:36 +00:00
|
|
|
}
|
|
|
|
|
2011-08-31 11:25:42 +00:00
|
|
|
if (!background) {
|
|
|
|
if (_search_query) {
|
2007-11-21 10:34:06 +00:00
|
|
|
force_nocache = true;
|
2011-08-31 11:25:42 +00:00
|
|
|
query = query + "&" + _search_query;
|
2012-10-10 12:30:26 +00:00
|
|
|
//_search_query = false;
|
2007-11-21 10:34:06 +00:00
|
|
|
}
|
2006-05-21 12:09:55 +00:00
|
|
|
|
2011-08-31 11:25:42 +00:00
|
|
|
if (offset != 0) {
|
|
|
|
query = query + "&skip=" + offset;
|
2008-05-17 09:23:04 +00:00
|
|
|
|
2011-08-31 11:25:42 +00:00
|
|
|
// to prevent duplicate feed titles when showing grouped vfeeds
|
|
|
|
if (vgroup_last_feed) {
|
|
|
|
query = query + "&vgrlf=" + param_escape(vgroup_last_feed);
|
|
|
|
}
|
2012-10-25 09:15:14 +00:00
|
|
|
} else {
|
|
|
|
if (!method && !is_cat && feed == getActiveFeedId()) {
|
|
|
|
query = query + "&m=ForceUpdate";
|
|
|
|
}
|
2008-05-17 09:23:04 +00:00
|
|
|
}
|
2011-08-31 11:25:42 +00:00
|
|
|
|
|
|
|
Form.enable("main_toolbar_form");
|
|
|
|
|
2013-03-23 05:30:57 +00:00
|
|
|
if (!setFeedExpandoIcon(feed, is_cat,
|
|
|
|
(is_cat) ? 'images/indicator_tiny.gif' : 'images/indicator_white.gif'))
|
2011-08-31 11:25:42 +00:00
|
|
|
notify_progress("Loading, please wait...", true);
|
2007-01-19 09:38:16 +00:00
|
|
|
}
|
|
|
|
|
2011-08-31 11:25:42 +00:00
|
|
|
query += "&cat=" + is_cat;
|
2006-09-28 12:00:03 +00:00
|
|
|
|
2010-09-05 09:41:19 +00:00
|
|
|
console.log(query);
|
2008-05-17 04:42:20 +00:00
|
|
|
|
2013-06-14 05:39:26 +00:00
|
|
|
if (can_wait && _viewfeed_timeout) {
|
|
|
|
setFeedExpandoIcon(getActiveFeedId(), activeFeedIsCat(), 'images/blank_icon.gif');
|
|
|
|
clearTimeout(_viewfeed_timeout);
|
|
|
|
}
|
|
|
|
|
2013-04-04 16:14:39 +00:00
|
|
|
setActiveFeedId(feed, is_cat);
|
|
|
|
|
2013-06-14 05:39:26 +00:00
|
|
|
timeout_ms = can_wait ? 250 : 0;
|
|
|
|
_viewfeed_timeout = setTimeout(function() {
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
setFeedExpandoIcon(feed, is_cat, 'images/blank_icon.gif');
|
|
|
|
headlines_callback2(transport, offset, background, infscroll_req);
|
|
|
|
PluginHost.run(PluginHost.HOOK_FEED_LOADED, [feed, is_cat]);
|
|
|
|
} });
|
|
|
|
}, timeout_ms); // Wait 250ms
|
2006-09-28 12:00:03 +00:00
|
|
|
|
2005-11-26 10:06:56 +00:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("viewfeed", e);
|
2011-03-18 09:55:45 +00:00
|
|
|
}
|
2005-09-07 03:53:29 +00:00
|
|
|
}
|
|
|
|
|
2006-09-28 12:00:03 +00:00
|
|
|
function feedlist_init() {
|
2005-12-20 11:14:24 +00:00
|
|
|
try {
|
2010-11-15 18:49:00 +00:00
|
|
|
console.log("in feedlist init");
|
2011-03-18 09:55:45 +00:00
|
|
|
|
2013-05-02 05:48:38 +00:00
|
|
|
loading_set_progress(50);
|
|
|
|
|
2005-12-20 11:14:24 +00:00
|
|
|
document.onkeydown = hotkey_handler;
|
2009-10-06 11:04:46 +00:00
|
|
|
setTimeout("hotkey_prefix_timeout()", 5*1000);
|
|
|
|
|
2013-02-28 09:06:54 +00:00
|
|
|
if (!getActiveFeedId()) {
|
|
|
|
viewfeed(-3);
|
|
|
|
} else {
|
|
|
|
viewfeed(getActiveFeedId(), '', activeFeedIsCat());
|
|
|
|
}
|
2006-11-22 10:11:41 +00:00
|
|
|
|
2010-11-16 20:00:45 +00:00
|
|
|
hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
|
2008-08-29 07:34:35 +00:00
|
|
|
|
2013-02-01 09:09:43 +00:00
|
|
|
request_counters(true);
|
|
|
|
timeout();
|
2010-11-19 22:31:20 +00:00
|
|
|
|
2005-12-20 11:14:24 +00:00
|
|
|
} catch (e) {
|
2005-12-20 15:49:52 +00:00
|
|
|
exception_error("feedlist/init", e);
|
2005-12-20 11:14:24 +00:00
|
|
|
}
|
2005-11-15 09:13:49 +00:00
|
|
|
}
|
2007-11-21 07:08:25 +00:00
|
|
|
|
2008-05-20 15:59:42 +00:00
|
|
|
|
2013-02-01 09:09:43 +00:00
|
|
|
function request_counters(force) {
|
2008-05-20 15:59:42 +00:00
|
|
|
try {
|
|
|
|
var date = new Date();
|
|
|
|
var timestamp = Math.round(date.getTime() / 1000);
|
|
|
|
|
2013-02-27 12:47:25 +00:00
|
|
|
if (force || timestamp - counters_last_request > 5) {
|
2010-09-05 09:41:19 +00:00
|
|
|
console.log("scheduling request of counters...");
|
2010-11-10 11:48:35 +00:00
|
|
|
|
2008-05-20 15:59:42 +00:00
|
|
|
counters_last_request = timestamp;
|
2013-02-01 09:09:43 +00:00
|
|
|
|
|
|
|
var query = "?op=rpc&method=getAllCounters&seq=" + next_seq();
|
|
|
|
|
2013-02-27 12:57:26 +00:00
|
|
|
if (!force)
|
2013-02-01 09:09:43 +00:00
|
|
|
query = query + "&last_article_id=" + getInitParam("last_article_id");
|
|
|
|
|
|
|
|
console.log(query);
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
try {
|
|
|
|
handle_rpc_json(transport);
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("request_counters", e);
|
|
|
|
}
|
|
|
|
} });
|
|
|
|
|
2008-05-20 15:59:42 +00:00
|
|
|
} else {
|
2010-09-05 09:41:19 +00:00
|
|
|
console.log("request_counters: rate limit reached: " + (timestamp - counters_last_request));
|
2009-01-16 15:33:26 +00:00
|
|
|
}
|
2008-05-20 15:59:42 +00:00
|
|
|
|
2008-05-20 12:52:38 +00:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("request_counters", e);
|
|
|
|
}
|
|
|
|
}
|
2009-02-03 19:33:52 +00:00
|
|
|
|
2010-11-25 10:20:37 +00:00
|
|
|
function parse_counters(elems, scheduled_call) {
|
2010-11-12 10:52:53 +00:00
|
|
|
try {
|
|
|
|
for (var l = 0; l < elems.length; l++) {
|
|
|
|
|
2011-12-10 17:26:59 +00:00
|
|
|
var id = elems[l].id;
|
2010-11-12 10:52:53 +00:00
|
|
|
var kind = elems[l].kind;
|
2011-12-10 17:26:59 +00:00
|
|
|
var ctr = parseInt(elems[l].counter);
|
2010-11-12 10:52:53 +00:00
|
|
|
var error = elems[l].error;
|
|
|
|
var has_img = elems[l].has_img;
|
|
|
|
var updated = elems[l].updated;
|
2013-05-15 21:08:04 +00:00
|
|
|
var auxctr = parseInt(elems[l].auxcounter);
|
2010-11-25 10:20:37 +00:00
|
|
|
|
2010-11-12 10:52:53 +00:00
|
|
|
if (id == "global-unread") {
|
|
|
|
global_unread = ctr;
|
|
|
|
updateTitle();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (id == "subscribed-feeds") {
|
|
|
|
feeds_found = ctr;
|
|
|
|
continue;
|
|
|
|
}
|
2010-11-15 13:23:42 +00:00
|
|
|
|
2012-08-24 19:23:03 +00:00
|
|
|
if (getFeedUnread(id, (kind == "cat")) != ctr ||
|
2012-10-11 08:46:33 +00:00
|
|
|
(kind == "cat")) {
|
2012-08-24 19:23:03 +00:00
|
|
|
}
|
2011-08-31 10:03:52 +00:00
|
|
|
|
2010-11-15 13:23:42 +00:00
|
|
|
setFeedUnread(id, (kind == "cat"), ctr);
|
2013-05-15 21:08:04 +00:00
|
|
|
setFeedValue(id, (kind == "cat"), 'auxcounter', auxctr);
|
2010-11-12 10:52:53 +00:00
|
|
|
|
2010-11-15 18:49:00 +00:00
|
|
|
if (kind != "cat") {
|
2010-11-24 16:33:44 +00:00
|
|
|
setFeedValue(id, false, 'error', error);
|
2010-11-15 18:49:00 +00:00
|
|
|
setFeedValue(id, false, 'updated', updated);
|
2010-11-16 06:49:00 +00:00
|
|
|
|
|
|
|
if (id > 0) {
|
|
|
|
if (has_img) {
|
2011-03-18 09:55:45 +00:00
|
|
|
setFeedIcon(id, false,
|
2010-11-16 06:49:00 +00:00
|
|
|
getInitParam("icons_url") + "/" + id + ".ico");
|
|
|
|
} else {
|
|
|
|
setFeedIcon(id, false, 'images/blank_icon.gif');
|
|
|
|
}
|
|
|
|
}
|
2010-11-12 10:52:53 +00:00
|
|
|
}
|
2010-11-15 18:49:00 +00:00
|
|
|
}
|
2011-03-18 09:55:45 +00:00
|
|
|
|
2010-11-12 10:52:53 +00:00
|
|
|
hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("parse_counters", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-17 09:51:30 +00:00
|
|
|
function getFeedUnread(feed, is_cat) {
|
2010-11-12 10:52:53 +00:00
|
|
|
try {
|
2010-11-18 13:00:00 +00:00
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
2011-03-18 09:55:45 +00:00
|
|
|
if (tree && tree.model)
|
2010-11-18 13:00:00 +00:00
|
|
|
return tree.model.getFeedUnread(feed, is_cat);
|
|
|
|
|
2010-11-12 10:52:53 +00:00
|
|
|
} catch (e) {
|
2010-11-15 18:49:00 +00:00
|
|
|
//
|
2010-11-12 10:52:53 +00:00
|
|
|
}
|
2010-11-15 18:49:00 +00:00
|
|
|
|
|
|
|
return -1;
|
2010-11-12 10:52:53 +00:00
|
|
|
}
|
|
|
|
|
2012-04-04 11:34:06 +00:00
|
|
|
function getFeedCategory(feed) {
|
|
|
|
try {
|
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
|
|
|
if (tree && tree.model)
|
|
|
|
return tree.getFeedCategory(feed);
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-11-12 10:52:53 +00:00
|
|
|
function hideOrShowFeeds(hide) {
|
2010-11-15 18:49:00 +00:00
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
2010-11-17 19:51:44 +00:00
|
|
|
if (tree)
|
|
|
|
return tree.hideRead(hide, getInitParam("hide_read_shows_special"));
|
2010-11-12 10:52:53 +00:00
|
|
|
}
|
|
|
|
|
2011-03-18 09:55:45 +00:00
|
|
|
function getFeedName(feed, is_cat) {
|
2010-11-18 13:00:00 +00:00
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
2011-03-18 09:55:45 +00:00
|
|
|
if (tree && tree.model)
|
2010-11-18 13:00:00 +00:00
|
|
|
return tree.model.getFeedValue(feed, is_cat, 'name');
|
2010-11-15 18:49:00 +00:00
|
|
|
}
|
2010-11-12 10:52:53 +00:00
|
|
|
|
2011-03-18 09:55:45 +00:00
|
|
|
function getFeedValue(feed, is_cat, key) {
|
2010-11-15 18:49:00 +00:00
|
|
|
try {
|
2010-11-18 13:00:00 +00:00
|
|
|
var tree = dijit.byId("feedTree");
|
2010-11-15 18:49:00 +00:00
|
|
|
|
2011-03-18 09:55:45 +00:00
|
|
|
if (tree && tree.model)
|
2010-11-18 13:00:00 +00:00
|
|
|
return tree.model.getFeedValue(feed, is_cat, key);
|
2011-03-18 09:55:45 +00:00
|
|
|
|
2010-11-15 18:49:00 +00:00
|
|
|
} catch (e) {
|
|
|
|
//
|
2010-11-12 10:52:53 +00:00
|
|
|
}
|
2010-11-15 18:49:00 +00:00
|
|
|
return '';
|
2010-11-12 10:52:53 +00:00
|
|
|
}
|
|
|
|
|
2010-11-15 13:23:42 +00:00
|
|
|
function setFeedUnread(feed, is_cat, unread) {
|
|
|
|
try {
|
2010-11-18 13:00:00 +00:00
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
2011-03-18 09:55:45 +00:00
|
|
|
if (tree && tree.model)
|
2010-11-18 13:00:00 +00:00
|
|
|
return tree.model.setFeedUnread(feed, is_cat, unread);
|
|
|
|
|
2010-11-15 18:49:00 +00:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("setFeedUnread", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function setFeedValue(feed, is_cat, key, value) {
|
|
|
|
try {
|
2010-11-18 13:00:00 +00:00
|
|
|
var tree = dijit.byId("feedTree");
|
2010-11-15 13:23:42 +00:00
|
|
|
|
2011-03-18 09:55:45 +00:00
|
|
|
if (tree && tree.model)
|
2010-11-18 13:00:00 +00:00
|
|
|
return tree.model.setFeedValue(feed, is_cat, key, value);
|
2009-02-04 06:51:31 +00:00
|
|
|
|
2010-11-15 13:23:42 +00:00
|
|
|
} catch (e) {
|
2010-11-18 13:00:00 +00:00
|
|
|
//
|
2010-11-15 18:49:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function selectFeed(feed, is_cat) {
|
|
|
|
try {
|
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
2010-11-18 13:00:00 +00:00
|
|
|
if (tree) return tree.selectFeed(feed, is_cat);
|
2010-11-15 18:49:00 +00:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("selectFeed", e);
|
2010-11-15 13:23:42 +00:00
|
|
|
}
|
|
|
|
}
|
2010-11-16 06:49:00 +00:00
|
|
|
|
|
|
|
function setFeedIcon(feed, is_cat, src) {
|
|
|
|
try {
|
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
2010-11-18 13:00:00 +00:00
|
|
|
if (tree) return tree.setFeedIcon(feed, is_cat, src);
|
2010-11-16 06:49:00 +00:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("setFeedIcon", e);
|
|
|
|
}
|
|
|
|
}
|
2010-11-16 09:23:06 +00:00
|
|
|
|
|
|
|
function setFeedExpandoIcon(feed, is_cat, src) {
|
|
|
|
try {
|
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
2010-11-18 13:00:00 +00:00
|
|
|
if (tree) return tree.setFeedExpandoIcon(feed, is_cat, src);
|
2010-11-16 09:23:06 +00:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("setFeedIcon", e);
|
|
|
|
}
|
2010-11-16 13:57:59 +00:00
|
|
|
return false;
|
2010-11-16 09:23:06 +00:00
|
|
|
}
|
2011-08-31 11:25:42 +00:00
|
|
|
|
|
|
|
function getNextUnreadFeed(feed, is_cat) {
|
|
|
|
try {
|
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
var nuf = tree.model.getNextUnreadFeed(feed, is_cat);
|
|
|
|
|
|
|
|
if (nuf)
|
|
|
|
return tree.model.store.getValue(nuf, 'bare_id');
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("getNextUnreadFeed", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-03 14:20:14 +00:00
|
|
|
function catchupCurrentFeed(mode) {
|
|
|
|
catchupFeed(getActiveFeedId(), activeFeedIsCat(), mode);
|
2012-03-29 11:03:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function catchupFeedInGroup(id) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var title = getFeedName(id);
|
|
|
|
|
|
|
|
var str = __("Mark all articles in %s as read?").replace("%s", title);
|
|
|
|
|
|
|
|
if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
|
|
|
|
return viewCurrentFeed('MarkAllReadGR:' + id);
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("catchupFeedInGroup", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-31 08:37:42 +00:00
|
|
|
function catchupFeed(feed, is_cat, mode) {
|
2011-11-11 11:28:11 +00:00
|
|
|
try {
|
2012-06-03 16:02:51 +00:00
|
|
|
if (is_cat == undefined) is_cat = false;
|
|
|
|
|
2013-03-31 08:37:42 +00:00
|
|
|
var str = false;
|
|
|
|
|
|
|
|
switch (mode) {
|
|
|
|
case "1day":
|
|
|
|
str = __("Mark all articles in %s older than 1 day as read?");
|
|
|
|
break;
|
|
|
|
case "1week":
|
|
|
|
str = __("Mark all articles in %s older than 1 week as read?");
|
|
|
|
break;
|
2013-05-14 10:27:28 +00:00
|
|
|
case "2week":
|
2013-03-31 08:37:42 +00:00
|
|
|
str = __("Mark all articles in %s older than 2 weeks as read?");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
str = __("Mark all articles in %s as read?");
|
|
|
|
}
|
|
|
|
|
2012-02-22 08:33:08 +00:00
|
|
|
var fn = getFeedName(feed, is_cat);
|
2011-11-11 11:35:29 +00:00
|
|
|
|
|
|
|
str = str.replace("%s", fn);
|
|
|
|
|
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
|
|
|
}
|
2011-11-11 11:28:11 +00:00
|
|
|
|
2011-12-12 18:46:25 +00:00
|
|
|
var catchup_query = "?op=rpc&method=catchupFeed&feed_id=" +
|
2013-03-31 08:37:42 +00:00
|
|
|
feed + "&is_cat=" + is_cat + "&mode=" + mode;
|
2012-06-03 16:02:51 +00:00
|
|
|
|
|
|
|
console.log(catchup_query);
|
2011-11-11 11:28:11 +00:00
|
|
|
|
|
|
|
notify_progress("Loading, please wait...", true);
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: catchup_query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
handle_rpc_json(transport);
|
2012-03-29 11:03:48 +00:00
|
|
|
|
|
|
|
var show_next_feed = getInitParam("on_catchup_show_next_feed") == "1";
|
|
|
|
|
|
|
|
if (show_next_feed) {
|
|
|
|
var nuf = getNextUnreadFeed(feed, is_cat);
|
|
|
|
|
|
|
|
if (nuf) {
|
2012-03-30 18:45:28 +00:00
|
|
|
viewfeed(nuf, '', is_cat);
|
2012-03-29 11:03:48 +00:00
|
|
|
}
|
2013-03-31 08:37:42 +00:00
|
|
|
} else {
|
|
|
|
if (feed == getActiveFeedId() && is_cat == activeFeedIsCat()) {
|
|
|
|
viewCurrentFeed();
|
|
|
|
}
|
2012-03-29 11:03:48 +00:00
|
|
|
}
|
|
|
|
|
2011-11-11 11:28:11 +00:00
|
|
|
notify("");
|
|
|
|
} });
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("catchupFeed", e);
|
|
|
|
}
|
|
|
|
}
|
2012-04-05 07:58:50 +00:00
|
|
|
|
|
|
|
function decrementFeedCounter(feed, is_cat) {
|
|
|
|
try {
|
|
|
|
var ctr = getFeedUnread(feed, is_cat);
|
|
|
|
|
|
|
|
if (ctr > 0) {
|
|
|
|
setFeedUnread(feed, is_cat, ctr - 1);
|
2013-02-01 09:09:43 +00:00
|
|
|
global_unread = global_unread - 1;
|
|
|
|
updateTitle();
|
2012-04-05 07:58:50 +00:00
|
|
|
|
|
|
|
if (!is_cat) {
|
|
|
|
var cat = parseInt(getFeedCategory(feed));
|
|
|
|
|
|
|
|
if (!isNaN(cat)) {
|
|
|
|
ctr = getFeedUnread(cat, true);
|
|
|
|
|
|
|
|
if (ctr > 0) {
|
|
|
|
setFeedUnread(cat, true, ctr - 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("decrement_feed_counter", e);
|
|
|
|
}
|
|
|
|
}
|
2013-03-26 12:31:36 +00:00
|
|
|
|
|
|
|
|