]> git.wh0rd.org Git - tt-rss.git/blob - backend.php
support for selective output in forceUpdateAllFeeds
[tt-rss.git] / backend.php
1 <?
2         $op = $_GET["op"];
3
4         if ($op == "rpc") {
5                 header("Content-Type: application/xml");
6         }
7
8         require_once "config.php";
9         require_once "db.php";
10         require_once "functions.php";
11         require_once "magpierss/rss_fetch.inc";
12
13         $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); 
14
15         if (!$link) {
16                 if (DB_TYPE == "mysql") {
17                         print mysql_error();
18                 }
19                 // PG seems to display its own errors just fine by default.             
20                 return;
21         }
22
23         if (DB_TYPE == "pgsql") {
24                 pg_query("set client_encoding = 'utf-8'");
25         }
26         
27         $fetch = $_GET["fetch"];
28
29         /* FIXME this needs reworking */
30
31         function getTagCounters($link) {
32                 $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
33                         FROM ttrss_tags,ttrss_entries WHERE
34                         post_id = ttrss_entries.id AND unread = true GROUP BY tag_name 
35                 UNION
36                         select tag_name,0 as count FROM ttrss_tags");
37
38                 $tags = array();
39
40                 while ($line = db_fetch_assoc($result)) {
41                         $tags[$line["tag_name"]] += $line["count"];
42                 }
43
44                 foreach (array_keys($tags) as $tag) {
45                         $unread = $tags[$tag];                  
46
47                         $tag = htmlspecialchars($tag);
48                         print "<tag id=\"$tag\" counter=\"$unread\"/>";
49                 } 
50         }
51
52         function getLabelCounters($link) {
53
54                 $result = db_query($link, "SELECT count(id) as count FROM ttrss_entries
55                         WHERE marked = true AND unread = true");
56
57                 $count = db_fetch_result($result, 0, "count");
58
59                 print "<label id=\"-1\" counter=\"$count\"/>";
60
61                 $result = db_query($link, "SELECT id,sql_exp,description FROM
62                         ttrss_labels ORDER by description");
63         
64                 while ($line = db_fetch_assoc($result)) {
65
66                         $id = -$line["id"] - 11;
67
68                         error_reporting (0);
69
70                         $tmp_result = db_query($link, "SELECT count(id) as count FROM ttrss_entries
71                                 WHERE (" . $line["sql_exp"] . ") AND unread = true");
72
73                         $count = db_fetch_result($tmp_result, 0, "count");
74
75                         print "<label id=\"$id\" counter=\"$count\"/>";
76
77                         error_reporting (E_ERROR | E_WARNING | E_PARSE);
78         
79                 }
80         }
81
82         function getFeedCounter($link, $id) {
83         
84                 $result = db_query($link, "SELECT 
85                                 count(id) as count FROM ttrss_entries
86                         WHERE feed_id = '$id'   AND unread = true");
87         
88                         $count = db_fetch_result($result, 0, "count");
89                         
90                         print "<feed id=\"$id\" counter=\"$count\"/>";          
91         }
92
93         function getFeedCounters($link) {
94         
95                 $result = db_query($link, "SELECT id,
96                         (SELECT count(id) FROM ttrss_entries WHERE feed_id = ttrss_feeds.id 
97                                 AND unread = true) as count
98                         FROM ttrss_feeds");
99         
100                 while ($line = db_fetch_assoc($result)) {
101                 
102                         $id = $line["id"];
103                         $count = $line["count"];
104
105                         print "<feed id=\"$id\" counter=\"$count\"/>";
106                 }
107         }
108
109         function outputFeedList($link, $tags = false) {
110
111                 print "<html><head>
112                         <title>Tiny Tiny RSS : Feedlist</title>
113                         <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
114                         <script type=\"text/javascript\" src=\"functions.js\"></script>
115                         <script type=\"text/javascript\" src=\"feedlist.js\"></script>
116                         <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
117                         </head><body>";
118
119                 print "<ul class=\"feedList\" id=\"feedList\">";
120
121                 if (!$tags) {
122
123                         /* virtual feeds */
124
125                         $result = db_query($link, "SELECT count(id) as num_starred 
126                                 FROM ttrss_entries WHERE marked = true AND unread = true");
127                         $num_starred = db_fetch_result($result, 0, "num_starred");
128
129                         $class = "odd";
130
131                         if ($num_starred > 0) $class .= "Unread";
132
133                         printFeedEntry(-1, $class, "Starred articles", $num_starred, 
134                                 "images/mark_set.png");
135
136                         if (ENABLE_LABELS) {
137         
138                                 $result = db_query($link, "SELECT id,sql_exp,description FROM
139                                         ttrss_labels ORDER by description");
140                 
141                                 if (db_num_rows($result) > 0) {
142                                         print "<li><hr></li>";
143                                 }
144                 
145                                 while ($line = db_fetch_assoc($result)) {
146         
147                                         error_reporting (0);
148                 
149                                         $tmp_result = db_query($link, "SELECT count(id) as count FROM ttrss_entries
150                                                 WHERE (" . $line["sql_exp"] . ") AND unread = true");
151         
152                                         $count = db_fetch_result($tmp_result, 0, "count");
153         
154                                         $class = "odd";
155         
156                                         if ($count > 0) {
157                                                 $class .= "Unread";
158                                         }
159                                         
160                                         error_reporting (E_ERROR | E_WARNING | E_PARSE);
161         
162                                         printFeedEntry(-$line["id"]-11, 
163                                                 $class, $line["description"], $count, "images/label.png");
164                 
165                                 }
166                         }
167         
168                         print "<li><hr></li>";
169
170                         $result = db_query($link, "SELECT *,
171                                 (SELECT count(id) FROM ttrss_entries 
172                                         WHERE feed_id = ttrss_feeds.id) AS total,
173                                 (SELECT count(id) FROM ttrss_entries
174                                         WHERE feed_id = ttrss_feeds.id AND unread = true) as unread
175                                 FROM ttrss_feeds ORDER BY title");                      
176         
177                         $actid = $_GET["actid"];
178         
179                         /* real feeds */
180         
181                         $lnum = 0;
182         
183                         $total_unread = 0;
184         
185                         while ($line = db_fetch_assoc($result)) {
186                         
187                                 $feed = $line["title"];
188                                 $feed_id = $line["id"];   
189         
190                                 $subop = $_GET["subop"];
191                                 
192                                 $total = $line["total"];
193                                 $unread = $line["unread"];
194                                 
195         //                      $class = ($lnum % 2) ? "even" : "odd";
196         
197                                 $class = "odd";
198         
199                                 if ($unread > 0) $class .= "Unread";
200         
201                                 if ($actid == $feed_id) {
202                                         $class .= "Selected";
203                                 }
204         
205                                 $total_unread += $unread;
206         
207                                 printFeedEntry($feed_id, $class, $feed, $unread, "icons/$feed_id.ico");
208         
209                                 ++$lnum;
210                         }
211                 } else {
212
213                         // tags
214
215                         $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
216                                 FROM ttrss_tags,ttrss_entries WHERE
217                                 post_id = ttrss_entries.id AND unread = true GROUP BY tag_name 
218                         UNION
219                                 select tag_name,0 as count FROM ttrss_tags");
220         
221                         $tags = array();
222         
223                         while ($line = db_fetch_assoc($result)) {
224                                 $tags[$line["tag_name"]] += $line["count"];
225                         }
226         
227                         foreach (array_keys($tags) as $tag) {
228         
229                                 $unread = $tags[$tag];
230         
231                                 $class = "odd";
232         
233                                 if ($unread > 0) {
234                                         $class .= "Unread";
235                                 }
236         
237                                 printFeedEntry($tag, $class, $tag, $unread, "images/tag.png");
238         
239                         } 
240
241                 }
242
243                 if (db_num_rows($result) == 0) {
244                         print "<li>No tags to display.</li>";
245                 }
246
247                 print "</ul>";
248
249                 print "<div class=\"invisible\" id=\"FEEDTU\">$total_unread</div>";
250
251         }
252
253
254         if ($op == "rpc") {
255
256                 $subop = $_GET["subop"];
257
258                 if ($subop == "getLabelCounters") {
259                         $aid = $_GET["aid"];            
260                         print "<rpc-reply>";
261                         getLabelCounters($link);
262                         if ($aid) {
263                                 getFeedCounter($link, $aid);
264                         }
265                         print "</rpc-reply>";
266                 }
267
268                 if ($subop == "getFeedCounters") {
269                         print "<rpc-reply>";
270                         getFeedCounters($link);
271                         print "</rpc-reply>";
272                 }
273
274                 if ($subop == "getAllCounters") {
275                         print "<rpc-reply>";
276                         getLabelCounters($link);
277                         getFeedCounters($link);
278                         getTagCounters($link);
279                         print "</rpc-reply>";
280
281                 }
282
283                 if ($subop == "mark") {
284                         $mark = $_GET["mark"];
285                         $id = db_escape_string($_GET["id"]);
286
287                         if ($mark == "1") {
288                                 $mark = "true";
289                         } else {
290                                 $mark = "false";
291                         }
292
293                         $result = db_query($link, "UPDATE ttrss_entries SET marked = $mark
294                                 WHERE id = '$id'");
295                 }
296
297                 if ($subop == "updateFeed") {
298                         $feed_id = db_escape_string($_GET["feed"]);
299
300                         $result = db_query($link, 
301                                 "SELECT feed_url FROM ttrss_feeds WHERE id = '$feed_id'");
302
303                         if (db_num_rows($result) > 0) {                 
304                                 $feed_url = db_fetch_result($result, 0, "feed_url");
305 //                              update_rss_feed($link, $feed_url, $feed_id);
306                         }
307
308                         print "DONE-$feed_id";
309
310                         return;
311                 }
312
313                 if ($subop == "forceUpdateAllFeeds" || $subop == "updateAllFeeds") {
314                         update_all_feeds($link, true);                  
315
316                         $omode = $_GET["omode"];
317
318                         if (!$omode) $omode = "tfl";
319
320                         print "<rpc-reply>";
321                         if (strchr($omode, "l")) getLabelCounters($link);
322                         if (strchr($omode, "f")) getFeedCounters($link);
323                         if (strchr($omode, "t")) getTagCounters($link);
324                         print "</rpc-reply>";
325                 }
326                 
327                 if ($subop == "catchupPage") {
328
329                         $ids = split(",", $_GET["ids"]);
330
331                         foreach ($ids as $id) {
332
333                                 db_query($link, "UPDATE ttrss_entries SET unread=false,last_read = NOW()
334                                         WHERE id = '$id'");
335
336                         }
337
338                         print "Marked active page as read.";
339                 }
340         }
341         
342         if ($op == "feeds") {
343
344                 $tags = $_GET["tags"];
345
346                 $subop = $_GET["subop"];
347
348                 if ($subop == "catchupAll") {
349                         db_query($link, "UPDATE ttrss_entries SET last_read = NOW(),unread = false");
350                 }
351
352                 outputFeedList($link, $tags);
353
354         }
355
356         if ($op == "view") {
357
358                 $id = $_GET["id"];
359                 $feed_id = $_GET["feed"];
360
361                 $result = db_query($link, "UPDATE ttrss_entries SET unread = false,last_read = NOW() WHERE id = '$id'");
362
363                 $addheader = $_GET["addheader"];
364
365                 $result = db_query($link, "SELECT title,link,content,feed_id,comments,
366                         (SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url 
367                         FROM ttrss_entries
368                         WHERE   id = '$id'");
369
370                 if ($addheader) {
371                         print "<html><head>
372                                 <title>Tiny Tiny RSS : Article $id</title>
373                                 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
374                                 <script type=\"text/javascript\" src=\"functions.js\"></script>
375                                 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
376                                 </head><body>";
377                 }
378
379                 if ($result) {
380
381                         $line = db_fetch_assoc($result);
382
383                         if ($line["icon_url"]) {
384                                 $feed_icon = "<img class=\"feedIcon\" src=\"" . $line["icon_url"] . "\">";
385                         } else {
386                                 $feed_icon = "&nbsp;";
387                         }
388
389                         if ($line["comments"] && $line["link"] != $line["comments"]) {
390                                 $entry_comments = "(<a href=\"".$line["comments"]."\">Comments</a>)";
391                         } else {
392                                 $entry_comments = "";
393                         }
394
395                         print "<div class=\"postReply\">";
396
397                         print "<div class=\"postHeader\"><table>";
398
399                         print "<tr><td><b>Title:</b></td>
400                                 <td width='100%'>" . $line["title"] . "</td></tr>";
401                                 
402                         print "<tr><td><b>Link:</b></td>
403                                 <td width='100%'>
404                                 <a href=\"" . $line["link"] . "\">".$line["link"]."</a>
405                                 $entry_comments</td></tr>";
406                                         
407                         print "</table></div>";
408
409                         print "<div class=\"postIcon\">" . $feed_icon . "</div>";
410                         print "<div class=\"postContent\">" . $line["content"] . "</div>";
411                         
412                         print "</div>";
413
414                         print "<script type=\"text/javascript\">
415                                 update_label_counters('$feed_id');
416                         </script>";
417                 }
418
419                 if ($addheader) {
420                         print "</body></html>";
421                 }
422         }
423
424         if ($op == "viewfeed") {
425
426                 $feed = $_GET["feed"];
427                 $skip = $_GET["skip"];
428                 $subop = $_GET["subop"];
429                 $view_mode = $_GET["view"];
430                 $addheader = $_GET["addheader"];
431                 $limit = $_GET["limit"];
432
433                 if (!$feed) {
434                         print "Error: no feed to display.";
435                         return;
436                 }
437
438                 if (!$skip) $skip = 0;
439
440                 if ($subop == "undefined") $subop = "";
441
442                 if ($addheader) {
443                         print "<html><head>
444                                 <title>Tiny Tiny RSS : Feed $feed</title>
445                                 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
446                                 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
447                                 <script type=\"text/javascript\" src=\"functions.js\"></script>
448                                 <script type=\"text/javascript\" src=\"viewfeed.js\"></script>
449                                 </head><body>";
450                 }
451
452                 if (sprintf("%d", $feed) != 0 && $feed >= 0) {
453
454                         $result = db_query($link, 
455                                 "SELECT *,SUBSTRING(last_updated,1,16) as last_updated_s
456                                 FROM ttrss_feeds WHERE id = '$feed'");
457                 
458                         if ($result) {
459         
460 //                              $line = db_fetch_assoc($result);
461 //                              update_rss_feed($link, $line["feed_url"], $feed);
462
463                                 if ($subop == "MarkAllRead")  {
464         
465                                         db_query($link, "UPDATE ttrss_entries SET unread = false,last_read = NOW() 
466                                                 WHERE feed_id = '$feed'");
467                                 }
468                         }
469                 }
470
471                 print "<table class=\"headlinesList\" id=\"headlinesList\" width=\"100%\">";
472
473                 $search = $_GET["search"];
474
475                 if ($search) {
476                         $search_query_part = "(upper(title) LIKE upper('%$search%') 
477                                 OR content LIKE '%$search%') AND";
478                 } else {
479                         $search_query_part = "";
480                 }
481
482                 $view_query_part = "";
483
484                 if ($view_mode == "Starred") {
485                         $view_query_part = " marked = true AND ";
486                 }
487
488                 if ($view_mode == "Unread") {
489                         $view_query_part = " unread = true AND ";
490                 }
491
492 /*              $result = db_query($link, "SELECT count(id) AS total_entries 
493                         FROM ttrss_entries WHERE 
494                         $search_query_part
495                         feed_id = '$feed'");
496
497                 $total_entries = db_fetch_result($result, 0, "total_entries"); */
498
499 /*              $result = db_query("SELECT count(id) AS unread_entries 
500                         FROM ttrss_entries WHERE 
501                         $search_query_part
502                         unread = true AND
503                         feed_id = '$feed'");
504
505                 $unread_entries = db_fetch_result($result, 0, "unread_entries"); */
506
507                 if ($limit && $limit != "All") {
508                         $limit_query_part = "LIMIT " . $limit;
509                 } 
510
511                 $vfeed_query_part = "";
512
513                 if (sprintf("%d", $feed) == 0) {
514                         $query_strategy_part = "ttrss_entries.id > 0";
515                         $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
516                                 id = feed_id) as feed_title,";
517                 } else if ($feed >= 0) {
518                         $query_strategy_part = "feed_id = '$feed'";
519                 } else if ($feed == -1) { // starred virtual feed
520                         $query_strategy_part = "marked = true";
521                         $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
522                                 id = feed_id) as feed_title,";
523                 } else if ($feed <= -10) { // labels
524                         $label_id = -$feed - 11;
525
526                         $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
527                                 WHERE id = '$label_id'");
528                 
529                         $query_strategy_part = db_fetch_result($tmp_result, 0, "sql_exp");
530         
531                         $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
532                                 id = feed_id) as feed_title,";
533                 } else {
534                         $query_strategy_part = "id > 0"; // dumb
535                 }
536
537                 $order_by = "updated DESC";
538
539 //              if ($feed < -10) {
540 //                      $order_by = "feed_id,updated DESC";
541 //              }
542
543                 if ($feed < -10) error_reporting (0);
544
545                 if (sprintf("%d", $feed) != 0) {
546
547                         $result = db_query($link, "SELECT 
548                                         id,title,updated,unread,feed_id,marked,link,last_read,
549                                         SUBSTRING(last_read,1,19) as last_read_noms,
550                                         $vfeed_query_part
551                                         SUBSTRING(updated,1,19) as updated_noms
552                                 FROM
553                                         ttrss_entries 
554                                 WHERE
555                                 $search_query_part
556                                 $view_query_part
557                                 $query_strategy_part ORDER BY $order_by
558                                 $limit_query_part");
559
560                 } else {
561                         // browsing by tag
562
563                         $result = db_query($link, "SELECT
564                                 ttrss_entries.id as id,title,updated,unread,feed_id,
565                                 marked,link,last_read,
566                                 SUBSTRING(last_read,1,19) as last_read_noms,
567                                 $vfeed_query_part
568                                 SUBSTRING(updated,1,19) as updated_noms
569                                 FROM
570                                         ttrss_entries,ttrss_tags
571                                 WHERE
572                                         post_id = ttrss_entries.id AND tag_name = '$feed' AND
573                                         $view_query_part
574                                         $search_query_part
575                                         $query_strategy_part ORDER BY $order_by
576                                 $limit_query_part");    
577                 }
578
579                 if (!$result) {
580                         print "<tr><td colspan='4' align='center'>
581                                 Could not display feed (query failed). Please check match syntax or local configuration.</td></tr>";
582                         return;
583                 }
584
585                 $lnum = 0;
586
587                 error_reporting (E_ERROR | E_WARNING | E_PARSE);
588
589                 $num_unread = 0;
590
591                 while ($line = db_fetch_assoc($result)) {
592
593                         $class = ($lnum % 2) ? "even" : "odd";
594
595                         $id = $line["id"];
596                         $feed_id = $line["feed_id"];
597
598 //                      printf("L %d (%s) &gt; U %d (%s) = %d<br>", 
599 //                              strtotime($line["last_read_noms"]), $line["last_read_noms"],
600 //                              strtotime($line["updated"]), $line["updated"],
601 //                              strtotime($line["last_read"]) >= strtotime($line["updated"]));
602
603 /*                      if ($line["last_read"] != "" && $line["updated"] != "" &&
604                                 strtotime($line["last_read_noms"]) < strtotime($line["updated_noms"])) {
605
606                                 $update_pic = "<img id='FUPDPIC-$id' src=\"images/updated.png\" 
607                                         alt=\"Updated\">";
608
609                         } else {
610
611                                 $update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.gif\" 
612                                         alt=\"Updated\">";
613
614                         } */
615
616                         if ($line["last_read"] == "" && 
617                                         ($line["unread"] != "t" && $line["unread"] != "1")) {
618
619                                 $update_pic = "<img id='FUPDPIC-$id' src=\"images/updated.png\" 
620                                         alt=\"Updated\">";
621                         } else {
622                                 $update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.gif\" 
623                                         alt=\"Updated\">";
624                         }
625
626                         if ($line["unread"] == "t" || $line["unread"] == "1") {
627                                 $class .= "Unread";
628                                 ++$num_unread;
629                         }
630
631                         if ($line["marked"] == "t" || $line["marked"] == "1") {
632                                 $marked_pic = "<img id=\"FMARKPIC-$id\" src=\"images/mark_set.png\" 
633                                         alt=\"Reset mark\" onclick='javascript:toggleMark($id, false)'>";
634                         } else {
635                                 $marked_pic = "<img id=\"FMARKPIC-$id\" src=\"images/mark_unset.png\" 
636                                         alt=\"Set mark\" onclick='javascript:toggleMark($id, true)'>";
637                         }
638
639                         $content_link = "<a id=\"FTITLE-$id\" href=\"javascript:view($id,$feed_id);\">" .
640                                 $line["title"] . "</a>";
641                                 
642                         print "<tr class='$class' id='RROW-$id'>";
643                         // onclick=\"javascript:view($id,$feed_id)\">
644
645                         print "<td valign='center' align='center'>$update_pic</td>";
646                         print "<td valign='center' align='center'>$marked_pic</td>";
647
648                         print "<td width='25%'>
649                                 <a href=\"javascript:view($id,$feed_id);\">".$line["updated"]."</a></td>";
650
651                         if ($line["feed_title"]) {                      
652                                 print "<td width='50%'>$content_link</td>";
653                                 print "<td width='20%'>".$line["feed_title"]."</td>";
654                         } else {
655                                 print "<td width='70%'>$content_link</td>";
656                         }
657
658                         print "</tr>";
659
660                         ++$lnum;
661                 }
662
663                 if ($lnum == 0) {
664                         print "<tr><td align='center'>No articles found.</td></tr>";
665                 }
666                 
667                 print "</table>";
668                 
669                 print "<script type=\"text/javascript\">
670                         document.onkeydown = hotkey_handler;
671                         update_label_counters('$feed');
672                 </script>";
673
674                 if ($addheader) {
675                         print "</body></html>";
676                 }
677
678         }
679
680         if ($op == "pref-rpc") {
681
682                 $subop = $_GET["subop"];
683
684                 if ($subop == "unread") {
685                         $ids = split(",", $_GET["ids"]);
686                         foreach ($ids as $id) {
687                                 db_query($link, "UPDATE ttrss_entries SET unread = true WHERE feed_id = '$id'");
688                         }
689
690                         print "Marked selected feeds as read.";
691                 }
692
693                 if ($subop == "read") {
694                         $ids = split(",", $_GET["ids"]);
695                         foreach ($ids as $id) {
696                                 db_query($link, "UPDATE ttrss_entries 
697                                         SET unread = false,last_read = NOW() WHERE feed_id = '$id'");
698                         }
699
700                         print "Marked selected feeds as unread.";
701
702                 }
703
704         }
705
706         if ($op == "pref-feeds") {
707         
708                 $subop = $_GET["subop"];
709
710                 if ($subop == "editSave") {
711                         $feed_title = db_escape_string($_GET["t"]);
712                         $feed_link = db_escape_string($_GET["l"]);
713                         $upd_intl = db_escape_string($_GET["ui"]);
714                         $feed_id = $_GET["id"];
715
716                         if (strtoupper($upd_intl) == "DEFAULT")
717                                 $upd_intl = 0;
718
719                         $result = db_query($link, "UPDATE ttrss_feeds SET 
720                                 title = '$feed_title', feed_url = '$feed_link',
721                                 update_interval = '$upd_intl' WHERE id = '$feed_id'");                  
722
723                 }
724
725                 if ($subop == "remove") {
726
727                         if (!WEB_DEMO_MODE) {
728
729                                 $ids = split(",", $_GET["ids"]);
730
731                                 foreach ($ids as $id) {
732                                         db_query($link, "DELETE FROM ttrss_feeds WHERE id = '$id'");
733                                         
734                                         if (file_exists(ICONS_DIR . "/$id.ico")) {
735                                                 unlink(ICONS_DIR . "/$id.ico");
736                                         }
737                                 }
738                         }
739                 }
740
741                 if ($subop == "add") {
742                 
743                         if (!WEB_DEMO_MODE) {
744
745                                 $feed_link = db_escape_string($_GET["link"]);
746                                         
747                                 $result = db_query($link,
748                                         "INSERT INTO ttrss_feeds (feed_url,title) VALUES ('$feed_link', '')");
749
750                                 $result = db_query($link,
751                                         "SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_link'");
752
753                                 $feed_id = db_fetch_result($result, 0, "id");
754
755                                 if ($feed_id) {
756                                         update_rss_feed($link, $feed_link, $feed_id);
757                                 }
758                         }
759                 }
760
761                 print "<table class=\"prefAddFeed\"><tr>
762                         <td><input id=\"fadd_link\"></td>
763                         <td colspan=\"4\" align=\"right\">
764                                 <a class=\"button\" href=\"javascript:addFeed()\">Add feed</a></td></tr>
765                 </table>";
766
767                 $result = db_query($link, "SELECT 
768                                 id,title,feed_url,substring(last_updated,1,16) as last_updated,
769                                 update_interval
770                         FROM 
771                                 ttrss_feeds ORDER by title");
772
773                 print "<p><table width=\"100%\" class=\"prefFeedList\" id=\"prefFeedList\">";
774                 print "<tr class=\"title\">
775                                         <td>&nbsp;</td><td>Select</td><td width=\"40%\">Title</td>
776                                         <td width=\"30%\">Link</td><td width=\"10%\">Update Interval</td>
777                                         <td>Last updated</td></tr>";
778                 
779                 $lnum = 0;
780                 
781                 while ($line = db_fetch_assoc($result)) {
782
783                         $class = ($lnum % 2) ? "even" : "odd";
784
785                         $feed_id = $line["id"];
786
787                         $edit_feed_id = $_GET["id"];
788
789                         if ($subop == "edit" && $feed_id != $edit_feed_id) {
790                                 $class .= "Grayed";
791                         }
792
793                         print "<tr class=\"$class\" id=\"FEEDR-$feed_id\">";
794
795                         $icon_file = ICONS_DIR . "/$feed_id.ico";
796
797                         if (file_exists($icon_file) && filesize($icon_file) > 0) {
798                                         $feed_icon = "<img width=\"16\" height=\"16\"
799                                                 src=\"" . ICONS_URL . "/$feed_id.ico\">";
800                         } else {
801                                 $feed_icon = "&nbsp;";
802                         }
803                         print "<td align='center'>$feed_icon</td>";             
804
805                         if (!$edit_feed_id || $subop != "edit") {
806
807                                 print "<td><input onclick='toggleSelectRow(this);' 
808                                 type=\"checkbox\" id=\"FRCHK-".$line["id"]."\"></td>";
809
810                                 print "<td><a href=\"javascript:editFeed($feed_id);\">" . 
811                                         $line["title"] . "</td>";               
812                                 print "<td><a href=\"javascript:editFeed($feed_id);\">" . 
813                                         $line["feed_url"] . "</td>";            
814
815                                 if ($line["update_interval"] == "0")
816                                         $line["update_interval"] = "Default";
817
818                                 print "<td>" . $line["update_interval"] . "</td>";
819
820
821                         } else if ($feed_id != $edit_feed_id) {
822
823                                 print "<td><input disabled=\"true\" type=\"checkbox\" 
824                                         id=\"FRCHK-".$line["id"]."\"></td>";
825
826                                 print "<td>".$line["title"]."</td>";            
827                                 print "<td>".$line["feed_url"]."</td>";         
828
829                                 if ($line["update_interval"] == "0")
830                                         $line["update_interval"] = "Default";
831
832                                 print "<td>" . $line["update_interval"] . "</td>";
833
834                         } else {
835
836                                 print "<td><input disabled=\"true\" type=\"checkbox\"></td>";
837
838                                 print "<td><input id=\"iedit_title\" value=\"".$line["title"]."\"></td>";
839                                 print "<td><input id=\"iedit_link\" value=\"".$line["feed_url"]."\"></td>";
840                                 print "<td><input id=\"iedit_updintl\" value=\"".$line["update_interval"]."\"></td>";
841                                         
842                         }
843
844                         if (!$line["last_updated"]) $line["last_updated"] = "Never";
845
846                         print "<td>" . $line["last_updated"] . "</td>";
847                         
848                         print "</tr>";
849
850                         ++$lnum;
851                 }
852
853                 if ($lnum == 0) {
854                         print "<tr><td colspan=\"5\" align=\"center\">No feeds defined.</td></tr>";
855                 }
856
857                 print "</table>";
858
859                 print "<p>";
860
861                 if ($subop == "edit") {
862                         print "Edit feed:&nbsp;
863                                 <input type=\"submit\" class=\"button\" 
864                                         onclick=\"javascript:feedEditCancel()\" value=\"Cancel\">
865                                 <input type=\"submit\" class=\"button\" 
866                                         onclick=\"javascript:feedEditSave()\" value=\"Save\">";
867                         } else {
868
869                         print "
870                                 Selection:&nbsp;
871                         <input type=\"submit\" class=\"button\" 
872                                 onclick=\"javascript:editSelectedFeed()\" value=\"Edit\">
873                         <input type=\"submit\" class=\"button\" 
874                                 onclick=\"javascript:removeSelectedFeeds()\" value=\"Remove\">";
875                                 
876                         if (ENABLE_PREFS_CATCHUP_UNCATCHUP) {
877                                 print "
878                                 <input type=\"submit\" class=\"button\" 
879                                         onclick=\"javascript:readSelectedFeeds()\" value=\"Mark as read\">
880                                 <input type=\"submit\" class=\"button\" 
881                                         onclick=\"javascript:unreadSelectedFeeds()\" value=\"Mark as unread\">&nbsp;";
882                         }
883                         print "
884                         All feeds: 
885                                 <input type=\"submit\" 
886                                         class=\"button\" onclick=\"gotoExportOpml()\" value=\"Export OPML\">";
887                 
888                         }
889
890         }
891
892         if ($op == "pref-filters") {
893
894                 $subop = $_GET["subop"];
895
896                 if ($subop == "editSave") {
897
898                         $regexp = db_escape_string($_GET["r"]);
899                         $descr = db_escape_string($_GET["d"]);
900                         $match = db_escape_string($_GET["m"]);
901                         $filter_id = db_escape_string($_GET["id"]);
902                         
903                         $result = db_query($link, "UPDATE ttrss_filters SET 
904                                 reg_exp = '$regexp', 
905                                 description = '$descr',
906                                 filter_type = (SELECT id FROM ttrss_filter_types WHERE
907                                         description = '$match')
908                                 WHERE id = '$filter_id'");
909                 }
910
911                 if ($subop == "remove") {
912
913                         if (!WEB_DEMO_MODE) {
914
915                                 $ids = split(",", $_GET["ids"]);
916
917                                 foreach ($ids as $id) {
918                                         db_query($link, "DELETE FROM ttrss_filters WHERE id = '$id'");
919                                         
920                                 }
921                         }
922                 }
923
924                 if ($subop == "add") {
925                 
926                         if (!WEB_DEMO_MODE) {
927
928                                 $regexp = db_escape_string($_GET["regexp"]);
929                                 $match = db_escape_string($_GET["match"]);
930                                         
931                                 $result = db_query($link,
932                                         "INSERT INTO ttrss_filters (reg_exp,filter_type) VALUES 
933                                                 ('$regexp', (SELECT id FROM ttrss_filter_types WHERE
934                                                         description = '$match'))");
935                         } 
936                 }
937
938                 $result = db_query($link, "SELECT description 
939                         FROM ttrss_filter_types ORDER BY description");
940
941                 $filter_types = array();
942
943                 while ($line = db_fetch_assoc($result)) {
944                         array_push($filter_types, $line["description"]);
945                 }
946
947                 print "<table class=\"prefAddFeed\"><tr>
948                         <td><input id=\"fadd_regexp\"></td>
949                         <td>";
950                         print_select("fadd_match", "Title", $filter_types);     
951         
952                 print"</td><td colspan=\"4\" align=\"right\">
953                                 <a class=\"button\" href=\"javascript:addFilter()\">Add filter</a></td></tr>
954                 </table>";
955
956                 $result = db_query($link, "SELECT 
957                                 id,reg_exp,description,
958                                 (SELECT name FROM ttrss_filter_types WHERE 
959                                         id = filter_type) as filter_type_name,
960                                 (SELECT description FROM ttrss_filter_types 
961                                         WHERE id = filter_type) as filter_type_descr
962                         FROM 
963                                 ttrss_filters ORDER by reg_exp");
964
965                 print "<p><table width=\"100%\" class=\"prefFilterList\" id=\"prefFilterList\">";
966
967                 print "<tr class=\"title\">
968                                         <td width=\"5%\">Select</td><td width=\"40%\">Filter expression</td>
969                                         <td width=\"40%\">Description</td><td width=\"10%\">Match</td></tr>";
970                 
971                 $lnum = 0;
972                 
973                 while ($line = db_fetch_assoc($result)) {
974
975                         $class = ($lnum % 2) ? "even" : "odd";
976
977                         $filter_id = $line["id"];
978                         $edit_filter_id = $_GET["id"];
979
980                         if ($subop == "edit" && $filter_id != $edit_filter_id) {
981                                 $class .= "Grayed";
982                         }
983
984                         print "<tr class=\"$class\" id=\"FILRR-$filter_id\">";
985
986                         $line["regexp"] = htmlspecialchars($line["reg_exp"]);
987                         $line["description"] = htmlspecialchars($line["description"]);
988
989                         if (!$edit_filter_id || $subop != "edit") {
990
991                                 if (!$line["description"]) $line["description"] = "[No description]";
992
993                                 print "<td><input onclick='toggleSelectRow(this);' 
994                                 type=\"checkbox\" id=\"FICHK-".$line["id"]."\"></td>";
995
996                                 print "<td><a href=\"javascript:editFilter($filter_id);\">" . 
997                                         $line["reg_exp"] . "</td>";             
998                                         
999                                 print "<td><a href=\"javascript:editFilter($filter_id);\">" . 
1000                                         $line["description"] . "</td>";                 
1001
1002                                 print "<td>".$line["filter_type_descr"]."</td>";
1003
1004                         } else if ($filter_id != $edit_filter_id) {
1005
1006                                 if (!$line["description"]) $line["description"] = "[No description]";
1007
1008                                 print "<td><input disabled=\"true\" type=\"checkbox\" 
1009                                         id=\"FICHK-".$line["id"]."\"></td>";
1010
1011                                 print "<td>".$line["reg_exp"]."</td>";          
1012                                 print "<td>".$line["description"]."</td>";              
1013                                 print "<td>".$line["filter_type_descr"]."</td>";
1014
1015                         } else {
1016
1017                                 print "<td><input disabled=\"true\" type=\"checkbox\"></td>";
1018
1019                                 print "<td><input id=\"iedit_regexp\" value=\"".$line["reg_exp"].
1020                                         "\"></td>";
1021
1022                                 print "<td><input id=\"iedit_descr\" value=\"".$line["description"].
1023                                         "\"></td>";
1024
1025                                 print "<td>";
1026                                 print_select("iedit_match", $line["filter_type_descr"], $filter_types);
1027                                 print "</td>";
1028                                                 
1029                         }
1030                                 
1031                         
1032                         print "</tr>";
1033
1034                         ++$lnum;
1035                 }
1036
1037                 if ($lnum == 0) {
1038                         print "<tr><td colspan=\"4\" align=\"center\">No filters defined.</td></tr>";
1039                 }
1040
1041                 print "</table>";
1042
1043                 print "<p>";
1044
1045                 if ($subop == "edit") {
1046                         print "Edit feed:
1047                                 <input type=\"submit\" class=\"button\" 
1048                                         onclick=\"javascript:filterEditCancel()\" value=\"Cancel\">
1049                                 <input type=\"submit\" class=\"button\" 
1050                                         onclick=\"javascript:filterEditSave()\" value=\"Save\">";
1051                                         
1052                 } else {
1053
1054                         print "
1055                                 Selection:
1056                         <input type=\"submit\" class=\"button\" 
1057                                 onclick=\"javascript:editSelectedFilter()\" value=\"Edit\">
1058                         <input type=\"submit\" class=\"button\" 
1059                                 onclick=\"javascript:removeSelectedFilters()\" value=\"Remove\">";
1060                 }
1061         }
1062
1063         if ($op == "pref-labels") {
1064
1065                 $subop = $_GET["subop"];
1066
1067                 if ($subop == "editSave") {
1068
1069                         $sql_exp = $_GET["s"];
1070                         $descr = $_GET["d"];
1071                         $label_id = db_escape_string($_GET["id"]);
1072                         
1073 //                      print "$sql_exp : $descr : $label_id";
1074                         
1075                         $result = db_query($link, "UPDATE ttrss_labels SET 
1076                                 sql_exp = '$sql_exp', 
1077                                 description = '$descr'
1078                                 WHERE id = '$label_id'");
1079                 }
1080
1081                 if ($subop == "remove") {
1082
1083                         if (!WEB_DEMO_MODE) {
1084
1085                                 $ids = split(",", $_GET["ids"]);
1086
1087                                 foreach ($ids as $id) {
1088                                         db_query($link, "DELETE FROM ttrss_labels WHERE id = '$id'");
1089                                         
1090                                 }
1091                         }
1092                 }
1093
1094                 if ($subop == "add") {
1095                 
1096                         if (!WEB_DEMO_MODE) {
1097
1098                                 $exp = $_GET["exp"];
1099                                         
1100                                 $result = db_query($link,
1101                                         "INSERT INTO ttrss_labels (sql_exp,description) 
1102                                                 VALUES ('$exp', '$exp')");
1103                         } 
1104                 }
1105
1106                 print "<table class=\"prefAddFeed\"><tr>
1107                         <td><input id=\"ladd_expr\"></td>";
1108                         
1109                 print"<td colspan=\"4\" align=\"right\">
1110                                 <a class=\"button\" href=\"javascript:addLabel()\">Add label</a></td></tr>
1111                 </table>";
1112
1113                 $result = db_query($link, "SELECT 
1114                                 id,sql_exp,description
1115                         FROM 
1116                                 ttrss_labels ORDER by description");
1117
1118                 print "<p><table width=\"100%\" class=\"prefLabelList\" id=\"prefLabelList\">";
1119
1120                 print "<tr class=\"title\">
1121                                         <td width=\"5%\">Select</td><td width=\"40%\">SQL expression</td>
1122                                         <td width=\"40%\">Caption</td></tr>";
1123                 
1124                 $lnum = 0;
1125                 
1126                 while ($line = db_fetch_assoc($result)) {
1127
1128                         $class = ($lnum % 2) ? "even" : "odd";
1129
1130                         $label_id = $line["id"];
1131                         $edit_label_id = $_GET["id"];
1132
1133                         if ($subop == "edit" && $label_id != $edit_label_id) {
1134                                 $class .= "Grayed";
1135                         }
1136
1137                         print "<tr class=\"$class\" id=\"LILRR-$label_id\">";
1138
1139                         $line["sql_exp"] = htmlspecialchars($line["sql_exp"]);
1140                         $line["description"] = htmlspecialchars($line["description"]);
1141
1142                         if (!$edit_label_id || $subop != "edit") {
1143
1144                                 if (!$line["description"]) $line["description"] = "[No caption]";
1145
1146                                 print "<td><input onclick='toggleSelectRow(this);' 
1147                                 type=\"checkbox\" id=\"LICHK-".$line["id"]."\"></td>";
1148
1149                                 print "<td><a href=\"javascript:editLabel($label_id);\">" . 
1150                                         $line["sql_exp"] . "</td>";             
1151                                         
1152                                 print "<td><a href=\"javascript:editLabel($label_id);\">" . 
1153                                         $line["description"] . "</td>";                 
1154
1155                         } else if ($label_id != $edit_label_id) {
1156
1157                                 if (!$line["description"]) $line["description"] = "[No description]";
1158
1159                                 print "<td><input disabled=\"true\" type=\"checkbox\" 
1160                                         id=\"LICHK-".$line["id"]."\"></td>";
1161
1162                                 print "<td>".$line["sql_exp"]."</td>";          
1163                                 print "<td>".$line["description"]."</td>";              
1164
1165                         } else {
1166
1167                                 print "<td><input disabled=\"true\" type=\"checkbox\"></td>";
1168
1169                                 print "<td><input id=\"iedit_expr\" value=\"".$line["sql_exp"].
1170                                         "\"></td>";
1171
1172                                 print "<td><input id=\"iedit_descr\" value=\"".$line["description"].
1173                                         "\"></td>";
1174                                                 
1175                         }
1176                                 
1177                         
1178                         print "</tr>";
1179
1180                         ++$lnum;
1181                 }
1182
1183                 if ($lnum == 0) {
1184                         print "<tr><td colspan=\"4\" align=\"center\">No labels defined.</td></tr>";
1185                 }
1186
1187                 print "</table>";
1188
1189                 print "<p>";
1190
1191                 if ($subop == "edit") {
1192                         print "Edit label:
1193                                 <input type=\"submit\" class=\"button\" 
1194                                         onclick=\"javascript:labelEditCancel()\" value=\"Cancel\">
1195                                 <input type=\"submit\" class=\"button\" 
1196                                         onclick=\"javascript:labelEditSave()\" value=\"Save\">";
1197                                         
1198                 } else {
1199
1200                         print "
1201                                 Selection:
1202                         <input type=\"submit\" class=\"button\" 
1203                                 onclick=\"javascript:editSelectedLabel()\" value=\"Edit\">
1204                         <input type=\"submit\" class=\"button\" 
1205                                 onclick=\"javascript:removeSelectedLabels()\" value=\"Remove\">";
1206                 }
1207         }
1208
1209         if ($op == "error") {
1210                 print "<div width=\"100%\" align='center'>";
1211                 $msg = $_GET["msg"];
1212                 print $msg;
1213                 print "</div>";
1214         }
1215
1216         db_close($link);
1217 ?>