]> git.wh0rd.org - tt-rss.git/blob - backend.php
fix updating of unread counters in feedlist on headlines load
[tt-rss.git] / backend.php
1 <?
2 // header("Content-Type: application/xml");
3
4 require_once "config.php";
5 require_once "functions.php";
6 require_once "magpierss/rss_fetch.inc";
7
8 error_reporting(0);
9
10 $link = pg_connect(DB_CONN);
11
12 error_reporting (E_ERROR | E_WARNING | E_PARSE);
13
14 if (!$link) {
15 print "Could not connect to database. Please check local configuration.";
16 return;
17 }
18
19 pg_query("set client_encoding = 'utf-8'");
20
21 $op = $_GET["op"];
22 $fetch = $_GET["fetch"];
23
24 function outputFeedList($link) {
25
26 print "<html><head>
27 <title>Tiny Tiny RSS : Feedlist</title>
28 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
29 <script type=\"text/javascript\" src=\"functions.js\"></script>
30 <script type=\"text/javascript\" src=\"feedlist.js\"></script>
31 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
32 </head><body>";
33
34 $result = pg_query($link, "SELECT *,
35 (SELECT count(id) FROM ttrss_entries
36 WHERE feed_id = ttrss_feeds.id) AS total,
37 (SELECT count(id) FROM ttrss_entries
38 WHERE feed_id = ttrss_feeds.id AND unread = true) as unread
39 FROM ttrss_feeds ORDER BY title");
40
41 $actid = $_GET["actid"];
42
43 // print "<table width=\"100%\" class=\"feedsList\" id=\"feedsList\">";
44
45 print "<ul class=\"feedList\" id=\"feedList\">";
46
47 $lnum = 0;
48
49 $total_unread = 0;
50
51 while ($line = pg_fetch_assoc($result)) {
52
53 $feed = $line["title"];
54 $feed_id = $line["id"];
55
56 $subop = $_GET["subop"];
57
58 $total = $line["total"];
59 $unread = $line["unread"];
60
61 // $class = ($lnum % 2) ? "even" : "odd";
62
63 $class = "odd";
64
65 if ($unread > 0) $class .= "Unread";
66
67 if ($actid == $feed_id) {
68 $class .= "Selected";
69 }
70
71 $total_unread += $unread;
72
73 // print "<tr class=\"$class\" id=\"FEEDR-$feed_id\">";
74
75 $icon_file = ICONS_DIR . "/$feed_id.ico";
76
77 if ($subop != "piggie") {
78
79 if (file_exists($icon_file) && filesize($icon_file) > 0) {
80 $feed_icon = "<img src=\"" . ICONS_URL . "/$feed_id.ico\">";
81 } else {
82 $feed_icon = "<img src=\"images/blank_icon.png\">";
83 }
84 } else {
85 $feed_icon = "<img width=\"16\" height=\"16\"
86 src=\"http://madoka.spb.ru/stuff/fox/tiny_piggie.png\">";
87 }
88
89 $feed = "<a href=\"javascript:viewfeed($feed_id, 0);\">$feed</a>";
90
91 /* if (ENABLE_FEED_ICONS) {
92 print "<td>$feed_icon</td>";
93 }
94
95 print "<td id=\"FEEDN-$feed_id\">$feed</td>";
96 print "<td>";
97 print "<span id=\"FEEDU-$feed_id\">$unread</span>&nbsp;/&nbsp;";
98 print "<span id=\"FEEDT-$feed_id\">$total</span>";
99 print "</td>";
100
101 print "</tr>"; */
102
103 print "<li id=\"FEEDR-$feed_id\" class=\"$class\">";
104 if (ENABLE_FEED_ICONS) {
105 print "$feed_icon";
106 }
107 print "<span id=\"FEEDN-$feed_id\">$feed</span>";
108
109 if ($unread != 0) {
110 $fctr_class = "";
111 } else {
112 $fctr_class = "class=\"invisible\"";
113 }
114
115 print "<span $fctr_class id=\"FEEDCTR-$feed_id\">
116 (<span id=\"FEEDU-$feed_id\">$unread</span>)</span>";
117
118 print "</li>";
119
120 ++$lnum;
121 }
122
123 print "</table>";
124
125 print "<div class=\"invisible\" id=\"FEEDTU\">$total_unread</div>";
126 print "<div class=\"invisible\" id=\"ACTFEEDID\">$actid</div>";
127
128 }
129
130
131 if ($op == "rpc") {
132
133 $subop = $_GET["subop"];
134
135 if ($subop == "mark") {
136 $mark = $_GET["mark"];
137 $id = pg_escape_string($_GET["id"]);
138
139 if ($mark == "1") {
140 $mark = "true";
141 } else {
142 $mark = "false";
143 }
144
145 $result = pg_query("UPDATE ttrss_entries SET marked = $mark
146 WHERE id = '$id'");
147 }
148
149 if ($subop == "updateFeed") {
150 $feed_id = pg_escape_string($_GET["feed"]);
151
152 $result = pg_query($link,
153 "SELECT feed_url FROM ttrss_feeds WHERE id = '$feed_id'");
154
155 if (pg_num_rows($result) > 0) {
156 $feed_url = pg_fetch_result($result, 0, "feed_url");
157 // update_rss_feed($link, $feed_url, $feed_id);
158 }
159
160 print "DONE-$feed_id";
161
162 return;
163 }
164
165 if ($subop == "forceUpdateAllFeeds") {
166 update_all_feeds($link, true);
167 }
168
169 if ($subop == "updateAllFeeds") {
170 update_all_feeds($link, false);
171 }
172
173 if ($subop == "catchupPage") {
174
175 $ids = split(",", $_GET["ids"]);
176
177 foreach ($ids as $id) {
178
179 pg_query("UPDATE ttrss_entries SET unread=false,last_read = NOW()
180 WHERE id = '$id'");
181
182 }
183
184 print "Marked active page as read.";
185 }
186
187 }
188
189 if ($op == "feeds") {
190
191 $subop = $_GET["subop"];
192
193 if ($subop == "catchupAll") {
194 pg_query("UPDATE ttrss_entries SET last_read = NOW(),unread = false");
195 }
196
197 outputFeedList($link);
198
199 }
200
201 if ($op == "view") {
202
203 $id = $_GET["id"];
204
205 $result = pg_query("UPDATE ttrss_entries SET unread = false,last_read = NOW() WHERE id = '$id'");
206
207 $addheader = $_GET["addheader"];
208
209 $result = pg_query("SELECT title,link,content,feed_id,comments,
210 (SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url
211 FROM ttrss_entries
212 WHERE id = '$id'");
213
214 if ($addheader) {
215 print "<html><head>
216 <title>Tiny Tiny RSS : Article $id</title>
217 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
218 <script type=\"text/javascript\" src=\"functions.js\"></script>
219 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
220 </head><body>";
221 }
222
223 if ($result) {
224
225 $line = pg_fetch_assoc($result);
226
227 if ($line["icon_url"]) {
228 $feed_icon = "<img class=\"feedIcon\" src=\"" . $line["icon_url"] . "\">";
229 } else {
230 $feed_icon = "&nbsp;";
231 }
232
233 print "<div class=\"postReply\">";
234
235 print "<div class=\"postHeader\"><table>";
236
237 print "<tr><td><b>Title:</b></td>
238 <td width='100%'>" . $line["title"] . "</td></tr>";
239 print "<tr><td><b>Link:</b></td>
240 <td width='100%'>" . $line["link"] . "</td></tr>";
241
242 print "</table></div>";
243
244 print "<div class=\"postIcon\">" . $feed_icon . "</div>";
245 print "<div class=\"postContent\">" . $line["content"] . "</div>";
246
247 print "</div>";
248
249 /* print "<table class=\"postTable\" width=\"100%\" cellspacing=\"0\"
250 cellpadding=\"0\">";
251
252 print "<tr class=\"titleTop\"><td align=\"right\"><b>Title:</b></td>
253 <td width=\"100%\">".$line["title"]."</td>
254 <td>&nbsp;</td></tr>";
255
256 if ($line["comments"] && $line["comments"] != $line["link"]) {
257 $comments_prompt = "(<a href=\"".$line["comments"]."\">Comments</a>)";
258 }
259
260 print "<tr class=\"titleBottom\"><td align=\"right\"><b>Link:</b></td>
261 <td><a href=\"".$line["link"]."\">".$line["link"]."</a> $comments_prompt</td>
262 <td>&nbsp;</td></tr>";
263 print "<tr><td valign=\"top\" class=\"post\"
264 colspan=\"2\" width=\"100%\">" . $line["content"] . "</td>
265 <td valign=\"top\">$feed_icon</td>
266 </tr>";
267 print "</table>"; */
268
269 }
270
271 if ($addheader) {
272 print "</body></html>";
273 }
274 }
275
276 if ($op == "viewfeed") {
277
278 $feed = $_GET["feed"];
279 $skip = $_GET["skip"];
280 $subop = $_GET["subop"];
281 $view_mode = $_GET["view"];
282 $addheader = $_GET["addheader"];
283 $limit = $_GET["limit"];
284
285 if (!$skip) $skip = 0;
286
287 if ($subop == "undefined") $subop = "";
288
289 if ($addheader) {
290 print "<html><head>
291 <title>Tiny Tiny RSS : Feed $feed</title>
292 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
293 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
294 <script type=\"text/javascript\" src=\"functions.js\"></script>
295 <script type=\"text/javascript\" src=\"viewfeed.js\"></script>
296 </head><body>";
297 }
298
299 // FIXME: check for null value here
300
301 $result = pg_query("SELECT *,SUBSTRING(last_updated,1,16) as last_updated_s,
302 EXTRACT(EPOCH FROM NOW()) - EXTRACT(EPOCH FROM last_updated) as update_timeout
303 FROM ttrss_feeds WHERE id = '$feed'");
304
305 if ($result) {
306
307 $line = pg_fetch_assoc($result);
308
309 if ($subop == "ForceUpdate" ||
310 $line["last_updated"] == "" ||
311 $line["update_timeout"] > MIN_UPDATE_TIME) {
312
313 update_rss_feed($link, $line["feed_url"], $feed);
314
315 } else {
316
317 if ($subop == "MarkAllRead") {
318
319 pg_query("UPDATE ttrss_entries SET unread = false,last_read = NOW()
320 WHERE feed_id = '$feed'");
321 }
322 }
323 }
324
325 print "<table class=\"headlinesList\" id=\"headlinesList\" width=\"100%\">";
326
327 $feed_last_updated = "Updated: " . $line["last_updated"];
328
329 $search = $_GET["search"];
330
331 if ($search) {
332 $search_query_part = "(upper(title) LIKE upper('%$search%')
333 OR content LIKE '%$search%') AND";
334 } else {
335 $search_query_part = "";
336 }
337
338 $view_query_part = "";
339
340 if ($view_mode == "Starred") {
341 $view_query_part = " marked = true AND ";
342 }
343
344 if ($view_mode == "Unread") {
345 $view_query_part = " unread = true AND ";
346 }
347
348 $result = pg_query("SELECT count(id) AS total_entries
349 FROM ttrss_entries WHERE
350 $search_query_part
351 feed_id = '$feed'");
352
353 $total_entries = pg_fetch_result($result, 0, "total_entries");
354
355 /* $result = pg_query("SELECT count(id) AS unread_entries
356 FROM ttrss_entries WHERE
357 $search_query_part
358 unread = true AND
359 feed_id = '$feed'");
360
361 $unread_entries = pg_fetch_result($result, 0, "unread_entries"); */
362
363 /* if ($limit < $unread_entries)
364 $limit = $unread_entries;
365
366 if ($limit != "All") {
367 $limit_query_part = "LIMIT " . $limit;
368 } */
369
370 $result = pg_query("SELECT
371 id,title,updated,unread,feed_id,marked,link,
372 EXTRACT(EPOCH FROM last_read) AS last_read_ts,
373 EXTRACT(EPOCH FROM updated) AS updated_ts
374 FROM
375 ttrss_entries
376 WHERE
377 $search_query_part
378 $view_query_part
379 feed_id = '$feed' ORDER BY updated DESC
380 $limit_query_part");
381
382 $lnum = 0;
383
384 $num_unread = 0;
385
386 while ($line = pg_fetch_assoc($result)) {
387
388 $class = ($lnum % 2) ? "even" : "odd";
389
390 if ($line["last_read_ts"] < $line["updated_ts"] && $line["unread"] == "f") {
391 $update_pic = "<img src=\"images/updated.png\" alt=\"Updated\">";
392 ++$num_unread;
393 } else {
394 $update_pic = "<img src=\"images/blank_icon.png\" alt=\"Updated\">";
395 }
396
397 if ($line["unread"] == "t") {
398 $class .= "Unread";
399 ++$num_unread;
400 }
401
402 $id = $line["id"];
403 $feed_id = $line["feed_id"];
404
405 if ($line["marked"] == "t") {
406 $marked_pic = "<img id=\"FMARKPIC-$id\" src=\"images/mark_set.png\"
407 alt=\"Reset mark\" onclick='javascript:toggleMark($id, false)'>";
408 } else {
409 $marked_pic = "<img id=\"FMARKPIC-$id\" src=\"images/mark_unset.png\"
410 alt=\"Set mark\" onclick='javascript:toggleMark($id, true)'>";
411 }
412
413 $content_link = "<a id=\"FTITLE-$id\" href=\"javascript:view($id,$feed_id);\">" .
414 $line["title"] . "</a>";
415
416 print "<tr class='$class' id='RROW-$id'";
417 // onclick=\"javascript:view($id,$feed_id)\">
418
419 print "<td id='FUPDPIC-$id' valign='center' align='center'
420 class='headlineUpdateMark'>$update_pic</td>";
421
422 print "<td valign='center' align='center'
423 class='headlineUpdateMark'>$marked_pic</td>";
424
425 print "<td class='headlineUpdated' width='25%'>
426 <a href=\"javascript:view($id,$feed_id);\">".$line["updated"]."</a></td>";
427 print "<td width='70%' class='headlineTitle'>$content_link</td>";
428
429 print "</tr>";
430
431 ++$lnum;
432 }
433
434 if ($lnum == 0) {
435 print "<tr><td align='center'>No entries found.</td></tr>";
436 }
437
438 while ($lnum < HEADLINES_PER_PAGE) {
439 ++$lnum;
440 print "<tr><td>&nbsp;</td></tr>";
441 }
442
443 print "</table>";
444
445 $result = pg_query("SELECT id, (SELECT count(id) FROM ttrss_entries
446 WHERE feed_id = ttrss_feeds.id) AS total,
447 (SELECT count(id) FROM ttrss_entries
448 WHERE feed_id = ttrss_feeds.id AND unread = true) as unread
449 FROM ttrss_feeds WHERE id = '$feed'");
450
451 $total = pg_fetch_result($result, 0, "total");
452 $unread = pg_fetch_result($result, 0, "unread");
453
454 // update unread/total counters and status for active feed in the feedlist
455 // kludge, because iframe doesn't seem to support onload()
456
457 print "<script type=\"text/javascript\">
458 document.onkeydown = hotkey_handler;
459
460 var p_document = parent.frames['feeds-frame'].document;
461
462 var feedr = p_document.getElementById(\"FEEDR-\" + $feed);
463 var feedu = p_document.getElementById(\"FEEDU-\" + $feed);
464
465 if (feedu) {
466 feedu.innerHTML = \"$unread\";
467 }
468
469 var feedctr = p_document.getElementById(\"FEEDCTR-\" + $feed);
470
471 if ($unread > 0 && !feedr.className.match(\"Unread\")) {
472 feedr.className = feedr.className + \"Unread\";
473 feedctr.className = '';
474 } else if ($unread <= 0) {
475 feedr.className = feedr.className.replace(\"Unread\", \"\");
476 feedctr.className = 'invisible';
477 }
478
479 p_notify(\"\");
480
481 </script>";
482
483 if ($addheader) {
484 print "</body></html>";
485 }
486
487 }
488
489 if ($op == "pref-rpc") {
490
491 $subop = $_GET["subop"];
492
493 if ($subop == "unread") {
494 $ids = split(",", $_GET["ids"]);
495 foreach ($ids as $id) {
496 pg_query("UPDATE ttrss_entries SET unread = true WHERE feed_id = '$id'");
497 }
498
499 print "Marked selected feeds as read.";
500 }
501
502 if ($subop == "read") {
503 $ids = split(",", $_GET["ids"]);
504 foreach ($ids as $id) {
505 pg_query("UPDATE ttrss_entries
506 SET unread = false,last_read = NOW() WHERE feed_id = '$id'");
507 }
508
509 print "Marked selected feeds as unread.";
510
511 }
512
513 }
514
515 if ($op == "pref-feeds") {
516
517 $subop = $_GET["subop"];
518
519 if ($subop == "editSave") {
520 $feed_title = pg_escape_string($_GET["t"]);
521 $feed_link = pg_escape_string($_GET["l"]);
522 $feed_id = $_GET["id"];
523
524 $result = pg_query("UPDATE ttrss_feeds SET
525 title = '$feed_title', feed_url = '$feed_link' WHERE id = '$feed_id'");
526
527 }
528
529 if ($subop == "remove") {
530
531 if (!WEB_DEMO_MODE) {
532
533 $ids = split(",", $_GET["ids"]);
534
535 foreach ($ids as $id) {
536 pg_query("BEGIN");
537 pg_query("DELETE FROM ttrss_entries WHERE feed_id = '$id'");
538 pg_query("DELETE FROM ttrss_feeds WHERE id = '$id'");
539 pg_query("COMMIT");
540
541 if (file_exists(ICONS_DIR . "/$id.ico")) {
542 unlink(ICONS_DIR . "/$id.ico");
543 }
544 }
545 }
546 }
547
548 if ($subop == "add") {
549
550 if (!WEB_DEMO_MODE) {
551
552 $feed_link = pg_escape_string($_GET["link"]);
553
554 $result = pg_query(
555 "INSERT INTO ttrss_feeds (feed_url,title) VALUES ('$feed_link', '')");
556
557 $result = pg_query(
558 "SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_link'");
559
560 $feed_id = pg_fetch_result($result, 0, "id");
561
562 if ($feed_id) {
563 update_rss_feed($link, $feed_link, $feed_id);
564 }
565 }
566 }
567
568 print "<table class=\"prefAddFeed\"><tr>
569 <td><input id=\"fadd_link\"></td>
570 <td colspan=\"4\" align=\"right\">
571 <a class=\"button\" href=\"javascript:addFeed()\">Add feed</a></td></tr>
572 </table>";
573
574 $result = pg_query("SELECT
575 id,title,feed_url,substring(last_updated,1,16) as last_updated
576 FROM
577 ttrss_feeds ORDER by title");
578
579 print "<p><table width=\"100%\" class=\"prefFeedList\" id=\"prefFeedList\">";
580 print "<tr class=\"title\">
581 <td>&nbsp;</td><td>Select</td><td width=\"40%\">Title</td>
582 <td width=\"40%\">Link</td><td>Last updated</td></tr>";
583
584 $lnum = 0;
585
586 while ($line = pg_fetch_assoc($result)) {
587
588 $class = ($lnum % 2) ? "even" : "odd";
589
590 $feed_id = $line["id"];
591
592 $edit_feed_id = $_GET["id"];
593
594 if ($subop == "edit" && $feed_id != $edit_feed_id) {
595 $class .= "Grayed";
596 }
597
598 print "<tr class=\"$class\" id=\"FEEDR-$feed_id\">";
599
600 $icon_file = ICONS_DIR . "/$feed_id.ico";
601
602 if (file_exists($icon_file) && filesize($icon_file) > 0) {
603 $feed_icon = "<img width=\"16\" height=\"16\"
604 src=\"" . ICONS_URL . "/$feed_id.ico\">";
605 } else {
606 $feed_icon = "&nbsp;";
607 }
608 print "<td align='center'>$feed_icon</td>";
609
610 if (!$edit_feed_id || $subop != "edit") {
611
612 print "<td><input onclick='toggleSelectRow(this);'
613 type=\"checkbox\" id=\"FRCHK-".$line["id"]."\"></td>";
614
615 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
616 $line["title"] . "</td>";
617 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
618 $line["feed_url"] . "</td>";
619
620
621 } else if ($feed_id != $edit_feed_id) {
622
623 print "<td><input disabled=\"true\" type=\"checkbox\"
624 id=\"FRCHK-".$line["id"]."\"></td>";
625
626 print "<td>".$line["title"]."</td>";
627 print "<td>".$line["feed_url"]."</td>";
628
629 } else {
630
631 print "<td><input disabled=\"true\" type=\"checkbox\"></td>";
632
633 print "<td><input id=\"iedit_title\" value=\"".$line["title"]."\"></td>";
634 print "<td><input id=\"iedit_link\" value=\"".$line["feed_url"]."\"></td>";
635
636 }
637
638 if (!$line["last_updated"]) $line["last_updated"] = "Never";
639
640 print "<td>" . $line["last_updated"] . "</td>";
641
642 print "</tr>";
643
644 ++$lnum;
645 }
646
647 if ($lnum == 0) {
648 print "<tr><td colspan=\"5\" align=\"center\">No feeds defined.</td></tr>";
649 }
650
651 print "</table>";
652
653 print "<p>";
654
655 if ($subop == "edit") {
656 print "Edit feed:&nbsp;
657 <input type=\"submit\" class=\"button\"
658 onclick=\"javascript:feedEditCancel()\" value=\"Cancel\">
659 <input type=\"submit\" class=\"button\"
660 onclickf=\"javascript:feedEditSave()\" value=\"Save\">";
661 } else {
662
663 print "
664 Selection:&nbsp;
665 <input type=\"submit\" class=\"button\"
666 onclick=\"javascript:editSelectedFeed()\" value=\"Edit\">
667 <input type=\"submit\" class=\"button\"
668 onclick=\"javascript:removeSelectedFeeds()\" value=\"Remove\">";
669
670 if (ENABLE_PREFS_CATCHUP_UNCATCHUP) {
671 print "
672 <input type=\"submit\" class=\"button\"
673 onclick=\"javascript:readSelectedFeeds()\" value=\"Mark as read\">
674 <input type=\"submit\" class=\"button\"
675 onclick=\"javascript:unreadSelectedFeeds()\" value=\"Mark as unread\">&nbsp;";
676 }
677 print "
678 All feeds:
679 <input type=\"submit\"
680 class=\"button\" onclick=\"opml.php?op=Export\" value=\"Export OPML\">";
681
682 }
683
684 }
685
686 if ($op == "pref-filters") {
687
688 $subop = $_GET["subop"];
689
690 if ($subop == "editSave") {
691
692 $regexp = pg_escape_string($_GET["r"]);
693 $descr = pg_escape_string($_GET["d"]);
694 $match = pg_escape_string($_GET["m"]);
695 $filter_id = pg_escape_string($_GET["id"]);
696
697 $result = pg_query("UPDATE ttrss_filters SET
698 regexp = '$regexp',
699 description = '$descr',
700 filter_type = (SELECT id FROM ttrss_filter_types WHERE
701 description = '$match')
702 WHERE id = '$filter_id'");
703 }
704
705 if ($subop == "remove") {
706
707 if (!WEB_DEMO_MODE) {
708
709 $ids = split(",", $_GET["ids"]);
710
711 foreach ($ids as $id) {
712 pg_query("DELETE FROM ttrss_filters WHERE id = '$id'");
713
714 }
715 }
716 }
717
718 if ($subop == "add") {
719
720 if (!WEB_DEMO_MODE) {
721
722 $regexp = pg_escape_string($_GET["regexp"]);
723 $match = pg_escape_string($_GET["match"]);
724
725 $result = pg_query(
726 "INSERT INTO ttrss_filters (regexp,filter_type) VALUES
727 ('$regexp', (SELECT id FROM ttrss_filter_types WHERE
728 description = '$match'))");
729 }
730 }
731
732 $result = pg_query("SELECT description
733 FROM ttrss_filter_types ORDER BY description");
734
735 $filter_types = array();
736
737 while ($line = pg_fetch_assoc($result)) {
738 array_push($filter_types, $line["description"]);
739 }
740
741 print "<table class=\"prefAddFeed\"><tr>
742 <td><input id=\"fadd_regexp\"></td>
743 <td>";
744 print_select("fadd_match", "Title", $filter_types);
745
746 print"</td><td colspan=\"4\" align=\"right\">
747 <a class=\"button\" href=\"javascript:addFilter()\">Add filter</a></td></tr>
748 </table>";
749
750 $result = pg_query("SELECT
751 id,regexp,description,
752 (SELECT name FROM ttrss_filter_types WHERE
753 id = filter_type) as filter_type_name,
754 (SELECT description FROM ttrss_filter_types
755 WHERE id = filter_type) as filter_type_descr
756 FROM
757 ttrss_filters ORDER by regexp");
758
759 print "<p><table width=\"100%\" class=\"prefFilterList\" id=\"prefFilterList\">";
760
761 print "<tr class=\"title\">
762 <td width=\"5%\">Select</td><td width=\"40%\">Filter expression</td>
763 <td width=\"40%\">Description</td><td width=\"10%\">Match</td></tr>";
764
765 $lnum = 0;
766
767 while ($line = pg_fetch_assoc($result)) {
768
769 $class = ($lnum % 2) ? "even" : "odd";
770
771 $filter_id = $line["id"];
772 $edit_filter_id = $_GET["id"];
773
774 if ($subop == "edit" && $filter_id != $edit_filter_id) {
775 $class .= "Grayed";
776 }
777
778 print "<tr class=\"$class\" id=\"FILRR-$filter_id\">";
779
780 $line["regexp"] = htmlspecialchars($line["regexp"]);
781 $line["description"] = htmlspecialchars($line["description"]);
782
783 if (!$edit_filter_id || $subop != "edit") {
784
785 if (!$line["description"]) $line["description"] = "[No description]";
786
787 print "<td><input onclick='toggleSelectRow(this);'
788 type=\"checkbox\" id=\"FICHK-".$line["id"]."\"></td>";
789
790 print "<td><a href=\"javascript:editFilter($filter_id);\">" .
791 $line["regexp"] . "</td>";
792
793 print "<td><a href=\"javascript:editFilter($filter_id);\">" .
794 $line["description"] . "</td>";
795
796 print "<td>".$line["filter_type_descr"]."</td>";
797
798 } else if ($filter_id != $edit_filter_id) {
799
800 if (!$line["description"]) $line["description"] = "[No description]";
801
802 print "<td><input disabled=\"true\" type=\"checkbox\"
803 id=\"FICHK-".$line["id"]."\"></td>";
804
805 print "<td>".$line["regexp"]."</td>";
806 print "<td>".$line["description"]."</td>";
807 print "<td>".$line["filter_type_descr"]."</td>";
808
809 } else {
810
811 print "<td><input disabled=\"true\" type=\"checkbox\"></td>";
812
813 print "<td><input id=\"iedit_regexp\" value=\"".$line["regexp"].
814 "\"></td>";
815
816 print "<td><input id=\"iedit_descr\" value=\"".$line["description"].
817 "\"></td>";
818
819 print "<td>";
820 print_select("iedit_match", $line["filter_type_descr"], $filter_types);
821 print "</td>";
822
823 }
824
825
826 print "</tr>";
827
828 ++$lnum;
829 }
830
831 if ($lnum == 0) {
832 print "<tr><td colspan=\"4\" align=\"center\">No filters defined.</td></tr>";
833 }
834
835 print "</table>";
836
837 print "<p>";
838
839 if ($subop == "edit") {
840 print "Edit feed:
841 <input type=\"submit\" class=\"button\"
842 onclick=\"javascript:filterEditCancel()\" value=\"Cancel\">
843 <input type=\"submit\" class=\"button\"
844 onclick=\"javascript:filterEditSave()\" value=\"Save\">";
845
846 } else {
847
848 print "
849 Selection:
850 <input type=\"submit\" class=\"button\"
851 onclick=\"javascript:editSelectedFilter()\" value=\"Edit\">
852 <input type=\"submit\" class=\"button\"
853 onclick=\"javascript:removeSelectedFilters()\" value=\"Remove\">";
854 }
855 }
856
857 if ($op == "error") {
858 print "<div width=\"100%\" align='center'>";
859 $msg = $_GET["msg"];
860 print $msg;
861 print "</div>";
862 }
863
864 pg_close($link);
865 ?>