1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-01 12:40:50 +02:00
ttrss/js/prefs.js

1217 lines
26 KiB
JavaScript
Raw Normal View History

2018-11-29 19:03:55 +01:00
/* global dijit, __ */
2018-12-01 16:08:09 +01:00
const App = {
init: function() {
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",
"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();
Utils.setLoadingProgress(50);
2018-12-01 16:08:09 +01:00
const clientTzOffset = new Date().getTimezoneOffset() * 60;
const params = {op: "rpc", method: "sanityCheck", clientTzOffset: clientTzOffset};
xhrPost("backend.php", params, (transport) => {
Utils.backendSanityCallback(transport);
});
} catch (e) {
exception_error(e);
}
});
});
},
initSecondStage: function() {
2018-12-01 19:51:00 +01:00
document.onkeydown = () => { App.hotkeyHandler(event) };
Utils.setLoadingProgress(50);
2018-12-01 16:08:09 +01:00
notify("");
let tab = getURLParam('tab');
if (tab) {
tab = dijit.byId(tab + "Tab");
if (tab) dijit.byId("pref-tabs").selectChild(tab);
}
const method = getURLParam('method');
if (method == 'editFeed') {
const param = getURLParam('methodparam');
window.setTimeout(function () {
CommonDialogs.editFeed(param)
2018-12-01 16:08:09 +01:00
}, 100);
}
2018-12-01 16:10:30 +01:00
},
hotkeyHandler: function (event) {
if (event.target.nodeName == "INPUT" || event.target.nodeName == "TEXTAREA") return;
const action_name = Utils.keyeventToAction(event);
2018-12-01 16:10:30 +01:00
if (action_name) {
switch (action_name) {
case "feed_subscribe":
CommonDialogs.quickAddFeed();
2018-12-01 16:10:30 +01:00
return false;
case "create_label":
2018-12-01 20:19:20 +01:00
CommonDialogs.addLabel();
2018-12-01 16:10:30 +01:00
return false;
case "create_filter":
Filters.quickAddFilter();
2018-12-01 16:10:30 +01:00
return false;
case "help_dialog":
Utils.helpDialog("main");
return false;
default:
console.log("unhandled action: " + action_name + "; keycode: " + event.which);
}
}
2018-12-01 19:51:00 +01:00
},
isPrefs: function() {
return true;
2018-12-01 16:08:09 +01:00
}
2018-12-01 19:51:00 +01:00
};
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
}
2018-12-01 16:05:20 +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; }
xhrPost("backend.php", { op: "pref-feeds", search: search }, (transport) => {
dijit.byId('feedConfigTab').attr('content', transport.responseText);
selectTab("feedConfig", true);
notify("");
});
2005-08-22 03:17:12 +02:00
}
function checkInactiveFeeds() {
xhrPost("backend.php", { op: "pref-feeds", method: "getinactivefeeds" }, (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");
const search = user_search ? user_search.value : "";
const query = { op: "pref-users", sort: sort_key, search: search };
2005-11-18 10:00:18 +01:00
xhrPost("backend.php", query, (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...");
xhrPost("backend.php", { op: "pref-users", method: "add", login: login }, (transport) => {
2018-11-30 13:07:44 +01:00
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-11-29 19:13:41 +01:00
const 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
xhrPost("backend.php", dojo.formToObject("user_edit_form"), (transport) => {
2018-11-30 13:07:44 +01:00
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-11-29 19:13:41 +01:00
const 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
const query = { op: "pref-filters", method: "remove", ids: this.attr('value').id };
xhrPost("backend.php", query, () => {
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
xhrPost("backend.php", dojo.formToObject("filter_edit_form"), () => {
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-30 11:05:59 +01:00
if (confirm(__("Remove selected labels?"))) {
2007-03-02 20:58:58 +01:00
notify_progress("Removing selected labels...");
const query = { op: "pref-labels", method: "remove",
ids: sel_rows.toString() };
2009-01-24 07:59:02 +01:00
xhrPost("backend.php", query, () => {
updateLabelList();
});
}
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-30 11:05:59 +01:00
if (confirm(__("Remove selected users? Neither default admin nor your account will be removed."))) {
notify_progress("Removing selected users...");
const query = { op: "pref-users", method: "remove",
ids: sel_rows.toString() };
xhrPost("backend.php", query, () => {
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-30 11:05:59 +01:00
if (confirm(__("Remove selected filters?"))) {
notify_progress("Removing selected filters...");
const query = { op: "pref-filters", method: "remove",
ids: sel_rows.toString() };
xhrPost("backend.php", query, () => {
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-30 11:05:59 +01:00
if (confirm(__("Unsubscribe from selected feeds?"))) {
notify_progress("Unsubscribing from selected feeds...", true);
2010-01-13 21:59:02 +01:00
const query = { op: "pref-feeds", method: "remove",
ids: sel_rows.toString() };
xhrPost("backend.php", query, () => {
2018-12-01 16:05:20 +01:00
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-30 11:05:59 +01:00
if (confirm(__("Reset password of selected user?"))) {
notify_progress("Resetting password for selected user...");
2018-11-29 18:07:23 +01:00
const id = rows[0];
xhrPost("backend.php", { op: "pref-users", method: "resetPass", id: id }, (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;
}
const query = "backend.php?op=pref-users&method=userdetails&id=" + param_escape(rows[0]);
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-11-29 19:13:41 +01:00
const 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-30 11:05:59 +01:00
if (confirm(__("Combine selected filters?"))) {
2012-08-30 16:50:56 +02:00
notify_progress("Joining filters...");
xhrPost("backend.php", { op: "pref-filters", method: "join", ids: rows.toString() }, () => {
updateFilterList();
});
2012-08-30 16:50:56 +02:00
}
}
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("");
CommonDialogs.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
if (dijit.byId("feedEditDlg"))
dijit.byId("feedEditDlg").destroyRecursive();
xhrPost("backend.php", { op: "pref-feeds", method: "editfeeds", ids: rows.toString() }, (transport) => {
notify("");
const dialog = new dijit.Dialog({
id: "feedEditDlg",
title: __("Edit Multiple Feeds"),
style: "width: 600px",
getChildByName: function (name) {
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?"))) {
const query = this.attr('value');
/* normalize unchecked checkboxes because [] is not serialized */
Object.keys(query).each((key) => {
let val = query[key];
if (typeof val == "object" && val.length == 0)
query[key] = ["off"];
});
notify_progress("Saving data...", true);
xhrPost("backend.php", query, () => {
dialog.hide();
2018-12-01 16:05:20 +01:00
updateFeedList();
});
}
},
content: transport.responseText
});
2010-11-21 16:01:14 +01:00
dialog.show();
});
}
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 () {
2018-11-30 13:07:44 +01: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; }
xhrPost("backend.php", { op: "pref-filters", search: search }, (transport) => {
2018-11-30 13:07:44 +01:00
dijit.byId('filterConfigTab').attr('content', transport.responseText);
notify("");
});
}
2010-11-21 09:55:28 +01:00
function updateLabelList() {
xhrPost("backend.php", { op: "pref-labels" }, (transport) => {
2018-11-30 13:07:44 +01:00
dijit.byId('labelConfigTab').attr('content', transport.responseText);
notify("");
});
2005-09-08 09:43:44 +02:00
}
2005-11-16 18:53:50 +01:00
function updatePrefsList() {
2018-11-30 13:07:44 +01:00
xhrPost("backend.php", { op: "pref-prefs" }, (transport) => {
dijit.byId('genConfigTab').attr('content', transport.responseText);
notify("");
});
2005-11-16 18:53:50 +01:00
}
2013-04-17 06:42:39 +02:00
function updateSystemList() {
2018-11-30 13:07:44 +01:00
xhrPost("backend.php", { op: "pref-system" }, (transport) => {
dijit.byId('systemConfigTab').attr('content', transport.responseText);
notify("");
});
2013-04-17 06:42:39 +02:00
}
function selectTab(id, noupdate) {
if (!noupdate) {
notify_progress("Loading, please wait...");
2010-11-16 13:56:48 +01:00
switch (id) {
case "feedConfig":
2018-12-01 16:05:20 +01:00
updateFeedList();
break;
case "filterConfig":
2018-11-30 13:07:44 +01:00
updateFilterList();
break;
case "labelConfig":
2018-11-30 13:07:44 +01:00
updateLabelList();
break;
case "genConfig":
2018-11-30 13:07:44 +01:00
updatePrefsList();
break;
case "userConfig":
2018-11-30 13:07:44 +01:00
updateUsersList();
break;
case "systemConfig":
2018-11-30 13:07:44 +01:00
updateSystemList();
break;
default:
console.warn("unknown tab", id);
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 validatePrefsReset() {
if (confirm(__("Reset to defaults?"))) {
2018-11-29 18:07:23 +01:00
const query = "?op=pref-prefs&method=resetconfig";
xhrPost("backend.php", { op: "pref-prefs", method: "resetconfig" }, (transport) => {
2018-11-30 13:07:44 +01:00
updatePrefsList();
notify_info(transport.responseText);
});
}
return false;
}
2005-12-29 17:36:41 +01:00
function removeCategory(id, item) {
2009-01-24 07:11:42 +01:00
2018-11-30 11:00:26 +01:00
if (confirm(__("Remove category %s? Any nested feeds would be placed into Uncategorized.").replace("%s", item.name))) {
notify_progress("Removing category...");
2018-11-30 13:07:44 +01:00
const query = { op: "pref-feeds", method: "removeCat",
ids: id };
2018-11-30 11:00:26 +01:00
xhrPost("backend.php", query, () => {
2018-11-30 13:07:44 +01:00
notify('');
2018-12-01 16:05:20 +01:00
updateFeedList();
2018-11-30 13:07:44 +01:00
});
}
}
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-30 11:00:26 +01:00
if (confirm(__("Remove selected categories?"))) {
2012-09-03 14:06:24 +02:00
notify_progress("Removing selected categories...");
2018-11-30 11:00:26 +01:00
const query = { op: "pref-feeds", method: "removeCat",
ids: sel_rows.toString() };
2012-09-03 14:06:24 +02:00
2018-11-30 11:00:26 +01:00
xhrPost("backend.php", query, () => {
2018-12-01 16:05:20 +01:00
updateFeedList();
2018-11-30 13:07:44 +01:00
});
2012-09-03 14:06:24 +02:00
}
} 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) {
notify_progress("Creating category...");
2010-11-20 19:29:19 +01:00
2018-11-30 11:00:26 +01:00
xhrPost("backend.php", { op: "pref-feeds", method: "addCat", cat: title }, () => {
2018-11-30 13:07:44 +01:00
notify('');
2018-12-01 16:05:20 +01:00
updateFeedList();
2018-11-30 13:07:44 +01:00
});
}
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-11-29 19:13:41 +01:00
const 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();
if (sel_rows.length > 0) {
2018-11-30 11:00:26 +01:00
if (confirm(__("Remove selected feeds?"))) {
notify_progress("Removing selected feeds...", true);
2018-11-30 11:00:26 +01:00
const query = { op: "pref-feeds", method: "remove",
ids: sel_rows.toString() };
2018-11-30 11:00:26 +01:00
xhrPost("backend.php", query, () => {
2018-11-30 13:07:44 +01:00
notify('');
dialog.hide();
2018-12-01 16:05:20 +01:00
updateFeedList();
2018-11-30 13:07:44 +01:00
});
}
} else {
alert(__("No feeds are selected."));
}
},
execute: function () {
if (this.validate()) {
}
},
href: query
});
dialog.show();
}
function opmlRegenKey() {
2018-11-30 11:00:26 +01:00
if (confirm(__("Replace current OPML publishing address with a new one?"))) {
notify_progress("Trying to change address...", true);
2018-11-30 11:00:26 +01:00
xhrJson("backend.php", { op: "pref-feeds", method: "regenOPMLKey" }, (reply) => {
2018-11-30 13:07:44 +01:00
if (reply) {
const new_link = reply.link;
const e = $('pub_opml_url');
2018-11-30 13:07:44 +01:00
if (new_link) {
e.href = new_link;
e.innerHTML = new_link;
2018-11-30 13:07:44 +01:00
new Effect.Highlight(e);
2018-11-30 13:07:44 +01:00
notify('');
2018-11-30 13:07:44 +01:00
} 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-30 11:00:26 +01:00
if (confirm(__("Reset selected labels to default colors?"))) {
2009-01-26 12:30:13 +01:00
2018-11-30 11:00:26 +01:00
const query = { op: "pref-labels", method: "colorreset",
ids: labels.toString() };
2010-11-21 11:17:26 +01:00
2018-11-30 11:00:26 +01:00
xhrPost("backend.php", query, () => {
2018-11-30 13:07:44 +01:00
updateLabelList();
});
2009-01-26 12:30:13 +01:00
}
} else {
alert(__("No labels are selected."));
2009-01-26 12:30:13 +01:00
}
}
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-11-29 19:13:41 +01:00
const 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-30 11:05:59 +01:00
if (confirm(__("Remove selected profiles? Active and default profiles will not be removed."))) {
notify_progress("Removing selected profiles...", true);
const query = { op: "rpc", method: "remprofiles",
ids: sel_rows.toString() };
xhrPost("backend.php", query, () => {
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-30 11:05:59 +01:00
if (confirm(__("Activate selected profile?"))) {
notify_progress("Loading, please wait...");
2018-11-30 13:07:44 +01:00
xhrPost("backend.php", { op: "rpc", method: "setprofile", id: sel_rows.toString() }, () => {
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
const query = { op: "rpc", method: "addprofile", title: dialog.attr('value').newprofile };
2010-11-21 10:50:14 +01:00
xhrPost("backend.php", query, () => {
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...");
xhrPost("backend.php", { op: "rpc", method: "setprofile", id: sel_rows.toString() }, () => {
window.location.reload();
});
}
} else {
alert(__("Please choose a profile to activate."));
}
return false;
} */
function clearFeedAccessKeys() {
2018-11-30 11:05:59 +01:00
if (confirm(__("This will invalidate all previously generated feed URLs. Continue?"))) {
notify_progress("Clearing URLs...");
xhrPost("backend.php", { op: "pref-feeds", method: "clearKeys" }, () => {
2018-11-30 13:07:44 +01:00
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
2018-11-30 13:07:44 +01:00
xhrPost("backend.php", { op: "pref-filters", method: "filtersortreset" }, () => {
updateFilterList();
});
2013-03-31 15:15:23 +02:00
}
function resetFeedOrder() {
notify_progress("Loading, please wait...");
2018-11-30 13:07:44 +01:00
xhrPost("backend.php", { op: "pref-feeds", method: "feedsortreset" }, () => {
2018-12-01 16:05:20 +01:00
updateFeedList();
2018-11-30 13:07:44 +01:00
});
}
function resetCatOrder() {
notify_progress("Loading, please wait...");
xhrPost("backend.php", { op: "pref-feeds", method: "catsortreset" }, () => {
2018-12-01 16:05:20 +01:00
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...");
xhrPost("backend.php", { op: 'pref-feeds', method: 'renamecat', id: id, title: new_name }, () => {
2018-12-01 16:05:20 +01:00
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 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
2018-11-30 13:07:44 +01:00
const query = { op: "pref-labels", method: "colorset", kind: kind,
ids: id, fg: fg, bg: bg, color: color };
2018-11-30 13:07:44 +01:00
xhrPost("backend.php", query, () => {
updateFilterList(); // maybe there's labels in there
});
},
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;
dijit.byId('labelTree').setNameById(id, caption);
this.setLabelColor(id, fg_color, bg_color);
this.hide();
2010-11-18 18:04:57 +01:00
xhrPost("backend.php", this.attr('value'), () => {
2018-11-30 13:07:44 +01:00
updateFilterList(); // maybe there's labels in there
});
}
},
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);
xhrPost("backend.php", this.attr('value'), () => {
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();
2018-11-30 13:07:44 +01:00
if (dijit.byId("feedAddDlg")) dijit.byId("feedAddDlg").destroyRecursive();
2018-11-29 19:13:41 +01:00
const dialog = new dijit.Dialog({
id: "batchSubDlg",
title: __("Batch subscribe"),
style: "width: 600px",
execute: function () {
if (this.validate()) {
notify_progress(__("Subscribing to feeds..."), true);
xhrPost("backend.php", this.attr('value'), () => {
notify("");
2018-12-01 16:05:20 +01:00
updateFeedList();
dialog.hide();
});
}
},
href: query
});
dialog.show();
}
function clearPluginData(name) {
if (confirm(__("Clear stored data for this plugin?"))) {
notify_progress("Loading, please wait...");
xhrPost("backend.php", { op: "pref-prefs", method: "clearplugindata", name: name }, () => {
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...");
xhrPost("backend.php", { op: "pref-system", method: "clearLog" }, () => {
updateSystemList();
});
2013-04-29 21:12:54 +02:00
}
}
function updateSelectedPrompt() {
// no-op shim for toggleSelectedRow()
}
function gotoMain() {
document.location.href = "index.php";
}