2018-11-29 18:03:55 +00:00
|
|
|
/* global dijit, __ */
|
|
|
|
|
2018-11-29 19:21:09 +00:00
|
|
|
let init_params = {};
|
|
|
|
let _label_base_index = -1024;
|
|
|
|
let loading_progress = 0;
|
|
|
|
let notify_hide_timerid = false;
|
2011-12-26 08:02:52 +00:00
|
|
|
|
|
|
|
Ajax.Base.prototype.initialize = Ajax.Base.prototype.initialize.wrap(
|
|
|
|
function (callOriginal, options) {
|
|
|
|
|
|
|
|
if (getInitParam("csrf_token") != undefined) {
|
|
|
|
Object.extend(options, options || { });
|
|
|
|
|
|
|
|
if (Object.isString(options.parameters))
|
|
|
|
options.parameters = options.parameters.toQueryParams();
|
|
|
|
else if (Object.isHash(options.parameters))
|
|
|
|
options.parameters = options.parameters.toObject();
|
|
|
|
|
|
|
|
options.parameters["csrf_token"] = getInitParam("csrf_token");
|
|
|
|
}
|
|
|
|
|
|
|
|
return callOriginal(options);
|
|
|
|
}
|
|
|
|
);
|
2008-05-15 04:21:00 +00:00
|
|
|
|
2018-11-29 19:21:09 +00:00
|
|
|
/* xhr shorthand helpers */
|
|
|
|
|
|
|
|
function xhrPost(url, params, complete) {
|
|
|
|
console.log("xhrPost:", params);
|
2018-11-30 12:07:44 +00:00
|
|
|
return new Ajax.Request(url, {
|
|
|
|
parameters: params,
|
|
|
|
onComplete: complete
|
|
|
|
});
|
2018-11-29 19:21:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function xhrJson(url, params, complete) {
|
2018-11-30 12:07:44 +00:00
|
|
|
return xhrPost(url, params, (reply) => {
|
|
|
|
try {
|
|
|
|
const obj = JSON.parse(reply.responseText);
|
|
|
|
complete(obj);
|
|
|
|
} catch (e) {
|
|
|
|
console.error("xhrJson", e, reply);
|
|
|
|
complete(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
2018-11-29 19:21:09 +00:00
|
|
|
}
|
|
|
|
|
2007-05-15 11:41:39 +00:00
|
|
|
/* add method to remove element from array */
|
|
|
|
Array.prototype.remove = function(s) {
|
2018-11-29 17:07:23 +00:00
|
|
|
for (let i=0; i < this.length; i++) {
|
2007-05-15 11:41:39 +00:00
|
|
|
if (s == this[i]) this.splice(i, 1);
|
|
|
|
}
|
2011-12-10 17:26:59 +00:00
|
|
|
};
|
2007-05-15 11:41:39 +00:00
|
|
|
|
2018-12-02 07:16:25 +00:00
|
|
|
const ListUtils = {
|
|
|
|
onChecked: function(elem) {
|
|
|
|
// account for dojo checkboxes
|
|
|
|
elem = elem.domNode || elem;
|
|
|
|
|
|
|
|
elem.up("li").toggleClassName("Selected");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
const Utils = {
|
2018-12-01 14:21:26 +00:00
|
|
|
_rpc_seq: 0,
|
2018-12-01 19:07:00 +00:00
|
|
|
hotkey_prefix: 0,
|
|
|
|
hotkey_prefix_pressed: false,
|
|
|
|
hotkey_prefix_timeout: 0,
|
2018-12-01 14:21:26 +00:00
|
|
|
next_seq: function() {
|
|
|
|
this._rpc_seq += 1;
|
|
|
|
return this._rpc_seq;
|
|
|
|
},
|
|
|
|
get_seq: function() {
|
|
|
|
return this._rpc_seq;
|
|
|
|
},
|
2018-12-01 15:25:32 +00:00
|
|
|
setLoadingProgress: function(p) {
|
|
|
|
loading_progress += p;
|
|
|
|
|
|
|
|
if (dijit.byId("loading_bar"))
|
|
|
|
dijit.byId("loading_bar").update({progress: loading_progress});
|
|
|
|
|
|
|
|
if (loading_progress >= 90)
|
|
|
|
Element.hide("overlay");
|
|
|
|
|
|
|
|
},
|
2018-12-01 19:07:00 +00:00
|
|
|
keyeventToAction: function(event) {
|
2018-12-01 15:25:32 +00:00
|
|
|
|
|
|
|
const hotkeys_map = getInitParam("hotkeys");
|
2018-12-01 19:07:00 +00:00
|
|
|
const keycode = event.which;
|
2018-12-01 15:25:32 +00:00
|
|
|
const keychar = String.fromCharCode(keycode).toLowerCase();
|
|
|
|
|
|
|
|
if (keycode == 27) { // escape and drop prefix
|
2018-12-01 19:07:00 +00:00
|
|
|
this.hotkey_prefix = false;
|
2018-12-01 15:25:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (keycode == 16 || keycode == 17) return; // ignore lone shift / ctrl
|
|
|
|
|
2018-12-01 19:07:00 +00:00
|
|
|
if (!this.hotkey_prefix && hotkeys_map[0].indexOf(keychar) != -1) {
|
2018-12-01 15:25:32 +00:00
|
|
|
|
2018-12-01 19:07:00 +00:00
|
|
|
this.hotkey_prefix = keychar;
|
2018-12-01 15:25:32 +00:00
|
|
|
$("cmdline").innerHTML = keychar;
|
|
|
|
Element.show("cmdline");
|
|
|
|
|
2018-12-01 19:07:00 +00:00
|
|
|
window.clearTimeout(this.hotkey_prefix_timeout);
|
|
|
|
this.hotkey_prefix_timeout = window.setTimeout(() => {
|
|
|
|
this.hotkey_prefix = false;
|
|
|
|
Element.hide("cmdline");
|
|
|
|
}, 3 * 1000);
|
|
|
|
|
|
|
|
event.stopPropagation();
|
2018-12-01 15:25:32 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Element.hide("cmdline");
|
|
|
|
|
|
|
|
let hotkey_name = keychar.search(/[a-zA-Z0-9]/) != -1 ? keychar : "(" + keycode + ")";
|
|
|
|
|
|
|
|
// ensure ^*char notation
|
2018-12-01 19:07:00 +00:00
|
|
|
if (event.shiftKey) hotkey_name = "*" + hotkey_name;
|
|
|
|
if (event.ctrlKey) hotkey_name = "^" + hotkey_name;
|
|
|
|
if (event.altKey) hotkey_name = "+" + hotkey_name;
|
|
|
|
if (event.metaKey) hotkey_name = "%" + hotkey_name;
|
2018-12-01 15:25:32 +00:00
|
|
|
|
2018-12-01 19:07:00 +00:00
|
|
|
const hotkey_full = this.hotkey_prefix ? this.hotkey_prefix + " " + hotkey_name : hotkey_name;
|
|
|
|
this.hotkey_prefix = false;
|
2018-12-01 15:25:32 +00:00
|
|
|
|
|
|
|
let action_name = false;
|
|
|
|
|
|
|
|
for (const sequence in hotkeys_map[1]) {
|
2018-12-02 04:31:10 +00:00
|
|
|
if (hotkeys_map[1].hasOwnProperty(sequence)) {
|
|
|
|
if (sequence == hotkey_full) {
|
|
|
|
action_name = hotkeys_map[1][sequence];
|
|
|
|
break;
|
|
|
|
}
|
2018-12-01 15:25:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log('keyeventToAction', hotkey_full, '=>', action_name);
|
|
|
|
|
|
|
|
return action_name;
|
|
|
|
},
|
2018-12-01 14:05:28 +00:00
|
|
|
cleanupMemory: function(root) {
|
|
|
|
const dijits = dojo.query("[widgetid]", dijit.byId(root).domNode).map(dijit.byNode);
|
|
|
|
|
|
|
|
dijits.each(function (d) {
|
|
|
|
dojo.destroy(d.domNode);
|
|
|
|
});
|
|
|
|
|
|
|
|
$$("#" + root + " *").each(function (i) {
|
|
|
|
i.parentNode ? i.parentNode.removeChild(i) : true;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
helpDialog: function(topic) {
|
|
|
|
const query = "backend.php?op=backend&method=help&topic=" + param_escape(topic);
|
|
|
|
|
|
|
|
if (dijit.byId("helpDlg"))
|
|
|
|
dijit.byId("helpDlg").destroyRecursive();
|
|
|
|
|
|
|
|
const dialog = new dijit.Dialog({
|
|
|
|
id: "helpDlg",
|
|
|
|
title: __("Help"),
|
|
|
|
style: "width: 600px",
|
|
|
|
href: query,
|
|
|
|
});
|
|
|
|
|
|
|
|
dialog.show();
|
|
|
|
},
|
|
|
|
displayDlg: function(title, id, param, callback) {
|
|
|
|
notify_progress("Loading, please wait...", true);
|
|
|
|
|
|
|
|
const query = {op: "dlg", method: id, param: param};
|
|
|
|
|
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
try {
|
|
|
|
const content = transport.responseText;
|
|
|
|
|
|
|
|
let dialog = dijit.byId("infoBox");
|
|
|
|
|
|
|
|
if (!dialog) {
|
|
|
|
dialog = new dijit.Dialog({
|
|
|
|
title: title,
|
|
|
|
id: 'infoBox',
|
|
|
|
style: "width: 600px",
|
|
|
|
onCancel: function () {
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
onExecute: function () {
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
onClose: function () {
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
content: content
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
dialog.attr('title', title);
|
|
|
|
dialog.attr('content', content);
|
|
|
|
}
|
|
|
|
|
|
|
|
dialog.show();
|
|
|
|
|
|
|
|
notify("");
|
|
|
|
|
|
|
|
if (callback) callback(transport);
|
|
|
|
} catch (e) {
|
|
|
|
exception_error(e);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
2018-12-01 14:21:26 +00:00
|
|
|
handleRpcJson: function(transport) {
|
|
|
|
|
|
|
|
const netalert_dijit = dijit.byId("net-alert");
|
|
|
|
let netalert = false;
|
|
|
|
|
|
|
|
if (netalert_dijit) netalert = netalert_dijit.domNode;
|
|
|
|
|
|
|
|
try {
|
|
|
|
const reply = JSON.parse(transport.responseText);
|
|
|
|
|
|
|
|
if (reply) {
|
|
|
|
|
|
|
|
const error = reply['error'];
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
const code = error['code'];
|
|
|
|
const msg = error['msg'];
|
|
|
|
|
|
|
|
console.warn("[handleRpcJson] received fatal error " + code + "/" + msg);
|
|
|
|
|
|
|
|
if (code != 0) {
|
|
|
|
fatalError(code, msg);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const seq = reply['seq'];
|
|
|
|
|
|
|
|
if (seq && this.get_seq() != seq) {
|
|
|
|
console.log("[handleRpcJson] sequence mismatch: " + seq +
|
|
|
|
" (want: " + this.get_seq() + ")");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const message = reply['message'];
|
|
|
|
|
|
|
|
if (message == "UPDATE_COUNTERS") {
|
|
|
|
console.log("need to refresh counters...");
|
|
|
|
setInitParam("last_article_id", -1);
|
|
|
|
Feeds.requestCounters(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
const counters = reply['counters'];
|
|
|
|
|
|
|
|
if (counters)
|
|
|
|
Feeds.parseCounters(counters);
|
|
|
|
|
|
|
|
const runtime_info = reply['runtime-info'];
|
|
|
|
|
|
|
|
if (runtime_info)
|
|
|
|
Utils.parseRuntimeInfo(runtime_info);
|
|
|
|
|
|
|
|
if (netalert) netalert.hide();
|
|
|
|
|
|
|
|
return reply;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (netalert)
|
|
|
|
netalert.show();
|
|
|
|
else
|
|
|
|
notify_error("Communication problem with server.");
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
if (netalert)
|
|
|
|
netalert.show();
|
|
|
|
else
|
|
|
|
notify_error("Communication problem with server.");
|
|
|
|
|
|
|
|
console.error(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
parseRuntimeInfo: function(data) {
|
|
|
|
|
|
|
|
//console.log("parsing runtime info...");
|
|
|
|
|
|
|
|
for (const k in data) {
|
2018-12-02 04:31:10 +00:00
|
|
|
if (data.hasOwnProperty(k)) {
|
|
|
|
const v = data[k];
|
|
|
|
|
|
|
|
console.log("RI:", k, "=>", v);
|
2018-12-01 14:21:26 +00:00
|
|
|
|
2018-12-02 04:31:10 +00:00
|
|
|
if (k == "dep_ts" && parseInt(getInitParam("dep_ts")) > 0) {
|
|
|
|
if (parseInt(getInitParam("dep_ts")) < parseInt(v) && getInitParam("reload_on_ts_change")) {
|
|
|
|
window.location.reload();
|
|
|
|
}
|
2018-12-01 14:21:26 +00:00
|
|
|
}
|
|
|
|
|
2018-12-02 04:31:10 +00:00
|
|
|
if (k == "daemon_is_running" && v != 1) {
|
|
|
|
notify_error("<span onclick=\"Utils.explainError(1)\">Update daemon is not running.</span>", true);
|
|
|
|
return;
|
|
|
|
}
|
2018-12-01 14:21:26 +00:00
|
|
|
|
2018-12-02 04:31:10 +00:00
|
|
|
if (k == "update_result") {
|
|
|
|
const updatesIcon = dijit.byId("updatesIcon").domNode;
|
2018-12-01 14:21:26 +00:00
|
|
|
|
2018-12-02 04:31:10 +00:00
|
|
|
if (v) {
|
|
|
|
Element.show(updatesIcon);
|
|
|
|
} else {
|
|
|
|
Element.hide(updatesIcon);
|
|
|
|
}
|
2018-12-01 14:21:26 +00:00
|
|
|
}
|
|
|
|
|
2018-12-02 04:31:10 +00:00
|
|
|
if (k == "daemon_stamp_ok" && v != 1) {
|
|
|
|
notify_error("<span onclick=\"Utils.explainError(3)\">Update daemon is not updating feeds.</span>", true);
|
|
|
|
return;
|
|
|
|
}
|
2018-12-01 14:21:26 +00:00
|
|
|
|
2018-12-02 04:31:10 +00:00
|
|
|
if (k == "max_feed_id" || k == "num_feeds") {
|
|
|
|
if (init_params[k] != v) {
|
|
|
|
console.log("feed count changed, need to reload feedlist.");
|
|
|
|
Feeds.reload();
|
|
|
|
}
|
2018-12-01 14:21:26 +00:00
|
|
|
}
|
|
|
|
|
2018-12-02 04:31:10 +00:00
|
|
|
init_params[k] = v;
|
|
|
|
}
|
2018-12-01 14:21:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PluginHost.run(PluginHost.HOOK_RUNTIME_INFO_LOADED, data);
|
|
|
|
},
|
2018-12-01 14:42:21 +00:00
|
|
|
backendSanityCallback: function (transport) {
|
|
|
|
|
|
|
|
const reply = JSON.parse(transport.responseText);
|
|
|
|
|
|
|
|
if (!reply) {
|
|
|
|
fatalError(3, "Sanity check: invalid RPC reply", transport.responseText);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const error_code = reply['error']['code'];
|
|
|
|
|
|
|
|
if (error_code && error_code != 0) {
|
|
|
|
return fatalError(error_code, reply['error']['message']);
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log("sanity check ok");
|
|
|
|
|
|
|
|
const params = reply['init-params'];
|
|
|
|
|
|
|
|
if (params) {
|
|
|
|
console.log('reading init-params...');
|
|
|
|
|
|
|
|
for (const k in params) {
|
|
|
|
if (params.hasOwnProperty(k)) {
|
|
|
|
switch (k) {
|
|
|
|
case "label_base_index":
|
2018-12-02 04:31:10 +00:00
|
|
|
_label_base_index = parseInt(params[k]);
|
2018-12-01 14:42:21 +00:00
|
|
|
break;
|
|
|
|
case "hotkeys":
|
|
|
|
// filter mnemonic definitions (used for help panel) from hotkeys map
|
|
|
|
// i.e. *(191)|Ctrl-/ -> *(191)
|
|
|
|
|
|
|
|
const tmp = [];
|
|
|
|
for (const sequence in params[k][1]) {
|
2018-12-02 04:31:10 +00:00
|
|
|
if (params[k][1].hasOwnProperty(sequence)) {
|
|
|
|
const filtered = sequence.replace(/\|.*$/, "");
|
|
|
|
tmp[filtered] = params[k][1][sequence];
|
|
|
|
}
|
2018-12-01 14:42:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
params[k][1] = tmp;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log("IP:", k, "=>", params[k]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
init_params = params;
|
|
|
|
|
|
|
|
// PluginHost might not be available on non-index pages
|
|
|
|
window.PluginHost && PluginHost.run(PluginHost.HOOK_PARAMS_LOADED, init_params);
|
|
|
|
}
|
|
|
|
|
|
|
|
App.initSecondStage();
|
2018-12-01 19:39:29 +00:00
|
|
|
},
|
|
|
|
explainError: function(code) {
|
|
|
|
return this.displayDlg(__("Error explained"), "explainError", code);
|
|
|
|
},
|
2018-12-01 14:05:28 +00:00
|
|
|
};
|
|
|
|
|
2018-12-01 15:25:32 +00:00
|
|
|
const CommonDialogs = {
|
|
|
|
quickAddFeed: function() {
|
|
|
|
const query = "backend.php?op=feeds&method=quickAddFeed";
|
|
|
|
|
|
|
|
// overlapping widgets
|
|
|
|
if (dijit.byId("batchSubDlg")) dijit.byId("batchSubDlg").destroyRecursive();
|
|
|
|
if (dijit.byId("feedAddDlg")) dijit.byId("feedAddDlg").destroyRecursive();
|
|
|
|
|
|
|
|
const dialog = new dijit.Dialog({
|
|
|
|
id: "feedAddDlg",
|
|
|
|
title: __("Subscribe to Feed"),
|
|
|
|
style: "width: 600px",
|
|
|
|
show_error: function (msg) {
|
|
|
|
const elem = $("fadd_error_message");
|
|
|
|
|
|
|
|
elem.innerHTML = msg;
|
|
|
|
|
|
|
|
if (!Element.visible(elem))
|
|
|
|
new Effect.Appear(elem);
|
|
|
|
|
|
|
|
},
|
|
|
|
execute: function () {
|
|
|
|
if (this.validate()) {
|
|
|
|
console.log(dojo.objectToQuery(this.attr('value')));
|
|
|
|
|
|
|
|
const feed_url = this.attr('value').feed;
|
|
|
|
|
|
|
|
Element.show("feed_add_spinner");
|
|
|
|
Element.hide("fadd_error_message");
|
|
|
|
|
|
|
|
xhrPost("backend.php", this.attr('value'), (transport) => {
|
|
|
|
try {
|
|
|
|
|
|
|
|
try {
|
|
|
|
var reply = JSON.parse(transport.responseText);
|
|
|
|
} catch (e) {
|
|
|
|
Element.hide("feed_add_spinner");
|
|
|
|
alert(__("Failed to parse output. This can indicate server timeout and/or network issues. Backend output was logged to browser console."));
|
|
|
|
console.log('quickAddFeed, backend returned:' + transport.responseText);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const rc = reply['result'];
|
|
|
|
|
|
|
|
notify('');
|
|
|
|
Element.hide("feed_add_spinner");
|
|
|
|
|
|
|
|
console.log(rc);
|
|
|
|
|
|
|
|
switch (parseInt(rc['code'])) {
|
|
|
|
case 1:
|
|
|
|
dialog.hide();
|
|
|
|
notify_info(__("Subscribed to %s").replace("%s", feed_url));
|
|
|
|
|
|
|
|
Feeds.reload();
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
dialog.show_error(__("Specified URL seems to be invalid."));
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
dialog.show_error(__("Specified URL doesn't seem to contain any feeds."));
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
const feeds = rc['feeds'];
|
|
|
|
|
|
|
|
Element.show("fadd_multiple_notify");
|
|
|
|
|
|
|
|
const select = dijit.byId("feedDlg_feedContainerSelect");
|
|
|
|
|
|
|
|
while (select.getOptions().length > 0)
|
|
|
|
select.removeOption(0);
|
|
|
|
|
|
|
|
select.addOption({value: '', label: __("Expand to select feed")});
|
|
|
|
|
|
|
|
let count = 0;
|
|
|
|
for (const feedUrl in feeds) {
|
2018-12-02 04:31:10 +00:00
|
|
|
if (feeds.hasOwnProperty(feedUrl)) {
|
|
|
|
select.addOption({value: feedUrl, label: feeds[feedUrl]});
|
|
|
|
count++;
|
|
|
|
}
|
2018-12-01 15:25:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Effect.Appear('feedDlg_feedsContainer', {duration: 0.5});
|
|
|
|
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
dialog.show_error(__("Couldn't download the specified URL: %s").replace("%s", rc['message']));
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
dialog.show_error(__("XML validation failed: %s").replace("%s", rc['message']));
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
dialog.show_error(__("You are already subscribed to this feed."));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
console.error(transport.responseText);
|
|
|
|
exception_error(e);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
href: query
|
|
|
|
});
|
|
|
|
|
|
|
|
dialog.show();
|
|
|
|
},
|
|
|
|
showFeedsWithErrors: function() {
|
|
|
|
const query = {op: "pref-feeds", method: "feedsWithErrors"};
|
|
|
|
|
|
|
|
if (dijit.byId("errorFeedsDlg"))
|
|
|
|
dijit.byId("errorFeedsDlg").destroyRecursive();
|
|
|
|
|
|
|
|
const dialog = new dijit.Dialog({
|
|
|
|
id: "errorFeedsDlg",
|
|
|
|
title: __("Feeds with update errors"),
|
|
|
|
style: "width: 600px",
|
|
|
|
getSelectedFeeds: function () {
|
|
|
|
return getSelectedTableRowIds("prefErrorFeedList");
|
|
|
|
},
|
|
|
|
removeSelected: function () {
|
|
|
|
const sel_rows = this.getSelectedFeeds();
|
|
|
|
|
|
|
|
if (sel_rows.length > 0) {
|
|
|
|
if (confirm(__("Remove selected feeds?"))) {
|
|
|
|
notify_progress("Removing selected feeds...", true);
|
|
|
|
|
|
|
|
const query = {
|
|
|
|
op: "pref-feeds", method: "remove",
|
|
|
|
ids: sel_rows.toString()
|
|
|
|
};
|
|
|
|
|
|
|
|
xhrPost("backend.php", query, () => {
|
|
|
|
notify('');
|
|
|
|
dialog.hide();
|
|
|
|
Feeds.reload();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
alert(__("No feeds are selected."));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
execute: function () {
|
|
|
|
if (this.validate()) {
|
|
|
|
//
|
|
|
|
}
|
|
|
|
},
|
|
|
|
href: "backend.php?" + dojo.objectToQuery(query)
|
|
|
|
});
|
|
|
|
|
|
|
|
dialog.show();
|
|
|
|
},
|
|
|
|
feedBrowser: function() {
|
|
|
|
const query = {op: "feeds", method: "feedBrowser"};
|
|
|
|
|
|
|
|
if (dijit.byId("feedAddDlg"))
|
|
|
|
dijit.byId("feedAddDlg").hide();
|
|
|
|
|
|
|
|
if (dijit.byId("feedBrowserDlg"))
|
|
|
|
dijit.byId("feedBrowserDlg").destroyRecursive();
|
|
|
|
|
|
|
|
// noinspection JSUnusedGlobalSymbols
|
|
|
|
const dialog = new dijit.Dialog({
|
|
|
|
id: "feedBrowserDlg",
|
|
|
|
title: __("More Feeds"),
|
|
|
|
style: "width: 600px",
|
|
|
|
getSelectedFeedIds: function () {
|
|
|
|
const list = $$("#browseFeedList li[id*=FBROW]");
|
|
|
|
const selected = [];
|
|
|
|
|
|
|
|
list.each(function (child) {
|
|
|
|
const id = child.id.replace("FBROW-", "");
|
|
|
|
|
|
|
|
if (child.hasClassName('Selected')) {
|
|
|
|
selected.push(id);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return selected;
|
|
|
|
},
|
|
|
|
getSelectedFeeds: function () {
|
|
|
|
const list = $$("#browseFeedList li.Selected");
|
|
|
|
const selected = [];
|
|
|
|
|
|
|
|
list.each(function (child) {
|
|
|
|
const title = child.getElementsBySelector("span.fb_feedTitle")[0].innerHTML;
|
|
|
|
const url = child.getElementsBySelector("a.fb_feedUrl")[0].href;
|
|
|
|
|
|
|
|
selected.push([title, url]);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
return selected;
|
|
|
|
},
|
|
|
|
|
|
|
|
subscribe: function () {
|
|
|
|
const mode = this.attr('value').mode;
|
|
|
|
let selected = [];
|
|
|
|
|
|
|
|
if (mode == "1")
|
|
|
|
selected = this.getSelectedFeeds();
|
|
|
|
else
|
|
|
|
selected = this.getSelectedFeedIds();
|
|
|
|
|
|
|
|
if (selected.length > 0) {
|
|
|
|
dijit.byId("feedBrowserDlg").hide();
|
|
|
|
|
|
|
|
notify_progress("Loading, please wait...", true);
|
|
|
|
|
|
|
|
const query = {
|
|
|
|
op: "rpc", method: "massSubscribe",
|
|
|
|
payload: JSON.stringify(selected), mode: mode
|
|
|
|
};
|
|
|
|
|
|
|
|
xhrPost("backend.php", query, () => {
|
|
|
|
notify('');
|
|
|
|
Feeds.reload();
|
|
|
|
});
|
|
|
|
|
|
|
|
} else {
|
|
|
|
alert(__("No feeds are selected."));
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
update: function () {
|
|
|
|
Element.show('feed_browser_spinner');
|
|
|
|
|
|
|
|
xhrPost("backend.php", dialog.attr("value"), (transport) => {
|
|
|
|
notify('');
|
|
|
|
|
|
|
|
Element.hide('feed_browser_spinner');
|
|
|
|
|
|
|
|
const reply = JSON.parse(transport.responseText);
|
|
|
|
const mode = reply['mode'];
|
|
|
|
|
|
|
|
if ($("browseFeedList") && reply['content']) {
|
|
|
|
$("browseFeedList").innerHTML = reply['content'];
|
|
|
|
}
|
|
|
|
|
|
|
|
dojo.parser.parse("browseFeedList");
|
|
|
|
|
|
|
|
if (mode == 2) {
|
|
|
|
Element.show(dijit.byId('feed_archive_remove').domNode);
|
|
|
|
} else {
|
|
|
|
Element.hide(dijit.byId('feed_archive_remove').domNode);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
removeFromArchive: function () {
|
|
|
|
const selected = this.getSelectedFeedIds();
|
|
|
|
|
|
|
|
if (selected.length > 0) {
|
|
|
|
if (confirm(__("Remove selected feeds from the archive? Feeds with stored articles will not be removed."))) {
|
|
|
|
Element.show('feed_browser_spinner');
|
|
|
|
|
|
|
|
const query = {op: "rpc", method: "remarchive", ids: selected.toString()};
|
|
|
|
|
|
|
|
xhrPost("backend.php", query, () => {
|
|
|
|
dialog.update();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
execute: function () {
|
|
|
|
if (this.validate()) {
|
|
|
|
this.subscribe();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
href: "backend.php?" + dojo.objectToQuery(query)
|
|
|
|
});
|
|
|
|
|
|
|
|
dialog.show();
|
2018-12-01 19:19:20 +00:00
|
|
|
},
|
|
|
|
addLabel: function(select, callback) {
|
|
|
|
const caption = prompt(__("Please enter label caption:"), "");
|
|
|
|
|
|
|
|
if (caption != undefined && caption.trim().length > 0) {
|
|
|
|
|
|
|
|
const query = {op: "pref-labels", method: "add", caption: caption.trim()};
|
|
|
|
|
|
|
|
if (select)
|
|
|
|
Object.extend(query, {output: "select"});
|
|
|
|
|
|
|
|
notify_progress("Loading, please wait...", true);
|
|
|
|
|
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
if (callback) {
|
|
|
|
callback(transport);
|
|
|
|
} else if (App.isPrefs()) {
|
|
|
|
updateLabelList();
|
|
|
|
} else {
|
|
|
|
Feeds.reload();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2018-12-01 19:39:29 +00:00
|
|
|
},
|
|
|
|
unsubscribeFeed: function(feed_id, title) {
|
|
|
|
|
|
|
|
const msg = __("Unsubscribe from %s?").replace("%s", title);
|
|
|
|
|
|
|
|
if (title == undefined || confirm(msg)) {
|
|
|
|
notify_progress("Removing feed...");
|
|
|
|
|
|
|
|
const query = {op: "pref-feeds", quiet: 1, method: "remove", ids: feed_id};
|
|
|
|
|
2018-12-02 04:31:10 +00:00
|
|
|
xhrPost("backend.php", query, () => {
|
2018-12-01 19:39:29 +00:00
|
|
|
if (dijit.byId("feedEditDlg")) dijit.byId("feedEditDlg").hide();
|
|
|
|
|
|
|
|
if (App.isPrefs()) {
|
|
|
|
Feeds.reload();
|
|
|
|
} else {
|
2018-12-02 05:57:22 +00:00
|
|
|
if (feed_id == Feeds.getActive())
|
2018-12-01 19:39:29 +00:00
|
|
|
setTimeout(() => {
|
2018-12-02 05:57:22 +00:00
|
|
|
Feeds.open({feed: -5})
|
2018-12-01 19:39:29 +00:00
|
|
|
},
|
|
|
|
100);
|
|
|
|
|
|
|
|
if (feed_id < 0) Feeds.reload();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
editFeed: function (feed) {
|
|
|
|
if (feed <= 0)
|
|
|
|
return alert(__("You can't edit this kind of feed."));
|
|
|
|
|
|
|
|
const query = {op: "pref-feeds", method: "editfeed", id: feed};
|
|
|
|
|
|
|
|
console.log("editFeed", query);
|
|
|
|
|
|
|
|
if (dijit.byId("filterEditDlg"))
|
|
|
|
dijit.byId("filterEditDlg").destroyRecursive();
|
|
|
|
|
|
|
|
if (dijit.byId("feedEditDlg"))
|
|
|
|
dijit.byId("feedEditDlg").destroyRecursive();
|
|
|
|
|
|
|
|
const dialog = new dijit.Dialog({
|
|
|
|
id: "feedEditDlg",
|
|
|
|
title: __("Edit Feed"),
|
|
|
|
style: "width: 600px",
|
|
|
|
execute: function () {
|
|
|
|
if (this.validate()) {
|
|
|
|
notify_progress("Saving data...", true);
|
|
|
|
|
|
|
|
xhrPost("backend.php", dialog.attr('value'), () => {
|
|
|
|
dialog.hide();
|
|
|
|
notify('');
|
|
|
|
Feeds.reload();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
href: "backend.php?" + dojo.objectToQuery(query)
|
|
|
|
});
|
|
|
|
|
|
|
|
dialog.show();
|
|
|
|
},
|
|
|
|
genUrlChangeKey: function(feed, is_cat) {
|
|
|
|
if (confirm(__("Generate new syndication address for this feed?"))) {
|
|
|
|
|
|
|
|
notify_progress("Trying to change address...", true);
|
|
|
|
|
|
|
|
const query = {op: "pref-feeds", method: "regenFeedKey", id: feed, is_cat: is_cat};
|
|
|
|
|
|
|
|
xhrJson("backend.php", query, (reply) => {
|
|
|
|
const new_link = reply.link;
|
|
|
|
const e = $('gen_feed_url');
|
|
|
|
|
|
|
|
if (new_link) {
|
2018-12-02 04:31:10 +00:00
|
|
|
e.innerHTML = e.innerHTML.replace(/&key=.*$/,
|
2018-12-01 19:39:29 +00:00
|
|
|
"&key=" + new_link);
|
|
|
|
|
2018-12-02 04:31:10 +00:00
|
|
|
e.href = e.href.replace(/&key=.*$/,
|
2018-12-01 19:39:29 +00:00
|
|
|
"&key=" + new_link);
|
|
|
|
|
|
|
|
new Effect.Highlight(e);
|
|
|
|
|
|
|
|
notify('');
|
|
|
|
|
|
|
|
} else {
|
|
|
|
notify_error("Could not change feed URL.");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return false;
|
2018-12-01 15:25:32 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
function report_error(message, filename, lineno, colno, error) {
|
2017-03-05 07:50:15 +00:00
|
|
|
exception_error(error, null, filename, lineno);
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2007-02-18 07:30:16 +00:00
|
|
|
|
2017-03-05 07:50:15 +00:00
|
|
|
function exception_error(e, e_compat, filename, lineno, colno) {
|
2017-03-04 11:34:44 +00:00
|
|
|
if (typeof e == "string") e = e_compat;
|
2009-01-23 14:20:36 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!e) return; // no exception object, nothing to report.
|
2009-02-04 20:19:16 +00:00
|
|
|
|
2009-01-23 17:19:17 +00:00
|
|
|
try {
|
2017-03-05 07:50:15 +00:00
|
|
|
console.error(e);
|
2018-11-29 17:07:23 +00:00
|
|
|
const msg = e.toString();
|
2009-01-23 14:20:36 +00:00
|
|
|
|
2013-04-20 06:43:21 +00:00
|
|
|
try {
|
2018-11-29 19:21:09 +00:00
|
|
|
xhrPost("backend.php",
|
|
|
|
{op: "rpc", method: "log",
|
2017-03-05 07:50:15 +00:00
|
|
|
file: e.fileName ? e.fileName : filename,
|
|
|
|
line: e.lineNumber ? e.lineNumber : lineno,
|
|
|
|
msg: msg, context: e.stack},
|
2018-11-29 19:21:09 +00:00
|
|
|
(transport) => {
|
2017-03-05 07:50:15 +00:00
|
|
|
console.warn(transport.responseText);
|
2018-11-29 19:21:09 +00:00
|
|
|
});
|
2013-04-20 06:43:21 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
} catch (e) {
|
|
|
|
console.error("Exception while trying to log the error.", e);
|
2013-04-20 06:43:21 +00:00
|
|
|
}
|
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
let content = "<div class='fatalError'><p>" + msg + "</p>";
|
2011-03-18 11:31:54 +00:00
|
|
|
|
2017-03-05 07:30:49 +00:00
|
|
|
if (e.stack) {
|
2017-03-04 11:34:44 +00:00
|
|
|
content += "<div><b>Stack trace:</b></div>" +
|
|
|
|
"<textarea name=\"stack\" readonly=\"1\">" + e.stack + "</textarea>";
|
2009-01-23 14:20:36 +00:00
|
|
|
}
|
|
|
|
|
2010-11-15 10:12:02 +00:00
|
|
|
content += "</div>";
|
|
|
|
|
2011-03-06 07:56:08 +00:00
|
|
|
content += "<div class='dlgButtons'>";
|
|
|
|
|
|
|
|
content += "<button dojoType=\"dijit.form.Button\" "+
|
2011-03-18 11:31:54 +00:00
|
|
|
"onclick=\"dijit.byId('exceptionDlg').hide()\">" +
|
2011-03-06 07:56:08 +00:00
|
|
|
__('Close') + "</button>";
|
|
|
|
content += "</div>";
|
|
|
|
|
2011-04-21 11:27:09 +00:00
|
|
|
if (dijit.byId("exceptionDlg"))
|
|
|
|
dijit.byId("exceptionDlg").destroyRecursive();
|
2010-11-14 20:46:49 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const dialog = new dijit.Dialog({
|
2011-03-06 07:56:08 +00:00
|
|
|
id: "exceptionDlg",
|
2010-11-15 10:12:02 +00:00
|
|
|
title: "Unhandled exception",
|
|
|
|
style: "width: 600px",
|
|
|
|
content: content});
|
|
|
|
|
|
|
|
dialog.show();
|
2010-11-14 20:46:49 +00:00
|
|
|
|
2013-04-20 06:43:21 +00:00
|
|
|
} catch (ei) {
|
2017-03-04 11:34:44 +00:00
|
|
|
console.error("Exception while trying to report an exception:", ei);
|
|
|
|
console.error("Original exception:", e);
|
2013-04-20 06:43:21 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
alert("Exception occured while trying to report an exception.\n" +
|
|
|
|
ei.stack + "\n\nOriginal exception:\n" + e.stack);
|
2005-12-14 07:29:38 +00:00
|
|
|
}
|
|
|
|
|
2005-11-26 10:06:56 +00:00
|
|
|
}
|
|
|
|
|
2005-08-22 05:28:27 +00:00
|
|
|
function param_escape(arg) {
|
2017-12-04 08:02:13 +00:00
|
|
|
return encodeURIComponent(arg);
|
2005-08-22 05:28:27 +00:00
|
|
|
}
|
|
|
|
|
2007-03-02 19:58:58 +00:00
|
|
|
function notify_real(msg, no_hide, n_type) {
|
2005-08-22 05:28:27 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const n = $("notify");
|
2005-08-22 05:28:27 +00:00
|
|
|
|
2013-04-17 06:50:46 +00:00
|
|
|
if (!n) return;
|
2005-09-05 12:02:00 +00:00
|
|
|
|
2006-05-19 05:44:23 +00:00
|
|
|
if (notify_hide_timerid) {
|
|
|
|
window.clearTimeout(notify_hide_timerid);
|
|
|
|
}
|
|
|
|
|
2005-11-19 18:01:06 +00:00
|
|
|
if (msg == "") {
|
2014-11-02 17:58:46 +00:00
|
|
|
if (n.hasClassName("visible")) {
|
|
|
|
notify_hide_timerid = window.setTimeout(function() {
|
|
|
|
n.removeClassName("visible") }, 0);
|
2006-05-19 05:44:23 +00:00
|
|
|
}
|
|
|
|
return;
|
2005-11-19 18:01:06 +00:00
|
|
|
}
|
2005-08-22 05:28:27 +00:00
|
|
|
|
2007-03-02 19:58:58 +00:00
|
|
|
/* types:
|
|
|
|
|
|
|
|
1 - generic
|
|
|
|
2 - progress
|
|
|
|
3 - error
|
|
|
|
4 - info
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2013-04-17 06:50:46 +00:00
|
|
|
msg = "<span class=\"msg\"> " + __(msg) + "</span>";
|
2007-03-06 06:54:47 +00:00
|
|
|
|
2014-11-02 17:58:46 +00:00
|
|
|
if (n_type == 2) {
|
2017-02-09 20:19:26 +00:00
|
|
|
msg = "<span><img src=\""+getInitParam("icon_indicator_white")+"\"></span>" + msg;
|
2013-04-17 06:50:46 +00:00
|
|
|
no_hide = true;
|
2007-03-02 19:58:58 +00:00
|
|
|
} else if (n_type == 3) {
|
2017-02-09 20:19:26 +00:00
|
|
|
msg = "<span><img src=\""+getInitParam("icon_alert")+"\"></span>" + msg;
|
2007-03-02 19:58:58 +00:00
|
|
|
} else if (n_type == 4) {
|
2017-02-09 20:19:26 +00:00
|
|
|
msg = "<span><img src=\""+getInitParam("icon_information")+"\"></span>" + msg;
|
2013-03-18 12:44:23 +00:00
|
|
|
}
|
|
|
|
|
2017-02-09 20:19:26 +00:00
|
|
|
msg += " <span><img src=\""+getInitParam("icon_cross")+"\" class=\"close\" title=\"" +
|
2013-04-17 06:50:46 +00:00
|
|
|
__("Click to close") + "\" onclick=\"notify('')\"></span>";
|
2013-03-18 12:44:23 +00:00
|
|
|
|
2013-04-17 06:50:46 +00:00
|
|
|
n.innerHTML = msg;
|
2006-05-18 07:56:52 +00:00
|
|
|
|
2014-11-09 17:31:29 +00:00
|
|
|
window.setTimeout(function() {
|
|
|
|
// goddamnit firefox
|
|
|
|
if (n_type == 2) {
|
|
|
|
n.className = "notify notify_progress visible";
|
|
|
|
} else if (n_type == 3) {
|
|
|
|
n.className = "notify notify_error visible";
|
|
|
|
msg = "<span><img src='images/alert.png'></span>" + msg;
|
|
|
|
} else if (n_type == 4) {
|
|
|
|
n.className = "notify notify_info visible";
|
|
|
|
} else {
|
|
|
|
n.className = "notify visible";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!no_hide) {
|
|
|
|
notify_hide_timerid = window.setTimeout(function() {
|
2014-11-02 17:58:46 +00:00
|
|
|
n.removeClassName("visible") }, 5*1000);
|
2014-11-09 17:31:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}, 10);
|
|
|
|
|
2006-05-18 12:01:09 +00:00
|
|
|
}
|
|
|
|
|
2007-03-02 19:58:58 +00:00
|
|
|
function notify(msg, no_hide) {
|
|
|
|
notify_real(msg, no_hide, 1);
|
2006-05-18 12:01:09 +00:00
|
|
|
}
|
|
|
|
|
2007-03-02 19:58:58 +00:00
|
|
|
function notify_progress(msg, no_hide) {
|
|
|
|
notify_real(msg, no_hide, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
function notify_error(msg, no_hide) {
|
|
|
|
notify_real(msg, no_hide, 3);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function notify_info(msg, no_hide) {
|
|
|
|
notify_real(msg, no_hide, 4);
|
2005-08-22 05:28:27 +00:00
|
|
|
}
|
|
|
|
|
2006-03-20 16:53:11 +00:00
|
|
|
function setCookie(name, value, lifetime, path, domain, secure) {
|
2011-03-18 11:31:54 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
let d = false;
|
2011-03-18 11:31:54 +00:00
|
|
|
|
2006-03-20 16:53:11 +00:00
|
|
|
if (lifetime) {
|
|
|
|
d = new Date();
|
2007-03-21 15:36:24 +00:00
|
|
|
d.setTime(d.getTime() + (lifetime * 1000));
|
2006-03-20 16:53:11 +00:00
|
|
|
}
|
2007-03-22 06:46:49 +00:00
|
|
|
|
2010-09-05 09:41:19 +00:00
|
|
|
console.log("setCookie: " + name + " => " + value + ": " + d);
|
2011-03-18 11:31:54 +00:00
|
|
|
|
2006-03-20 16:53:11 +00:00
|
|
|
int_setCookie(name, value, d, path, domain, secure);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function int_setCookie(name, value, expires, path, domain, secure) {
|
2005-09-06 04:14:17 +00:00
|
|
|
document.cookie= name + "=" + escape(value) +
|
|
|
|
((expires) ? "; expires=" + expires.toGMTString() : "") +
|
|
|
|
((path) ? "; path=" + path : "") +
|
|
|
|
((domain) ? "; domain=" + domain : "") +
|
|
|
|
((secure) ? "; secure" : "");
|
|
|
|
}
|
|
|
|
|
2006-03-20 16:53:11 +00:00
|
|
|
function delCookie(name, path, domain) {
|
|
|
|
if (getCookie(name)) {
|
|
|
|
document.cookie = name + "=" +
|
|
|
|
((path) ? ";path=" + path : "") +
|
|
|
|
((domain) ? ";domain=" + domain : "" ) +
|
|
|
|
";expires=Thu, 01-Jan-1970 00:00:01 GMT";
|
|
|
|
}
|
|
|
|
}
|
2011-03-18 11:31:54 +00:00
|
|
|
|
2006-03-20 16:53:11 +00:00
|
|
|
|
2005-09-06 04:14:17 +00:00
|
|
|
function getCookie(name) {
|
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const dc = document.cookie;
|
|
|
|
const prefix = name + "=";
|
|
|
|
let begin = dc.indexOf("; " + prefix);
|
2005-09-06 04:14:17 +00:00
|
|
|
if (begin == -1) {
|
2018-11-30 12:07:44 +00:00
|
|
|
begin = dc.indexOf(prefix);
|
|
|
|
if (begin != 0) return null;
|
2005-09-06 04:14:17 +00:00
|
|
|
}
|
|
|
|
else {
|
2018-11-30 12:07:44 +00:00
|
|
|
begin += 2;
|
2005-09-06 04:14:17 +00:00
|
|
|
}
|
2018-11-29 17:07:23 +00:00
|
|
|
let end = document.cookie.indexOf(";", begin);
|
2005-09-06 04:14:17 +00:00
|
|
|
if (end == -1) {
|
2018-11-30 12:07:44 +00:00
|
|
|
end = dc.length;
|
2005-09-06 04:14:17 +00:00
|
|
|
}
|
|
|
|
return unescape(dc.substring(begin + prefix.length, end));
|
|
|
|
}
|
|
|
|
|
2005-12-13 05:52:32 +00:00
|
|
|
function toggleSelectRowById(sender, id) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const row = $(id);
|
2010-11-14 12:55:51 +00:00
|
|
|
return toggleSelectRow(sender, row);
|
2005-12-13 05:52:32 +00:00
|
|
|
}
|
|
|
|
|
2010-11-18 19:26:04 +00:00
|
|
|
/* this is for dijit Checkbox */
|
2013-02-28 10:22:13 +00:00
|
|
|
function toggleSelectRow2(sender, row, is_cdm) {
|
2010-11-18 19:26:04 +00:00
|
|
|
|
2013-02-28 10:22:13 +00:00
|
|
|
if (!row)
|
|
|
|
if (!is_cdm)
|
|
|
|
row = sender.domNode.parentNode.parentNode;
|
|
|
|
else
|
|
|
|
row = sender.domNode.parentNode.parentNode.parentNode; // oh ffs
|
2010-11-18 19:26:04 +00:00
|
|
|
|
|
|
|
if (sender.checked && !row.hasClassName('Selected'))
|
|
|
|
row.addClassName('Selected');
|
|
|
|
else
|
|
|
|
row.removeClassName('Selected');
|
2013-04-15 09:16:14 +00:00
|
|
|
|
2018-12-02 06:49:49 +00:00
|
|
|
if (typeof Headlines != "undefined")
|
2018-12-01 18:01:53 +00:00
|
|
|
Headlines.updateSelectedPrompt();
|
2010-11-18 19:26:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-02-28 11:48:09 +00:00
|
|
|
function toggleSelectRow(sender, row) {
|
2005-11-27 14:56:10 +00:00
|
|
|
|
2013-02-28 11:48:09 +00:00
|
|
|
if (!row) row = sender.parentNode.parentNode;
|
2010-11-14 12:55:51 +00:00
|
|
|
|
|
|
|
if (sender.checked && !row.hasClassName('Selected'))
|
|
|
|
row.addClassName('Selected');
|
|
|
|
else
|
|
|
|
row.removeClassName('Selected');
|
2013-04-15 09:16:14 +00:00
|
|
|
|
2018-12-02 06:49:49 +00:00
|
|
|
if (typeof Headlines != "undefined")
|
2018-12-01 18:01:53 +00:00
|
|
|
Headlines.updateSelectedPrompt();
|
2005-11-27 14:56:10 +00:00
|
|
|
}
|
|
|
|
|
2018-12-01 08:18:35 +00:00
|
|
|
// noinspection JSUnusedGlobalSymbols
|
|
|
|
function displayIfChecked(checkbox, elemId) {
|
|
|
|
if (checkbox.checked) {
|
|
|
|
Effect.Appear(elemId, {duration : 0.5});
|
2007-08-11 16:43:45 +00:00
|
|
|
} else {
|
2018-12-01 08:18:35 +00:00
|
|
|
Effect.Fade(elemId, {duration : 0.5});
|
2007-08-11 16:43:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-08 08:28:21 +00:00
|
|
|
function getURLParam(param){
|
|
|
|
return String(window.location.href).parseQuery()[param];
|
2011-03-18 11:31:54 +00:00
|
|
|
}
|
2006-02-28 16:25:38 +00:00
|
|
|
|
2018-12-01 08:18:35 +00:00
|
|
|
// noinspection JSUnusedGlobalSymbols
|
2017-12-04 08:02:13 +00:00
|
|
|
function closeInfoBox() {
|
2018-11-29 17:07:23 +00:00
|
|
|
const dialog = dijit.byId("infoBox");
|
2010-11-15 10:12:02 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (dialog) dialog.hide();
|
2009-01-23 14:20:36 +00:00
|
|
|
|
2006-07-25 10:47:51 +00:00
|
|
|
return false;
|
2006-05-18 04:58:31 +00:00
|
|
|
}
|
|
|
|
|
2006-05-23 06:15:49 +00:00
|
|
|
function getInitParam(key) {
|
2007-03-26 05:23:15 +00:00
|
|
|
return init_params[key];
|
2006-05-23 06:15:49 +00:00
|
|
|
}
|
2006-05-23 05:34:50 +00:00
|
|
|
|
2010-01-12 08:48:31 +00:00
|
|
|
function setInitParam(key, value) {
|
2007-05-11 07:50:02 +00:00
|
|
|
init_params[key] = value;
|
2007-03-21 15:36:24 +00:00
|
|
|
}
|
|
|
|
|
2009-01-23 17:19:17 +00:00
|
|
|
function fatalError(code, msg, ext_info) {
|
2017-03-04 11:34:44 +00:00
|
|
|
if (code == 6) {
|
|
|
|
window.location.href = "index.php";
|
|
|
|
} else if (code == 5) {
|
|
|
|
window.location.href = "public.php?op=dbupdate";
|
|
|
|
} else {
|
2011-03-18 11:31:54 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (msg == "") msg = "Unknown error";
|
2007-03-02 19:58:58 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (ext_info) {
|
|
|
|
if (ext_info.responseText) {
|
|
|
|
ext_info = ext_info.responseText;
|
2011-02-18 09:28:03 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2011-02-18 09:28:03 +00:00
|
|
|
|
2018-12-01 08:18:35 +00:00
|
|
|
/* global ERRORS */
|
2017-03-04 11:34:44 +00:00
|
|
|
if (ERRORS && ERRORS[code] && !msg) {
|
|
|
|
msg = ERRORS[code];
|
|
|
|
}
|
2011-03-18 11:31:54 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
let content = "<div><b>Error code:</b> " + code + "</div>" +
|
2017-03-04 11:34:44 +00:00
|
|
|
"<p>" + msg + "</p>";
|
2011-02-18 09:28:03 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (ext_info) {
|
|
|
|
content = content + "<div><b>Additional information:</b></div>" +
|
|
|
|
"<textarea style='width: 100%' readonly=\"1\">" +
|
|
|
|
ext_info + "</textarea>";
|
|
|
|
}
|
2011-02-18 09:28:03 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const dialog = new dijit.Dialog({
|
2017-03-04 11:34:44 +00:00
|
|
|
title: "Fatal error",
|
|
|
|
style: "width: 600px",
|
|
|
|
content: content});
|
2011-02-18 09:28:03 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
dialog.show();
|
2011-02-18 09:28:03 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2006-05-23 07:15:48 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
return false;
|
2011-02-18 09:28:03 +00:00
|
|
|
|
2006-05-23 07:15:48 +00:00
|
|
|
}
|
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
const Filters = {
|
|
|
|
filterDlgCheckAction: function(sender) {
|
|
|
|
const action = sender.value;
|
2006-12-08 08:05:21 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
const action_param = $("filterDlg_paramBox");
|
2015-08-11 20:28:41 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
if (!action_param) {
|
|
|
|
console.log("filterDlgCheckAction: can't find action param box!");
|
|
|
|
return;
|
2006-12-08 08:05:21 +00:00
|
|
|
}
|
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
// if selected action supports parameters, enable params field
|
|
|
|
if (action == 4 || action == 6 || action == 7 || action == 9) {
|
|
|
|
new Effect.Appear(action_param, {duration: 0.5});
|
2008-12-13 11:57:53 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
Element.hide(dijit.byId("filterDlg_actionParam").domNode);
|
|
|
|
Element.hide(dijit.byId("filterDlg_actionParamLabel").domNode);
|
|
|
|
Element.hide(dijit.byId("filterDlg_actionParamPlugin").domNode);
|
2007-03-01 09:43:54 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
if (action == 7) {
|
|
|
|
Element.show(dijit.byId("filterDlg_actionParamLabel").domNode);
|
|
|
|
} else if (action == 9) {
|
|
|
|
Element.show(dijit.byId("filterDlg_actionParamPlugin").domNode);
|
2017-03-04 11:34:44 +00:00
|
|
|
} else {
|
2018-12-01 19:39:29 +00:00
|
|
|
Element.show(dijit.byId("filterDlg_actionParam").domNode);
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2010-01-14 08:28:57 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
} else {
|
|
|
|
Element.hide(action_param);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
createNewRuleElement: function(parentNode, replaceNode) {
|
|
|
|
const form = document.forms["filter_new_rule_form"];
|
|
|
|
const query = {op: "pref-filters", method: "printrulename", rule: dojo.formToJson(form)};
|
2018-11-30 06:23:51 +00:00
|
|
|
|
|
|
|
xhrPost("backend.php", query, (transport) => {
|
2018-12-01 19:39:29 +00:00
|
|
|
try {
|
|
|
|
const li = dojo.create("li");
|
|
|
|
|
|
|
|
const cb = dojo.create("input", {type: "checkbox"}, li);
|
|
|
|
|
|
|
|
new dijit.form.CheckBox({
|
|
|
|
onChange: function () {
|
2018-12-02 07:16:25 +00:00
|
|
|
ListUtils.onChecked(this);
|
2018-12-01 19:39:29 +00:00
|
|
|
},
|
|
|
|
}, cb);
|
|
|
|
|
|
|
|
dojo.create("input", {
|
|
|
|
type: "hidden",
|
|
|
|
name: "rule[]",
|
|
|
|
value: dojo.formToJson(form)
|
|
|
|
}, li);
|
|
|
|
|
|
|
|
dojo.create("span", {
|
|
|
|
onclick: function () {
|
|
|
|
dijit.byId('filterEditDlg').editRule(this);
|
|
|
|
},
|
|
|
|
innerHTML: transport.responseText
|
|
|
|
}, li);
|
|
|
|
|
|
|
|
if (replaceNode) {
|
|
|
|
parentNode.replaceChild(li, replaceNode);
|
|
|
|
} else {
|
|
|
|
parentNode.appendChild(li);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error(e);
|
2018-11-30 12:07:44 +00:00
|
|
|
}
|
|
|
|
});
|
2018-12-01 19:39:29 +00:00
|
|
|
},
|
|
|
|
createNewActionElement: function(parentNode, replaceNode) {
|
|
|
|
const form = document.forms["filter_new_action_form"];
|
2010-01-14 09:47:28 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
if (form.action_id.value == 7) {
|
|
|
|
form.action_param.value = form.action_param_label.value;
|
|
|
|
} else if (form.action_id.value == 9) {
|
|
|
|
form.action_param.value = form.action_param_plugin.value;
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
const query = {
|
|
|
|
op: "pref-filters", method: "printactionname",
|
|
|
|
action: dojo.formToJson(form)
|
|
|
|
};
|
2012-08-30 14:50:56 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
try {
|
|
|
|
const li = dojo.create("li");
|
|
|
|
|
|
|
|
const cb = dojo.create("input", {type: "checkbox"}, li);
|
|
|
|
|
|
|
|
new dijit.form.CheckBox({
|
|
|
|
onChange: function () {
|
2018-12-02 07:16:25 +00:00
|
|
|
ListUtils.onChecked(this);
|
2018-12-01 19:39:29 +00:00
|
|
|
},
|
|
|
|
}, cb);
|
|
|
|
|
|
|
|
dojo.create("input", {
|
|
|
|
type: "hidden",
|
|
|
|
name: "action[]",
|
|
|
|
value: dojo.formToJson(form)
|
|
|
|
}, li);
|
|
|
|
|
|
|
|
dojo.create("span", {
|
|
|
|
onclick: function () {
|
|
|
|
dijit.byId('filterEditDlg').editAction(this);
|
|
|
|
},
|
|
|
|
innerHTML: transport.responseText
|
|
|
|
}, li);
|
|
|
|
|
|
|
|
if (replaceNode) {
|
|
|
|
parentNode.replaceChild(li, replaceNode);
|
|
|
|
} else {
|
|
|
|
parentNode.appendChild(li);
|
|
|
|
}
|
2012-08-30 14:50:56 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
} catch (e) {
|
|
|
|
exception_error(e);
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2018-12-01 19:39:29 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
addFilterRule: function(replaceNode, ruleStr) {
|
|
|
|
if (dijit.byId("filterNewRuleDlg"))
|
|
|
|
dijit.byId("filterNewRuleDlg").destroyRecursive();
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
const query = "backend.php?op=pref-filters&method=newrule&rule=" +
|
|
|
|
param_escape(ruleStr);
|
2018-11-30 06:23:51 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
const rule_dlg = new dijit.Dialog({
|
|
|
|
id: "filterNewRuleDlg",
|
|
|
|
title: ruleStr ? __("Edit rule") : __("Add rule"),
|
|
|
|
style: "width: 600px",
|
|
|
|
execute: function () {
|
|
|
|
if (this.validate()) {
|
|
|
|
Filters.createNewRuleElement($("filterDlg_Matches"), replaceNode);
|
|
|
|
this.hide();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
href: query
|
|
|
|
});
|
2012-08-30 14:50:56 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
rule_dlg.show();
|
|
|
|
},
|
|
|
|
addFilterAction: function(replaceNode, actionStr) {
|
|
|
|
if (dijit.byId("filterNewActionDlg"))
|
|
|
|
dijit.byId("filterNewActionDlg").destroyRecursive();
|
2012-08-30 14:50:56 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
const query = "backend.php?op=pref-filters&method=newaction&action=" +
|
|
|
|
param_escape(actionStr);
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
const rule_dlg = new dijit.Dialog({
|
|
|
|
id: "filterNewActionDlg",
|
|
|
|
title: actionStr ? __("Edit action") : __("Add action"),
|
|
|
|
style: "width: 600px",
|
|
|
|
execute: function () {
|
|
|
|
if (this.validate()) {
|
|
|
|
Filters.createNewActionElement($("filterDlg_Actions"), replaceNode);
|
|
|
|
this.hide();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
href: query
|
|
|
|
});
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
rule_dlg.show();
|
|
|
|
},
|
|
|
|
editFilterTest: function(query) {
|
2012-08-30 14:50:56 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
if (dijit.byId("filterTestDlg"))
|
|
|
|
dijit.byId("filterTestDlg").destroyRecursive();
|
2012-08-30 14:50:56 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
const test_dlg = new dijit.Dialog({
|
|
|
|
id: "filterTestDlg",
|
|
|
|
title: "Test Filter",
|
|
|
|
style: "width: 600px",
|
|
|
|
results: 0,
|
|
|
|
limit: 100,
|
|
|
|
max_offset: 10000,
|
|
|
|
getTestResults: function (query, offset) {
|
|
|
|
const updquery = query + "&offset=" + offset + "&limit=" + test_dlg.limit;
|
2012-08-30 14:50:56 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
console.log("getTestResults:" + offset);
|
2012-08-30 14:50:56 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
xhrPost("backend.php", updquery, (transport) => {
|
|
|
|
try {
|
|
|
|
const result = JSON.parse(transport.responseText);
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
if (result && dijit.byId("filterTestDlg") && dijit.byId("filterTestDlg").open) {
|
|
|
|
test_dlg.results += result.length;
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
console.log("got results:" + result.length);
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
$("prefFilterProgressMsg").innerHTML = __("Looking for articles (%d processed, %f found)...")
|
|
|
|
.replace("%f", test_dlg.results)
|
|
|
|
.replace("%d", offset);
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
console.log(offset + " " + test_dlg.max_offset);
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
for (let i = 0; i < result.length; i++) {
|
|
|
|
const tmp = new Element("table");
|
|
|
|
tmp.innerHTML = result[i];
|
|
|
|
dojo.parser.parse(tmp);
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
$("prefFilterTestResultList").innerHTML += tmp.innerHTML;
|
|
|
|
}
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
if (test_dlg.results < 30 && offset < test_dlg.max_offset) {
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
// get the next batch
|
|
|
|
window.setTimeout(function () {
|
|
|
|
test_dlg.getTestResults(query, offset + test_dlg.limit);
|
|
|
|
}, 0);
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
} else {
|
|
|
|
// all done
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
Element.hide("prefFilterLoadingIndicator");
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
if (test_dlg.results == 0) {
|
|
|
|
$("prefFilterTestResultList").innerHTML = "<tr><td align='center'>No recent articles matching this filter have been found.</td></tr>";
|
|
|
|
$("prefFilterProgressMsg").innerHTML = "Articles matching this filter:";
|
|
|
|
} else {
|
|
|
|
$("prefFilterProgressMsg").innerHTML = __("Found %d articles matching this filter:")
|
|
|
|
.replace("%d", test_dlg.results);
|
|
|
|
}
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
}
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
} else if (!result) {
|
|
|
|
console.log("getTestResults: can't parse results object");
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-11-30 06:23:51 +00:00
|
|
|
Element.hide("prefFilterLoadingIndicator");
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
notify_error("Error while trying to get filter test results.");
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
} else {
|
|
|
|
console.log("getTestResults: dialog closed, bailing out.");
|
2018-11-30 06:23:51 +00:00
|
|
|
}
|
2018-12-01 19:39:29 +00:00
|
|
|
} catch (e) {
|
|
|
|
exception_error(e);
|
|
|
|
}
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
href: query
|
|
|
|
});
|
2018-11-30 06:23:51 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
dojo.connect(test_dlg, "onLoad", null, function (e) {
|
|
|
|
test_dlg.getTestResults(query, 0);
|
|
|
|
});
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
test_dlg.show();
|
|
|
|
},
|
|
|
|
quickAddFilter: function() {
|
|
|
|
let query;
|
|
|
|
|
|
|
|
if (!App.isPrefs()) {
|
|
|
|
query = {
|
|
|
|
op: "pref-filters", method: "newfilter",
|
2018-12-02 05:57:22 +00:00
|
|
|
feed: Feeds.getActive(), is_cat: Feeds.activeIsCat()
|
2018-12-01 19:39:29 +00:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
query = {op: "pref-filters", method: "newfilter"};
|
|
|
|
}
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
console.log('quickAddFilter', query);
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
if (dijit.byId("feedEditDlg"))
|
|
|
|
dijit.byId("feedEditDlg").destroyRecursive();
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
if (dijit.byId("filterEditDlg"))
|
|
|
|
dijit.byId("filterEditDlg").destroyRecursive();
|
2015-09-09 19:13:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
const dialog = new dijit.Dialog({
|
|
|
|
id: "filterEditDlg",
|
|
|
|
title: __("Create Filter"),
|
|
|
|
style: "width: 600px",
|
|
|
|
test: function () {
|
|
|
|
const query = "backend.php?" + dojo.formToQuery("filter_new_form") + "&savemode=test";
|
2018-12-01 08:18:35 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
Filters.editFilterTest(query);
|
|
|
|
},
|
|
|
|
selectRules: function (select) {
|
|
|
|
$$("#filterDlg_Matches input[type=checkbox]").each(function (e) {
|
|
|
|
e.checked = select;
|
|
|
|
if (select)
|
|
|
|
e.parentNode.addClassName("Selected");
|
|
|
|
else
|
|
|
|
e.parentNode.removeClassName("Selected");
|
|
|
|
});
|
|
|
|
},
|
|
|
|
selectActions: function (select) {
|
|
|
|
$$("#filterDlg_Actions input[type=checkbox]").each(function (e) {
|
|
|
|
e.checked = select;
|
2010-11-20 11:10:26 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
if (select)
|
|
|
|
e.parentNode.addClassName("Selected");
|
|
|
|
else
|
|
|
|
e.parentNode.removeClassName("Selected");
|
2012-08-30 14:50:56 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
editRule: function (e) {
|
|
|
|
const li = e.parentNode;
|
|
|
|
const rule = li.getElementsByTagName("INPUT")[1].value;
|
|
|
|
Filters.addFilterRule(li, rule);
|
|
|
|
},
|
|
|
|
editAction: function (e) {
|
|
|
|
const li = e.parentNode;
|
|
|
|
const action = li.getElementsByTagName("INPUT")[1].value;
|
|
|
|
Filters.addFilterAction(li, action);
|
|
|
|
},
|
|
|
|
addAction: function () {
|
|
|
|
Filters.addFilterAction();
|
|
|
|
},
|
|
|
|
addRule: function () {
|
|
|
|
Filters.addFilterRule();
|
|
|
|
},
|
|
|
|
deleteAction: function () {
|
|
|
|
$$("#filterDlg_Actions li[class*=Selected]").each(function (e) {
|
|
|
|
e.parentNode.removeChild(e)
|
|
|
|
});
|
|
|
|
},
|
|
|
|
deleteRule: function () {
|
|
|
|
$$("#filterDlg_Matches li[class*=Selected]").each(function (e) {
|
|
|
|
e.parentNode.removeChild(e)
|
|
|
|
});
|
|
|
|
},
|
|
|
|
execute: function () {
|
|
|
|
if (this.validate()) {
|
2011-12-28 10:43:55 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
const query = dojo.formToQuery("filter_new_form");
|
2010-11-20 11:10:26 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
xhrPost("backend.php", query, () => {
|
|
|
|
if (App.isPrefs()) {
|
|
|
|
updateFilterList();
|
|
|
|
}
|
2012-09-03 11:05:43 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
dialog.hide();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
href: "backend.php?" + dojo.objectToQuery(query)
|
|
|
|
});
|
2010-11-20 12:02:20 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
if (!App.isPrefs()) {
|
|
|
|
const selectedText = getSelectionText();
|
2010-11-20 12:02:20 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
const lh = dojo.connect(dialog, "onLoad", function () {
|
|
|
|
dojo.disconnect(lh);
|
2012-08-30 14:50:56 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
if (selectedText != "") {
|
2010-11-20 11:10:26 +00:00
|
|
|
|
2018-12-02 05:57:22 +00:00
|
|
|
const feed_id = Feeds.activeIsCat() ? 'CAT:' + parseInt(Feeds.getActive()) :
|
|
|
|
Feeds.getActive();
|
2013-11-12 10:21:28 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
const rule = {reg_exp: selectedText, feed_id: [feed_id], filter_type: 1};
|
2012-08-31 13:33:22 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
Filters.addFilterRule(null, dojo.toJson(rule));
|
2012-08-31 13:33:22 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
} else {
|
2013-11-12 10:21:28 +00:00
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
const query = {op: "rpc", method: "getlinktitlebyid", id: Article.getActive()};
|
2013-11-12 10:21:28 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
const reply = JSON.parse(transport.responseText);
|
2013-11-12 10:21:28 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
let title = false;
|
2012-08-31 13:33:22 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
if (reply && reply.title) title = reply.title;
|
2012-08-31 13:33:22 +00:00
|
|
|
|
2018-12-02 05:57:22 +00:00
|
|
|
if (title || Feeds.getActive() || Feeds.activeIsCat()) {
|
2012-08-31 13:33:22 +00:00
|
|
|
|
2018-12-02 05:57:22 +00:00
|
|
|
console.log(title + " " + Feeds.getActive());
|
2013-03-22 05:49:45 +00:00
|
|
|
|
2018-12-02 05:57:22 +00:00
|
|
|
const feed_id = Feeds.activeIsCat() ? 'CAT:' + parseInt(Feeds.getActive()) :
|
|
|
|
Feeds.getActive();
|
2013-03-22 05:49:45 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
const rule = {reg_exp: title, feed_id: [feed_id], filter_type: 1};
|
2013-03-22 05:49:45 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
Filters.addFilterRule(null, dojo.toJson(rule));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2013-03-22 05:49:45 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
dialog.show();
|
|
|
|
},
|
|
|
|
};
|
2013-03-22 05:49:45 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
/* function strip_tags(s) {
|
|
|
|
return s.replace(/<\/?[^>]+(>|$)/g, "");
|
|
|
|
} */
|
2013-11-12 10:21:28 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
// noinspection JSUnusedGlobalSymbols
|
|
|
|
function uploadIconHandler(rc) {
|
|
|
|
switch (rc) {
|
|
|
|
case 0:
|
|
|
|
notify_info("Upload complete.");
|
|
|
|
if (App.isPrefs()) {
|
|
|
|
Feeds.reload();
|
|
|
|
} else {
|
|
|
|
setTimeout('Feeds.reload(false, false)', 50);
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2018-12-01 19:39:29 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
notify_error("Upload failed: icon is too big.");
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
notify_error("Upload failed.");
|
|
|
|
break;
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2010-02-03 13:54:17 +00:00
|
|
|
}
|
2010-02-15 12:16:53 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
// noinspection JSUnusedGlobalSymbols
|
|
|
|
function removeFeedIcon(id) {
|
|
|
|
if (confirm(__("Remove stored feed icon?"))) {
|
2010-02-15 12:16:53 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
notify_progress("Removing feed icon...", true);
|
2010-02-15 12:16:53 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
const query = { op: "pref-feeds", method: "removeicon", feed_id: id };
|
2010-02-15 12:16:53 +00:00
|
|
|
|
2018-12-02 04:31:10 +00:00
|
|
|
xhrPost("backend.php", query, () => {
|
2018-12-01 19:39:29 +00:00
|
|
|
notify_info("Feed icon removed.");
|
2018-12-01 18:51:00 +00:00
|
|
|
if (App.isPrefs()) {
|
2018-12-01 14:05:28 +00:00
|
|
|
Feeds.reload();
|
2018-11-30 06:23:51 +00:00
|
|
|
} else {
|
2018-12-01 19:39:29 +00:00
|
|
|
setTimeout('Feeds.reload(false, false)', 50);
|
2018-11-30 06:23:51 +00:00
|
|
|
}
|
|
|
|
});
|
2010-02-15 12:16:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-12-01 08:18:35 +00:00
|
|
|
// noinspection JSUnusedGlobalSymbols
|
2018-12-01 19:39:29 +00:00
|
|
|
function uploadFeedIcon() {
|
|
|
|
const file = $("icon_file");
|
2010-11-09 10:14:59 +00:00
|
|
|
|
2018-12-01 19:39:29 +00:00
|
|
|
if (file.value.length == 0) {
|
|
|
|
alert(__("Please select an image file to upload."));
|
|
|
|
} else if (confirm(__("Upload new icon for this feed?"))) {
|
|
|
|
notify_progress("Uploading, please wait...", true);
|
|
|
|
return true;
|
|
|
|
}
|
2010-11-08 22:04:00 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
return false;
|
2010-11-08 22:04:00 +00:00
|
|
|
}
|
|
|
|
|
2010-11-12 10:52:53 +00:00
|
|
|
// mode = all, none, invert
|
|
|
|
function selectTableRows(id, mode) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const rows = $(id).rows;
|
2010-11-12 10:52:53 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
for (let i = 0; i < rows.length; i++) {
|
|
|
|
const row = rows[i];
|
|
|
|
let cb = false;
|
|
|
|
let dcb = false;
|
2010-11-12 10:52:53 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (row.id && row.className) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const bare_id = row.id.replace(/^[A-Z]*?-/, "");
|
|
|
|
const inputs = rows[i].getElementsByTagName("input");
|
2010-11-12 10:52:53 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
for (let j = 0; j < inputs.length; j++) {
|
|
|
|
const input = inputs[j];
|
2010-11-12 10:52:53 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (input.getAttribute("type") == "checkbox" &&
|
|
|
|
input.id.match(bare_id)) {
|
2010-11-12 10:52:53 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
cb = input;
|
|
|
|
dcb = dijit.getEnclosingWidget(cb);
|
|
|
|
break;
|
2010-11-12 10:52:53 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2010-11-12 10:52:53 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (cb || dcb) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const issel = row.hasClassName("Selected");
|
2010-11-12 10:52:53 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (mode == "all" && !issel) {
|
|
|
|
row.addClassName("Selected");
|
|
|
|
cb.checked = true;
|
|
|
|
if (dcb) dcb.set("checked", true);
|
|
|
|
} else if (mode == "none" && issel) {
|
|
|
|
row.removeClassName("Selected");
|
|
|
|
cb.checked = false;
|
|
|
|
if (dcb) dcb.set("checked", false);
|
|
|
|
|
|
|
|
} else if (mode == "invert") {
|
|
|
|
|
|
|
|
if (issel) {
|
2010-11-14 12:55:51 +00:00
|
|
|
row.removeClassName("Selected");
|
2010-11-12 10:52:53 +00:00
|
|
|
cb.checked = false;
|
2012-06-14 17:04:14 +00:00
|
|
|
if (dcb) dcb.set("checked", false);
|
2017-03-04 11:34:44 +00:00
|
|
|
} else {
|
|
|
|
row.addClassName("Selected");
|
|
|
|
cb.checked = true;
|
|
|
|
if (dcb) dcb.set("checked", true);
|
2010-11-12 10:52:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getSelectedTableRowIds(id) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const rows = [];
|
2010-11-12 10:52:53 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const elem_rows = $(id).rows;
|
2010-11-12 10:52:53 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
for (let i = 0; i < elem_rows.length; i++) {
|
2017-03-04 11:34:44 +00:00
|
|
|
if (elem_rows[i].hasClassName("Selected")) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const bare_id = elem_rows[i].id.replace(/^[A-Z]*?-/, "");
|
2017-03-04 11:34:44 +00:00
|
|
|
rows.push(bare_id);
|
2010-11-12 10:52:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rows;
|
|
|
|
}
|
|
|
|
|
2018-12-01 08:18:35 +00:00
|
|
|
// noinspection JSUnusedGlobalSymbols
|
2013-03-27 05:40:07 +00:00
|
|
|
function label_to_feed_id(label) {
|
|
|
|
return _label_base_index - 1 - Math.abs(label);
|
|
|
|
}
|
|
|
|
|
2018-12-01 08:18:35 +00:00
|
|
|
// noinspection JSUnusedGlobalSymbols
|
2013-03-27 05:40:07 +00:00
|
|
|
function feed_to_label_id(feed) {
|
|
|
|
return _label_base_index - 1 + Math.abs(feed);
|
|
|
|
}
|
|
|
|
|
2013-11-12 10:21:28 +00:00
|
|
|
// http://stackoverflow.com/questions/6251937/how-to-get-selecteduser-highlighted-text-in-contenteditable-element-and-replac
|
|
|
|
function getSelectionText() {
|
2018-11-29 17:07:23 +00:00
|
|
|
let text = "";
|
2013-11-12 10:21:28 +00:00
|
|
|
|
|
|
|
if (typeof window.getSelection != "undefined") {
|
2018-11-29 17:07:23 +00:00
|
|
|
const sel = window.getSelection();
|
2013-11-12 10:21:28 +00:00
|
|
|
if (sel.rangeCount) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const container = document.createElement("div");
|
|
|
|
for (let i = 0, len = sel.rangeCount; i < len; ++i) {
|
2013-11-12 10:21:28 +00:00
|
|
|
container.appendChild(sel.getRangeAt(i).cloneContents());
|
|
|
|
}
|
|
|
|
text = container.innerHTML;
|
|
|
|
}
|
|
|
|
} else if (typeof document.selection != "undefined") {
|
|
|
|
if (document.selection.type == "Text") {
|
|
|
|
text = document.selection.createRange().textText;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return text.stripTags();
|
|
|
|
}
|
2015-09-11 10:05:08 +00:00
|
|
|
|
2018-12-01 08:18:35 +00:00
|
|
|
// noinspection JSUnusedGlobalSymbols
|
|
|
|
function popupOpenUrl(url) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const w = window.open("");
|
2017-02-08 12:07:05 +00:00
|
|
|
|
|
|
|
w.opener = null;
|
|
|
|
w.location = url;
|
|
|
|
}
|
2018-12-01 08:18:35 +00:00
|
|
|
|
|
|
|
// noinspection JSUnusedGlobalSymbols
|
|
|
|
function popupOpenArticle(id) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const w = window.open("",
|
2015-09-11 10:05:08 +00:00
|
|
|
"ttrss_article_popup",
|
|
|
|
"height=900,width=900,resizable=yes,status=no,location=no,menubar=no,directories=no,scrollbars=yes,toolbar=no");
|
2017-02-08 12:07:05 +00:00
|
|
|
|
|
|
|
w.opener = null;
|
|
|
|
w.location = "backend.php?op=article&method=view&mode=raw&html=1&zoom=1&id=" + id + "&csrf_token=" + getInitParam("csrf_token");
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|