]> git.wh0rd.org - tt-rss.git/blame - prefs.js
add parent_feed column to ttrss_feeds, create upgrade script for 1.1.1, move out...
[tt-rss.git] / prefs.js
CommitLineData
007bda35
AD
1var xmlhttp = false;
2
961513a3 3var active_feed = false;
91ff844a 4var active_feed_cat = false;
a0d53889 5var active_filter = false;
48f0adb0 6var active_label = false;
e6cb77a0 7var active_user = false;
961513a3 8
f5a50b25
AD
9var active_tab = false;
10
007bda35
AD
11/*@cc_on @*/
12/*@if (@_jscript_version >= 5)
13// JScript gives us Conditional compilation, we can cope with old IE versions.
14// and security blocked creation of the objects.
15try {
16 xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
17} catch (e) {
18 try {
19 xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
20 } catch (E) {
21 xmlhttp = false;
22 }
23}
24@end @*/
25
26if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
27 xmlhttp = new XMLHttpRequest();
28}
29
007bda35 30function feedlist_callback() {
007bda35 31 if (xmlhttp.readyState == 4) {
47c6c988
AD
32 try {
33 var container = document.getElementById('prefContent');
34 container.innerHTML=xmlhttp.responseText;
35 if (active_feed) {
36 var row = document.getElementById("FEEDR-" + active_feed);
37 if (row) {
38 if (!row.className.match("Selected")) {
39 row.className = row.className + "Selected";
40 }
41 }
42 var checkbox = document.getElementById("FRCHK-" + active_feed);
43 if (checkbox) {
44 checkbox.checked = true;
45 }
961513a3 46 }
47c6c988
AD
47 p_notify("");
48 } catch (e) {
49 exception_error("feedlist_callback", e);
961513a3 50 }
007bda35
AD
51 }
52}
53
a0d53889 54function filterlist_callback() {
f5a50b25 55 var container = document.getElementById('prefContent');
a0d53889 56 if (xmlhttp.readyState == 4) {
f5a50b25 57
a0d53889
AD
58 container.innerHTML=xmlhttp.responseText;
59
60 if (active_filter) {
61 var row = document.getElementById("FILRR-" + active_filter);
62 if (row) {
63 if (!row.className.match("Selected")) {
64 row.className = row.className + "Selected";
65 }
66 }
67 var checkbox = document.getElementById("FICHK-" + active_filter);
68
69 if (checkbox) {
70 checkbox.checked = true;
71 }
72 }
f5a50b25 73 p_notify("");
a0d53889
AD
74 }
75}
76
48f0adb0 77function labellist_callback() {
f5a50b25 78 var container = document.getElementById('prefContent');
48f0adb0
AD
79 if (xmlhttp.readyState == 4) {
80 container.innerHTML=xmlhttp.responseText;
81
967955b7 82 if (active_label) {
48f0adb0
AD
83 var row = document.getElementById("LILRR-" + active_label);
84 if (row) {
85 if (!row.className.match("Selected")) {
86 row.className = row.className + "Selected";
87 }
88 }
89 var checkbox = document.getElementById("LICHK-" + active_label);
90
91 if (checkbox) {
92 checkbox.checked = true;
93 }
94 }
f5a50b25 95 p_notify("");
48f0adb0
AD
96 }
97}
4255b24c 98
e6cb77a0
AD
99function userlist_callback() {
100 var container = document.getElementById('prefContent');
101 if (xmlhttp.readyState == 4) {
102 container.innerHTML=xmlhttp.responseText;
103
1a7572cb
AD
104 if (active_user) {
105 var row = document.getElementById("UMRR-" + active_user);
e6cb77a0
AD
106 if (row) {
107 if (!row.className.match("Selected")) {
108 row.className = row.className + "Selected";
109 }
110 }
1a7572cb 111 var checkbox = document.getElementById("UMCHK-" + active_user);
e6cb77a0
AD
112
113 if (checkbox) {
114 checkbox.checked = true;
115 }
1a7572cb
AD
116 }
117
e6cb77a0
AD
118 p_notify("");
119 }
120}
121
c6c3a07f 122function infobox_callback() {
1a7572cb 123 if (xmlhttp.readyState == 4) {
2317ffaa
AD
124 var box = document.getElementById('infoBox');
125 var shadow = document.getElementById('infoBoxShadow');
126
127 if (box) {
128 box.innerHTML=xmlhttp.responseText;
129 if (shadow) {
130 shadow.style.display = "block";
131 } else {
5e9188f2 132 box.style.display = "block";
2317ffaa 133 }
c6c3a07f 134 }
1a7572cb
AD
135 }
136}
137
138
4255b24c
AD
139function prefslist_callback() {
140 var container = document.getElementById('prefContent');
141 if (xmlhttp.readyState == 4) {
142
143 container.innerHTML=xmlhttp.responseText;
144
145 p_notify("");
146 }
147}
148
b1895692
AD
149function gethelp_callback() {
150 var container = document.getElementById('prefHelpBox');
151 if (xmlhttp.readyState == 4) {
152
153 container.innerHTML = xmlhttp.responseText;
154 container.style.display = "block";
155
156 }
157}
4255b24c
AD
158
159
0e091d38
AD
160function notify_callback() {
161 var container = document.getElementById('notify');
162 if (xmlhttp.readyState == 4) {
163 container.innerHTML=xmlhttp.responseText;
164 }
165}
166
b83c7545 167function updateFeedList(sort_key) {
007bda35 168
c0e5a40e 169 if (!xmlhttp_ready(xmlhttp)) {
508a81e1
AD
170 printLockingError();
171 return
172 }
173
f5a50b25
AD
174// document.getElementById("prefContent").innerHTML = "Loading feeds, please wait...";
175
176 p_notify("Loading, please wait...");
007bda35 177
f932bc9f
AD
178 var feed_search = document.getElementById("feed_search");
179 var search = "";
180 if (feed_search) { search = feed_search.value; }
181
b83c7545 182 xmlhttp.open("GET", "backend.php?op=pref-feeds" +
f932bc9f
AD
183 "&sort=" + param_escape(sort_key) +
184 "&search=" + param_escape(search), true);
007bda35
AD
185 xmlhttp.onreadystatechange=feedlist_callback;
186 xmlhttp.send(null);
187
188}
189
e6cb77a0
AD
190function updateUsersList() {
191
192 if (!xmlhttp_ready(xmlhttp)) {
193 printLockingError();
194 return
195 }
196
197// document.getElementById("prefContent").innerHTML = "Loading feeds, please wait...";
198
199 p_notify("Loading, please wait...");
200
201 xmlhttp.open("GET", "backend.php?op=pref-users", true);
202 xmlhttp.onreadystatechange=userlist_callback;
203 xmlhttp.send(null);
204
205}
206
48f0adb0
AD
207function addLabel() {
208
209 if (!xmlhttp_ready(xmlhttp)) {
210 printLockingError();
211 return
212 }
213
214 var sqlexp = document.getElementById("ladd_expr");
215
216 if (sqlexp.value.length == 0) {
217 notify("Missing SQL expression.");
218 } else {
219 notify("Adding label...");
220
221 xmlhttp.open("GET", "backend.php?op=pref-labels&subop=add&exp=" +
222 param_escape(sqlexp.value), true);
223
224 xmlhttp.onreadystatechange=labellist_callback;
225 xmlhttp.send(null);
226
227 sqlexp.value = "";
228 }
229
230}
231
de435974
AD
232function addFilter() {
233
234 if (!xmlhttp_ready(xmlhttp)) {
235 printLockingError();
236 return
237 }
238
239 var regexp = document.getElementById("fadd_regexp");
240 var match = document.getElementById("fadd_match");
ead60402 241 var feed = document.getElementById("fadd_feed");
19c9cb11 242 var action = document.getElementById("fadd_action");
de435974
AD
243
244 if (regexp.value.length == 0) {
245 notify("Missing filter expression.");
246 } else {
247 notify("Adding filter...");
248
25cb5736 249 var v_match = match[match.selectedIndex].text;
ead60402 250 var feed_id = feed[feed.selectedIndex].id;
19c9cb11 251 var action_id = action[action.selectedIndex].id;
ead60402 252
de435974 253 xmlhttp.open("GET", "backend.php?op=pref-filters&subop=add&regexp=" +
ead60402 254 param_escape(regexp.value) + "&match=" + v_match +
19c9cb11 255 "&fid=" + param_escape(feed_id) + "&aid=" + param_escape(action_id), true);
de435974
AD
256
257 xmlhttp.onreadystatechange=filterlist_callback;
258 xmlhttp.send(null);
259
260 regexp.value = "";
261 }
262
263}
48f0adb0 264
71ad3959
AD
265function addFeed() {
266
c0e5a40e 267 if (!xmlhttp_ready(xmlhttp)) {
508a81e1
AD
268 printLockingError();
269 return
270 }
271
331900c6
AD
272 var link = document.getElementById("fadd_link");
273
83fe4d6d 274 if (link.value.length == 0) {
c753cd32 275 notify("Missing feed URL.");
331900c6
AD
276 } else {
277 notify("Adding feed...");
278
279 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=add&link=" +
280 param_escape(link.value), true);
281 xmlhttp.onreadystatechange=feedlist_callback;
282 xmlhttp.send(null);
283
284 link.value = "";
285
286 }
287
288}
289
91ff844a
AD
290function addFeedCat() {
291
292 if (!xmlhttp_ready(xmlhttp)) {
293 printLockingError();
294 return
295 }
296
297 var cat = document.getElementById("fadd_cat");
298
299 if (cat.value.length == 0) {
300 notify("Missing feed category.");
301 } else {
302 notify("Adding feed category...");
303
304 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=addCat&cat=" +
305 param_escape(cat.value), true);
306 xmlhttp.onreadystatechange=feedlist_callback;
307 xmlhttp.send(null);
308
309 link.value = "";
310
311 }
312
313}
e6cb77a0
AD
314function addUser() {
315
316 if (!xmlhttp_ready(xmlhttp)) {
317 printLockingError();
318 return
319 }
320
321 var sqlexp = document.getElementById("uadd_box");
322
323 if (sqlexp.value.length == 0) {
324 notify("Missing user login.");
325 } else {
326 notify("Adding user...");
327
328 xmlhttp.open("GET", "backend.php?op=pref-users&subop=add&login=" +
329 param_escape(sqlexp.value), true);
330
331 xmlhttp.onreadystatechange=userlist_callback;
332 xmlhttp.send(null);
333
334 sqlexp.value = "";
335 }
336
337}
338
48f0adb0
AD
339function editLabel(id) {
340
341 if (!xmlhttp_ready(xmlhttp)) {
342 printLockingError();
343 return
344 }
345
346 active_label = id;
347
348 xmlhttp.open("GET", "backend.php?op=pref-labels&subop=edit&id=" +
349 param_escape(id), true);
350 xmlhttp.onreadystatechange=labellist_callback;
351 xmlhttp.send(null);
352
353}
354
e6cb77a0
AD
355function editUser(id) {
356
357 if (!xmlhttp_ready(xmlhttp)) {
358 printLockingError();
359 return
360 }
361
362 active_user = id;
363
364 xmlhttp.open("GET", "backend.php?op=pref-users&subop=edit&id=" +
365 param_escape(id), true);
366 xmlhttp.onreadystatechange=userlist_callback;
367 xmlhttp.send(null);
368
369}
370
a0d53889
AD
371function editFilter(id) {
372
373 if (!xmlhttp_ready(xmlhttp)) {
374 printLockingError();
375 return
376 }
377
378 active_filter = id;
379
380 xmlhttp.open("GET", "backend.php?op=pref-filters&subop=edit&id=" +
381 param_escape(id), true);
382 xmlhttp.onreadystatechange=filterlist_callback;
383 xmlhttp.send(null);
384
385}
386
331900c6
AD
387function editFeed(feed) {
388
508a81e1
AD
389// notify("Editing feed...");
390
c0e5a40e 391 if (!xmlhttp_ready(xmlhttp)) {
508a81e1
AD
392 printLockingError();
393 return
394 }
331900c6 395
961513a3
AD
396 active_feed = feed;
397
0ea4fb50 398/* xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=edit&id=" +
331900c6
AD
399 param_escape(feed), true);
400 xmlhttp.onreadystatechange=feedlist_callback;
0ea4fb50
AD
401 xmlhttp.send(null); */
402
403 selectTableRowsByIdPrefix('prefFeedList', 'FEEDR-', 'FRCHK-', false);
6c12c809
AD
404// selectTableRowsByIdPrefix('prefFeedList', 'FEEDR-'+feed, 'FRCHK-'+feed,
405// true, false);
406
407 selectTableRowById('FEEDR-'+feed, 'FRCHK-'+feed, true);
0ea4fb50
AD
408
409 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editfeed&id=" +
410 param_escape(active_feed), true);
411
412 xmlhttp.onreadystatechange=infobox_callback;
331900c6
AD
413 xmlhttp.send(null);
414
415}
416
91ff844a 417function editFeedCat(cat) {
48f0adb0 418
91ff844a
AD
419 if (!xmlhttp_ready(xmlhttp)) {
420 printLockingError();
421 return
48f0adb0
AD
422 }
423
91ff844a 424 active_feed_cat = cat;
e6cb77a0 425
91ff844a
AD
426 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCat&id=" +
427 param_escape(cat), true);
428 xmlhttp.onreadystatechange=feedlist_callback;
429 xmlhttp.send(null);
e6cb77a0 430
e6cb77a0
AD
431}
432
91ff844a
AD
433function getSelectedLabels() {
434 return getSelectedTableRowIds("prefLabelList", "LILRR");
435}
48f0adb0 436
91ff844a
AD
437function getSelectedUsers() {
438 return getSelectedTableRowIds("prefUserList", "UMRR");
a0d53889
AD
439}
440
83fe4d6d 441function getSelectedFeeds() {
91ff844a
AD
442 return getSelectedTableRowIds("prefFeedList", "FEEDR");
443}
331900c6 444
91ff844a
AD
445function getSelectedFilters() {
446 return getSelectedTableRowIds("prefFilterList", "FILRR");
447}
331900c6 448
91ff844a
AD
449function getSelectedFeedCats() {
450 return getSelectedTableRowIds("prefFeedCatList", "FCATR");
83fe4d6d
AD
451}
452
91ff844a 453
4f3a84f4 454function readSelectedFeeds(read) {
83fe4d6d 455
c0e5a40e 456 if (!xmlhttp_ready(xmlhttp)) {
508a81e1
AD
457 printLockingError();
458 return
459 }
460
83fe4d6d
AD
461 var sel_rows = getSelectedFeeds();
462
463 if (sel_rows.length > 0) {
464
4f3a84f4
AD
465 if (!read) {
466 op = "unread";
467 } else {
468 op = "read";
469 }
83fe4d6d 470
4f3a84f4 471 notify("Marking selected feeds as " + op + "...");
83fe4d6d 472
4f3a84f4 473 xmlhttp.open("GET", "backend.php?op=pref-rpc&subop=" + op + "&ids="+
83fe4d6d 474 param_escape(sel_rows.toString()), true);
0e091d38 475 xmlhttp.onreadystatechange=notify_callback;
83fe4d6d
AD
476 xmlhttp.send(null);
477
478 } else {
479
c753cd32 480 notify("Please select some feeds first.");
83fe4d6d
AD
481
482 }
483}
484
48f0adb0
AD
485function removeSelectedLabels() {
486
487 if (!xmlhttp_ready(xmlhttp)) {
488 printLockingError();
489 return
490 }
491
492 var sel_rows = getSelectedLabels();
493
494 if (sel_rows.length > 0) {
495
69668465 496 var ok = confirm("Remove selected labels?");
48f0adb0 497
69668465
AD
498 if (ok) {
499 notify("Removing selected labels...");
500
501 xmlhttp.open("GET", "backend.php?op=pref-labels&subop=remove&ids="+
502 param_escape(sel_rows.toString()), true);
503 xmlhttp.onreadystatechange=labellist_callback;
504 xmlhttp.send(null);
505 }
48f0adb0
AD
506 } else {
507 notify("Please select some labels first.");
508 }
509}
510
e6cb77a0
AD
511function removeSelectedUsers() {
512
513 if (!xmlhttp_ready(xmlhttp)) {
514 printLockingError();
515 return
516 }
517
518 var sel_rows = getSelectedUsers();
519
520 if (sel_rows.length > 0) {
521
69668465 522 var ok = confirm("Remove selected users?");
e6cb77a0 523
69668465
AD
524 if (ok) {
525 notify("Removing selected users...");
526
527 xmlhttp.open("GET", "backend.php?op=pref-users&subop=remove&ids="+
528 param_escape(sel_rows.toString()), true);
529 xmlhttp.onreadystatechange=userlist_callback;
530 xmlhttp.send(null);
531 }
e6cb77a0
AD
532
533 } else {
534 notify("Please select some labels first.");
535 }
536}
537
48f0adb0
AD
538function removeSelectedFilters() {
539
540 if (!xmlhttp_ready(xmlhttp)) {
541 printLockingError();
542 return
543 }
544
545 var sel_rows = getSelectedFilters();
546
547 if (sel_rows.length > 0) {
548
69668465 549 var ok = confirm("Remove selected filters?");
48f0adb0 550
69668465
AD
551 if (ok) {
552 notify("Removing selected filters...");
553
554 xmlhttp.open("GET", "backend.php?op=pref-filters&subop=remove&ids="+
555 param_escape(sel_rows.toString()), true);
556 xmlhttp.onreadystatechange=filterlist_callback;
557 xmlhttp.send(null);
558 }
48f0adb0
AD
559 } else {
560 notify("Please select some filters first.");
561 }
562}
563
564
83fe4d6d
AD
565function removeSelectedFeeds() {
566
c0e5a40e 567 if (!xmlhttp_ready(xmlhttp)) {
508a81e1
AD
568 printLockingError();
569 return
570 }
571
83fe4d6d
AD
572 var sel_rows = getSelectedFeeds();
573
331900c6
AD
574 if (sel_rows.length > 0) {
575
69668465 576 var ok = confirm("Remove selected feeds?");
331900c6 577
69668465
AD
578 if (ok) {
579
580 notify("Removing selected feeds...");
581
582 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=remove&ids="+
583 param_escape(sel_rows.toString()), true);
584 xmlhttp.onreadystatechange=feedlist_callback;
585 xmlhttp.send(null);
586 }
71ad3959 587
71ad3959 588 } else {
331900c6 589
c753cd32 590 notify("Please select some feeds first.");
331900c6 591
71ad3959
AD
592 }
593
594}
007bda35 595
91ff844a
AD
596function removeSelectedFeedCats() {
597
598 if (!xmlhttp_ready(xmlhttp)) {
599 printLockingError();
600 return
601 }
602
603 var sel_rows = getSelectedFeedCats();
604
605 if (sel_rows.length > 0) {
606
69668465 607 var ok = confirm("Remove selected categories?");
91ff844a 608
69668465
AD
609 if (ok) {
610 notify("Removing selected categories...");
611
612 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=removeCats&ids="+
613 param_escape(sel_rows.toString()), true);
614 xmlhttp.onreadystatechange=feedlist_callback;
615 xmlhttp.send(null);
616 }
91ff844a
AD
617
618 } else {
619
620 notify("Please select some feeds first.");
621
622 }
623
624}
625
508a81e1
AD
626function feedEditCancel() {
627
c0e5a40e 628 if (!xmlhttp_ready(xmlhttp)) {
508a81e1
AD
629 printLockingError();
630 return
631 }
632
327a3bbe
AD
633 closeInfoBox();
634
961513a3
AD
635 active_feed = false;
636
508a81e1
AD
637 notify("Operation cancelled.");
638
327a3bbe 639/* xmlhttp.open("GET", "backend.php?op=pref-feeds", true);
508a81e1 640 xmlhttp.onreadystatechange=feedlist_callback;
327a3bbe 641 xmlhttp.send(null); */
508a81e1
AD
642
643}
644
91ff844a
AD
645function feedCatEditCancel() {
646
647 if (!xmlhttp_ready(xmlhttp)) {
648 printLockingError();
649 return
650 }
651
652 active_feed_cat = false;
653
654 notify("Operation cancelled.");
655
656 xmlhttp.open("GET", "backend.php?op=pref-feeds", true);
657 xmlhttp.onreadystatechange=feedlist_callback;
658 xmlhttp.send(null);
659
660}
661
603c27f8
AD
662function feedEditSave() {
663
47c6c988 664 try {
d148926e 665
47c6c988
AD
666 var feed = active_feed;
667
668 if (!xmlhttp_ready(xmlhttp)) {
669 printLockingError();
670 return
671 }
672
673 var link = document.getElementById("iedit_link").value;
674 var title = document.getElementById("iedit_title").value;
675 var upd_intl = document.getElementById("iedit_updintl").value;
676 var purge_intl = document.getElementById("iedit_purgintl").value;
677 var fcat = document.getElementById("iedit_fcat");
678
679 var fcat_id = fcat[fcat.selectedIndex].id;
680
681 // notify("Saving feed.");
682
683 /* if (upd_intl < 0) {
684 notify("Update interval must be &gt;= 0 (0 = default)");
685 return;
686 }
687
688 if (purge_intl < 0) {
689 notify("Purge days must be &gt;= 0 (0 = default)");
690 return;
691 } */
692
693 if (link.length == 0) {
694 notify("Feed link cannot be blank.");
695 return;
696 }
697
698 if (title.length == 0) {
699 notify("Feed title cannot be blank.");
700 return;
701 }
702
703 var auth_login = document.getElementById("iedit_login").value;
704 var auth_pass = document.getElementById("iedit_pass").value;
705
706 active_feed = false;
707
708 notify("Saving feed...");
d148926e 709
47c6c988
AD
710 var query = "op=pref-feeds&subop=editSave&id=" +
711 feed + "&l=" + param_escape(link) + "&t=" + param_escape(title) +
712 "&ui=" + param_escape(upd_intl) + "&pi=" + param_escape(purge_intl) +
713 "&catid=" + param_escape(fcat_id) + "&login=" + param_escape(auth_login) +
714 "&pass=" + param_escape(auth_pass);
508a81e1 715
47c6c988
AD
716 xmlhttp.open("POST", "backend.php", true);
717 xmlhttp.onreadystatechange=feedlist_callback;
718 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
719 xmlhttp.send(query);
720
721 } catch (e) {
722 exception_error("feedEditSave", e);
508a81e1 723 }
508a81e1
AD
724}
725
5ddadb4c
AD
726function feedCatEditSave() {
727
728 if (!xmlhttp_ready(xmlhttp)) {
729 printLockingError();
730 return
731 }
732
f0e81ffe 733 notify("Saving category...");
5ddadb4c
AD
734
735 var cat_title = document.getElementById("iedit_title").value;
736
737 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=saveCat&id=" +
738 param_escape(active_feed_cat) + "&title=" + param_escape(cat_title),
739 true);
740 xmlhttp.onreadystatechange=feedlist_callback;
741 xmlhttp.send(null);
742
743 active_feed_cat = false;
744
745}
746
747
d9dde1d6
AD
748function labelTest() {
749
750 var sqlexp = document.getElementById("iedit_expr").value;
751 var descr = document.getElementById("iedit_descr").value;
752
753 xmlhttp.open("GET", "backend.php?op=pref-labels&subop=test&expr=" +
754 param_escape(sqlexp) + "&descr=" + param_escape(descr), true);
755
756 xmlhttp.onreadystatechange=infobox_callback;
757 xmlhttp.send(null);
758
759}
760
01c9c74a
AD
761function displayHelpInfobox(topic_id) {
762
763 xmlhttp.open("GET", "backend.php?op=help&tid=" +
764 param_escape(topic_id) + "&noheaders=1", true);
765
766 xmlhttp.onreadystatechange=infobox_callback;
767 xmlhttp.send(null);
768
769}
770
48f0adb0
AD
771function labelEditCancel() {
772
773 if (!xmlhttp_ready(xmlhttp)) {
774 printLockingError();
775 return
776 }
777
778 active_label = false;
779
780 notify("Operation cancelled.");
781
782 xmlhttp.open("GET", "backend.php?op=pref-labels", true);
783 xmlhttp.onreadystatechange=labellist_callback;
784 xmlhttp.send(null);
785
786}
787
e6cb77a0
AD
788function userEditCancel() {
789
790 if (!xmlhttp_ready(xmlhttp)) {
791 printLockingError();
792 return
793 }
794
795 active_user = false;
796
797 notify("Operation cancelled.");
798
799 xmlhttp.open("GET", "backend.php?op=pref-users", true);
800 xmlhttp.onreadystatechange=userlist_callback;
801 xmlhttp.send(null);
802
803}
48f0adb0 804
a0d53889
AD
805function filterEditCancel() {
806
807 if (!xmlhttp_ready(xmlhttp)) {
808 printLockingError();
809 return
810 }
811
812 active_filter = false;
813
814 notify("Operation cancelled.");
815
816 xmlhttp.open("GET", "backend.php?op=pref-filters", true);
817 xmlhttp.onreadystatechange=filterlist_callback;
818 xmlhttp.send(null);
819
820}
821
48f0adb0
AD
822function labelEditSave() {
823
824 var label = active_label;
825
826 if (!xmlhttp_ready(xmlhttp)) {
827 printLockingError();
828 return
829 }
830
831 var sqlexp = document.getElementById("iedit_expr").value;
832 var descr = document.getElementById("iedit_descr").value;
833
834// notify("Saving label " + sqlexp + ": " + descr);
835
836 if (sqlexp.length == 0) {
837 notify("SQL expression cannot be blank.");
838 return;
839 }
840
841 if (descr.length == 0) {
842 notify("Caption cannot be blank.");
843 return;
844 }
845
f0e81ffe 846 notify("Saving label...");
dbd9e2f1 847
48f0adb0
AD
848 active_label = false;
849
850 xmlhttp.open("GET", "backend.php?op=pref-labels&subop=editSave&id=" +
851 label + "&s=" + param_escape(sqlexp) + "&d=" + param_escape(descr),
852 true);
853
854 xmlhttp.onreadystatechange=labellist_callback;
855 xmlhttp.send(null);
856
857}
858
e6cb77a0
AD
859function userEditSave() {
860
861 var user = active_user;
862
863 if (!xmlhttp_ready(xmlhttp)) {
864 printLockingError();
865 return
866 }
867
868 var login = document.getElementById("iedit_ulogin").value;
869 var level = document.getElementById("iedit_ulevel").value;
72932a75 870 var email = document.getElementById("iedit_email").value;
e6cb77a0
AD
871
872 if (login.length == 0) {
873 notify("Login cannot be blank.");
874 return;
875 }
876
877 if (level.length == 0) {
878 notify("User level cannot be blank.");
879 return;
880 }
881
882 active_user = false;
883
f0e81ffe 884 notify("Saving user...");
dbd9e2f1 885
e6cb77a0 886 xmlhttp.open("GET", "backend.php?op=pref-users&subop=editSave&id=" +
72932a75
AD
887 user + "&l=" + param_escape(login) + "&al=" + param_escape(level) +
888 "&e=" + param_escape(email), true);
e6cb77a0 889
dbd9e2f1 890 xmlhttp.onreadystatechange=userlist_callback;
e6cb77a0
AD
891 xmlhttp.send(null);
892
893}
894
895
a0d53889
AD
896function filterEditSave() {
897
898 var filter = active_filter;
899
900 if (!xmlhttp_ready(xmlhttp)) {
901 printLockingError();
902 return
903 }
904
905 var regexp = document.getElementById("iedit_regexp").value;
906 var descr = document.getElementById("iedit_descr").value;
25cb5736 907 var match = document.getElementById("iedit_match");
19c9cb11 908
25cb5736 909 var v_match = match[match.selectedIndex].text;
a0d53889 910
ead60402
AD
911 var feed = document.getElementById("iedit_feed");
912 var feed_id = feed[feed.selectedIndex].id;
913
19c9cb11
AD
914 var action = document.getElementById("iedit_filter_action");
915 var action_id = action[action.selectedIndex].id;
916
a0d53889
AD
917// notify("Saving filter " + filter + ": " + regexp + ", " + descr + ", " + match);
918
919 if (regexp.length == 0) {
920 notify("Filter expression cannot be blank.");
921 return;
922 }
923
924 active_filter = false;
925
926 xmlhttp.open("GET", "backend.php?op=pref-filters&subop=editSave&id=" +
927 filter + "&r=" + param_escape(regexp) + "&d=" + param_escape(descr) +
19c9cb11
AD
928 "&m=" + param_escape(v_match) + "&fid=" + param_escape(feed_id) +
929 "&aid=" + param_escape(action_id), true);
dbd9e2f1 930
f0e81ffe 931 notify("Saving filter...");
dbd9e2f1 932
a0d53889
AD
933 xmlhttp.onreadystatechange=filterlist_callback;
934 xmlhttp.send(null);
935
936}
937
48f0adb0
AD
938function editSelectedLabel() {
939 var rows = getSelectedLabels();
a0d53889 940
48f0adb0
AD
941 if (rows.length == 0) {
942 notify("No labels are selected.");
943 return;
a0d53889
AD
944 }
945
48f0adb0
AD
946 if (rows.length > 1) {
947 notify("Please select one label.");
948 return;
949 }
a0d53889 950
dbd9e2f1
AD
951 notify("");
952
48f0adb0 953 editLabel(rows[0]);
a0d53889 954
a0d53889
AD
955}
956
e6cb77a0
AD
957function editSelectedUser() {
958 var rows = getSelectedUsers();
959
960 if (rows.length == 0) {
961 notify("No users are selected.");
962 return;
963 }
964
965 if (rows.length > 1) {
966 notify("Please select one user.");
967 return;
968 }
969
dbd9e2f1
AD
970 notify("");
971
e6cb77a0
AD
972 editUser(rows[0]);
973}
974
975function resetSelectedUserPass() {
976 var rows = getSelectedUsers();
977
978 if (rows.length == 0) {
979 notify("No users are selected.");
980 return;
981 }
982
983 if (rows.length > 1) {
984 notify("Please select one user.");
985 return;
986 }
987
69668465 988 var ok = confirm("Reset password of selected user?");
e6cb77a0 989
69668465
AD
990 if (ok) {
991 notify("Resetting password for selected user...");
992
993 var id = rows[0];
994
995 xmlhttp.open("GET", "backend.php?op=pref-users&subop=resetPass&id=" +
996 param_escape(id), true);
997 xmlhttp.onreadystatechange=userlist_callback;
998 xmlhttp.send(null);
999 }
e6cb77a0
AD
1000}
1001
717f5e64 1002function selectedUserDetails() {
e6cb77a0 1003
1a7572cb
AD
1004 if (!xmlhttp_ready(xmlhttp)) {
1005 printLockingError();
1006 return
1007 }
1008
717f5e64
AD
1009 var rows = getSelectedUsers();
1010
1011 if (rows.length == 0) {
1012 notify("No users are selected.");
1013 return;
1014 }
1015
1016 if (rows.length > 1) {
1017 notify("Please select one user.");
1018 return;
1019 }
1020
1021 var id = rows[0];
1022
dbd9e2f1
AD
1023 notify("");
1024
1a7572cb 1025 xmlhttp.open("GET", "backend.php?op=user-details&id=" + id, true);
c6c3a07f
AD
1026 xmlhttp.onreadystatechange=infobox_callback;
1027 xmlhttp.send(null);
1028
1029}
1030
1031function selectedFeedDetails() {
1032
1033 if (!xmlhttp_ready(xmlhttp)) {
1034 printLockingError();
1035 return
1036 }
1037
1038 var rows = getSelectedFeeds();
1039
1040 if (rows.length == 0) {
1041 notify("No feeds are selected.");
1042 return;
1043 }
1044
df268d47
AD
1045// if (rows.length > 1) {
1046// notify("Please select one feed.");
1047// return;
1048// }
c6c3a07f 1049
df268d47 1050// var id = rows[0];
c6c3a07f 1051
dbd9e2f1
AD
1052 notify("");
1053
df268d47
AD
1054 xmlhttp.open("GET", "backend.php?op=feed-details&id=" +
1055 param_escape(rows.toString()), true);
c6c3a07f 1056 xmlhttp.onreadystatechange=infobox_callback;
1a7572cb 1057 xmlhttp.send(null);
717f5e64
AD
1058
1059}
a0d53889
AD
1060
1061function editSelectedFilter() {
1062 var rows = getSelectedFilters();
1063
1064 if (rows.length == 0) {
1065 notify("No filters are selected.");
1066 return;
1067 }
1068
1069 if (rows.length > 1) {
1070 notify("Please select one filter.");
1071 return;
1072 }
1073
dbd9e2f1
AD
1074 notify("");
1075
a0d53889
AD
1076 editFilter(rows[0]);
1077
1078}
1079
1080
508a81e1
AD
1081function editSelectedFeed() {
1082 var rows = getSelectedFeeds();
1083
1084 if (rows.length == 0) {
1085 notify("No feeds are selected.");
1086 return;
1087 }
1088
1089 if (rows.length > 1) {
1090 notify("Please select one feed.");
1091 return;
1092 }
1093
dbd9e2f1
AD
1094 notify("");
1095
508a81e1 1096 editFeed(rows[0]);
91ff844a
AD
1097
1098}
1099
1100function editSelectedFeedCat() {
1101 var rows = getSelectedFeedCats();
1102
1103 if (rows.length == 0) {
1104 notify("No categories are selected.");
1105 return;
1106 }
1107
1108 if (rows.length > 1) {
1109 notify("Please select one category.");
1110 return;
1111 }
1112
1113 notify("");
1114
1115 editFeedCat(rows[0]);
508a81e1
AD
1116
1117}
1118
13ad9102
AD
1119function localPiggieFunction(enable) {
1120 if (enable) {
508a81e1
AD
1121 piggie.style.display = "block";
1122 seq = "";
1123 notify("I loveded it!!!");
1124 } else {
1125 piggie.style.display = "none";
1126 notify("");
1127 }
508a81e1
AD
1128}
1129
9f311df6
AD
1130function validateOpmlImport() {
1131
1132 var opml_file = document.getElementById("opml_file");
1133
1134 if (opml_file.value.length == 0) {
1135 notify("Please select OPML file to upload.");
1136 return false;
1137 } else {
1138 return true;
1139 }
1140}
1141
a0d53889
AD
1142function updateFilterList() {
1143
1144 if (!xmlhttp_ready(xmlhttp)) {
1145 printLockingError();
1146 return
1147 }
1148
f5a50b25
AD
1149// document.getElementById("prefContent").innerHTML = "Loading filters, please wait...";
1150
1151 p_notify("Loading, please wait...");
a0d53889
AD
1152
1153 xmlhttp.open("GET", "backend.php?op=pref-filters", true);
1154 xmlhttp.onreadystatechange=filterlist_callback;
1155 xmlhttp.send(null);
1156
1157}
1158
48f0adb0
AD
1159function updateLabelList() {
1160
1161 if (!xmlhttp_ready(xmlhttp)) {
1162 printLockingError();
1163 return
1164 }
1165
f5a50b25
AD
1166 p_notify("Loading, please wait...");
1167
1168// document.getElementById("prefContent").innerHTML = "Loading labels, please wait...";
48f0adb0
AD
1169
1170 xmlhttp.open("GET", "backend.php?op=pref-labels", true);
1171 xmlhttp.onreadystatechange=labellist_callback;
1172 xmlhttp.send(null);
48f0adb0
AD
1173}
1174
4255b24c
AD
1175function updatePrefsList() {
1176
1177 if (!xmlhttp_ready(xmlhttp)) {
1178 printLockingError();
1179 return
1180 }
1181
1182 p_notify("Loading, please wait...");
1183
1184 xmlhttp.open("GET", "backend.php?op=pref-prefs", true);
1185 xmlhttp.onreadystatechange=prefslist_callback;
1186 xmlhttp.send(null);
1187
1188}
1189
f5a50b25 1190function selectTab(id) {
48f0adb0 1191
c6c3a07f
AD
1192 if (!xmlhttp_ready(xmlhttp)) {
1193 printLockingError();
1194 return
1195 }
1196
f5a50b25 1197 if (id == "feedConfig") {
a0d53889 1198 updateFeedList();
f5a50b25 1199 } else if (id == "filterConfig") {
a0d53889 1200 updateFilterList();
f5a50b25 1201 } else if (id == "labelConfig") {
48f0adb0 1202 updateLabelList();
4255b24c
AD
1203 } else if (id == "genConfig") {
1204 updatePrefsList();
e6cb77a0
AD
1205 } else if (id == "userConfig") {
1206 updateUsersList();
a0d53889 1207 }
f5a50b25
AD
1208
1209 var tab = document.getElementById(active_tab + "Tab");
1210
1211 if (tab) {
1212 if (tab.className.match("Selected")) {
1213 tab.className = "prefsTab";
1214 }
1215 }
1216
1217 tab = document.getElementById(id + "Tab");
1218
1219 if (tab) {
1220 if (!tab.className.match("Selected")) {
1221 tab.className = tab.className + "Selected";
1222 }
1223 }
1224
1225 active_tab = id;
1226
4da47970
AD
1227 setCookie('ttrss_pref_acttab', active_tab);
1228
a0d53889
AD
1229}
1230
007bda35 1231function init() {
e2ec66a8 1232
7719618b
AD
1233 try {
1234
1235 // IE kludge
1236 if (!xmlhttp) {
1237 document.getElementById("prefContent").innerHTML =
1238 "<b>Fatal error:</b> This program needs XmlHttpRequest " +
1239 "to function properly. Your browser doesn't seem to support it.";
1240 return;
1241 }
4da47970
AD
1242
1243 active_tab = getCookie("ttrss_pref_acttab");
1244 if (!active_tab) active_tab = "genConfig";
1245 selectTab(active_tab);
7719618b
AD
1246
1247 document.onkeydown = hotkey_handler;
1248 notify("");
1249 } catch (e) {
1250 exception_error("init", e);
e2ec66a8 1251 }
007bda35 1252}
b1895692 1253
c6c3a07f 1254function closeInfoBox() {
2317ffaa
AD
1255 var box = document.getElementById('infoBox');
1256 var shadow = document.getElementById('infoBoxShadow');
1257
1258 if (shadow) {
1259 shadow.style.display = "none";
1260 } else if (box) {
1261 box.style.display = "none";
1262 }
1a7572cb 1263}
f932bc9f
AD
1264
1265function categorizeSelectedFeeds() {
1266
1267 if (!xmlhttp_ready(xmlhttp)) {
1268 printLockingError();
1269 return
1270 }
1271
1272 var sel_rows = getSelectedFeeds();
1273
1274 var cat_sel = document.getElementById("sfeed_set_fcat");
1275 var cat_id = cat_sel[cat_sel.selectedIndex].id;
1276
1277 if (sel_rows.length > 0) {
1278
1279 notify("Changing category of selected feeds...");
1280
1281 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=categorize&ids="+
1282 param_escape(sel_rows.toString()) + "&cat_id=" + param_escape(cat_id), true);
1283 xmlhttp.onreadystatechange=feedlist_callback;
1284 xmlhttp.send(null);
1285
1286 } else {
1287
1288 notify("Please select some feeds first.");
1289
1290 }
1291
1292}
69668465
AD
1293
1294function validatePrefsReset() {
1295 return confirm("Reset to defaults?");
1296}