unify counter reply object handling when called from auto refetch and manually
This commit is contained in:
parent
e3612080e8
commit
5854573ad3
57
functions.js
57
functions.js
|
@ -613,10 +613,59 @@ function parse_counters(reply, scheduled_call) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function parse_counters_reply(xmlhttp) {
|
||||||
|
|
||||||
|
if (!xmlhttp.responseXML) {
|
||||||
|
notify("refetch_callback: backend did not return valid XML", true, true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var reply = xmlhttp.responseXML.firstChild;
|
||||||
|
|
||||||
|
if (!reply) {
|
||||||
|
notify("refetch_callback: backend did not return expected XML object", true, true);
|
||||||
|
updateTitle("");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var error_code = false;
|
||||||
|
var error_msg = false;
|
||||||
|
|
||||||
|
if (reply.firstChild) {
|
||||||
|
error_code = reply.firstChild.getAttribute("error-code");
|
||||||
|
error_msg = reply.firstChild.getAttribute("error-msg");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!error_code) {
|
||||||
|
error_code = reply.getAttribute("error-code");
|
||||||
|
error_msg = reply.getAttribute("error-msg");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (error_code && error_code != 0) {
|
||||||
|
debug("refetch_callback: got error code " + error_code);
|
||||||
|
return fatalError(error_code, error_msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
var counters = reply.firstChild;
|
||||||
|
|
||||||
|
parse_counters(counters, true);
|
||||||
|
|
||||||
|
var runtime_info = counters.nextSibling;
|
||||||
|
|
||||||
|
parse_runtime_info(runtime_info);
|
||||||
|
|
||||||
|
if (getInitParam("feeds_sort_by_unread") == 1) {
|
||||||
|
resort_feedlist();
|
||||||
|
}
|
||||||
|
|
||||||
|
hideOrShowFeeds(document, getInitParam("hide_read_feeds") == 1);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
function all_counters_callback() {
|
function all_counters_callback() {
|
||||||
if (xmlhttp_rpc.readyState == 4) {
|
if (xmlhttp_rpc.readyState == 4) {
|
||||||
try {
|
try {
|
||||||
if (!xmlhttp_rpc.responseXML || !xmlhttp_rpc.responseXML.firstChild) {
|
/* if (!xmlhttp_rpc.responseXML || !xmlhttp_rpc.responseXML.firstChild) {
|
||||||
debug("[all_counters_callback] backend did not return valid XML");
|
debug("[all_counters_callback] backend did not return valid XML");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -639,7 +688,11 @@ function all_counters_callback() {
|
||||||
resort_feedlist();
|
resort_feedlist();
|
||||||
}
|
}
|
||||||
|
|
||||||
hideOrShowFeeds(document, getInitParam("hide_read_feeds") == 1);
|
hideOrShowFeeds(document, getInitParam("hide_read_feeds") == 1); */
|
||||||
|
|
||||||
|
debug("in all_counters_callback");
|
||||||
|
|
||||||
|
parse_counters_reply(xmlhttp_rpc);
|
||||||
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
exception_error("all_counters_callback", e);
|
exception_error("all_counters_callback", e);
|
||||||
|
|
39
tt-rss.js
39
tt-rss.js
|
@ -62,44 +62,7 @@ function refetch_callback() {
|
||||||
|
|
||||||
last_refetch = date.getTime() / 1000;
|
last_refetch = date.getTime() / 1000;
|
||||||
|
|
||||||
if (!xmlhttp_ctr.responseXML) {
|
parse_counters_reply(xmlhttp_ctr);
|
||||||
notify("refetch_callback: backend did not return valid XML", true, true);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var reply = xmlhttp_ctr.responseXML.firstChild;
|
|
||||||
|
|
||||||
if (!reply) {
|
|
||||||
notify("refetch_callback: backend did not return expected XML object", true, true);
|
|
||||||
updateTitle("");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var error_code = false;
|
|
||||||
var error_msg = false;
|
|
||||||
|
|
||||||
if (reply.firstChild) {
|
|
||||||
error_code = reply.firstChild.getAttribute("error-code");
|
|
||||||
error_msg = reply.firstChild.getAttribute("error-msg");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!error_code) {
|
|
||||||
error_code = reply.getAttribute("error-code");
|
|
||||||
error_msg = reply.getAttribute("error-msg");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (error_code && error_code != 0) {
|
|
||||||
debug("refetch_callback: got error code " + error_code);
|
|
||||||
return fatalError(error_code, error_msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
var counters = reply.firstChild;
|
|
||||||
|
|
||||||
parse_counters(counters, true);
|
|
||||||
|
|
||||||
var runtime_info = counters.nextSibling;
|
|
||||||
|
|
||||||
parse_runtime_info(runtime_info);
|
|
||||||
|
|
||||||
debug("refetch_callback: done");
|
debug("refetch_callback: done");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue