ttrss/js/prefs.js

1518 lines
31 KiB
JavaScript
Raw Normal View History

2018-11-29 18:09:25 +01:00
let init_params = new Array();
2018-11-29 18:09:25 +01:00
let hotkey_prefix = false;
let hotkey_prefix_pressed = false;
2018-11-29 18:09:25 +01:00
let seq = "";
2011-12-13 11:00:36 +01:00
function notify_callback2(transport, sticky) {
notify_info(transport.responseText, sticky);
2009-01-24 08:17:00 +01:00
}
function updateFeedList() {
2018-11-29 18:07:23 +01:00
const user_search = $("feed_search");
let search = "";
if (user_search) { search = user_search.value; }
new Ajax.Request("backend.php", {
parameters: "?op=pref-feeds&search=" + param_escape(search),
onComplete: function(transport) {
2011-12-13 10:34:43 +01:00
dijit.byId('feedConfigTab').attr('content', transport.responseText);
selectTab("feedConfig", true);
notify("");
2009-01-24 08:17:00 +01:00
} });
2005-08-22 03:17:12 +02:00
}
function checkInactiveFeeds() {
new Ajax.Request("backend.php", {
parameters: "?op=pref-feeds&method=getinactivefeeds",
onComplete: function (transport) {
if (parseInt(transport.responseText) > 0) {
Element.show(dijit.byId("pref_feeds_inactive_btn").domNode);
}
}
});
}
2011-04-20 10:11:24 +02:00
2006-08-20 15:54:54 +02:00
function updateUsersList(sort_key) {
2018-11-29 18:07:23 +01:00
const user_search = $("user_search");
let search = "";
if (user_search) {
search = user_search.value;
}
2018-11-29 18:07:23 +01:00
const query = "?op=pref-users&sort=" +
param_escape(sort_key) +
"&search=" + param_escape(search);
2005-11-18 10:00:18 +01:00
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
dijit.byId('userConfigTab').attr('content', transport.responseText);
selectTab("userConfig", true)
notify("");
}
});
2005-11-18 10:00:18 +01:00
}
function addUser() {
2018-11-29 18:07:23 +01:00
const login = prompt(__("Please enter login:"), "");
2005-11-18 10:00:18 +01:00
if (login == null) {
return false;
}
if (login == "") {
alert(__("Can't create user: no login specified."));
return false;
}
notify_progress("Adding user...");
2018-11-29 18:07:23 +01:00
const query = "?op=pref-users&method=add&login=" +
param_escape(login);
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
notify_callback2(transport);
updateUsersList();
}
});
2005-11-18 10:00:18 +01:00
}
function editUser(id) {
2005-11-18 10:00:18 +01:00
2018-11-29 18:07:23 +01:00
const query = "backend.php?op=pref-users&method=edit&id=" +
param_escape(id);
2013-06-11 10:04:29 +02:00
if (dijit.byId("userEditDlg"))
dijit.byId("userEditDlg").destroyRecursive();
2013-06-11 10:04:29 +02:00
2018-03-10 14:11:33 +01:00
var dialog = new dijit.Dialog({
id: "userEditDlg",
title: __("User Editor"),
style: "width: 600px",
execute: function () {
if (this.validate()) {
notify_progress("Saving data...", true);
2013-06-11 10:04:29 +02:00
2018-11-29 18:07:23 +01:00
const query = dojo.formToQuery("user_edit_form");
2005-11-18 10:00:18 +01:00
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
dialog.hide();
updateUsersList();
}
});
}
},
href: query
});
dialog.show();
2005-11-18 10:00:18 +01:00
}
function editFilter(id) {
2018-11-29 18:07:23 +01:00
const query = "backend.php?op=pref-filters&method=edit&id=" + param_escape(id);
if (dijit.byId("feedEditDlg"))
dijit.byId("feedEditDlg").destroyRecursive();
if (dijit.byId("filterEditDlg"))
dijit.byId("filterEditDlg").destroyRecursive();
2018-03-10 14:11:33 +01:00
var dialog = new dijit.Dialog({
id: "filterEditDlg",
title: __("Edit Filter"),
style: "width: 600px",
test: function () {
2018-11-29 18:07:23 +01:00
const query = "backend.php?" + dojo.formToQuery("filter_edit_form") + "&savemode=test";
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-21 10:08:03 +01:00
if (select)
e.parentNode.addClassName("Selected");
else
e.parentNode.removeClassName("Selected");
});
},
editRule: function (e) {
2018-11-29 18:07:23 +01:00
const li = e.parentNode;
const rule = li.getElementsByTagName("INPUT")[1].value;
addFilterRule(li, rule);
},
editAction: function (e) {
2018-11-29 18:07:23 +01:00
const li = e.parentNode;
const action = li.getElementsByTagName("INPUT")[1].value;
addFilterAction(li, action);
},
removeFilter: function () {
2018-11-29 18:07:23 +01:00
const msg = __("Remove filter?");
if (confirm(msg)) {
this.hide();
2010-11-21 10:08:03 +01:00
notify_progress("Removing filter...");
2010-11-21 10:08:03 +01:00
2018-11-29 18:07:23 +01:00
const id = this.attr('value').id;
2018-11-29 18:07:23 +01:00
const query = "?op=pref-filters&method=remove&ids=" +
param_escape(id);
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
updateFilterList();
}
});
}
},
addAction: function () {
addFilterAction();
},
addRule: function () {
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()) {
notify_progress("Saving data...", true);
2012-08-30 16:50:56 +02:00
2018-11-29 18:07:23 +01:00
const query = dojo.formToQuery("filter_edit_form");
console.log(query);
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
dialog.hide();
updateFilterList();
}
});
}
},
href: query
});
dialog.show();
}
2005-11-23 08:07:04 +01:00
function getSelectedLabels() {
2018-11-29 18:07:23 +01:00
const tree = dijit.byId("labelTree");
const items = tree.model.getCheckedItems();
const rv = [];
2010-11-18 18:04:57 +01:00
items.each(function(item) {
rv.push(tree.model.store.getValue(item, 'bare_id'));
});
return rv;
2005-11-23 08:07:04 +01:00
}
2005-09-08 09:43:44 +02:00
2005-11-23 08:07:04 +01:00
function getSelectedUsers() {
2010-11-12 11:52:53 +01:00
return getSelectedTableRowIds("prefUserList");
}
2005-08-22 07:23:49 +02:00
function getSelectedFeeds() {
2018-11-29 18:07:23 +01:00
const tree = dijit.byId("feedTree");
const items = tree.model.getCheckedItems();
const rv = [];
items.each(function(item) {
if (item.id[0].match("FEED:"))
rv.push(tree.model.store.getValue(item, 'bare_id'));
});
return rv;
2005-11-23 08:07:04 +01:00
}
2005-08-22 06:56:40 +02:00
2012-09-03 14:06:24 +02:00
function getSelectedCategories() {
2018-11-29 18:07:23 +01:00
const tree = dijit.byId("feedTree");
const items = tree.model.getCheckedItems();
const rv = [];
2012-09-03 14:06:24 +02:00
items.each(function(item) {
if (item.id[0].match("CAT:"))
rv.push(tree.model.store.getValue(item, 'bare_id'));
});
return rv;
}
2005-11-23 08:07:04 +01:00
function getSelectedFilters() {
2018-11-29 18:07:23 +01:00
const tree = dijit.byId("filterTree");
const items = tree.model.getCheckedItems();
const rv = [];
items.each(function(item) {
rv.push(tree.model.store.getValue(item, 'bare_id'));
});
return rv;
2005-11-23 08:07:04 +01:00
}
2005-08-22 06:56:40 +02:00
2005-09-08 09:43:44 +02:00
function removeSelectedLabels() {
2018-11-29 18:07:23 +01:00
const sel_rows = getSelectedLabels();
2005-09-08 09:43:44 +02:00
if (sel_rows.length > 0) {
2018-11-29 18:07:23 +01:00
const ok = confirm(__("Remove selected labels?"));
2005-09-08 09:43:44 +02:00
if (ok) {
2007-03-02 20:58:58 +01:00
notify_progress("Removing selected labels...");
2018-11-29 18:07:23 +01:00
const query = "?op=pref-labels&method=remove&ids="+
2009-01-24 07:59:02 +01:00
param_escape(sel_rows.toString());
new Ajax.Request("backend.php", {
parameters: query,
2009-01-24 07:59:02 +01:00
onComplete: function(transport) {
2011-12-13 10:34:43 +01:00
updateLabelList();
2009-01-24 07:59:02 +01:00
} });
}
2005-09-08 09:43:44 +02:00
} else {
2007-08-10 18:16:43 +02:00
alert(__("No labels are selected."));
2005-09-08 09:43:44 +02:00
}
2006-07-25 12:47:51 +02:00
return false;
2005-09-08 09:43:44 +02:00
}
2005-11-18 10:00:18 +01:00
function removeSelectedUsers() {
2018-11-29 18:07:23 +01:00
const sel_rows = getSelectedUsers();
if (sel_rows.length > 0) {
2018-11-29 18:07:23 +01:00
const ok = confirm(__("Remove selected users? Neither default admin nor your account will be removed."));
if (ok) {
notify_progress("Removing selected users...");
2018-11-29 18:07:23 +01:00
const query = "?op=pref-users&method=remove&ids=" +
param_escape(sel_rows.toString());
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
updateUsersList();
}
});
}
2005-11-18 10:00:18 +01:00
} else {
alert(__("No users are selected."));
2005-11-18 10:00:18 +01:00
}
2006-07-25 12:47:51 +02:00
return false;
2005-11-18 10:00:18 +01:00
}
2005-09-08 09:43:44 +02:00
function removeSelectedFilters() {
2018-11-29 18:07:23 +01:00
const sel_rows = getSelectedFilters();
if (sel_rows.length > 0) {
2018-11-29 18:07:23 +01:00
const ok = confirm(__("Remove selected filters?"));
if (ok) {
notify_progress("Removing selected filters...");
2018-11-29 18:07:23 +01:00
const query = "?op=pref-filters&method=remove&ids=" +
param_escape(sel_rows.toString());
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
updateFilterList();
}
});
}
} else {
alert(__("No filters are selected."));
2005-09-08 09:43:44 +02:00
}
2006-07-25 12:47:51 +02:00
return false;
2005-09-08 09:43:44 +02:00
}
2005-08-22 07:23:49 +02:00
function removeSelectedFeeds() {
2018-11-29 18:07:23 +01:00
const sel_rows = getSelectedFeeds();
if (sel_rows.length > 0) {
2018-11-29 18:07:23 +01:00
const ok = confirm(__("Unsubscribe from selected feeds?"));
if (ok) {
notify_progress("Unsubscribing from selected feeds...", true);
2010-01-13 21:59:02 +01:00
2018-11-29 18:07:23 +01:00
const query = "?op=pref-feeds&method=remove&ids=" +
param_escape(sel_rows.toString());
2010-01-13 21:59:02 +01:00
console.log(query);
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
updateFeedList();
}
});
}
2005-08-22 05:20:00 +02:00
} else {
alert(__("No feeds are selected."));
2005-08-22 05:20:00 +02:00
}
2006-07-25 12:47:51 +02:00
return false;
2005-08-22 05:20:00 +02:00
}
2005-08-22 03:17:12 +02:00
2005-11-18 10:00:18 +01:00
function editSelectedUser() {
2018-11-29 18:07:23 +01:00
const rows = getSelectedUsers();
2005-11-18 10:00:18 +01:00
if (rows.length == 0) {
2007-03-06 07:54:47 +01:00
alert(__("No users are selected."));
2005-11-18 10:00:18 +01:00
return;
}
if (rows.length > 1) {
2007-03-06 07:54:47 +01:00
alert(__("Please select only one user."));
2005-11-18 10:00:18 +01:00
return;
}
2005-11-20 08:41:42 +01:00
notify("");
2005-11-18 10:00:18 +01:00
editUser(rows[0]);
}
function resetSelectedUserPass() {
2018-11-29 18:07:23 +01:00
const rows = getSelectedUsers();
if (rows.length == 0) {
alert(__("No users are selected."));
return;
}
if (rows.length > 1) {
alert(__("Please select only one user."));
return;
}
2018-11-29 18:07:23 +01:00
const ok = confirm(__("Reset password of selected user?"));
if (ok) {
notify_progress("Resetting password for selected user...");
2018-11-29 18:07:23 +01:00
const id = rows[0];
2018-11-29 18:07:23 +01:00
const query = "?op=pref-users&method=resetPass&id=" +
param_escape(id);
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
notify_info(transport.responseText, true);
}
});
2009-01-24 09:16:47 +01:00
}
2005-11-18 10:00:18 +01:00
}
2005-11-18 13:02:38 +01:00
function selectedUserDetails() {
2005-11-18 10:00:18 +01:00
2018-11-29 18:07:23 +01:00
const rows = getSelectedUsers();
if (rows.length == 0) {
alert(__("No users are selected."));
return;
}
if (rows.length > 1) {
alert(__("Please select only one user."));
return;
}
2018-11-29 18:07:23 +01:00
const id = rows[0];
2013-06-11 10:11:02 +02:00
2018-11-29 18:07:23 +01:00
const query = "backend.php?op=pref-users&method=userdetails&id=" + id;
2013-06-11 10:11:02 +02:00
if (dijit.byId("userDetailsDlg"))
dijit.byId("userDetailsDlg").destroyRecursive();
2013-06-11 10:11:02 +02:00
2018-03-10 14:11:33 +01:00
var dialog = new dijit.Dialog({
id: "userDetailsDlg",
title: __("User details"),
style: "width: 600px",
execute: function () {
dialog.hide();
},
href: query
});
2005-11-18 13:02:38 +01:00
dialog.show();
}
function editSelectedFilter() {
2018-11-29 18:07:23 +01:00
const rows = getSelectedFilters();
if (rows.length == 0) {
2007-03-06 07:54:47 +01:00
alert(__("No filters are selected."));
return;
}
if (rows.length > 1) {
2007-03-06 07:54:47 +01:00
alert(__("Please select only one filter."));
return;
}
2005-11-20 08:41:42 +01:00
notify("");
editFilter(rows[0]);
}
2012-08-30 16:50:56 +02:00
function joinSelectedFilters() {
2018-11-29 18:07:23 +01:00
const rows = getSelectedFilters();
2012-08-30 16:50:56 +02:00
if (rows.length == 0) {
alert(__("No filters are selected."));
return;
}
2018-11-29 18:07:23 +01:00
const ok = confirm(__("Combine selected filters?"));
2012-08-30 16:50:56 +02:00
if (ok) {
notify_progress("Joining filters...");
2018-11-29 18:07:23 +01:00
const query = "?op=pref-filters&method=join&ids="+
2012-08-30 16:50:56 +02:00
param_escape(rows.toString());
console.log(query);
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function(transport) {
updateFilterList();
} });
}
}
function editSelectedFeed() {
2018-11-29 18:07:23 +01:00
const rows = getSelectedFeeds();
if (rows.length == 0) {
2007-03-06 07:54:47 +01:00
alert(__("No feeds are selected."));
return;
}
if (rows.length > 1) {
2010-01-11 16:43:53 +01:00
return editSelectedFeeds();
}
2005-11-20 08:41:42 +01:00
notify("");
2010-11-14 21:46:49 +01:00
editFeed(rows[0], {});
2005-11-23 08:07:04 +01:00
}
function editSelectedFeeds() {
2018-11-29 18:07:23 +01:00
const rows = getSelectedFeeds();
if (rows.length == 0) {
alert(__("No feeds are selected."));
return;
}
2010-11-21 09:55:28 +01:00
notify_progress("Loading, please wait...");
2010-11-21 09:55:28 +01:00
2018-11-29 18:07:23 +01:00
const query = "backend.php?op=pref-feeds&method=editfeeds&ids=" +
param_escape(rows.toString());
console.log(query);
if (dijit.byId("feedEditDlg"))
dijit.byId("feedEditDlg").destroyRecursive();
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
notify("");
var dialog = new dijit.Dialog({
id: "feedEditDlg",
title: __("Edit Multiple Feeds"),
style: "width: 600px",
getChildByName: function (name) {
2018-11-29 18:07:23 +01:00
let rv = null;
this.getChildren().each(
function (child) {
if (child.name == name) {
rv = child;
return;
}
});
return rv;
},
toggleField: function (checkbox, elem, label) {
this.getChildByName(elem).attr('disabled', !checkbox.checked);
if ($(label))
if (checkbox.checked)
$(label).removeClassName('insensitive');
else
$(label).addClassName('insensitive');
},
execute: function () {
if (this.validate() && confirm(__("Save changes to selected feeds?"))) {
2018-11-29 18:07:23 +01:00
let query = dojo.objectToQuery(this.attr('value'));
/* Form.serialize ignores unchecked checkboxes */
if (!query.match("&private=") &&
this.getChildByName('private').attr('disabled') == false) {
query = query + "&private=false";
}
try {
if (!query.match("&cache_images=") &&
this.getChildByName('cache_images').attr('disabled') == false) {
query = query + "&cache_images=false";
}
} catch (e) {
}
2010-11-21 09:55:28 +01:00
try {
if (!query.match("&hide_images=") &&
this.getChildByName('hide_images').attr('disabled') == false) {
query = query + "&hide_images=false";
}
} catch (e) {
}
if (!query.match("&include_in_digest=") &&
this.getChildByName('include_in_digest').attr('disabled') == false) {
query = query + "&include_in_digest=false";
}
if (!query.match("&always_display_enclosures=") &&
this.getChildByName('always_display_enclosures').attr('disabled') == false) {
query = query + "&always_display_enclosures=false";
}
if (!query.match("&mark_unread_on_update=") &&
this.getChildByName('mark_unread_on_update').attr('disabled') == false) {
query = query + "&mark_unread_on_update=false";
}
2010-11-21 09:55:28 +01:00
console.log(query);
2010-11-21 09:55:28 +01:00
notify_progress("Saving data...", true);
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
dialog.hide();
updateFeedList();
}
});
}
},
content: transport.responseText
});
dialog.show();
2010-11-21 16:01:14 +01:00
}
});
}
2010-11-21 16:01:14 +01:00
function opmlImportComplete(iframe) {
if (!iframe.contentDocument.body.innerHTML) return false;
Element.show(iframe);
notify('');
if (dijit.byId('opmlImportDlg'))
dijit.byId('opmlImportDlg').destroyRecursive();
2018-11-29 18:07:23 +01:00
const content = iframe.contentDocument.body.innerHTML;
2018-11-29 18:07:23 +01:00
const dialog = new dijit.Dialog({
id: "opmlImportDlg",
title: __("OPML Import"),
style: "width: 600px",
onCancel: function () {
2017-07-02 19:26:18 +02:00
window.location.reload();
},
execute: function () {
2017-07-02 19:26:18 +02:00
window.location.reload();
},
content: content
});
2010-11-21 16:01:14 +01:00
dialog.show();
2010-11-21 16:01:14 +01:00
}
2010-01-13 21:59:02 +01:00
function opmlImport() {
2018-11-29 18:07:23 +01:00
const opml_file = $("opml_file");
2005-09-02 13:49:47 +02:00
if (opml_file.value.length == 0) {
2010-11-21 11:13:34 +01:00
alert(__("Please choose an OPML file first."));
2005-09-02 13:49:47 +02:00
return false;
} else {
notify_progress("Importing, please wait...", true);
Element.show("upload_iframe");
2005-09-02 13:49:47 +02:00
return true;
}
}
2010-11-21 09:55:28 +01:00
function updateFilterList() {
2018-11-29 18:07:23 +01:00
const user_search = $("filter_search");
let search = "";
2012-06-29 11:11:39 +02:00
if (user_search) { search = user_search.value; }
2010-11-21 09:55:28 +01:00
new Ajax.Request("backend.php", {
2012-06-29 11:11:39 +02:00
parameters: "?op=pref-filters&search=" + param_escape(search),
2010-11-21 09:55:28 +01:00
onComplete: function(transport) {
2011-12-13 11:00:36 +01:00
dijit.byId('filterConfigTab').attr('content', transport.responseText);
notify("");
2010-11-21 09:55:28 +01:00
} });
}
2010-11-21 09:55:28 +01:00
function updateLabelList() {
new Ajax.Request("backend.php", {
parameters: "?op=pref-labels",
onComplete: function(transport) {
2011-12-13 10:34:43 +01:00
dijit.byId('labelConfigTab').attr('content', transport.responseText);
notify("");
2010-11-21 09:55:28 +01:00
} });
2005-09-08 09:43:44 +02:00
}
2005-11-16 18:53:50 +01:00
function updatePrefsList() {
new Ajax.Request("backend.php", {
2010-11-21 09:55:28 +01:00
parameters: "?op=pref-prefs",
onComplete: function(transport) {
2011-12-13 10:34:43 +01:00
dijit.byId('genConfigTab').attr('content', transport.responseText);
notify("");
2009-01-24 08:44:29 +01:00
} });
2005-11-16 18:53:50 +01:00
}
2013-04-17 06:42:39 +02:00
function updateSystemList() {
new Ajax.Request("backend.php", {
parameters: "?op=pref-system",
onComplete: function(transport) {
dijit.byId('systemConfigTab').attr('content', transport.responseText);
notify("");
} });
}
function selectTab(id, noupdate) {
if (!noupdate) {
notify_progress("Loading, please wait...");
2010-11-16 13:56:48 +01:00
if (id == "feedConfig") {
updateFeedList();
} else if (id == "filterConfig") {
updateFilterList();
} else if (id == "labelConfig") {
updateLabelList();
} else if (id == "genConfig") {
updatePrefsList();
} else if (id == "userConfig") {
updateUsersList();
} else if (id == "systemConfig") {
updateSystemList();
2005-10-28 19:58:20 +02:00
}
2018-11-29 18:07:23 +01:00
const tab = dijit.byId(id + "Tab");
dijit.byId("pref-tabs").selectChild(tab);
}
}
function init_second_stage() {
document.onkeydown = pref_hotkey_handler;
loading_set_progress(50);
notify("");
2018-11-29 18:07:23 +01:00
let tab = getURLParam('tab');
if (tab) {
tab = dijit.byId(tab + "Tab");
if (tab) dijit.byId("pref-tabs").selectChild(tab);
}
2018-11-29 18:07:23 +01:00
const method = getURLParam('method');
2010-11-17 14:21:49 +01:00
if (method == 'editFeed') {
2018-11-29 18:07:23 +01:00
const param = getURLParam('methodparam');
2009-10-09 11:13:57 +02:00
window.setTimeout(function() { editFeed(param) }, 100);
2006-06-01 16:48:46 +02:00
}
setTimeout(hotkey_prefix_timeout, 5*1000);
}
2005-08-22 03:17:12 +02:00
function init() {
window.onerror = function (message, filename, lineno, colno, error) {
report_error(message, filename, lineno, colno, error);
};
require(["dojo/_base/kernel",
"dojo/ready",
"dojo/parser",
"dojo/_base/loader",
"dojo/_base/html",
"dijit/ColorPalette",
"dijit/Dialog",
"dijit/form/Button",
"dijit/form/CheckBox",
"dijit/form/DropDownButton",
"dijit/form/FilteringSelect",
2017-07-02 19:26:18 +02:00
"dijit/form/MultiSelect",
"dijit/form/Form",
"dijit/form/RadioButton",
"dijit/form/ComboButton",
"dijit/form/Select",
"dijit/form/SimpleTextarea",
"dijit/form/TextBox",
"dijit/form/ValidationTextBox",
"dijit/InlineEditBox",
"dijit/layout/AccordionContainer",
"dijit/layout/AccordionPane",
"dijit/layout/BorderContainer",
"dijit/layout/ContentPane",
"dijit/layout/TabContainer",
"dijit/Menu",
"dijit/ProgressBar",
"dijit/Toolbar",
"dijit/Tree",
"dijit/tree/dndSource",
"dojo/data/ItemFileWriteStore",
"lib/CheckBoxStoreModel",
"lib/CheckBoxTree",
"fox/PrefFeedStore",
"fox/PrefFilterStore",
"fox/PrefFeedTree",
"fox/PrefFilterTree",
"fox/PrefLabelTree"], function (dojo, ready, parser) {
ready(function () {
try {
parser.parse();
loading_set_progress(50);
2018-11-29 18:07:23 +01:00
const clientTzOffset = new Date().getTimezoneOffset() * 60;
2005-08-25 17:26:33 +02:00
new Ajax.Request("backend.php", {
parameters: {
op: "rpc", method: "sanityCheck",
clientTzOffset: clientTzOffset
},
onComplete: function (transport) {
backend_sanity_check_callback(transport);
}
2016-08-10 11:22:30 +02:00
});
} catch (e) {
exception_error(e);
}
});
});
2005-08-22 03:17:12 +02:00
}
2005-11-17 08:10:31 +01:00
function validatePrefsReset() {
2018-11-29 18:07:23 +01:00
const ok = confirm(__("Reset to defaults?"));
if (ok) {
2018-11-29 18:07:23 +01:00
const query = "?op=pref-prefs&method=resetconfig";
console.log(query);
2009-01-24 08:44:29 +01:00
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function(transport) {
updatePrefsList();
notify_info(transport.responseText);
} });
}
return false;
}
2005-12-29 17:36:41 +01:00
2006-08-12 16:57:13 +02:00
function pref_hotkey_handler(e) {
2012-12-28 12:42:02 +01:00
if (e.target.nodeName == "INPUT" || e.target.nodeName == "TEXTAREA") return;
2010-11-20 21:45:31 +01:00
2018-11-29 18:07:23 +01:00
let keycode = false;
let shift_key = false;
2008-05-16 08:05:12 +02:00
2018-11-29 18:07:23 +01:00
const cmdline = $('cmdline');
2009-10-09 11:13:57 +02:00
try {
shift_key = e.shiftKey;
} catch (e) {
2008-05-16 08:05:12 +02:00
}
2008-05-16 08:05:12 +02:00
if (window.event) {
keycode = window.event.keyCode;
} else if (e) {
keycode = e.which;
}
2008-05-16 08:05:12 +02:00
2018-11-29 18:07:23 +01:00
let keychar = String.fromCharCode(keycode);
2008-05-18 05:44:59 +02:00
if (keycode == 27) { // escape
hotkey_prefix = false;
}
2008-05-16 08:05:12 +02:00
if (keycode == 16) return; // ignore lone shift
if (keycode == 17) return; // ignore lone ctrl
2008-05-16 08:05:12 +02:00
if (!shift_key) keychar = keychar.toLowerCase();
2012-12-28 12:42:02 +01:00
var hotkeys = getInitParam("hotkeys");
2012-12-28 12:42:02 +01:00
if (!hotkey_prefix && hotkeys[0].indexOf(keychar) != -1) {
2009-10-09 11:13:57 +02:00
2018-11-29 18:07:23 +01:00
const date = new Date();
const ts = Math.round(date.getTime() / 1000);
2009-10-09 11:13:57 +02:00
hotkey_prefix = keychar;
hotkey_prefix_pressed = ts;
2009-10-09 11:13:57 +02:00
cmdline.innerHTML = keychar;
Element.show(cmdline);
2009-10-09 11:13:57 +02:00
return true;
}
2008-05-16 08:05:12 +02:00
Element.hide(cmdline);
2009-10-09 11:13:57 +02:00
2018-11-29 18:07:23 +01:00
let hotkey = keychar.search(/[a-zA-Z0-9]/) != -1 ? keychar : "(" + keycode + ")";
hotkey = hotkey_prefix ? hotkey_prefix + " " + hotkey : hotkey;
hotkey_prefix = false;
2008-05-16 08:39:46 +02:00
2018-11-29 18:07:23 +01:00
let hotkey_action = false;
var hotkeys = getInitParam("hotkeys");
2008-05-16 08:05:12 +02:00
2018-11-29 18:07:23 +01:00
for (const sequence in hotkeys[1]) {
if (sequence == hotkey) {
hotkey_action = hotkeys[1][sequence];
break;
2008-05-16 08:05:12 +02:00
}
}
2008-05-16 08:05:12 +02:00
switch (hotkey_action) {
2012-12-28 12:42:02 +01:00
case "feed_subscribe":
quickAddFeed();
return false;
2012-12-28 12:42:02 +01:00
case "create_label":
addLabel();
return false;
2012-12-28 12:42:02 +01:00
case "create_filter":
quickAddFilter();
return false;
2012-12-28 12:42:02 +01:00
case "help_dialog":
//helpDialog("prefs");
return false;
default:
console.log("unhandled action: " + hotkey_action + "; hotkey: " + hotkey);
2006-08-12 16:57:13 +02:00
}
}
function removeCategory(id, item) {
2009-01-24 07:11:42 +01:00
2018-11-29 18:07:23 +01:00
const ok = confirm(__("Remove category %s? Any nested feeds would be placed into Uncategorized.").replace("%s", item.name));
2010-11-20 19:29:19 +01:00
if (ok) {
2018-11-29 18:07:23 +01:00
const query = "?op=pref-feeds&method=removeCat&ids=" +
param_escape(id);
notify_progress("Removing category...");
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
notify('');
updateFeedList();
}
});
}
}
2012-09-03 14:06:24 +02:00
function removeSelectedCategories() {
2018-11-29 18:07:23 +01:00
const sel_rows = getSelectedCategories();
2012-09-03 14:06:24 +02:00
if (sel_rows.length > 0) {
2018-11-29 18:07:23 +01:00
const ok = confirm(__("Remove selected categories?"));
2012-09-03 14:06:24 +02:00
if (ok) {
notify_progress("Removing selected categories...");
2018-11-29 18:07:23 +01:00
const query = "?op=pref-feeds&method=removeCat&ids="+
2012-09-03 14:06:24 +02:00
param_escape(sel_rows.toString());
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function(transport) {
updateFeedList();
} });
}
} else {
alert(__("No categories are selected."));
}
return false;
}
function createCategory() {
2018-11-29 18:07:23 +01:00
const title = prompt(__("Category title:"));
if (title) {
2010-11-20 19:29:19 +01:00
notify_progress("Creating category...");
2010-11-20 19:29:19 +01:00
2018-11-29 18:07:23 +01:00
const query = "?op=pref-feeds&method=addCat&cat=" +
param_escape(title);
2010-11-20 19:29:19 +01:00
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
notify('');
updateFeedList();
}
});
}
2006-10-04 07:40:00 +02:00
}
2006-12-01 07:26:05 +01:00
function showInactiveFeeds() {
2018-11-29 18:07:23 +01:00
const query = "backend.php?op=pref-feeds&method=inactiveFeeds";
if (dijit.byId("inactiveFeedsDlg"))
dijit.byId("inactiveFeedsDlg").destroyRecursive();
2018-03-10 14:11:33 +01:00
var dialog = new dijit.Dialog({
id: "inactiveFeedsDlg",
title: __("Feeds without recent updates"),
style: "width: 600px",
getSelectedFeeds: function () {
return getSelectedTableRowIds("prefInactiveFeedList");
},
removeSelected: function () {
2018-11-29 18:07:23 +01:00
const sel_rows = this.getSelectedFeeds();
console.log(sel_rows);
if (sel_rows.length > 0) {
2018-11-29 18:07:23 +01:00
const ok = confirm(__("Remove selected feeds?"));
if (ok) {
notify_progress("Removing selected feeds...", true);
2018-11-29 18:07:23 +01:00
const query = "?op=pref-feeds&method=remove&ids=" +
param_escape(sel_rows.toString());
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
notify('');
dialog.hide();
updateFeedList();
}
});
}
} else {
alert(__("No feeds are selected."));
}
},
execute: function () {
if (this.validate()) {
}
},
href: query
});
dialog.show();
}
function opmlRegenKey() {
2018-11-29 18:07:23 +01:00
const ok = confirm(__("Replace current OPML publishing address with a new one?"));
if (ok) {
notify_progress("Trying to change address...", true);
2018-11-29 18:07:23 +01:00
const query = "?op=pref-feeds&method=regenOPMLKey";
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
2018-11-29 18:07:23 +01:00
const reply = JSON.parse(transport.responseText);
2018-11-29 18:07:23 +01:00
const new_link = reply.link;
2018-11-29 18:07:23 +01:00
const e = $('pub_opml_url');
if (new_link) {
e.href = new_link;
e.innerHTML = new_link;
new Effect.Highlight(e);
notify('');
} else {
notify_error("Could not change feed URL.");
}
}
});
}
return false;
}
2007-10-18 06:51:29 +02:00
2009-01-26 12:30:13 +01:00
function labelColorReset() {
2018-11-29 18:07:23 +01:00
const labels = getSelectedLabels();
2009-01-26 12:30:13 +01:00
if (labels.length > 0) {
2018-11-29 18:07:23 +01:00
const ok = confirm(__("Reset selected labels to default colors?"));
2009-01-26 12:30:13 +01:00
if (ok) {
2018-11-29 18:07:23 +01:00
const query = "?op=pref-labels&method=colorreset&ids=" +
param_escape(labels.toString());
2010-11-21 11:17:26 +01:00
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
updateLabelList();
}
});
2009-01-26 12:30:13 +01:00
}
} else {
alert(__("No labels are selected."));
2009-01-26 12:30:13 +01:00
}
}
function inPreferences() {
return true;
}
function editProfiles() {
2010-11-21 10:50:14 +01:00
if (dijit.byId("profileEditDlg"))
dijit.byId("profileEditDlg").destroyRecursive();
2010-11-21 10:50:14 +01:00
2018-11-29 18:07:23 +01:00
const query = "backend.php?op=pref-prefs&method=editPrefProfiles";
2010-11-21 10:50:14 +01:00
2018-03-10 14:11:33 +01:00
var dialog = new dijit.Dialog({
id: "profileEditDlg",
title: __("Settings Profiles"),
style: "width: 600px",
getSelectedProfiles: function () {
return getSelectedTableRowIds("prefFeedProfileList");
},
removeSelected: function () {
2018-11-29 18:07:23 +01:00
const sel_rows = this.getSelectedProfiles();
if (sel_rows.length > 0) {
2018-11-29 18:07:23 +01:00
const ok = confirm(__("Remove selected profiles? Active and default profiles will not be removed."));
if (ok) {
notify_progress("Removing selected profiles...", true);
2018-11-29 18:07:23 +01:00
const query = "?op=rpc&method=remprofiles&ids=" +
param_escape(sel_rows.toString());
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
notify('');
editProfiles();
}
});
2010-11-21 10:50:14 +01:00
}
} else {
alert(__("No profiles are selected."));
}
},
activateProfile: function () {
2018-11-29 18:07:23 +01:00
const sel_rows = this.getSelectedProfiles();
if (sel_rows.length == 1) {
2018-11-29 18:07:23 +01:00
const ok = confirm(__("Activate selected profile?"));
if (ok) {
notify_progress("Loading, please wait...");
2018-11-29 18:07:23 +01:00
const query = "?op=rpc&method=setprofile&id=" +
param_escape(sel_rows.toString());
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
window.location.reload();
}
});
}
2010-11-21 10:50:14 +01:00
} else {
alert(__("Please choose a profile to activate."));
}
},
addProfile: function () {
if (this.validate()) {
notify_progress("Creating profile...", true);
2010-11-21 10:50:14 +01:00
2018-11-29 18:07:23 +01:00
const query = "?op=rpc&method=addprofile&title=" +
param_escape(dialog.attr('value').newprofile);
2010-11-21 10:50:14 +01:00
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
notify('');
editProfiles();
}
});
2010-11-21 10:50:14 +01:00
}
},
execute: function () {
if (this.validate()) {
}
},
href: query
});
dialog.show();
}
function activatePrefProfile() {
2018-11-29 18:07:23 +01:00
const sel_rows = getSelectedFeedCats();
if (sel_rows.length == 1) {
2018-11-29 18:07:23 +01:00
const ok = confirm(__("Activate selected profile?"));
if (ok) {
notify_progress("Loading, please wait...");
2018-11-29 18:07:23 +01:00
const query = "?op=rpc&method=setprofile&id="+
param_escape(sel_rows.toString());
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function(transport) {
window.location.reload();
} });
}
} else {
alert(__("Please choose a profile to activate."));
}
return false;
}
function clearFeedAccessKeys() {
2018-11-29 18:07:23 +01:00
const ok = confirm(__("This will invalidate all previously generated feed URLs. Continue?"));
if (ok) {
notify_progress("Clearing URLs...");
2018-11-29 18:07:23 +01:00
const query = "?op=pref-feeds&method=clearKeys";
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function(transport) {
notify_info("Generated URLs cleared.");
} });
}
return false;
}
2013-03-31 15:15:23 +02:00
function resetFilterOrder() {
notify_progress("Loading, please wait...");
2013-03-31 15:15:23 +02:00
new Ajax.Request("backend.php", {
parameters: "?op=pref-filters&method=filtersortreset",
onComplete: function (transport) {
updateFilterList();
}
});
2013-03-31 15:15:23 +02:00
}
function resetFeedOrder() {
notify_progress("Loading, please wait...");
new Ajax.Request("backend.php", {
parameters: "?op=pref-feeds&method=feedsortreset",
onComplete: function (transport) {
updateFeedList();
}
});
}
function resetCatOrder() {
notify_progress("Loading, please wait...");
new Ajax.Request("backend.php", {
parameters: "?op=pref-feeds&method=catsortreset",
onComplete: function (transport) {
updateFeedList();
}
});
}
function editCat(id, item) {
2018-11-29 18:07:23 +01:00
const new_name = prompt(__('Rename category to:'), item.name);
if (new_name && new_name != item.name) {
notify_progress("Loading, please wait...");
new Ajax.Request("backend.php", {
parameters: {
op: 'pref-feeds',
2011-12-12 19:46:25 +01:00
method: 'renamecat',
id: id,
title: new_name,
},
onComplete: function (transport) {
updateFeedList();
}
});
}
}
2010-11-18 18:04:57 +01:00
function editLabel(id) {
2018-11-29 18:07:23 +01:00
const query = "backend.php?op=pref-labels&method=edit&id=" +
param_escape(id);
if (dijit.byId("labelEditDlg"))
dijit.byId("labelEditDlg").destroyRecursive();
2018-11-29 18:07:23 +01:00
const dialog = new dijit.Dialog({
id: "labelEditDlg",
title: __("Label Editor"),
style: "width: 600px",
setLabelColor: function (id, fg, bg) {
2018-11-29 18:07:23 +01:00
let kind = '';
let color = '';
if (fg && bg) {
kind = 'both';
} else if (fg) {
kind = 'fg';
color = fg;
} else if (bg) {
kind = 'bg';
color = bg;
}
2018-11-29 18:07:23 +01:00
const query = "?op=pref-labels&method=colorset&kind=" + kind +
"&ids=" + param_escape(id) + "&fg=" + param_escape(fg) +
"&bg=" + param_escape(bg) + "&color=" + param_escape(color);
// console.log(query);
2018-11-29 18:07:23 +01:00
const e = $("LICID-" + id);
if (e) {
if (fg) e.style.color = fg;
if (bg) e.style.backgroundColor = bg;
}
2010-11-21 09:55:28 +01:00
new Ajax.Request("backend.php", {parameters: query});
updateFilterList();
},
execute: function () {
if (this.validate()) {
2018-11-29 18:07:23 +01:00
const caption = this.attr('value').caption;
const fg_color = this.attr('value').fg_color;
const bg_color = this.attr('value').bg_color;
const query = dojo.objectToQuery(this.attr('value'));
dijit.byId('labelTree').setNameById(id, caption);
this.setLabelColor(id, fg_color, bg_color);
this.hide();
2010-11-18 18:04:57 +01:00
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
updateFilterList();
}
});
}
},
href: query
});
2010-11-18 18:04:57 +01:00
dialog.show();
2010-11-18 18:04:57 +01:00
}
2010-11-19 10:12:54 +01:00
2010-11-24 17:23:24 +01:00
function customizeCSS() {
2018-11-29 18:07:23 +01:00
const query = "backend.php?op=pref-prefs&method=customizeCSS";
2010-11-24 17:23:24 +01:00
if (dijit.byId("cssEditDlg"))
dijit.byId("cssEditDlg").destroyRecursive();
2010-11-24 17:23:24 +01:00
2018-11-29 18:07:23 +01:00
const dialog = new dijit.Dialog({
id: "cssEditDlg",
title: __("Customize stylesheet"),
style: "width: 600px",
execute: function () {
notify_progress('Saving data...', true);
new Ajax.Request("backend.php", {
parameters: dojo.objectToQuery(this.attr('value')),
onComplete: function (transport) {
notify('');
window.location.reload();
}
});
2010-11-24 17:23:24 +01:00
},
href: query
});
2010-11-24 17:23:24 +01:00
dialog.show();
2010-11-24 17:23:24 +01:00
}
function insertSSLserial(value) {
dijit.byId("SSL_CERT_SERIAL").attr('value', value);
}
2011-04-20 10:11:24 +02:00
2011-12-28 06:46:54 +01:00
function gotoExportOpml(filename, settings) {
2018-11-29 18:07:23 +01:00
const tmp = settings ? 1 : 0;
2012-08-15 13:47:13 +02:00
document.location.href = "backend.php?op=opml&method=export&filename=" + filename + "&settings=" + tmp;
2011-12-28 06:46:54 +01:00
}
function batchSubscribe() {
2018-11-29 18:07:23 +01:00
const query = "backend.php?op=pref-feeds&method=batchSubscribe";
// overlapping widgets
if (dijit.byId("batchSubDlg")) dijit.byId("batchSubDlg").destroyRecursive();
if (dijit.byId("feedAddDlg")) dijit.byId("feedAddDlg").destroyRecursive();
var dialog = new dijit.Dialog({
id: "batchSubDlg",
title: __("Batch subscribe"),
style: "width: 600px",
execute: function () {
if (this.validate()) {
console.log(dojo.objectToQuery(this.attr('value')));
notify_progress(__("Subscribing to feeds..."), true);
new Ajax.Request("backend.php", {
parameters: dojo.objectToQuery(this.attr('value')),
onComplete: function (transport) {
notify("");
updateFeedList();
dialog.hide();
}
});
}
},
href: query
});
dialog.show();
}
function clearPluginData(name) {
if (confirm(__("Clear stored data for this plugin?"))) {
notify_progress("Loading, please wait...");
new Ajax.Request("backend.php", {
parameters: "?op=pref-prefs&method=clearplugindata&name=" + param_escape(name),
onComplete: function(transport) {
notify('');
updatePrefsList();
} });
}
}
2013-04-29 21:12:54 +02:00
function clearSqlLog() {
if (confirm(__("Clear all messages in the error log?"))) {
notify_progress("Loading, please wait...");
2018-11-29 18:07:23 +01:00
const query = "?op=pref-system&method=clearLog";
2013-04-29 21:12:54 +02:00
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function(transport) {
updateSystemList();
} });
}
}
function updateSelectedPrompt() {
// no-op shim for toggleSelectedRow()
}