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