ttrss/functions.js

1504 lines
32 KiB
JavaScript
Raw Normal View History

2008-05-19 09:37:44 +02:00
var notify_silent = false;
2010-11-19 14:08:02 +01:00
var loading_progress = 0;
2010-09-13 13:14:18 +02:00
var sanity_check_done = false;
/* add method to remove element from array */
Array.prototype.remove = function(s) {
for (var i=0; i < this.length; i++) {
if (s == this[i]) this.splice(i, 1);
}
}
/* create console.log if it doesn't exist */
if (!window.console) console = {};
2010-11-07 12:38:59 +01:00
console.log = console.log || function(msg) { };
console.warn = console.warn || function(msg) { };
console.error = console.error || function(msg) { };
2009-01-23 18:19:17 +01:00
function exception_error(location, e, ext_info) {
var msg = format_exception_error(location, e);
if (!ext_info) ext_info = false;
2009-01-23 18:19:17 +01:00
try {
2010-11-14 21:46:49 +01:00
if (ext_info) {
if (ext_info.responseText) {
ext_info = ext_info.responseText;
}
2010-11-14 21:46:49 +01:00
}
2010-11-14 21:46:49 +01:00
var content = "<div class=\"fatalError\">" +
"<pre>" + msg + "</pre>";
content += "<form name=\"exceptionForm\" id=\"exceptionForm\" target=\"_blank\" "+
"action=\"http://tt-rss.org/report.php\" method=\"POST\">";
content += "<textarea style=\"display : none\" name=\"message\">" + msg + "</textarea>";
content += "<textarea style=\"display : none\" name=\"params\">N/A</textarea>";
2010-11-14 21:46:49 +01:00
if (ext_info) {
content += "<div><b>Additional information:</b></div>" +
"<textarea name=\"xinfo\" readonly=\"1\">" + ext_info + "</textarea>";
}
2010-11-14 21:46:49 +01:00
content += "<div><b>Stack trace:</b></div>" +
"<textarea name=\"stack\" readonly=\"1\">" + e.stack + "</textarea>";
content += "</form>";
2010-11-14 21:46:49 +01:00
content += "</div>";
content += "<div class='dlgButtons'>";
content += "<button dojoType=\"dijit.form.Button\""+
"onclick=\"dijit.byId('exceptionDlg').report()\">" +
__('Report to tt-rss.org') + "</button> ";
content += "<button dojoType=\"dijit.form.Button\" "+
"onclick=\"dijit.byId('exceptionDlg').hide()\">" +
__('Close') + "</button>";
content += "</div>";
2010-11-14 21:46:49 +01:00
var dialog = new dijit.Dialog({
id: "exceptionDlg",
title: "Unhandled exception",
style: "width: 600px",
report: function() {
if (confirm(__("Are you sure to report this exception to tt-rss.org? The report will include your browser information. Your IP would be saved in the database."))) {
document.forms['exceptionForm'].params.value = $H({
browserName: navigator.appName,
browserVersion: navigator.appVersion,
browserPlatform: navigator.platform,
browserCookies: navigator.cookieEnabled,
}).toQueryString();
document.forms['exceptionForm'].submit();
}
},
content: content});
dialog.show();
2010-11-14 21:46:49 +01:00
2009-01-23 18:19:17 +01:00
} catch (e) {
alert(msg);
}
2009-01-23 18:19:17 +01:00
}
function format_exception_error(location, e) {
2005-12-14 08:29:38 +01:00
var msg;
if (e.fileName) {
var base_fname = e.fileName.substring(e.fileName.lastIndexOf("/") + 1);
msg = "Exception: " + e.name + ", " + e.message +
2005-12-14 08:29:38 +01:00
"\nFunction: " + location + "()" +
"\nLocation: " + base_fname + ":" + e.lineNumber;
2008-05-20 12:39:48 +02:00
} else if (e.description) {
msg = "Exception: " + e.description + "\nFunction: " + location + "()";
2005-12-14 08:29:38 +01:00
} else {
msg = "Exception: " + e + "\nFunction: " + location + "()";
}
console.error("EXCEPTION: " + msg);
2006-05-23 08:55:26 +02:00
return msg;
2005-11-26 11:06:56 +01:00
}
2005-08-22 07:28:27 +02:00
function param_escape(arg) {
if (typeof encodeURIComponent != 'undefined')
return encodeURIComponent(arg);
2005-08-22 07:28:27 +02:00
else
return escape(arg);
}
function param_unescape(arg) {
if (typeof decodeURIComponent != 'undefined')
return decodeURIComponent(arg);
2005-08-22 07:28:27 +02:00
else
return unescape(arg);
}
var notify_hide_timerid = false;
function hide_notify() {
var n = $("notify");
2007-03-02 20:58:58 +01:00
if (n) {
n.style.display = "none";
2005-11-19 19:01:06 +01:00
}
}
2005-09-05 17:49:39 +02:00
2008-05-19 09:37:44 +02:00
function notify_silent_next() {
notify_silent = true;
}
2007-03-02 20:58:58 +01:00
function notify_real(msg, no_hide, n_type) {
2005-08-22 07:28:27 +02:00
2008-05-19 09:37:44 +02:00
if (notify_silent) {
notify_silent = false;
return;
}
var n = $("notify");
var nb = $("notify_body");
2005-08-22 07:28:27 +02:00
2005-09-05 17:49:39 +02:00
if (!n || !nb) return;
if (notify_hide_timerid) {
window.clearTimeout(notify_hide_timerid);
}
2005-11-19 19:01:06 +01:00
if (msg == "") {
if (n.style.display == "block") {
notify_hide_timerid = window.setTimeout("hide_notify()", 0);
}
return;
2005-08-22 07:28:27 +02:00
} else {
2006-05-18 09:56:52 +02:00
n.style.display = "block";
2005-11-19 19:01:06 +01:00
}
2005-08-22 07:28:27 +02:00
2007-03-02 20:58:58 +01:00
/* types:
1 - generic
2 - progress
3 - error
4 - info
*/
2007-03-06 07:54:47 +01:00
if (typeof __ != 'undefined') {
msg = __(msg);
}
2007-03-02 20:58:58 +01:00
if (n_type == 1) {
n.className = "notify";
} else if (n_type == 2) {
n.className = "notifyProgress";
msg = "<img src='"+getInitParam("sign_progress")+"'> " + msg;
2007-03-02 20:58:58 +01:00
} else if (n_type == 3) {
2006-10-01 11:08:55 +02:00
n.className = "notifyError";
msg = "<img src='"+getInitParam("sign_excl")+"'> " + msg;
2007-03-02 20:58:58 +01:00
} else if (n_type == 4) {
n.className = "notifyInfo";
msg = "<img src='"+getInitParam("sign_info")+"'> " + msg;
2006-05-18 14:37:52 +02:00
}
2006-09-29 08:51:40 +02:00
// msg = "<img src='images/live_com_loading.gif'> " + msg;
2006-05-18 09:56:52 +02:00
nb.innerHTML = msg;
if (!no_hide) {
2006-05-18 15:51:15 +02:00
notify_hide_timerid = window.setTimeout("hide_notify()", 3000);
}
}
2007-03-02 20:58:58 +01:00
function notify(msg, no_hide) {
notify_real(msg, no_hide, 1);
}
2007-03-02 20:58:58 +01: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 07:28:27 +02:00
}
function setCookie(name, value, lifetime, path, domain, secure) {
var d = false;
if (lifetime) {
d = new Date();
d.setTime(d.getTime() + (lifetime * 1000));
}
2007-03-22 07:46:49 +01:00
console.log("setCookie: " + name + " => " + value + ": " + d);
int_setCookie(name, value, d, path, domain, secure);
}
function int_setCookie(name, value, expires, path, domain, secure) {
document.cookie= name + "=" + escape(value) +
((expires) ? "; expires=" + expires.toGMTString() : "") +
((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") +
((secure) ? "; secure" : "");
}
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";
}
}
function getCookie(name) {
var dc = document.cookie;
var prefix = name + "=";
var begin = dc.indexOf("; " + prefix);
if (begin == -1) {
begin = dc.indexOf(prefix);
if (begin != 0) return null;
}
else {
begin += 2;
}
var end = document.cookie.indexOf(";", begin);
if (end == -1) {
end = dc.length;
}
return unescape(dc.substring(begin + prefix.length, end));
}
2005-09-07 09:19:14 +02:00
function gotoPreferences() {
document.location.href = "prefs.php";
}
function gotoMain() {
document.location.href = "tt-rss.php";
}
2005-09-07 15:31:21 +02:00
function gotoExportOpml() {
document.location.href = "opml.php?op=Export";
}
2005-10-17 05:24:40 +02:00
/** * @(#)isNumeric.js * * Copyright (c) 2000 by Sundar Dorai-Raj
* * @author Sundar Dorai-Raj
* * Email: sdoraira@vt.edu
* * This program is free software; you can redistribute it and/or
* * modify it under the terms of the GNU General Public License
* * as published by the Free Software Foundation; either version 2
* * of the License, or (at your option) any later version,
* * provided that any use properly credits the author.
2005-10-17 05:24:40 +02:00
* * This program is distributed in the hope that it will be useful,
* * but WITHOUT ANY WARRANTY; without even the implied warranty of
* * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* * GNU General Public License for more details at http://www.gnu.org * * */
var numbers=".0123456789";
function isNumeric(x) {
// is x a String or a character?
if(x.length>1) {
// remove negative sign
x=Math.abs(x)+"";
for(j=0;j<x.length;j++) {
// call isNumeric recursively for each character
number=isNumeric(x.substring(j,j+1));
if(!number) return number;
}
return number;
}
else {
// if x is number return true
if(numbers.indexOf(x)>=0) return true;
return false;
}
}
function toggleSelectRowById(sender, id) {
var row = $(id);
return toggleSelectRow(sender, row);
}
function toggleSelectListRow(sender) {
var row = sender.parentNode;
return toggleSelectRow(sender, row);
}
2010-11-18 20:26:04 +01:00
/* this is for dijit Checkbox */
function toggleSelectListRow2(sender) {
var row = sender.domNode.parentNode;
return toggleSelectRow(sender, row);
}
function tSR(sender, row) {
return toggleSelectRow(sender, row);
}
2010-11-18 20:26:04 +01:00
/* this is for dijit Checkbox */
function toggleSelectRow2(sender, row) {
if (!row) row = sender.domNode.parentNode.parentNode;
if (sender.checked && !row.hasClassName('Selected'))
row.addClassName('Selected');
else
row.removeClassName('Selected');
}
function toggleSelectRow(sender, row) {
2005-11-27 15:56:10 +01:00
if (!row) row = sender.parentNode.parentNode;
if (sender.checked && !row.hasClassName('Selected'))
row.addClassName('Selected');
else
row.removeClassName('Selected');
2005-11-27 15:56:10 +01:00
}
2007-08-11 18:43:45 +02:00
function checkboxToggleElement(elem, id) {
if (elem.checked) {
Effect.Appear(id, {duration : 0.5});
2007-08-11 18:43:45 +02:00
} else {
2008-08-06 09:51:28 +02:00
Effect.Fade(id, {duration : 0.5});
2007-08-11 18:43:45 +02:00
}
}
function dropboxSelect(e, v) {
for (i = 0; i < e.length; i++) {
if (e[i].value == v) {
e.selectedIndex = i;
break;
}
}
}
2006-02-28 17:25:38 +01:00
2011-03-08 09:28:21 +01:00
function getURLParam(param){
return String(window.location.href).parseQuery()[param];
}
2006-02-28 17:25:38 +01:00
2006-03-04 11:35:47 +01:00
function leading_zero(p) {
var s = String(p);
if (s.length == 1) s = "0" + s;
return s;
}
2006-03-20 12:24:34 +01:00
function make_timestamp() {
var d = new Date();
return leading_zero(d.getHours()) + ":" + leading_zero(d.getMinutes()) +
":" + leading_zero(d.getSeconds());
}
function closeErrorBox() {
2007-05-14 10:08:18 +02:00
2009-01-23 18:19:17 +01:00
if (Element.visible("errorBoxShadow")) {
Element.hide("dialog_overlay");
2009-01-23 18:19:17 +01:00
Element.hide("errorBoxShadow");
}
return false;
}
function closeInfoBox(cleanup) {
2009-10-08 10:36:27 +02:00
try {
2010-11-17 08:12:50 +01:00
dialog = dijit.byId("infoBox");
2010-11-17 08:12:50 +01:00
if (dialog) dialog.hide();
2009-10-08 10:36:27 +02:00
} catch (e) {
2010-11-14 21:46:49 +01:00
//exception_error("closeInfoBox", e);
}
2006-07-25 12:47:51 +02:00
return false;
}
function displayDlg(id, param, callback) {
2006-05-18 04:48:33 +02:00
2010-11-14 21:46:49 +01:00
notify_progress("Loading, please wait...", true);
var query = "?op=dlg&id=" +
2007-08-25 14:11:54 +02:00
param_escape(id) + "&param=" + param_escape(param);
new Ajax.Request("backend.php", {
parameters: query,
2007-08-25 14:11:54 +02:00
onComplete: function (transport) {
infobox_callback2(transport);
if (callback) callback(transport);
2007-08-25 14:11:54 +02:00
} });
2006-07-25 12:47:51 +02:00
return false;
2006-05-18 04:48:33 +02:00
}
2007-08-24 06:36:00 +02:00
function infobox_callback2(transport) {
try {
2010-11-17 08:12:50 +01:00
var dialog = false;
if (dijit.byId("infoBox")) {
2010-11-17 08:12:50 +01:00
dialog = dijit.byId("infoBox");
}
2007-05-14 10:08:18 +02:00
2010-11-14 21:46:49 +01:00
//console.log("infobox_callback2");
notify('');
2007-05-14 10:08:18 +02:00
2010-11-14 21:46:49 +01:00
var content;
var dtitle = "Dialog";
2007-08-11 06:14:27 +02:00
var dlg = transport.responseXML.getElementsByTagName("dlg")[0];
2009-10-07 14:33:45 +02:00
var title = transport.responseXML.getElementsByTagName("title")[0];
if (title)
title = title.firstChild.nodeValue;
2009-10-07 14:33:45 +02:00
var content = transport.responseXML.getElementsByTagName("content")[0];
content = content.firstChild.nodeValue;
2007-08-10 09:35:55 +02:00
2010-11-17 08:12:50 +01:00
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();
2007-08-24 06:36:00 +02:00
notify("");
} catch (e) {
exception_error("infobox_callback2", e);
}
}
function filterCR(e, f)
{
var key;
if(window.event)
key = window.event.keyCode; //IE
else
key = e.which; //firefox
if (key == 13) {
if (typeof f != 'undefined') {
f();
return false;
} else {
return false;
}
} else {
return true;
}
}
2006-05-23 08:15:49 +02:00
function getInitParam(key) {
return init_params[key];
2006-05-23 08:15:49 +02:00
}
2006-05-23 07:34:50 +02:00
function setInitParam(key, value) {
2007-05-11 09:50:02 +02:00
init_params[key] = value;
}
2009-01-23 18:19:17 +01:00
function fatalError(code, msg, ext_info) {
try {
2007-02-24 18:16:33 +01:00
if (code == 6) {
window.location.href = "tt-rss.php";
2007-02-24 18:16:33 +01:00
} else if (code == 5) {
window.location.href = "db-updater.php";
2007-02-24 18:16:33 +01:00
} else {
2009-01-23 18:19:17 +01:00
if (msg == "") msg = "Unknown error";
2007-03-02 20:58:58 +01:00
2011-02-18 10:28:03 +01:00
if (ext_info) {
if (ext_info.responseText) {
ext_info = ext_info.responseText;
2009-01-23 18:19:17 +01:00
}
2011-02-18 10:28:03 +01:00
}
if (ERRORS && ERRORS[code] && !msg) {
msg = ERRORS[code];
}
2011-02-18 10:28:03 +01:00
var content = "<div><b>Error code:</b> " + code + "</div>" +
"<p>" + msg + "</p>";
if (ext_info) {
content = content + "<div><b>Additional information:</b></div>" +
"<textarea style='width: 100%' readonly=\"1\">" +
2011-02-18 10:28:03 +01:00
ext_info + "</textarea>";
2009-01-23 18:19:17 +01:00
}
2011-02-18 10:28:03 +01:00
var dialog = new dijit.Dialog({
title: "Fatal error",
style: "width: 600px",
content: content});
dialog.show();
}
2011-02-18 10:28:03 +01:00
return false;
} catch (e) {
exception_error("fatalError", e);
}
}
function filterDlgCheckType(sender) {
try {
var ftype = sender.value;
// if selected filter type is 5 (Date) enable the modifier dropbox
if (ftype == 5) {
Element.show("filterDlg_dateModBox");
Element.show("filterDlg_dateChkBox");
} else {
Element.hide("filterDlg_dateModBox");
Element.hide("filterDlg_dateChkBox");
}
} catch (e) {
exception_error("filterDlgCheckType", e);
}
}
function filterDlgCheckAction(sender) {
try {
var action = sender.value;
var action_param = $("filterDlg_paramBox");
if (!action_param) {
console.log("filterDlgCheckAction: can't find action param box!");
return;
}
// if selected action supports parameters, enable params field
2009-01-18 09:28:42 +01:00
if (action == 4 || action == 6 || action == 7) {
new Effect.Appear(action_param, {duration : 0.5});
2009-01-18 09:28:42 +01:00
if (action != 7) {
Element.show(dijit.byId("filterDlg_actionParam").domNode);
Element.hide(dijit.byId("filterDlg_actionParamLabel").domNode);
2009-01-18 09:28:42 +01:00
} else {
Element.show(dijit.byId("filterDlg_actionParamLabel").domNode);
Element.hide(dijit.byId("filterDlg_actionParam").domNode);
2009-01-18 09:28:42 +01:00
}
} else {
2008-08-07 05:17:24 +02:00
Element.hide(action_param);
}
} catch (e) {
exception_error("filterDlgCheckAction", e);
}
}
2007-01-27 10:21:55 +01:00
function filterDlgCheckDate() {
try {
var dialog = dijit.byId("filterEditDlg");
var reg_exp = dialog.attr('value').reg_exp;
var query = "?op=rpc&subop=checkDate&date=" + reg_exp;
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function(transport) {
var reply = JSON.parse(transport.responseText);
if (reply['result'] == true) {
alert(__("Date syntax appears to be correct."));
return;
} else {
alert(__("Date syntax is incorrect."));
}
} });
} catch (e) {
exception_error("filterDlgCheckDate", e);
}
}
2007-01-27 10:21:55 +01:00
function explainError(code) {
return displayDlg("explainError", code);
}
2007-03-01 10:43:54 +01:00
function displayHelpInfobox(topic_id) {
2007-10-18 06:51:29 +02:00
var url = "backend.php?op=help&tid=" + param_escape(topic_id);
var w = window.open(url, "ttrss_help",
"status=0,toolbar=0,location=0,width=450,height=500,scrollbars=1,menubar=0");
}
2008-03-20 06:34:43 +01:00
function loading_set_progress(p) {
2008-05-19 09:37:44 +02:00
try {
2010-11-19 14:08:02 +01:00
loading_progress += p;
2008-05-19 10:12:54 +02:00
2010-11-19 14:08:02 +01:00
if (dijit.byId("loading_bar"))
dijit.byId("loading_bar").update({progress: loading_progress});
2010-11-19 14:08:02 +01:00
if (loading_progress >= 90)
remove_splash();
2008-05-19 09:37:44 +02:00
} catch (e) {
exception_error("loading_set_progress", e);
}
}
2008-05-19 14:00:35 +02:00
function remove_splash() {
2010-11-19 14:08:02 +01:00
2008-05-19 14:00:35 +02:00
if (Element.visible("overlay")) {
console.log("about to remove splash, OMG!");
2008-05-19 14:00:35 +02:00
Element.hide("overlay");
console.log("removed splash!");
2008-05-19 14:00:35 +02:00
}
}
function transport_error_check(transport) {
try {
if (transport.responseXML) {
var error = transport.responseXML.getElementsByTagName("error")[0];
if (error) {
var code = error.getAttribute("error-code");
var msg = error.getAttribute("error-msg");
if (code != 0) {
fatalError(code, msg);
return false;
}
}
}
} catch (e) {
exception_error("check_for_error_xml", e);
}
return true;
}
2009-01-24 06:14:06 +01:00
function strip_tags(s) {
return s.replace(/<\/?[^>]+(>|$)/g, "");
}
function truncate_string(s, length) {
if (!length) length = 30;
var tmp = s.substring(0, length);
if (s.length > length) tmp += "&hellip;";
return tmp;
}
2009-10-09 11:13:57 +02:00
function hotkey_prefix_timeout() {
try {
var date = new Date();
var ts = Math.round(date.getTime() / 1000);
if (hotkey_prefix_pressed && ts - hotkey_prefix_pressed >= 5) {
console.log("hotkey_prefix seems to be stuck, aborting");
2009-10-09 11:13:57 +02:00
hotkey_prefix_pressed = false;
hotkey_prefix = false;
Element.hide('cmdline');
}
setTimeout("hotkey_prefix_timeout()", 1000);
} catch (e) {
exception_error("hotkey_prefix_timeout", e);
}
}
function hideAuxDlg() {
try {
Element.hide('auxDlg');
} catch (e) {
exception_error("hideAuxDlg", e);
}
}
function uploadIconHandler(rc) {
try {
switch (rc) {
case 0:
notify_info("Upload complete.");
if (inPreferences()) {
updateFeedList();
} else {
setTimeout('updateFeedList(false, false)', 50);
}
break;
case 1:
notify_error("Upload failed: icon is too big.");
break;
case 2:
notify_error("Upload failed.");
break;
}
} catch (e) {
exception_error("uploadIconHandler", e);
}
}
function removeFeedIcon(id) {
try {
if (confirm(__("Remove stored feed icon?"))) {
var query = "backend.php?op=pref-feeds&subop=removeicon&feed_id=" + param_escape(id);
console.log(query);
notify_progress("Removing feed icon...", true);
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function(transport) {
notify_info("Feed icon removed.");
if (inPreferences()) {
updateFeedList();
} else {
setTimeout('updateFeedList(false, false)', 50);
}
} });
}
return false;
} catch (e) {
exception_error("uploadFeedIcon", e);
}
}
function uploadFeedIcon() {
try {
var file = $("icon_file");
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;
}
}
return false;
} catch (e) {
exception_error("uploadFeedIcon", e);
}
}
2010-11-08 23:04:00 +01:00
function addLabel(select, callback) {
2010-02-03 14:06:24 +01:00
try {
var caption = prompt(__("Please enter label caption:"), "");
if (caption != undefined) {
2010-02-03 14:06:24 +01:00
if (caption == "") {
alert(__("Can't create label: missing caption."));
return false;
}
var query = "?op=pref-labels&subop=add&caption=" +
2010-02-03 14:06:24 +01:00
param_escape(caption);
2010-11-08 23:04:00 +01:00
if (select)
query += "&output=select";
2010-02-03 14:06:24 +01:00
notify_progress("Loading, please wait...", true);
2010-11-08 23:04:00 +01:00
if (inPreferences() && !select) active_tab = "labelConfig";
2010-02-03 14:06:24 +01:00
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function(transport) {
2010-11-08 23:04:00 +01:00
if (callback) {
callback(transport);
} else if (inPreferences()) {
2010-11-26 17:22:08 +01:00
updateLabelList();
2010-02-03 14:06:24 +01:00
} else {
updateFeedList();
}
} });
}
} catch (e) {
exception_error("addLabel", e);
}
}
function quickAddFeed() {
try {
var query = "backend.php?op=dlg&id=quickAddFeed";
if (dijit.byId("feedAddDlg"))
dijit.byId("feedAddDlg").destroyRecursive();
var dialog = new dijit.Dialog({
id: "feedAddDlg",
title: __("Subscribe to Feed"),
style: "width: 600px",
execute: function() {
if (this.validate()) {
console.log(dojo.objectToQuery(this.attr('value')));
var feed_url = this.attr('value').feed;
notify_progress(__("Subscribing to feed..."), true);
new Ajax.Request("backend.php", {
parameters: dojo.objectToQuery(this.attr('value')),
onComplete: function(transport) {
try {
2010-11-29 14:02:16 +01:00
var reply = JSON.parse(transport.responseText);
2010-11-29 14:02:16 +01:00
var rc = parseInt(reply['result']);
notify('');
console.log("GOT RC: " + rc);
switch (rc) {
case 1:
dialog.hide();
notify_info(__("Subscribed to %s").replace("%s", feed_url));
2010-11-26 17:22:08 +01:00
updateFeedList();
break;
case 2:
alert(__("Specified URL seems to be invalid."));
break;
case 3:
alert(__("Specified URL doesn't seem to contain any feeds."));
break;
case 4:
notify_progress("Searching for feed urls...", true);
new Ajax.Request("backend.php", {
parameters: 'op=rpc&subop=extractfeedurls&url=' + param_escape(feed_url),
onComplete: function(transport, dialog, feed_url) {
notify('');
2010-11-29 14:02:16 +01:00
var reply = JSON.parse(transport.responseText);
var feeds = reply['urls'];
console.log(transport.responseText);
var select = dijit.byId("feedDlg_feedContainerSelect");
while (select.getOptions().length > 0)
select.removeOption(0);
var count = 0;
for (var feedUrl in feeds) {
select.addOption({value: feedUrl, label: feeds[feedUrl]});
count++;
}
// if (count > 5) count = 5;
// select.size = count;
Effect.Appear('feedDlg_feedsContainer', {duration : 0.5});
}
});
break;
case 5:
alert(__("Couldn't download the specified URL."));
break;
case 0:
alert(__("You are already subscribed to this feed."));
break;
}
} catch (e) {
exception_error("subscribeToFeed", e);
}
} });
}
},
href: query});
dialog.show();
} catch (e) {
exception_error("quickAddFeed", e);
}
}
function quickAddFilter() {
try {
var query = "backend.php?op=dlg&id=quickAddFilter";
if (dijit.byId("filterEditDlg"))
dijit.byId("filterEditDlg").destroyRecursive();
dialog = new dijit.Dialog({
id: "filterEditDlg",
title: __("Create Filter"),
style: "width: 600px",
execute: function() {
if (this.validate()) {
var query = "?op=rpc&subop=verifyRegexp&reg_exp=" +
param_escape(dialog.attr('value').reg_exp);
notify_progress("Verifying regular expression...");
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function(transport) {
var reply = JSON.parse(transport.responseText);
if (reply) {
notify('');
if (!reply['status']) {
alert("Match regular expression seems to be invalid.");
return;
} else {
notify_progress("Saving data...", true);
console.log(dojo.objectToQuery(dialog.attr('value')));
new Ajax.Request("backend.php", {
parameters: dojo.objectToQuery(dialog.attr('value')),
onComplete: function(transport) {
dialog.hide();
notify_info(transport.responseText);
if (inPreferences()) {
updateFilterList();
}
}})
}
}
}});
}
},
href: query});
dialog.show();
} catch (e) {
exception_error("quickAddFilter", e);
}
}
function unsubscribeFeed(feed_id, title) {
var msg = __("Unsubscribe from %s?").replace("%s", title);
if (title == undefined || confirm(msg)) {
notify_progress("Removing feed...");
var query = "?op=pref-feeds&quiet=1&subop=remove&ids=" + feed_id;
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function(transport) {
if (dijit.byId("feedEditDlg")) dijit.byId("feedEditDlg").hide();
if (inPreferences()) {
updateFeedList();
} else {
if (feed_id == getActiveFeedId())
setTimeout("viewfeed(-5)", 100);
}
} });
}
return false;
}
2010-09-13 13:14:18 +02:00
function backend_sanity_check_callback(transport) {
try {
if (sanity_check_done) {
fatalError(11, "Sanity check request received twice. This can indicate "+
"presence of Firebug or some other disrupting extension. "+
"Please disable it and try again.");
return;
}
2011-03-18 15:39:23 +01:00
var reply = JSON.parse(transport.responseText);
2010-09-13 13:14:18 +02:00
if (!reply) {
fatalError(3, "Sanity check: invalid RPC reply", transport.responseText);
return;
}
2011-03-18 15:39:23 +01:00
var error_code = reply['error']['code'];
2010-09-13 13:14:18 +02:00
if (error_code && error_code != 0) {
2011-03-18 15:39:23 +01:00
return fatalError(error_code, reply['error']['message']);
2010-09-13 13:14:18 +02:00
}
console.log("sanity check ok");
2011-03-18 15:39:23 +01:00
var params = reply['init-params'];
2010-09-13 13:14:18 +02:00
if (params) {
console.log('reading init-params...');
2010-11-05 14:16:30 +01:00
if (params) {
for (k in params) {
var v = params[k];
console.log("IP: " + k + " => " + v);
2010-11-05 14:16:30 +01:00
}
2010-09-13 13:14:18 +02:00
}
init_params = params;
2010-09-13 13:14:18 +02:00
}
sanity_check_done = true;
init_second_stage();
} catch (e) {
exception_error("backend_sanity_check_callback", e, transport);
}
2010-09-13 13:14:18 +02:00
}
function has_local_storage() {
try {
return 'sessionStorage' in window && window['sessionStorage'] != null;
} catch (e) {
return false;
}
}
2010-11-07 21:30:05 +01:00
function catSelectOnChange(elem) {
try {
2010-11-20 13:29:50 +01:00
/* var value = elem[elem.selectedIndex].value;
2010-11-07 21:30:05 +01:00
var def = elem.getAttribute('default');
if (value == "ADD_CAT") {
if (def)
dropboxSelect(elem, def);
else
elem.selectedIndex = 0;
quickAddCat(elem);
2010-11-20 13:29:50 +01:00
} */
2010-11-07 21:30:05 +01:00
} catch (e) {
exception_error("catSelectOnChange", e);
}
}
function quickAddCat(elem) {
2010-11-07 21:30:05 +01:00
try {
var cat = prompt(__("Please enter category title:"));
if (cat) {
var query = "?op=rpc&subop=quickAddCat&cat=" + param_escape(cat);
notify_progress("Loading, please wait...", true);
2010-11-07 21:30:05 +01:00
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function (transport) {
var response = transport.responseXML;
var select = response.getElementsByTagName("select")[0];
var options = select.getElementsByTagName("option");
2010-11-07 21:30:05 +01:00
dropbox_replace_options(elem, options);
2010-11-07 21:30:05 +01:00
notify('');
2010-11-07 21:30:05 +01:00
} });
}
} catch (e) {
exception_error("quickAddCat", e);
}
}
function genUrlChangeKey(feed, is_cat) {
try {
var ok = confirm(__("Generate new syndication address for this feed?"));
if (ok) {
notify_progress("Trying to change address...", true);
var query = "?op=rpc&subop=regenFeedKey&id=" + param_escape(feed) +
"&is_cat=" + param_escape(is_cat);
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function(transport) {
var reply = JSON.parse(transport.responseText);
var new_link = reply.link;
var e = $('gen_feed_url');
if (new_link) {
e.innerHTML = e.innerHTML.replace(/\&amp;key=.*$/,
"&amp;key=" + new_link);
e.href = e.href.replace(/\&amp;key=.*$/,
"&amp;key=" + new_link);
new Effect.Highlight(e);
notify('');
} else {
notify_error("Could not change feed URL.");
}
} });
}
} catch (e) {
exception_error("genUrlChangeKey", e);
}
return false;
}
2010-11-08 23:04:00 +01:00
function labelSelectOnChange(elem) {
try {
/* var value = elem[elem.selectedIndex].value;
2010-11-08 23:04:00 +01:00
var def = elem.getAttribute('default');
if (value == "ADD_LABEL") {
if (def)
dropboxSelect(elem, def);
else
elem.selectedIndex = 0;
addLabel(elem, function(transport) {
try {
2010-11-08 23:04:00 +01:00
var response = transport.responseXML;
var select = response.getElementsByTagName("select")[0];
var options = select.getElementsByTagName("option");
dropbox_replace_options(elem, options);
notify('');
} catch (e) {
exception_error("addLabel", e);
}
2010-11-08 23:04:00 +01:00
});
} */
2010-11-08 23:04:00 +01:00
} catch (e) {
exception_error("labelSelectOnChange", e);
2010-11-08 23:04:00 +01:00
}
}
function dropbox_replace_options(elem, options) {
try {
while (elem.hasChildNodes())
elem.removeChild(elem.firstChild);
var sel_idx = -1;
for (var i = 0; i < options.length; i++) {
var text = options[i].firstChild.nodeValue;
var value = options[i].getAttribute("value");
if (value == undefined) value = text;
var issel = options[i].getAttribute("selected") == "1";
var option = new Option(text, value, issel);
if (options[i].getAttribute("disabled"))
option.setAttribute("disabled", true);
elem.insert(option);
if (issel) sel_idx = i;
}
2010-11-08 23:04:00 +01:00
// Chrome doesn't seem to just select stuff when you pass new Option(x, y, true)
if (sel_idx >= 0) elem.selectedIndex = sel_idx;
} catch (e) {
exception_error("dropbox_replace_options", e);
}
}
2010-11-12 11:52:53 +01:00
// mode = all, none, invert
function selectTableRows(id, mode) {
try {
var rows = $(id).rows;
for (var i = 0; i < rows.length; i++) {
var row = rows[i];
var cb = false;
if (row.id && row.className) {
var bare_id = row.id.replace(/^[A-Z]*?-/, "");
var inputs = rows[i].getElementsByTagName("input");
for (var j = 0; j < inputs.length; j++) {
var input = inputs[j];
if (input.getAttribute("type") == "checkbox" &&
2010-11-12 11:52:53 +01:00
input.id.match(bare_id)) {
cb = input;
break;
}
}
if (cb) {
var issel = row.hasClassName("Selected");
2010-11-12 11:52:53 +01:00
if (mode == "all" && !issel) {
row.addClassName("Selected");
2010-11-12 11:52:53 +01:00
cb.checked = true;
} else if (mode == "none" && issel) {
row.removeClassName("Selected");
2010-11-12 11:52:53 +01:00
cb.checked = false;
} else if (mode == "invert") {
if (issel) {
row.removeClassName("Selected");
2010-11-12 11:52:53 +01:00
cb.checked = false;
} else {
row.addClassName("Selected");
2010-11-12 11:52:53 +01:00
cb.checked = true;
}
}
}
}
}
} catch (e) {
exception_error("selectTableRows", e);
}
}
function getSelectedTableRowIds(id) {
var rows = [];
try {
var elem_rows = $(id).rows;
for (i = 0; i < elem_rows.length; i++) {
if (elem_rows[i].hasClassName("Selected")) {
2010-11-12 11:52:53 +01:00
var bare_id = elem_rows[i].id.replace(/^[A-Z]*?-/, "");
rows.push(bare_id);
}
}
} catch (e) {
exception_error("getSelectedTableRowIds", e);
}
return rows;
}
2010-11-20 13:29:50 +01:00
function editFeed(feed, event) {
try {
2010-11-20 13:36:42 +01:00
if (feed <= 0)
return alert(__("You can't edit this kind of feed."));
2010-11-20 13:29:50 +01:00
var query = "backend.php?op=pref-feeds&subop=editfeed&id=" +
param_escape(feed);
console.log(query);
if (dijit.byId("feedEditDlg"))
dijit.byId("feedEditDlg").destroyRecursive();
dialog = new dijit.Dialog({
id: "feedEditDlg",
title: __("Edit Feed"),
style: "width: 600px",
execute: function() {
if (this.validate()) {
2010-11-21 09:55:28 +01:00
// console.log(dojo.objectToQuery(this.attr('value')));
2010-11-20 13:29:50 +01:00
notify_progress("Saving data...", true);
new Ajax.Request("backend.php", {
parameters: dojo.objectToQuery(dialog.attr('value')),
onComplete: function(transport) {
dialog.hide();
notify('');
updateFeedList();
2010-11-20 13:29:50 +01:00
}})
}
},
href: query});
dialog.show();
} catch (e) {
exception_error("editFeed", e);
}
}
function feedBrowser() {
try {
var query = "backend.php?op=dlg&id=feedBrowser";
if (dijit.byId("feedAddDlg"))
dijit.byId("feedAddDlg").hide();
if (dijit.byId("feedBrowserDlg"))
dijit.byId("feedBrowserDlg").destroyRecursive();
var dialog = new dijit.Dialog({
id: "feedBrowserDlg",
title: __("More Feeds"),
style: "width: 600px",
getSelectedFeeds: function() {
var list = $$("#browseFeedList li[id*=FBROW]");
var selected = new Array();
list.each(function(child) {
var id = child.id.replace("FBROW-", "");
if (child.hasClassName('Selected')) {
selected.push(id);
}
});
return selected;
},
subscribe: function() {
var selected = this.getSelectedFeeds();
var mode = this.attr('value').mode;
if (selected.length > 0) {
dijit.byId("feedBrowserDlg").hide();
notify_progress("Loading, please wait...", true);
var query = "?op=rpc&subop=massSubscribe&ids="+
param_escape(selected.toString()) + "&mode=" + param_escape(mode);
console.log(query);
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function(transport) {
if (inPreferences()) {
updateFeedList();
}
} });
} else {
alert(__("No feeds are selected."));
}
},
update: function() {
var query = dojo.objectToQuery(dialog.attr('value'));
Element.show('feed_browser_spinner');
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function(transport) {
notify('');
Element.hide('feed_browser_spinner');
var c = $("browseFeedList");
2010-11-29 14:19:32 +01:00
var reply = JSON.parse(transport.responseText);
var r = reply['content'];
var mode = reply['mode'];
if (c && r) {
2010-11-29 14:19:32 +01:00
c.innerHTML = r;
}
dojo.parser.parse("browseFeedList");
2010-11-29 14:19:32 +01:00
if (mode == 2) {
Element.show(dijit.byId('feed_archive_remove').domNode);
} else {
Element.hide(dijit.byId('feed_archive_remove').domNode);
}
} });
},
removeFromArchive: function() {
var selected = this.getSelectedFeeds();
if (selected.length > 0) {
var pr = __("Remove selected feeds from the archive? Feeds with stored articles will not be removed.");
if (confirm(pr)) {
Element.show('feed_browser_spinner');
var query = "?op=rpc&subop=remarchived&ids=" +
param_escape(selected.toString());;
new Ajax.Request("backend.php", {
parameters: query,
onComplete: function(transport) {
dialog.update();
} });
}
}
},
execute: function() {
if (this.validate()) {
this.subscribe();
}
},
href: query});
dialog.show();
} catch (e) {
exception_error("editFeed", e);
}
}
2010-11-20 13:29:50 +01:00