'use strict'; /* eslint-disable no-new */ /* global __, dijit, dojo, Tables, Notify, xhr, App, fox */ const Helpers = { AppPasswords: { getSelected: function() { return Tables.getSelected("app-password-list"); }, updateContent: function(data) { App.byId("app_passwords_holder").innerHTML = data; dojo.parser.parse("app_passwords_holder"); }, removeSelected: function() { const rows = this.getSelected(); if (rows.length == 0) { alert("No passwords selected."); } else if (confirm(__("Remove selected app passwords?"))) { xhr.post("backend.php", {op: "pref-prefs", method: "deleteAppPasswords", "ids[]": rows}, (reply) => { this.updateContent(reply); Notify.close(); }); Notify.progress("Loading, please wait..."); } }, generate: function() { const title = prompt("Password description:") if (title) { xhr.post("backend.php", {op: "pref-prefs", method: "generateAppPassword", title: title}, (reply) => { this.updateContent(reply); Notify.close(); }); Notify.progress("Loading, please wait..."); } }, }, Feeds: { clearFeedAccessKeys: function() { if (confirm(__("This will invalidate all previously generated feed URLs. Continue?"))) { Notify.progress("Clearing URLs..."); xhr.post("backend.php", {op: "pref-feeds", method: "clearKeys"}, () => { Notify.info("Generated URLs cleared."); }); } return false; }, }, Digest: { preview: function() { const dialog = new fox.SingleUseDialog({ title: __("Digest Preview"), content: `
${__("Loading, please wait...")}
` }); const tmph = dojo.connect(dialog, 'onShow', function () { dojo.disconnect(tmph); xhr.json("backend.php", {op: "pref-prefs", method: "previewDigest"}, (reply) => { dialog.domNode.querySelector('.digest-preview').innerHTML = reply[0]; }); }); dialog.show(); } }, System: { // }, EventLog: { log_page: 0, refresh: function() { this.log_page = 0; this.update(); }, update: function() { xhr.post("backend.php", { op: "pref-system", severity: dijit.byId("severity").attr('value'), page: Helpers.EventLog.log_page }, (reply) => { dijit.byId('systemTab').attr('content', reply); Notify.close(); }); }, nextPage: function() { this.log_page += 1; this.update(); }, prevPage: function() { if (this.log_page > 0) this.log_page -= 1; this.update(); }, clear: function() { if (confirm(__("Clear event log?"))) { Notify.progress("Loading, please wait..."); xhr.post("backend.php", {op: "pref-system", method: "clearLog"}, () => { Helpers.EventLog.refresh(); }); } }, }, Profiles: { edit: function() { const dialog = new fox.SingleUseDialog({ id: "profileEditDlg", title: __("Settings Profiles"), getSelectedProfiles: function () { return Tables.getSelected("pref-profiles-list"); }, removeSelected: function () { const sel_rows = this.getSelectedProfiles(); if (sel_rows.length > 0) { if (confirm(__("Remove selected profiles? Active and default profiles will not be removed."))) { Notify.progress("Removing selected profiles...", true); const query = { op: "pref-prefs", method: "remprofiles", ids: sel_rows.toString() }; xhr.post("backend.php", query, () => { Notify.close(); dialog.refresh(); }); } } else { alert(__("No profiles selected.")); } }, addProfile: function () { if (this.validate()) { Notify.progress("Creating profile...", true); const query = {op: "pref-prefs", method: "addprofile", title: dialog.attr('value').newprofile}; xhr.post("backend.php", query, () => { Notify.close(); dialog.refresh(); }); } }, refresh: function() { xhr.json("backend.php", {op: 'pref-prefs', method: 'getprofiles'}, (reply) => { dialog.attr('content', `
${__('Select')}
${__('All')}
${__('None')}
${App.FormFields.button_tag(__('Create profile'), "", {onclick: 'App.dialogOf(this).addProfile()'})}
${reply.map((profile) => ` `).join("")}
${App.FormFields.checkbox_tag("", false, "", {onclick: 'Tables.onRowChecked(this)'})} ${profile.id > 0 ? `${profile.title} ` : `${profile.title}`} ${profile.active ? __("(active)") : ""}
`); }); }, execute: function () { const sel_rows = this.getSelectedProfiles(); if (sel_rows.length == 1) { if (confirm(__("Activate selected profile?"))) { Notify.progress("Loading, please wait..."); xhr.post("backend.php", {op: "pref-prefs", method: "activateprofile", id: sel_rows.toString()}, () => { window.location.reload(); }); } } else { alert(__("Please choose a profile to activate.")); } }, content: "" }); dialog.refresh(); dialog.show(); }, }, Prefs: { customizeCSS: function() { xhr.json("backend.php", {op: "pref-prefs", method: "customizeCSS"}, (reply) => { const dialog = new fox.SingleUseDialog({ title: __("Customize stylesheet"), apply: function() { xhr.post("backend.php", this.attr('value'), () => { Element.show("css_edit_apply_msg"); App.byId("user_css_style").innerText = this.attr('value'); }); }, execute: function () { Notify.progress('Saving data...', true); xhr.post("backend.php", this.attr('value'), () => { window.location.reload(); }); }, content: `
${__("You can override colors, fonts and layout of your currently selected theme with custom CSS declarations here.")}
${App.FormFields.hidden_tag('op', 'rpc')} ${App.FormFields.hidden_tag('method', 'setpref')} ${App.FormFields.hidden_tag('key', 'USER_STYLESHEET')} ` }); dialog.show(); }); }, confirmReset: function() { if (confirm(__("Reset to defaults?"))) { xhr.post("backend.php", {op: "pref-prefs", method: "resetconfig"}, (reply) => { Helpers.Prefs.refresh(); Notify.info(reply); }); } }, refresh: function() { xhr.post("backend.php", { op: "pref-prefs" }, (reply) => { dijit.byId('prefsTab').attr('content', reply); Notify.close(); }); }, }, Plugins: { clearPluginData: function(name) { if (confirm(__("Clear stored data for this plugin?"))) { Notify.progress("Loading, please wait..."); xhr.post("backend.php", {op: "pref-prefs", method: "clearPluginData", name: name}, () => { Helpers.Prefs.refresh(); }); } }, checkForUpdate: function(name = null) { Notify.progress("Checking for plugin updates..."); xhr.json("backend.php", {op: "pref-prefs", method: "checkForPluginUpdates", name: name}, (reply) => { Notify.close(); if (reply) { let plugins_with_updates = 0; reply.forEach((p) => { if (p.rv.o) { const button = dijit.getEnclosingWidget(App.find(`*[data-update-btn-for-plugin="${p.plugin}"]`)); if (button) { button.domNode.show(); ++plugins_with_updates; } } }); if (plugins_with_updates > 0) App.find(".update-all-plugins-btn").show(); } else { Notify.error("Unable to check for plugin updates."); } }); }, update: function(name = null) { const dialog = new fox.SingleUseDialog({ title: __("Plugin Updater"), need_refresh: false, plugins_to_update: [], onHide: function() { if (this.need_refresh) { Helpers.Prefs.refresh(); } }, performUpdate: function() { const container = dialog.domNode.querySelector(".update-results"); console.log('updating', dialog.plugins_to_update); container.innerHTML = `
  • ${__("Updating, please wait...")}
  • `; let enable_update_btn = false; xhr.json("backend.php", {op: "pref-prefs", method: "updateLocalPlugins", plugins: dialog.plugins_to_update.join(",")}, (reply) => { if (!reply) { container.innerHTML = `
  • ${__("Operation failed: check event log.")}
  • `; } else { container.innerHTML = ""; reply.forEach((p) => { if (p.rv.s == 0) dialog.need_refresh = true; else enable_update_btn = true; container.innerHTML += `
  • ${p.plugin}

    ${p.rv.e ? `
    ${p.rv.e}
    ` : ''} ${p.rv.o ? `
    ${p.rv.o}
    ` : ''}

    ${p.rv.s ? App.FormFields.icon("error_outline") + " " + __("Exited with RC: %d").replace("%d", p.rv.s) : App.FormFields.icon("check") + " " + __("Update done.")}

  • ` }); } dijit.getEnclosingWidget(dialog.domNode.querySelector(".update-btn")).attr('disabled', !enable_update_btn); }); }, content: ` `, }); const tmph = dojo.connect(dialog, 'onShow', function () { dojo.disconnect(tmph); xhr.json("backend.php", {op: "pref-prefs", method: "checkForPluginUpdates", name: name}, (reply) => { const container = dialog.domNode.querySelector(".update-results"); let enable_update_btn = false; if (!reply) { container.innerHTML = `
  • ${__("Operation failed: check event log.")}
  • `; } else { container.innerHTML = ""; dialog.plugins_to_update = []; reply.forEach((p) => { if (p.rv.s == 0) { enable_update_btn = true; dialog.plugins_to_update.push(p.plugin); } container.innerHTML += `
  • ${p.plugin}

    ${p.rv.e ? `
    ${p.rv.e}
    ` : ''} ${p.rv.o ? `
    ${p.rv.o}
    ` : ''}

    ${p.rv.s ? App.FormFields.icon("error_outline") + " " + __("Exited with RC: %d").replace("%d", p.rv.s) : App.FormFields.icon("check") + " " + __("Ready to update")}

  • ` }); } dijit.getEnclosingWidget(dialog.domNode.querySelector(".update-btn")).attr('disabled', !enable_update_btn); }); }); dialog.show(); }, }, OPML: { import: function() { const opml_file = App.byId("opml_file"); if (opml_file.value.length == 0) { alert(__("Please choose an OPML file first.")); return false; } else { Notify.progress("Importing, please wait...", true); const xhr = new XMLHttpRequest(); xhr.open( 'POST', 'backend.php', true ); xhr.onload = function () { Notify.close(); const dialog = new fox.SingleUseDialog({ title: __("OPML Import"), onCancel: function () { this.execute(); }, execute: function () { const tree = dijit.byId('feedTree'); if (tree) tree.reload(); }, content: `
    ${__("If you have imported labels and/or filters, you might need to reload preferences to see your new data.")}
    ${xhr.responseText}
    ` }); dialog.show(); }; xhr.send(new FormData(App.byId("opml_import_form"))); return false; } }, export: function() { console.log("export"); window.open("backend.php?op=opml&method=export&" + dojo.formToQuery("opmlExportForm")); }, publish: function() { Notify.progress("Loading, please wait...", true); xhr.json("backend.php", {op: "pref-feeds", method: "getOPMLKey"}, (reply) => { try { const dialog = new fox.SingleUseDialog({ title: __("Public OPML URL"), regenOPMLKey: function() { if (confirm(__("Replace current OPML publishing address with a new one?"))) { Notify.progress("Trying to change address...", true); xhr.json("backend.php", {op: "pref-feeds", method: "regenOPMLKey"}, (reply) => { if (reply) { const new_link = reply.link; const target = this.domNode.querySelector('.generated_url'); if (new_link && target) { target.href = new_link; target.innerHTML = new_link; Notify.close(); } else { Notify.error("Could not change feed URL."); } } }); } return false; }, content: `
    ${__("Your Public OPML URL is:")}
    ${App.escapeHtml(reply.link)}
    ` }); dialog.show(); Notify.close(); } catch (e) { App.Error.report(e); } }); }, } };