]> git.wh0rd.org - tt-rss.git/blob - js/functions.js
fix opml export
[tt-rss.git] / js / functions.js
1 var notify_silent = false;
2 var loading_progress = 0;
3 var sanity_check_done = false;
4 var init_params = {};
5
6 Ajax.Base.prototype.initialize = Ajax.Base.prototype.initialize.wrap(
7 function (callOriginal, options) {
8
9 if (getInitParam("csrf_token") != undefined) {
10 Object.extend(options, options || { });
11
12 if (Object.isString(options.parameters))
13 options.parameters = options.parameters.toQueryParams();
14 else if (Object.isHash(options.parameters))
15 options.parameters = options.parameters.toObject();
16
17 options.parameters["csrf_token"] = getInitParam("csrf_token");
18 }
19
20 return callOriginal(options);
21 }
22 );
23
24 /* add method to remove element from array */
25
26 Array.prototype.remove = function(s) {
27 for (var i=0; i < this.length; i++) {
28 if (s == this[i]) this.splice(i, 1);
29 }
30 };
31
32 /* create console.log if it doesn't exist */
33
34 if (!window.console) console = {};
35 console.log = console.log || function(msg) { };
36 console.warn = console.warn || function(msg) { };
37 console.error = console.error || function(msg) { };
38
39 function exception_error(location, e, ext_info) {
40 var msg = format_exception_error(location, e);
41
42 if (!ext_info) ext_info = false;
43
44 try {
45
46 if (ext_info) {
47 if (ext_info.responseText) {
48 ext_info = ext_info.responseText;
49 }
50 }
51
52 var content = "<div class=\"fatalError\">" +
53 "<pre>" + msg + "</pre>";
54
55 content += "<form name=\"exceptionForm\" id=\"exceptionForm\" target=\"_blank\" "+
56 "action=\"http://tt-rss.org/report.php\" method=\"POST\">";
57
58 content += "<textarea style=\"display : none\" name=\"message\">" + msg + "</textarea>";
59 content += "<textarea style=\"display : none\" name=\"params\">N/A</textarea>";
60
61 if (ext_info) {
62 content += "<div><b>Additional information:</b></div>" +
63 "<textarea name=\"xinfo\" readonly=\"1\">" + ext_info + "</textarea>";
64 }
65
66 content += "<div><b>Stack trace:</b></div>" +
67 "<textarea name=\"stack\" readonly=\"1\">" + e.stack + "</textarea>";
68
69 content += "</form>";
70
71 content += "</div>";
72
73 content += "<div class='dlgButtons'>";
74
75 content += "<button dojoType=\"dijit.form.Button\""+
76 "onclick=\"dijit.byId('exceptionDlg').report()\">" +
77 __('Report to tt-rss.org') + "</button> ";
78 content += "<button dojoType=\"dijit.form.Button\" "+
79 "onclick=\"dijit.byId('exceptionDlg').hide()\">" +
80 __('Close') + "</button>";
81 content += "</div>";
82
83 if (dijit.byId("exceptionDlg"))
84 dijit.byId("exceptionDlg").destroyRecursive();
85
86 var dialog = new dijit.Dialog({
87 id: "exceptionDlg",
88 title: "Unhandled exception",
89 style: "width: 600px",
90 report: function() {
91 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."))) {
92
93 document.forms['exceptionForm'].params.value = $H({
94 browserName: navigator.appName,
95 browserVersion: navigator.appVersion,
96 browserPlatform: navigator.platform,
97 browserCookies: navigator.cookieEnabled,
98 }).toQueryString();
99
100 document.forms['exceptionForm'].submit();
101
102 }
103 },
104 content: content});
105
106 dialog.show();
107
108 } catch (e) {
109 alert(msg);
110 }
111
112 }
113
114 function format_exception_error(location, e) {
115 var msg;
116
117 if (e.fileName) {
118 var base_fname = e.fileName.substring(e.fileName.lastIndexOf("/") + 1);
119
120 msg = "Exception: " + e.name + ", " + e.message +
121 "\nFunction: " + location + "()" +
122 "\nLocation: " + base_fname + ":" + e.lineNumber;
123
124 } else if (e.description) {
125 msg = "Exception: " + e.description + "\nFunction: " + location + "()";
126 } else {
127 msg = "Exception: " + e + "\nFunction: " + location + "()";
128 }
129
130 console.error("EXCEPTION: " + msg);
131
132 return msg;
133 }
134
135 function param_escape(arg) {
136 if (typeof encodeURIComponent != 'undefined')
137 return encodeURIComponent(arg);
138 else
139 return escape(arg);
140 }
141
142 function param_unescape(arg) {
143 if (typeof decodeURIComponent != 'undefined')
144 return decodeURIComponent(arg);
145 else
146 return unescape(arg);
147 }
148
149 var notify_hide_timerid = false;
150
151 function hide_notify() {
152 var n = $("notify");
153 if (n) {
154 n.style.display = "none";
155 }
156 }
157
158 function notify_silent_next() {
159 notify_silent = true;
160 }
161
162 function notify_real(msg, no_hide, n_type) {
163
164 if (notify_silent) {
165 notify_silent = false;
166 return;
167 }
168
169 var n = $("notify");
170 var nb = $("notify_body");
171
172 if (!n || !nb) return;
173
174 if (notify_hide_timerid) {
175 window.clearTimeout(notify_hide_timerid);
176 }
177
178 if (msg == "") {
179 if (n.style.display == "block") {
180 notify_hide_timerid = window.setTimeout("hide_notify()", 0);
181 }
182 return;
183 } else {
184 n.style.display = "block";
185 }
186
187 /* types:
188
189 1 - generic
190 2 - progress
191 3 - error
192 4 - info
193
194 */
195
196 if (typeof __ != 'undefined') {
197 msg = __(msg);
198 }
199
200 if (n_type == 1) {
201 n.className = "notify";
202 } else if (n_type == 2) {
203 n.className = "notifyProgress";
204 msg = "<img src='"+getInitParam("sign_progress")+"'> " + msg;
205 } else if (n_type == 3) {
206 n.className = "notifyError";
207 msg = "<img src='"+getInitParam("sign_excl")+"'> " + msg;
208 } else if (n_type == 4) {
209 n.className = "notifyInfo";
210 msg = "<img src='"+getInitParam("sign_info")+"'> " + msg;
211 }
212
213 // msg = "<img src='images/live_com_loading.gif'> " + msg;
214
215 nb.innerHTML = msg;
216
217 if (!no_hide) {
218 notify_hide_timerid = window.setTimeout("hide_notify()", 3000);
219 }
220 }
221
222 function notify(msg, no_hide) {
223 notify_real(msg, no_hide, 1);
224 }
225
226 function notify_progress(msg, no_hide) {
227 notify_real(msg, no_hide, 2);
228 }
229
230 function notify_error(msg, no_hide) {
231 notify_real(msg, no_hide, 3);
232
233 }
234
235 function notify_info(msg, no_hide) {
236 notify_real(msg, no_hide, 4);
237 }
238
239 function setCookie(name, value, lifetime, path, domain, secure) {
240
241 var d = false;
242
243 if (lifetime) {
244 d = new Date();
245 d.setTime(d.getTime() + (lifetime * 1000));
246 }
247
248 console.log("setCookie: " + name + " => " + value + ": " + d);
249
250 int_setCookie(name, value, d, path, domain, secure);
251
252 }
253
254 function int_setCookie(name, value, expires, path, domain, secure) {
255 document.cookie= name + "=" + escape(value) +
256 ((expires) ? "; expires=" + expires.toGMTString() : "") +
257 ((path) ? "; path=" + path : "") +
258 ((domain) ? "; domain=" + domain : "") +
259 ((secure) ? "; secure" : "");
260 }
261
262 function delCookie(name, path, domain) {
263 if (getCookie(name)) {
264 document.cookie = name + "=" +
265 ((path) ? ";path=" + path : "") +
266 ((domain) ? ";domain=" + domain : "" ) +
267 ";expires=Thu, 01-Jan-1970 00:00:01 GMT";
268 }
269 }
270
271
272 function getCookie(name) {
273
274 var dc = document.cookie;
275 var prefix = name + "=";
276 var begin = dc.indexOf("; " + prefix);
277 if (begin == -1) {
278 begin = dc.indexOf(prefix);
279 if (begin != 0) return null;
280 }
281 else {
282 begin += 2;
283 }
284 var end = document.cookie.indexOf(";", begin);
285 if (end == -1) {
286 end = dc.length;
287 }
288 return unescape(dc.substring(begin + prefix.length, end));
289 }
290
291 function gotoPreferences() {
292 document.location.href = "prefs.php";
293 }
294
295 function gotoMain() {
296 document.location.href = "index.php";
297 }
298
299 /** * @(#)isNumeric.js * * Copyright (c) 2000 by Sundar Dorai-Raj
300 * * @author Sundar Dorai-Raj
301 * * Email: sdoraira@vt.edu
302 * * This program is free software; you can redistribute it and/or
303 * * modify it under the terms of the GNU General Public License
304 * * as published by the Free Software Foundation; either version 2
305 * * of the License, or (at your option) any later version,
306 * * provided that any use properly credits the author.
307 * * This program is distributed in the hope that it will be useful,
308 * * but WITHOUT ANY WARRANTY; without even the implied warranty of
309 * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
310 * * GNU General Public License for more details at http://www.gnu.org * * */
311
312 var numbers=".0123456789";
313 function isNumeric(x) {
314 // is x a String or a character?
315 if(x.length>1) {
316 // remove negative sign
317 x=Math.abs(x)+"";
318 for(var j=0;j<x.length;j++) {
319 // call isNumeric recursively for each character
320 number=isNumeric(x.substring(j,j+1));
321 if(!number) return number;
322 }
323 return number;
324 }
325 else {
326 // if x is number return true
327 if(numbers.indexOf(x)>=0) return true;
328 return false;
329 }
330 }
331
332
333 function toggleSelectRowById(sender, id) {
334 var row = $(id);
335 return toggleSelectRow(sender, row);
336 }
337
338 function toggleSelectListRow(sender) {
339 var row = sender.parentNode;
340 return toggleSelectRow(sender, row);
341 }
342
343 /* this is for dijit Checkbox */
344 function toggleSelectListRow2(sender) {
345 var row = sender.domNode.parentNode;
346 return toggleSelectRow(sender, row);
347 }
348
349 function tSR(sender, row) {
350 return toggleSelectRow(sender, row);
351 }
352
353 /* this is for dijit Checkbox */
354 function toggleSelectRow2(sender, row) {
355
356 if (!row) row = sender.domNode.parentNode.parentNode;
357
358 if (sender.checked && !row.hasClassName('Selected'))
359 row.addClassName('Selected');
360 else
361 row.removeClassName('Selected');
362 }
363
364
365 function toggleSelectRow(sender, row) {
366
367 if (!row) row = sender.parentNode.parentNode;
368
369 if (sender.checked && !row.hasClassName('Selected'))
370 row.addClassName('Selected');
371 else
372 row.removeClassName('Selected');
373 }
374
375 function checkboxToggleElement(elem, id) {
376 if (elem.checked) {
377 Effect.Appear(id, {duration : 0.5});
378 } else {
379 Effect.Fade(id, {duration : 0.5});
380 }
381 }
382
383 function dropboxSelect(e, v) {
384 for (var i = 0; i < e.length; i++) {
385 if (e[i].value == v) {
386 e.selectedIndex = i;
387 break;
388 }
389 }
390 }
391
392 function getURLParam(param){
393 return String(window.location.href).parseQuery()[param];
394 }
395
396 function leading_zero(p) {
397 var s = String(p);
398 if (s.length == 1) s = "0" + s;
399 return s;
400 }
401
402 function make_timestamp() {
403 var d = new Date();
404
405 return leading_zero(d.getHours()) + ":" + leading_zero(d.getMinutes()) +
406 ":" + leading_zero(d.getSeconds());
407 }
408
409
410 function closeInfoBox(cleanup) {
411 try {
412 dialog = dijit.byId("infoBox");
413
414 if (dialog) dialog.hide();
415
416 } catch (e) {
417 //exception_error("closeInfoBox", e);
418 }
419 return false;
420 }
421
422
423 function displayDlg(id, param, callback) {
424
425 notify_progress("Loading, please wait...", true);
426
427 var query = "?op=dlg&method=" +
428 param_escape(id) + "&param=" + param_escape(param);
429
430 new Ajax.Request("backend.php", {
431 parameters: query,
432 onComplete: function (transport) {
433 infobox_callback2(transport);
434 if (callback) callback(transport);
435 } });
436
437 return false;
438 }
439
440 function infobox_callback2(transport) {
441 try {
442 var dialog = false;
443
444 if (dijit.byId("infoBox")) {
445 dialog = dijit.byId("infoBox");
446 }
447
448 //console.log("infobox_callback2");
449 notify('');
450
451 var title = transport.responseXML.getElementsByTagName("title")[0];
452 if (title)
453 title = title.firstChild.nodeValue;
454
455 var content = transport.responseXML.getElementsByTagName("content")[0];
456
457 content = content.firstChild.nodeValue;
458
459 if (!dialog) {
460 dialog = new dijit.Dialog({
461 title: title,
462 id: 'infoBox',
463 style: "width: 600px",
464 onCancel: function() {
465 return true;
466 },
467 onExecute: function() {
468 return true;
469 },
470 onClose: function() {
471 return true;
472 },
473 content: content});
474 } else {
475 dialog.attr('title', title);
476 dialog.attr('content', content);
477 }
478
479 dialog.show();
480
481 notify("");
482 } catch (e) {
483 exception_error("infobox_callback2", e);
484 }
485 }
486
487 function filterCR(e, f)
488 {
489 var key;
490
491 if(window.event)
492 key = window.event.keyCode; //IE
493 else
494 key = e.which; //firefox
495
496 if (key == 13) {
497 if (typeof f != 'undefined') {
498 f();
499 return false;
500 } else {
501 return false;
502 }
503 } else {
504 return true;
505 }
506 }
507
508 function getInitParam(key) {
509 return init_params[key];
510 }
511
512 function setInitParam(key, value) {
513 init_params[key] = value;
514 }
515
516 function fatalError(code, msg, ext_info) {
517 try {
518
519 if (code == 6) {
520 window.location.href = "index.php";
521 } else if (code == 5) {
522 window.location.href = "db-updater.php";
523 } else {
524
525 if (msg == "") msg = "Unknown error";
526
527 if (ext_info) {
528 if (ext_info.responseText) {
529 ext_info = ext_info.responseText;
530 }
531 }
532
533 if (ERRORS && ERRORS[code] && !msg) {
534 msg = ERRORS[code];
535 }
536
537 var content = "<div><b>Error code:</b> " + code + "</div>" +
538 "<p>" + msg + "</p>";
539
540 if (ext_info) {
541 content = content + "<div><b>Additional information:</b></div>" +
542 "<textarea style='width: 100%' readonly=\"1\">" +
543 ext_info + "</textarea>";
544 }
545
546 var dialog = new dijit.Dialog({
547 title: "Fatal error",
548 style: "width: 600px",
549 content: content});
550
551 dialog.show();
552
553 }
554
555 return false;
556
557 } catch (e) {
558 exception_error("fatalError", e);
559 }
560 }
561
562 function filterDlgCheckCat(sender) {
563 try {
564 if (sender.checked) {
565 Element.show('filterDlg_cats');
566 Element.hide('filterDlg_feeds');
567 } else {
568 Element.show('filterDlg_feeds');
569 Element.hide('filterDlg_cats');
570 }
571
572 } catch (e) {
573 exception_error("filterDlgCheckCat", e);
574 }
575 }
576
577 function filterDlgCheckType(sender) {
578
579 try {
580
581 var ftype = sender.value;
582
583 // if selected filter type is 5 (Date) enable the modifier dropbox
584 if (ftype == 5) {
585 Element.show("filterDlg_dateModBox");
586 Element.show("filterDlg_dateChkBox");
587 } else {
588 Element.hide("filterDlg_dateModBox");
589 Element.hide("filterDlg_dateChkBox");
590
591 }
592
593 } catch (e) {
594 exception_error("filterDlgCheckType", e);
595 }
596
597 }
598
599 function filterDlgCheckAction(sender) {
600
601 try {
602
603 var action = sender.value;
604
605 var action_param = $("filterDlg_paramBox");
606
607 if (!action_param) {
608 console.log("filterDlgCheckAction: can't find action param box!");
609 return;
610 }
611
612 // if selected action supports parameters, enable params field
613 if (action == 4 || action == 6 || action == 7) {
614 new Effect.Appear(action_param, {duration : 0.5});
615 if (action != 7) {
616 Element.show(dijit.byId("filterDlg_actionParam").domNode);
617 Element.hide(dijit.byId("filterDlg_actionParamLabel").domNode);
618 } else {
619 Element.show(dijit.byId("filterDlg_actionParamLabel").domNode);
620 Element.hide(dijit.byId("filterDlg_actionParam").domNode);
621 }
622 } else {
623 Element.hide(action_param);
624 }
625
626 } catch (e) {
627 exception_error("filterDlgCheckAction", e);
628 }
629
630 }
631
632 function filterDlgCheckDate() {
633 try {
634 var dialog = dijit.byId("filterEditDlg");
635
636 var reg_exp = dialog.attr('value').reg_exp;
637
638 var query = "?op=rpc&method=checkDate&date=" + reg_exp;
639
640 new Ajax.Request("backend.php", {
641 parameters: query,
642 onComplete: function(transport) {
643
644 var reply = JSON.parse(transport.responseText);
645
646 if (reply['result'] == true) {
647 alert(__("Date syntax appears to be correct:") + " " + reply['date']);
648 return;
649 } else {
650 alert(__("Date syntax is incorrect."));
651 }
652
653 } });
654
655
656 } catch (e) {
657 exception_error("filterDlgCheckDate", e);
658 }
659 }
660
661 function explainError(code) {
662 return displayDlg("explainError", code);
663 }
664
665 function loading_set_progress(p) {
666 try {
667 loading_progress += p;
668
669 if (dijit.byId("loading_bar"))
670 dijit.byId("loading_bar").update({progress: loading_progress});
671
672 if (loading_progress >= 90)
673 remove_splash();
674
675 } catch (e) {
676 exception_error("loading_set_progress", e);
677 }
678 }
679
680 function remove_splash() {
681
682 if (Element.visible("overlay")) {
683 console.log("about to remove splash, OMG!");
684 Element.hide("overlay");
685 console.log("removed splash!");
686 }
687 }
688
689 function transport_error_check(transport) {
690 try {
691 if (transport.responseXML) {
692 var error = transport.responseXML.getElementsByTagName("error")[0];
693
694 if (error) {
695 var code = error.getAttribute("error-code");
696 var msg = error.getAttribute("error-msg");
697 if (code != 0) {
698 fatalError(code, msg);
699 return false;
700 }
701 }
702 }
703 } catch (e) {
704 exception_error("check_for_error_xml", e);
705 }
706 return true;
707 }
708
709 function strip_tags(s) {
710 return s.replace(/<\/?[^>]+(>|$)/g, "");
711 }
712
713 function truncate_string(s, length) {
714 if (!length) length = 30;
715 var tmp = s.substring(0, length);
716 if (s.length > length) tmp += "&hellip;";
717 return tmp;
718 }
719
720 function hotkey_prefix_timeout() {
721 try {
722
723 var date = new Date();
724 var ts = Math.round(date.getTime() / 1000);
725
726 if (hotkey_prefix_pressed && ts - hotkey_prefix_pressed >= 5) {
727 console.log("hotkey_prefix seems to be stuck, aborting");
728 hotkey_prefix_pressed = false;
729 hotkey_prefix = false;
730 Element.hide('cmdline');
731 }
732
733 setTimeout("hotkey_prefix_timeout()", 1000);
734
735 } catch (e) {
736 exception_error("hotkey_prefix_timeout", e);
737 }
738 }
739
740 function hideAuxDlg() {
741 try {
742 Element.hide('auxDlg');
743 } catch (e) {
744 exception_error("hideAuxDlg", e);
745 }
746 }
747
748
749 function uploadIconHandler(rc) {
750 try {
751 switch (rc) {
752 case 0:
753 notify_info("Upload complete.");
754 if (inPreferences()) {
755 updateFeedList();
756 } else {
757 setTimeout('updateFeedList(false, false)', 50);
758 }
759 break;
760 case 1:
761 notify_error("Upload failed: icon is too big.");
762 break;
763 case 2:
764 notify_error("Upload failed.");
765 break;
766 }
767
768 } catch (e) {
769 exception_error("uploadIconHandler", e);
770 }
771 }
772
773 function removeFeedIcon(id) {
774
775 try {
776
777 if (confirm(__("Remove stored feed icon?"))) {
778 var query = "backend.php?op=pref-feeds&method=removeicon&feed_id=" + param_escape(id);
779
780 console.log(query);
781
782 notify_progress("Removing feed icon...", true);
783
784 new Ajax.Request("backend.php", {
785 parameters: query,
786 onComplete: function(transport) {
787 notify_info("Feed icon removed.");
788 if (inPreferences()) {
789 updateFeedList();
790 } else {
791 setTimeout('updateFeedList(false, false)', 50);
792 }
793 } });
794 }
795
796 return false;
797 } catch (e) {
798 exception_error("uploadFeedIcon", e);
799 }
800 }
801
802 function uploadFeedIcon() {
803
804 try {
805
806 var file = $("icon_file");
807
808 if (file.value.length == 0) {
809 alert(__("Please select an image file to upload."));
810 } else {
811 if (confirm(__("Upload new icon for this feed?"))) {
812 notify_progress("Uploading, please wait...", true);
813 return true;
814 }
815 }
816
817 return false;
818
819 } catch (e) {
820 exception_error("uploadFeedIcon", e);
821 }
822 }
823
824 function addLabel(select, callback) {
825
826 try {
827
828 var caption = prompt(__("Please enter label caption:"), "");
829
830 if (caption != undefined) {
831
832 if (caption == "") {
833 alert(__("Can't create label: missing caption."));
834 return false;
835 }
836
837 var query = "?op=pref-labels&method=add&caption=" +
838 param_escape(caption);
839
840 if (select)
841 query += "&output=select";
842
843 notify_progress("Loading, please wait...", true);
844
845 if (inPreferences() && !select) active_tab = "labelConfig";
846
847 new Ajax.Request("backend.php", {
848 parameters: query,
849 onComplete: function(transport) {
850 if (callback) {
851 callback(transport);
852 } else if (inPreferences()) {
853 updateLabelList();
854 } else {
855 updateFeedList();
856 }
857 } });
858
859 }
860
861 } catch (e) {
862 exception_error("addLabel", e);
863 }
864 }
865
866 function quickAddFeed() {
867 try {
868 var query = "backend.php?op=dlg&method=quickAddFeed";
869
870 if (dijit.byId("feedAddDlg"))
871 dijit.byId("feedAddDlg").destroyRecursive();
872
873 var dialog = new dijit.Dialog({
874 id: "feedAddDlg",
875 title: __("Subscribe to Feed"),
876 style: "width: 600px",
877 execute: function() {
878 if (this.validate()) {
879 console.log(dojo.objectToQuery(this.attr('value')));
880
881 var feed_url = this.attr('value').feed;
882
883 notify_progress(__("Subscribing to feed..."), true);
884
885 new Ajax.Request("backend.php", {
886 parameters: dojo.objectToQuery(this.attr('value')),
887 onComplete: function(transport) {
888 try {
889
890 var reply = JSON.parse(transport.responseText);
891
892 var rc = parseInt(reply['result']);
893
894 notify('');
895
896 console.log("GOT RC: " + rc);
897
898 switch (rc) {
899 case 1:
900 dialog.hide();
901 notify_info(__("Subscribed to %s").replace("%s", feed_url));
902
903 updateFeedList();
904 break;
905 case 2:
906 alert(__("Specified URL seems to be invalid."));
907 break;
908 case 3:
909 alert(__("Specified URL doesn't seem to contain any feeds."));
910 break;
911 case 4:
912 notify_progress("Searching for feed urls...", true);
913
914 new Ajax.Request("backend.php", {
915 parameters: 'op=rpc&method=extractfeedurls&url=' + param_escape(feed_url),
916 onComplete: function(transport, dialog, feed_url) {
917
918 notify('');
919
920 var reply = JSON.parse(transport.responseText);
921
922 var feeds = reply['urls'];
923
924 console.log(transport.responseText);
925
926 var select = dijit.byId("feedDlg_feedContainerSelect");
927
928 while (select.getOptions().length > 0)
929 select.removeOption(0);
930
931 var count = 0;
932 for (var feedUrl in feeds) {
933 select.addOption({value: feedUrl, label: feeds[feedUrl]});
934 count++;
935 }
936
937 // if (count > 5) count = 5;
938 // select.size = count;
939
940 Effect.Appear('feedDlg_feedsContainer', {duration : 0.5});
941 }
942 });
943 break;
944 case 5:
945 alert(__("Couldn't download the specified URL."));
946 break;
947 case 0:
948 alert(__("You are already subscribed to this feed."));
949 break;
950 }
951
952 } catch (e) {
953 exception_error("subscribeToFeed", e, transport);
954 }
955
956 } });
957
958 }
959 },
960 href: query});
961
962 dialog.show();
963 } catch (e) {
964 exception_error("quickAddFeed", e);
965 }
966 }
967
968 function quickAddFilter() {
969 try {
970 var query = "backend.php?op=dlg&method=quickAddFilter";
971
972 if (dijit.byId("filterEditDlg"))
973 dijit.byId("filterEditDlg").destroyRecursive();
974
975 dialog = new dijit.Dialog({
976 id: "filterEditDlg",
977 title: __("Create Filter"),
978 style: "width: 600px",
979 test: function() {
980 if (this.validate()) {
981
982 if (dijit.byId("filterTestDlg"))
983 dijit.byId("filterTestDlg").destroyRecursive();
984
985 tdialog = new dijit.Dialog({
986 id: "filterTestDlg",
987 title: __("Filter Test Results"),
988 style: "width: 600px",
989 href: "backend.php?savemode=test&" +
990 dojo.objectToQuery(dialog.attr('value')),
991 });
992
993 tdialog.show();
994
995 }
996 },
997 execute: function() {
998 if (this.validate()) {
999
1000 var query = "?op=rpc&method=verifyRegexp&reg_exp=" +
1001 param_escape(dialog.attr('value').reg_exp);
1002
1003 notify_progress("Verifying regular expression...");
1004
1005 new Ajax.Request("backend.php", {
1006 parameters: query,
1007 onComplete: function(transport) {
1008 var reply = JSON.parse(transport.responseText);
1009
1010 if (reply) {
1011 notify('');
1012
1013 if (!reply['status']) {
1014 alert("Match regular expression seems to be invalid.");
1015 return;
1016 } else {
1017 notify_progress("Saving data...", true);
1018
1019 console.log(dojo.objectToQuery(dialog.attr('value')));
1020
1021 new Ajax.Request("backend.php", {
1022 parameters: dojo.objectToQuery(dialog.attr('value')),
1023 onComplete: function(transport) {
1024 dialog.hide();
1025 notify_info(transport.responseText);
1026 if (inPreferences()) {
1027 updateFilterList();
1028 }
1029 }});
1030 }
1031 }
1032 }});
1033 }
1034 },
1035 href: query});
1036
1037 dialog.show();
1038 } catch (e) {
1039 exception_error("quickAddFilter", e);
1040 }
1041 }
1042
1043 function resetPubSub(feed_id, title) {
1044
1045 var msg = __("Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update.").replace("%s", title);
1046
1047 if (title == undefined || confirm(msg)) {
1048 notify_progress("Loading, please wait...");
1049
1050 var query = "?op=pref-feeds&quiet=1&method=resetPubSub&ids=" + feed_id;
1051
1052 new Ajax.Request("backend.php", {
1053 parameters: query,
1054 onComplete: function(transport) {
1055 dijit.byId("pubsubReset_Btn").attr('disabled', true);
1056 notify_info("Subscription reset.");
1057 } });
1058 }
1059
1060 return false;
1061 }
1062
1063
1064 function unsubscribeFeed(feed_id, title) {
1065
1066 var msg = __("Unsubscribe from %s?").replace("%s", title);
1067
1068 if (title == undefined || confirm(msg)) {
1069 notify_progress("Removing feed...");
1070
1071 var query = "?op=pref-feeds&quiet=1&method=remove&ids=" + feed_id;
1072
1073 new Ajax.Request("backend.php", {
1074 parameters: query,
1075 onComplete: function(transport) {
1076
1077 if (dijit.byId("feedEditDlg")) dijit.byId("feedEditDlg").hide();
1078
1079 if (inPreferences()) {
1080 updateFeedList();
1081 } else {
1082 if (feed_id == getActiveFeedId())
1083 setTimeout("viewfeed(-5)", 100);
1084 }
1085
1086 } });
1087 }
1088
1089 return false;
1090 }
1091
1092
1093 function backend_sanity_check_callback(transport) {
1094
1095 try {
1096
1097 if (sanity_check_done) {
1098 fatalError(11, "Sanity check request received twice. This can indicate "+
1099 "presence of Firebug or some other disrupting extension. "+
1100 "Please disable it and try again.");
1101 return;
1102 }
1103
1104 var reply = JSON.parse(transport.responseText);
1105
1106 if (!reply) {
1107 fatalError(3, "Sanity check: invalid RPC reply", transport.responseText);
1108 return;
1109 }
1110
1111 var error_code = reply['error']['code'];
1112
1113 if (error_code && error_code != 0) {
1114 return fatalError(error_code, reply['error']['message']);
1115 }
1116
1117 console.log("sanity check ok");
1118
1119 var params = reply['init-params'];
1120
1121 if (params) {
1122 console.log('reading init-params...');
1123
1124 if (params) {
1125 for (k in params) {
1126 var v = params[k];
1127 console.log("IP: " + k + " => " + v);
1128 }
1129 }
1130
1131 init_params = params;
1132 }
1133
1134 sanity_check_done = true;
1135
1136 init_second_stage();
1137
1138 } catch (e) {
1139 exception_error("backend_sanity_check_callback", e, transport);
1140 }
1141 }
1142
1143 /*function has_local_storage() {
1144 try {
1145 return 'sessionStorage' in window && window['sessionStorage'] != null;
1146 } catch (e) {
1147 return false;
1148 }
1149 } */
1150
1151 function catSelectOnChange(elem) {
1152 try {
1153 /* var value = elem[elem.selectedIndex].value;
1154 var def = elem.getAttribute('default');
1155
1156 if (value == "ADD_CAT") {
1157
1158 if (def)
1159 dropboxSelect(elem, def);
1160 else
1161 elem.selectedIndex = 0;
1162
1163 quickAddCat(elem);
1164 } */
1165
1166 } catch (e) {
1167 exception_error("catSelectOnChange", e);
1168 }
1169 }
1170
1171 function quickAddCat(elem) {
1172 try {
1173 var cat = prompt(__("Please enter category title:"));
1174
1175 if (cat) {
1176
1177 var query = "?op=rpc&method=quickAddCat&cat=" + param_escape(cat);
1178
1179 notify_progress("Loading, please wait...", true);
1180
1181 new Ajax.Request("backend.php", {
1182 parameters: query,
1183 onComplete: function (transport) {
1184 var response = transport.responseXML;
1185 var select = response.getElementsByTagName("select")[0];
1186 var options = select.getElementsByTagName("option");
1187
1188 dropbox_replace_options(elem, options);
1189
1190 notify('');
1191
1192 } });
1193
1194 }
1195
1196 } catch (e) {
1197 exception_error("quickAddCat", e);
1198 }
1199 }
1200
1201 function genUrlChangeKey(feed, is_cat) {
1202
1203 try {
1204 var ok = confirm(__("Generate new syndication address for this feed?"));
1205
1206 if (ok) {
1207
1208 notify_progress("Trying to change address...", true);
1209
1210 var query = "?op=rpc&method=regenFeedKey&id=" + param_escape(feed) +
1211 "&is_cat=" + param_escape(is_cat);
1212
1213 new Ajax.Request("backend.php", {
1214 parameters: query,
1215 onComplete: function(transport) {
1216 var reply = JSON.parse(transport.responseText);
1217 var new_link = reply.link;
1218
1219 var e = $('gen_feed_url');
1220
1221 if (new_link) {
1222
1223 e.innerHTML = e.innerHTML.replace(/\&amp;key=.*$/,
1224 "&amp;key=" + new_link);
1225
1226 e.href = e.href.replace(/\&key=.*$/,
1227 "&key=" + new_link);
1228
1229 new Effect.Highlight(e);
1230
1231 notify('');
1232
1233 } else {
1234 notify_error("Could not change feed URL.");
1235 }
1236 } });
1237 }
1238 } catch (e) {
1239 exception_error("genUrlChangeKey", e);
1240 }
1241 return false;
1242 }
1243
1244 function labelSelectOnChange(elem) {
1245 try {
1246 /* var value = elem[elem.selectedIndex].value;
1247 var def = elem.getAttribute('default');
1248
1249 if (value == "ADD_LABEL") {
1250
1251 if (def)
1252 dropboxSelect(elem, def);
1253 else
1254 elem.selectedIndex = 0;
1255
1256 addLabel(elem, function(transport) {
1257
1258 try {
1259
1260 var response = transport.responseXML;
1261 var select = response.getElementsByTagName("select")[0];
1262 var options = select.getElementsByTagName("option");
1263
1264 dropbox_replace_options(elem, options);
1265
1266 notify('');
1267 } catch (e) {
1268 exception_error("addLabel", e);
1269 }
1270 });
1271 } */
1272
1273 } catch (e) {
1274 exception_error("labelSelectOnChange", e);
1275 }
1276 }
1277
1278 function dropbox_replace_options(elem, options) {
1279
1280 try {
1281 while (elem.hasChildNodes())
1282 elem.removeChild(elem.firstChild);
1283
1284 var sel_idx = -1;
1285
1286 for (var i = 0; i < options.length; i++) {
1287 var text = options[i].firstChild.nodeValue;
1288 var value = options[i].getAttribute("value");
1289
1290 if (value == undefined) value = text;
1291
1292 var issel = options[i].getAttribute("selected") == "1";
1293
1294 var option = new Option(text, value, issel);
1295
1296 if (options[i].getAttribute("disabled"))
1297 option.setAttribute("disabled", true);
1298
1299 elem.insert(option);
1300
1301 if (issel) sel_idx = i;
1302 }
1303
1304 // Chrome doesn't seem to just select stuff when you pass new Option(x, y, true)
1305 if (sel_idx >= 0) elem.selectedIndex = sel_idx;
1306
1307 } catch (e) {
1308 exception_error("dropbox_replace_options", e);
1309 }
1310 }
1311
1312 // mode = all, none, invert
1313 function selectTableRows(id, mode) {
1314 try {
1315 var rows = $(id).rows;
1316
1317 for (var i = 0; i < rows.length; i++) {
1318 var row = rows[i];
1319 var cb = false;
1320
1321 if (row.id && row.className) {
1322 var bare_id = row.id.replace(/^[A-Z]*?-/, "");
1323 var inputs = rows[i].getElementsByTagName("input");
1324
1325 for (var j = 0; j < inputs.length; j++) {
1326 var input = inputs[j];
1327
1328 if (input.getAttribute("type") == "checkbox" &&
1329 input.id.match(bare_id)) {
1330
1331 cb = input;
1332 break;
1333 }
1334 }
1335
1336 if (cb) {
1337 var issel = row.hasClassName("Selected");
1338
1339 if (mode == "all" && !issel) {
1340 row.addClassName("Selected");
1341 cb.checked = true;
1342 } else if (mode == "none" && issel) {
1343 row.removeClassName("Selected");
1344 cb.checked = false;
1345 } else if (mode == "invert") {
1346
1347 if (issel) {
1348 row.removeClassName("Selected");
1349 cb.checked = false;
1350 } else {
1351 row.addClassName("Selected");
1352 cb.checked = true;
1353 }
1354 }
1355 }
1356 }
1357 }
1358
1359 } catch (e) {
1360 exception_error("selectTableRows", e);
1361
1362 }
1363 }
1364
1365 function getSelectedTableRowIds(id) {
1366 var rows = [];
1367
1368 try {
1369 var elem_rows = $(id).rows;
1370
1371 for (var i = 0; i < elem_rows.length; i++) {
1372 if (elem_rows[i].hasClassName("Selected")) {
1373 var bare_id = elem_rows[i].id.replace(/^[A-Z]*?-/, "");
1374 rows.push(bare_id);
1375 }
1376 }
1377
1378 } catch (e) {
1379 exception_error("getSelectedTableRowIds", e);
1380 }
1381
1382 return rows;
1383 }
1384
1385 function editFeed(feed, event) {
1386 try {
1387 if (feed <= 0)
1388 return alert(__("You can't edit this kind of feed."));
1389
1390 var query = "backend.php?op=pref-feeds&method=editfeed&id=" +
1391 param_escape(feed);
1392
1393 console.log(query);
1394
1395 if (dijit.byId("feedEditDlg"))
1396 dijit.byId("feedEditDlg").destroyRecursive();
1397
1398 dialog = new dijit.Dialog({
1399 id: "feedEditDlg",
1400 title: __("Edit Feed"),
1401 style: "width: 600px",
1402 execute: function() {
1403 if (this.validate()) {
1404 // console.log(dojo.objectToQuery(this.attr('value')));
1405
1406 notify_progress("Saving data...", true);
1407
1408 new Ajax.Request("backend.php", {
1409 parameters: dojo.objectToQuery(dialog.attr('value')),
1410 onComplete: function(transport) {
1411 dialog.hide();
1412 notify('');
1413 updateFeedList();
1414 }});
1415 }
1416 },
1417 href: query});
1418
1419 dialog.show();
1420
1421 } catch (e) {
1422 exception_error("editFeed", e);
1423 }
1424 }
1425
1426 function feedBrowser() {
1427 try {
1428 var query = "backend.php?op=dlg&method=feedBrowser";
1429
1430 if (dijit.byId("feedAddDlg"))
1431 dijit.byId("feedAddDlg").hide();
1432
1433 if (dijit.byId("feedBrowserDlg"))
1434 dijit.byId("feedBrowserDlg").destroyRecursive();
1435
1436 var dialog = new dijit.Dialog({
1437 id: "feedBrowserDlg",
1438 title: __("More Feeds"),
1439 style: "width: 600px",
1440 getSelectedFeedIds: function() {
1441 var list = $$("#browseFeedList li[id*=FBROW]");
1442 var selected = new Array();
1443
1444 list.each(function(child) {
1445 var id = child.id.replace("FBROW-", "");
1446
1447 if (child.hasClassName('Selected')) {
1448 selected.push(id);
1449 }
1450 });
1451
1452 return selected;
1453 },
1454 getSelectedFeeds: function() {
1455 var list = $$("#browseFeedList li.Selected");
1456 var selected = new Array();
1457
1458 list.each(function(child) {
1459 var title = child.getElementsBySelector("span.fb_feedTitle")[0].innerHTML;
1460 var url = child.getElementsBySelector("a.fb_feedUrl")[0].href;
1461
1462 selected.push([title,url]);
1463
1464 });
1465
1466 return selected;
1467 },
1468
1469 subscribe: function() {
1470 var mode = this.attr('value').mode;
1471 var selected = [];
1472
1473 if (mode == "1")
1474 selected = this.getSelectedFeeds();
1475 else
1476 selected = this.getSelectedFeedIds();
1477
1478 if (selected.length > 0) {
1479 dijit.byId("feedBrowserDlg").hide();
1480
1481 notify_progress("Loading, please wait...", true);
1482
1483 // we use dojo.toJson instead of JSON.stringify because
1484 // it somehow escapes everything TWICE, at least in Chrome 9
1485
1486 var query = "?op=rpc&method=massSubscribe&payload="+
1487 param_escape(dojo.toJson(selected)) + "&mode=" + param_escape(mode);
1488
1489 console.log(query);
1490
1491 new Ajax.Request("backend.php", {
1492 parameters: query,
1493 onComplete: function(transport) {
1494 notify('');
1495 updateFeedList();
1496 } });
1497
1498 } else {
1499 alert(__("No feeds are selected."));
1500 }
1501
1502 },
1503 update: function() {
1504 var query = dojo.objectToQuery(dialog.attr('value'));
1505
1506 Element.show('feed_browser_spinner');
1507
1508 new Ajax.Request("backend.php", {
1509 parameters: query,
1510 onComplete: function(transport) {
1511 notify('');
1512
1513 Element.hide('feed_browser_spinner');
1514
1515 var c = $("browseFeedList");
1516
1517 var reply = JSON.parse(transport.responseText);
1518
1519 var r = reply['content'];
1520 var mode = reply['mode'];
1521
1522 if (c && r) {
1523 c.innerHTML = r;
1524 }
1525
1526 dojo.parser.parse("browseFeedList");
1527
1528 if (mode == 2) {
1529 Element.show(dijit.byId('feed_archive_remove').domNode);
1530 } else {
1531 Element.hide(dijit.byId('feed_archive_remove').domNode);
1532 }
1533
1534 } });
1535 },
1536 removeFromArchive: function() {
1537 var selected = this.getSelectedFeeds();
1538
1539 if (selected.length > 0) {
1540
1541 var pr = __("Remove selected feeds from the archive? Feeds with stored articles will not be removed.");
1542
1543 if (confirm(pr)) {
1544 Element.show('feed_browser_spinner');
1545
1546 var query = "?op=rpc&method=remarchived&ids=" +
1547 param_escape(selected.toString());;
1548
1549 new Ajax.Request("backend.php", {
1550 parameters: query,
1551 onComplete: function(transport) {
1552 dialog.update();
1553 } });
1554 }
1555 }
1556 },
1557 execute: function() {
1558 if (this.validate()) {
1559 this.subscribe();
1560 }
1561 },
1562 href: query});
1563
1564 dialog.show();
1565
1566 } catch (e) {
1567 exception_error("editFeed", e);
1568 }
1569 }
1570
1571 function showFeedsWithErrors() {
1572 try {
1573 var query = "backend.php?op=dlg&method=feedsWithErrors";
1574
1575 if (dijit.byId("errorFeedsDlg"))
1576 dijit.byId("errorFeedsDlg").destroyRecursive();
1577
1578 dialog = new dijit.Dialog({
1579 id: "errorFeedsDlg",
1580 title: __("Feeds with update errors"),
1581 style: "width: 600px",
1582 getSelectedFeeds: function() {
1583 return getSelectedTableRowIds("prefErrorFeedList");
1584 },
1585 removeSelected: function() {
1586 var sel_rows = this.getSelectedFeeds();
1587
1588 console.log(sel_rows);
1589
1590 if (sel_rows.length > 0) {
1591 var ok = confirm(__("Remove selected feeds?"));
1592
1593 if (ok) {
1594 notify_progress("Removing selected feeds...", true);
1595
1596 var query = "?op=pref-feeds&method=remove&ids="+
1597 param_escape(sel_rows.toString());
1598
1599 new Ajax.Request("backend.php", {
1600 parameters: query,
1601 onComplete: function(transport) {
1602 notify('');
1603 dialog.hide();
1604 updateFeedList();
1605 } });
1606 }
1607
1608 } else {
1609 alert(__("No feeds are selected."));
1610 }
1611 },
1612 execute: function() {
1613 if (this.validate()) {
1614 }
1615 },
1616 href: query});
1617
1618 dialog.show();
1619
1620 } catch (e) {
1621 exception_error("showFeedsWithErrors", e);
1622 }
1623
1624 }
1625
1626 /* new support functions for SelectByTag */
1627
1628 function get_all_tags(selObj){
1629 try {
1630 if( !selObj ) return "";
1631
1632 var result = "";
1633 var len = selObj.options.length;
1634
1635 for (var i=0; i < len; i++){
1636 if (selObj.options[i].selected) {
1637 result += selObj[i].value + "%2C"; // is really a comma
1638 }
1639 }
1640
1641 if (result.length > 0){
1642 result = result.substr(0, result.length-3); // remove trailing %2C
1643 }
1644
1645 return(result);
1646
1647 } catch (e) {
1648 exception_error("get_all_tags", e);
1649 }
1650 }
1651
1652 function get_radio_checked(radioObj) {
1653 try {
1654 if (!radioObj) return "";
1655
1656 var len = radioObj.length;
1657
1658 if (len == undefined){
1659 if(radioObj.checked){
1660 return(radioObj.value);
1661 } else {
1662 return("");
1663 }
1664 }
1665
1666 for( var i=0; i < len; i++ ){
1667 if( radioObj[i].checked ){
1668 return( radioObj[i].value);
1669 }
1670 }
1671
1672 } catch (e) {
1673 exception_error("get_radio_checked", e);
1674 }
1675 return("");
1676 }