]> git.wh0rd.org - tt-rss.git/blob - backend.php
fix preview display in headlines
[tt-rss.git] / backend.php
1 <?
2 session_start();
3
4 if ($_GET["debug"]) {
5 define('DEFAULT_ERROR_LEVEL', E_ALL);
6 } else {
7 define('DEFAULT_ERROR_LEVEL', E_ERROR | E_WARNING | E_PARSE);
8 }
9
10 error_reporting(DEFAULT_ERROR_LEVEL);
11
12 $op = $_REQUEST["op"];
13
14 if ((!$op || $op == "rpc" || $op == "globalUpdateFeeds") && !$_REQUEST["noxml"]) {
15 header("Content-Type: application/xml");
16 }
17
18 if (!$_SESSION["uid"] && $op != "globalUpdateFeeds") {
19
20 if ($op == "rpc") {
21 print "<error error-code=\"6\"/>";
22 }
23 exit;
24 }
25
26 if (!$op) {
27 print "<error error-code=\"7\"/>";
28 exit;
29 }
30
31 define('SCHEMA_VERSION', 2);
32
33 require_once "sanity_check.php";
34 require_once "config.php";
35 require_once "db.php";
36 require_once "db-prefs.php";
37 require_once "functions.php";
38 require_once "magpierss/rss_fetch.inc";
39
40 $script_started = getmicrotime();
41
42 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
43
44 if (!$link) {
45 if (DB_TYPE == "mysql") {
46 print mysql_error();
47 }
48 // PG seems to display its own errors just fine by default.
49 return;
50 }
51
52 if (DB_TYPE == "pgsql") {
53 pg_query("set client_encoding = 'utf-8'");
54 }
55
56 $fetch = $_GET["fetch"];
57
58 function getAllCounters($link) {
59 getLabelCounters($link);
60 getFeedCounters($link);
61 getTagCounters($link);
62 getGlobalCounters($link);
63 }
64
65 /* FIXME this needs reworking */
66
67 function getGlobalCounters($link) {
68 $result = db_query($link, "SELECT count(id) as c_id FROM ttrss_entries,ttrss_user_entries
69 WHERE unread = true AND
70 ttrss_user_entries.ref_id = ttrss_entries.id AND
71 owner_uid = " . $_SESSION["uid"]);
72 $c_id = db_fetch_result($result, 0, "c_id");
73 print "<counter id='global-unread' counter='$c_id'/>";
74 }
75
76 function getTagCounters($link) {
77
78 $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
79 FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
80 ttrss_user_entries.ref_id = ttrss_entries.id AND
81 ttrss_tags.owner_uid = ".$_SESSION["uid"]." AND
82 post_int_id = ttrss_user_entries.int_id AND unread = true GROUP BY tag_name
83 UNION
84 select tag_name,0 as count FROM ttrss_tags
85 WHERE ttrss_tags.owner_uid = ".$_SESSION["uid"]);
86
87 $tags = array();
88
89 while ($line = db_fetch_assoc($result)) {
90 $tags[$line["tag_name"]] += $line["count"];
91 }
92
93 foreach (array_keys($tags) as $tag) {
94 $unread = $tags[$tag];
95
96 $tag = htmlspecialchars($tag);
97 print "<tag id=\"$tag\" counter=\"$unread\"/>";
98 }
99 }
100
101 function getLabelCounters($link) {
102
103 $result = db_query($link, "SELECT count(id) as count FROM ttrss_entries,ttrss_user_entries
104 WHERE marked = true AND ttrss_user_entries.ref_id = ttrss_entries.id AND
105 unread = true AND owner_uid = ".$_SESSION["uid"]);
106
107 $count = db_fetch_result($result, 0, "count");
108
109 print "<label id=\"-1\" counter=\"$count\"/>";
110
111 $result = db_query($link, "SELECT owner_uid,id,sql_exp,description FROM
112 ttrss_labels WHERE owner_uid = ".$_SESSION["uid"]." ORDER by description");
113
114 while ($line = db_fetch_assoc($result)) {
115
116 $id = -$line["id"] - 11;
117
118 error_reporting (0);
119
120 $tmp_result = db_query($link, "SELECT count(id) as count FROM ttrss_user_entries,ttrss_entries
121 WHERE (" . $line["sql_exp"] . ") AND unread = true AND
122 ttrss_user_entries.ref_id = ttrss_entries.id AND
123 owner_uid = ".$_SESSION["uid"]);
124
125 $count = db_fetch_result($tmp_result, 0, "count");
126
127 print "<label id=\"$id\" counter=\"$count\"/>";
128
129 error_reporting (DEFAULT_ERROR_LEVEL);
130
131 }
132 }
133
134 function getFeedCounter($link, $id) {
135
136 $result = db_query($link, "SELECT
137 count(id) as count FROM ttrss_entries,ttrss_user_entries
138 WHERE feed_id = '$id' AND unread = true
139 AND ttrss_user_entries.ref_id = ttrss_entries.id");
140
141 $count = db_fetch_result($result, 0, "count");
142
143 print "<feed id=\"$id\" counter=\"$count\"/>";
144 }
145
146 function getFeedCounters($link) {
147
148 $result = db_query($link, "SELECT id,
149 (SELECT count(id)
150 FROM ttrss_entries,ttrss_user_entries
151 WHERE feed_id = ttrss_feeds.id AND ttrss_user_entries.ref_id = ttrss_entries.id
152 AND unread = true AND owner_uid = ".$_SESSION["uid"].") as count
153 FROM ttrss_feeds WHERE owner_uid = ".$_SESSION["uid"]);
154
155 while ($line = db_fetch_assoc($result)) {
156
157 $id = $line["id"];
158 $count = $line["count"];
159
160 print "<feed id=\"$id\" counter=\"$count\"/>";
161 }
162 }
163
164 function outputFeedList($link, $tags = false) {
165
166 print "<html><head>
167 <title>Tiny Tiny RSS : Feedlist</title>
168 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">";
169
170 $user_theme = $_SESSION["theme"];
171 if ($user_theme) {
172 print "<link rel=\"stylesheet\" type=\"text/css\"
173 href=\"themes/$user_theme/theme.css\">";
174 }
175
176 if (get_pref($link, 'USE_COMPACT_STYLESHEET')) {
177 print "<link rel=\"stylesheet\" type=\"text/css\"
178 href=\"tt-rss_compact.css\"/>";
179 } else {
180 print "<link title=\"Compact Stylesheet\" rel=\"alternate stylesheet\"
181 type=\"text/css\" href=\"tt-rss_compact.css\"/>";
182 }
183
184 print "<script type=\"text/javascript\" src=\"functions.js\"></script>
185 <script type=\"text/javascript\" src=\"feedlist.js\"></script>
186 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
187 </head><body onload=\"init()\">";
188
189 print "<ul class=\"feedList\" id=\"feedList\">";
190
191 $owner_uid = $_SESSION["uid"];
192
193 if (!$tags) {
194
195 /* virtual feeds */
196
197 if (get_pref($link, 'ENABLE_FEED_CATS')) {
198 print "<li class=\"feedCat\">Special</li>";
199 print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">";
200 }
201
202 $result = db_query($link, "SELECT count(id) as num_starred
203 FROM ttrss_entries,ttrss_user_entries
204 WHERE marked = true AND
205 ttrss_user_entries.ref_id = ttrss_entries.id AND
206 unread = true AND owner_uid = '$owner_uid'");
207 $num_starred = db_fetch_result($result, 0, "num_starred");
208
209 $class = "virt";
210
211 if ($num_starred > 0) $class .= "Unread";
212
213 printFeedEntry(-1, $class, "Starred articles", $num_starred,
214 "images/mark_set.png", $link);
215
216 if (get_pref($link, 'ENABLE_FEED_CATS')) {
217 print "</li></ul>";
218 }
219
220 if (get_pref($link, 'ENABLE_LABELS')) {
221
222 $result = db_query($link, "SELECT id,sql_exp,description FROM
223 ttrss_labels WHERE owner_uid = '$owner_uid' ORDER by description");
224
225 if (db_num_rows($result) > 0) {
226 if (get_pref($link, 'ENABLE_FEED_CATS')) {
227 print "<li class=\"feedCat\">Labels</li>";
228 print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">";
229 } else {
230 print "<li><hr></li>";
231 }
232 }
233
234 while ($line = db_fetch_assoc($result)) {
235
236 error_reporting (0);
237
238 $tmp_result = db_query($link, "SELECT count(id) as count FROM ttrss_entries,ttrss_user_entries
239 WHERE (" . $line["sql_exp"] . ") AND unread = true AND
240 ttrss_user_entries.ref_id = ttrss_entries.id
241 AND owner_uid = '$owner_uid'");
242
243 $count = db_fetch_result($tmp_result, 0, "count");
244
245 $class = "label";
246
247 if ($count > 0) {
248 $class .= "Unread";
249 }
250
251 error_reporting (DEFAULT_ERROR_LEVEL);
252
253 printFeedEntry(-$line["id"]-11,
254 $class, $line["description"], $count, "images/label.png", $link);
255
256 }
257
258 if (db_num_rows($result) > 0) {
259 if (get_pref($link, 'ENABLE_FEED_CATS')) {
260 print "</li></ul>";
261 }
262 }
263
264 }
265
266 // if (!get_pref($link, 'ENABLE_FEED_CATS')) {
267 print "<li><hr></li>";
268 // }
269
270 if (get_pref($link, 'ENABLE_FEED_CATS')) {
271 $order_by_qpart = "category,title";
272 } else {
273 $order_by_qpart = "title";
274 }
275
276 $result = db_query($link, "SELECT *,
277 (SELECT count(id) FROM ttrss_entries,ttrss_user_entries
278 WHERE feed_id = ttrss_feeds.id AND
279 ttrss_user_entries.ref_id = ttrss_entries.id AND
280 owner_uid = '$owner_uid') AS total,
281 (SELECT count(id) FROM ttrss_entries,ttrss_user_entries
282 WHERE feed_id = ttrss_feeds.id AND unread = true
283 AND ttrss_user_entries.ref_id = ttrss_entries.id
284 AND owner_uid = '$owner_uid') as unread,
285 (SELECT title FROM ttrss_feed_categories
286 WHERE id = cat_id) AS category
287 FROM ttrss_feeds WHERE owner_uid = '$owner_uid' ORDER BY $order_by_qpart");
288
289 $actid = $_GET["actid"];
290
291 /* real feeds */
292
293 $lnum = 0;
294
295 $total_unread = 0;
296
297 $category = "";
298
299 while ($line = db_fetch_assoc($result)) {
300
301 $feed = $line["title"];
302 $feed_id = $line["id"];
303
304 $subop = $_GET["subop"];
305
306 $total = $line["total"];
307 $unread = $line["unread"];
308
309 $tmp_category = $line["category"];
310
311 if (!$tmp_category) {
312 $tmp_category = "Uncategorized";
313 }
314
315 // $class = ($lnum % 2) ? "even" : "odd";
316
317 $class = "feed";
318
319 if ($unread > 0) $class .= "Unread";
320
321 if ($actid == $feed_id) {
322 $class .= "Selected";
323 }
324
325 $total_unread += $unread;
326
327 if ($category != $tmp_category && get_pref($link, 'ENABLE_FEED_CATS')) {
328
329 if ($category) {
330 print "</li></ul></li>";
331 }
332
333 $category = $tmp_category;
334
335 print "<li class=\"feedCat\">$category</li>";
336 print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">";
337 }
338
339 printFeedEntry($feed_id, $class, $feed, $unread,
340 "icons/$feed_id.ico", $link);
341
342 ++$lnum;
343 }
344
345 } else {
346
347 // tags
348
349 $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
350 FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
351 post_int_id = ttrss_user_entries.int_id AND
352 unread = true AND ref_id = ttrss_entries.id
353 AND ttrss_tags.owner_uid = '$owner_uid' GROUP BY tag_name
354 UNION
355 select tag_name,0 as count FROM ttrss_tags WHERE owner_uid = '$owner_uid'
356 ORDER BY tag_name");
357
358 $tags = array();
359
360 while ($line = db_fetch_assoc($result)) {
361 $tags[$line["tag_name"]] += $line["count"];
362 }
363
364 foreach (array_keys($tags) as $tag) {
365
366 $unread = $tags[$tag];
367
368 $class = "tag";
369
370 if ($unread > 0) {
371 $class .= "Unread";
372 }
373
374 printFeedEntry($tag, $class, $tag, $unread, "images/tag.png", $link);
375
376 }
377
378 }
379
380 if (db_num_rows($result) == 0) {
381 if ($tags) {
382 $what = "tags";
383 } else {
384 $what = "feeds";
385 }
386 print "<li>No $what to display.</li>";
387 }
388
389 print "</ul>";
390
391 print "<div class=\"invisible\" id=\"FEEDTU\">$total_unread</div>";
392
393 }
394
395
396 if ($op == "rpc") {
397
398 $subop = $_GET["subop"];
399
400 if ($subop == "getLabelCounters") {
401 $aid = $_GET["aid"];
402 print "<rpc-reply>";
403 getLabelCounters($link);
404 if ($aid) {
405 getFeedCounter($link, $aid);
406 }
407 print "</rpc-reply>";
408 }
409
410 if ($subop == "getFeedCounters") {
411 print "<rpc-reply>";
412 getFeedCounters($link);
413 print "</rpc-reply>";
414 }
415
416 if ($subop == "getAllCounters") {
417 print "<rpc-reply>";
418 getAllCounters($link);
419 print "</rpc-reply>";
420 }
421
422 if ($subop == "mark") {
423 $mark = $_GET["mark"];
424 $id = db_escape_string($_GET["id"]);
425
426 if ($mark == "1") {
427 $mark = "true";
428 } else {
429 $mark = "false";
430 }
431
432 // FIXME this needs collision testing
433
434 $result = db_query($link, "UPDATE ttrss_user_entries SET marked = $mark
435 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
436 }
437
438 if ($subop == "updateFeed") {
439 $feed_id = db_escape_string($_GET["feed"]);
440
441 $result = db_query($link,
442 "SELECT feed_url FROM ttrss_feeds WHERE id = '$feed_id'
443 AND owner_uid = " . $_SESSION["uid"]);
444
445 if (db_num_rows($result) > 0) {
446 $feed_url = db_fetch_result($result, 0, "feed_url");
447 update_rss_feed($link, $feed_url, $feed_id);
448 }
449
450 print "<rpc-reply>";
451 getFeedCounter($link, $feed_id);
452 print "</rpc-reply>";
453
454 return;
455 }
456
457 if ($subop == "forceUpdateAllFeeds" || $subop == "updateAllFeeds") {
458
459 update_all_feeds($link, $subop == "forceUpdateAllFeeds");
460
461 $omode = $_GET["omode"];
462
463 if (!$omode) $omode = "tfl";
464
465 print "<rpc-reply>";
466 if (strchr($omode, "l")) getLabelCounters($link);
467 if (strchr($omode, "f")) getFeedCounters($link);
468 if (strchr($omode, "t")) getTagCounters($link);
469 getGlobalCounters($link);
470 print "</rpc-reply>";
471 }
472
473 /* GET["cmode"] = 0 - mark as read, 1 - as unread, 2 - toggle */
474 if ($subop == "catchupSelected") {
475
476 $ids = split(",", $_GET["ids"]);
477
478 $cmode = sprintf("%d", $_GET["cmode"]);
479
480 foreach ($ids as $id) {
481
482 if ($cmode == 0) {
483 db_query($link, "UPDATE ttrss_user_entries SET
484 unread = false,last_read = NOW()
485 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
486 } else if ($cmode == 1) {
487 db_query($link, "UPDATE ttrss_user_entries SET
488 unread = true
489 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
490 } else {
491 db_query($link, "UPDATE ttrss_user_entries SET
492 unread = NOT unread,last_read = NOW()
493 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
494 }
495 }
496 print "<rpc-reply>";
497 getAllCounters($link);
498 print "</rpc-reply>";
499 }
500
501 if ($subop == "markSelected") {
502
503 $ids = split(",", $_GET["ids"]);
504
505 $cmode = sprintf("%d", $_GET["cmode"]);
506
507 foreach ($ids as $id) {
508
509 if ($cmode == 0) {
510 db_query($link, "UPDATE ttrss_user_entries SET
511 marked = false
512 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
513 } else if ($cmode == 1) {
514 db_query($link, "UPDATE ttrss_user_entries SET
515 marked = true
516 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
517 } else {
518 db_query($link, "UPDATE ttrss_user_entries SET
519 marked = NOT marked
520 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
521 }
522 }
523 print "<rpc-reply>";
524 getAllCounters($link);
525 print "</rpc-reply>";
526 }
527
528 if ($subop == "sanityCheck") {
529
530 $error_code = 0;
531
532 $result = db_query($link, "SELECT schema_version FROM ttrss_version");
533
534 $schema_version = db_fetch_result($result, 0, "schema_version");
535
536 if ($schema_version != SCHEMA_VERSION) {
537 $error_code = 5;
538 }
539
540 print "<error error-code='$error_code'/>";
541 }
542
543 if ($subop == "globalPurge") {
544
545 print "<rpc-reply>";
546 global_purge_old_posts($link, true);
547 print "</rpc-reply>";
548
549 }
550
551 }
552
553 if ($op == "feeds") {
554
555 $tags = $_GET["tags"];
556
557 $subop = $_GET["subop"];
558
559 if ($subop == "catchupAll") {
560 db_query($link, "UPDATE ttrss_user_entries SET
561 last_read = NOW(),unread = false WHERE owner_uid = " . $_SESSION["uid"]);
562 }
563
564 outputFeedList($link, $tags);
565
566 }
567
568 if ($op == "view") {
569
570 $id = $_GET["id"];
571 $feed_id = $_GET["feed"];
572
573 $result = db_query($link, "UPDATE ttrss_user_entries
574 SET unread = false,last_read = NOW()
575 WHERE ref_id = '$id' AND feed_id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
576
577 $addheader = $_GET["addheader"];
578
579 $result = db_query($link, "SELECT title,link,content,feed_id,comments,int_id,
580 (SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url
581 FROM ttrss_entries,ttrss_user_entries
582 WHERE id = '$id' AND ref_id = id");
583
584 if ($addheader) {
585 print "<html><head>
586 <title>Tiny Tiny RSS : Article $id</title>
587 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">";
588
589 $user_theme = $_SESSION["theme"];
590 if ($user_theme) {
591 print "<link rel=\"stylesheet\" type=\"text/css\"
592 href=\"themes/$user_theme/theme.css\">";
593 }
594
595 if (get_pref($link, 'USE_COMPACT_STYLESHEET')) {
596 print "<link rel=\"stylesheet\" type=\"text/css\"
597 href=\"tt-rss_compact.css\"/>";
598 } else {
599 print "<link title=\"Compact Stylesheet\" rel=\"alternate stylesheet\"
600 type=\"text/css\" href=\"tt-rss_compact.css\"/>";
601 }
602
603 print "<script type=\"text/javascript\" src=\"functions.js\"></script>
604 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
605 </head><body>";
606 }
607
608 if ($result) {
609
610 $line = db_fetch_assoc($result);
611
612 if ($line["icon_url"]) {
613 $feed_icon = "<img class=\"feedIcon\" src=\"" . $line["icon_url"] . "\">";
614 } else {
615 $feed_icon = "&nbsp;";
616 }
617
618 if ($line["comments"] && $line["link"] != $line["comments"]) {
619 $entry_comments = "(<a href=\"".$line["comments"]."\">Comments</a>)";
620 } else {
621 $entry_comments = "";
622 }
623
624 print "<div class=\"postReply\">";
625
626 print "<div class=\"postHeader\"><table width=\"100%\">";
627
628 print "<tr><td colspan='2'>" . $line["title"] . "</td></tr>";
629
630 $tmp_result = db_query($link, "SELECT DISTINCT tag_name FROM
631 ttrss_tags WHERE post_int_id = " . $line["int_id"] . "
632 ORDER BY tag_name");
633
634 $tags_str = "";
635
636 while ($tmp_line = db_fetch_assoc($tmp_result)) {
637 $tag = $tmp_line["tag_name"];
638 $tags_str .= "<a href=\"javascript:parent.viewfeed('$tag')\">$tag</a>, ";
639 }
640
641 $tags_str = preg_replace("/, $/", "", $tags_str);
642
643 print "<tr><td width='50%'>
644 <a href=\"" . $line["link"] . "\">".$line["link"]."</a>
645 $entry_comments</td>
646 <td align=\"right\">$tags_str</td></tr>";
647
648 /* if ($tags_str) {
649 print "<tr><td><b>Tags:</b></td>
650 <td width='100%'>$tags_str</td></tr>";
651 } */
652
653 print "</table></div>";
654
655 print "<div class=\"postIcon\">" . $feed_icon . "</div>";
656 print "<div class=\"postContent\">" . $line["content"] . "</div>";
657
658 print "</div>";
659
660 print "<script type=\"text/javascript\">
661 update_all_counters('$feed_id');
662 </script>";
663 }
664
665 if ($addheader) {
666 print "</body></html>";
667 }
668 }
669
670 if ($op == "viewfeed") {
671
672 $feed = $_GET["feed"];
673 $skip = $_GET["skip"];
674 $subop = $_GET["subop"];
675 $view_mode = $_GET["view"];
676 $addheader = $_GET["addheader"];
677 $limit = $_GET["limit"];
678
679 if (!$feed) {
680 return;
681 }
682
683 if (!$skip) $skip = 0;
684
685 if ($subop == "undefined") $subop = "";
686
687 if ($addheader) {
688 print "<html><head>
689 <title>Tiny Tiny RSS : Feed $feed</title>
690 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">";
691
692 $user_theme = $_SESSION["theme"];
693 if ($user_theme) {
694 print "<link rel=\"stylesheet\" type=\"text/css\"
695 href=\"themes/$user_theme/theme.css\">";
696 }
697
698 if (get_pref($link, 'USE_COMPACT_STYLESHEET')) {
699 print "<link rel=\"stylesheet\"
700 type=\"text/css\" href=\"tt-rss_compact.css\"/>";
701
702 } else {
703 print "<link title=\"Compact Stylesheet\" rel=\"alternate stylesheet\"
704 type=\"text/css\" href=\"tt-rss_compact.css\"/>";
705 }
706
707 print "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
708 <script type=\"text/javascript\" src=\"functions.js\"></script>
709 <script type=\"text/javascript\" src=\"viewfeed.js\"></script>
710 </head><body onload='init()'>";
711 }
712
713 if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0) {
714
715 $tmp_result = db_query($link, "SELECT feed_url FROM ttrss_feeds
716 WHERE id = '$feed'");
717
718 $feed_url = db_fetch_result($tmp_result, 0, "feed_url");
719
720 update_rss_feed($link, $feed_url, $feed);
721
722 }
723
724 if ($subop == "MarkAllRead") {
725
726 if (sprintf("%d", $feed) != 0) {
727
728 if ($feed > 0) {
729 db_query($link, "UPDATE ttrss_user_entries
730 SET unread = false,last_read = NOW()
731 WHERE feed_id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
732
733 } else if ($feed < 0 && $feed > -10) { // special, like starred
734
735 if ($feed == -1) {
736 db_query($link, "UPDATE ttrss_user_entries
737 SET unread = false,last_read = NOW()
738 WHERE marked = true AND owner_uid = ".$_SESSION["uid"]);
739 }
740
741 } else if ($feed < -10) { // label
742
743 // TODO make this more efficient
744
745 $label_id = -$feed - 11;
746
747 $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
748 WHERE id = '$label_id'");
749
750 if ($tmp_result) {
751 $sql_exp = db_fetch_result($tmp_result, 0, "sql_exp");
752
753 db_query($link, "BEGIN");
754
755 $tmp2_result = db_query($link,
756 "SELECT
757 int_id
758 FROM
759 ttrss_user_entries,ttrss_entries
760 WHERE
761 ref_id = id AND
762 $sql_exp AND
763 owner_uid = " . $_SESSION["uid"]);
764
765 while ($tmp_line = db_fetch_assoc($tmp2_result)) {
766 db_query($link, "UPDATE
767 ttrss_user_entries
768 SET
769 unread = false, last_read = NOW()
770 WHERE
771 int_id = " . $tmp_line["int_id"]);
772 }
773
774 db_query($link, "COMMIT");
775
776 /* db_query($link, "UPDATE ttrss_user_entries,ttrss_entries
777 SET unread = false,last_read = NOW()
778 WHERE $sql_exp
779 AND ref_id = id
780 AND owner_uid = ".$_SESSION["uid"]); */
781 }
782 }
783 } else { // tag
784 db_query($link, "BEGIN");
785
786 $tag_name = db_escape_string($feed);
787
788 $result = db_query($link, "SELECT post_int_id FROM ttrss_tags
789 WHERE tag_name = '$tag_name' AND owner_uid = " . $_SESSION["uid"]);
790
791 while ($line = db_fetch_assoc($result)) {
792 db_query($link, "UPDATE ttrss_user_entries SET
793 unread = false, last_read = NOW()
794 WHERE int_id = " . $line["post_int_id"]);
795 }
796 db_query($link, "COMMIT");
797 }
798
799 }
800
801 $search = $_GET["search"];
802
803 $search_mode = $_GET["smode"];
804
805 if ($search) {
806 $search_query_part = "(upper(title) LIKE upper('%$search%')
807 OR content LIKE '%$search%') AND";
808 } else {
809 $search_query_part = "";
810 }
811
812 $view_query_part = "";
813
814 if ($view_mode == "Starred") {
815 $view_query_part = " marked = true AND ";
816 }
817
818 if ($view_mode == "Unread") {
819 $view_query_part = " unread = true AND ";
820 }
821
822 if ($view_mode == "Unread or Starred") {
823 $view_query_part = " (unread = true OR marked = true) AND ";
824 }
825
826 if ($view_mode == "Unread or Updated") {
827 $view_query_part = " (unread = true OR last_read is NULL) AND ";
828 }
829
830 /* $result = db_query($link, "SELECT count(id) AS total_entries
831 FROM ttrss_entries WHERE
832 $search_query_part
833 feed_id = '$feed'");
834
835 $total_entries = db_fetch_result($result, 0, "total_entries"); */
836
837 /* $result = db_query("SELECT count(id) AS unread_entries
838 FROM ttrss_entries WHERE
839 $search_query_part
840 unread = true AND
841 feed_id = '$feed'");
842
843 $unread_entries = db_fetch_result($result, 0, "unread_entries"); */
844
845 if ($limit && $limit != "All") {
846 $limit_query_part = "LIMIT " . $limit;
847 }
848
849 $vfeed_query_part = "";
850
851 // override query strategy and enable feed display when searching globally
852 if ($search && $search_mode == "All feeds") {
853 $query_strategy_part = "id > 0";
854 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
855 id = feed_id) as feed_title,";
856 } else if (sprintf("%d", $feed) == 0) {
857 $query_strategy_part = "ttrss_entries.id > 0";
858 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
859 id = feed_id) as feed_title,";
860 } else if ($feed >= 0) {
861 $query_strategy_part = "feed_id = '$feed'";
862 } else if ($feed == -1) { // starred virtual feed
863 $query_strategy_part = "marked = true";
864 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
865 id = feed_id) as feed_title,";
866 } else if ($feed <= -10) { // labels
867 $label_id = -$feed - 11;
868
869 $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
870 WHERE id = '$label_id'");
871
872 $query_strategy_part = db_fetch_result($tmp_result, 0, "sql_exp");
873
874 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
875 id = feed_id) as feed_title,";
876 } else {
877 $query_strategy_part = "id > 0"; // dumb
878 }
879
880 $order_by = "updated DESC";
881
882 // if ($feed < -10) {
883 // $order_by = "feed_id,updated DESC";
884 // }
885
886 $feed_title = "";
887
888 if ($search && $search_mode == "All feeds") {
889 $feed_title = "Search results";
890 } else if (sprintf("%d", $feed) == 0) {
891 $feed_title = $feed;
892 } else if ($feed > 0) {
893 $result = db_query($link, "SELECT title,site_url FROM ttrss_feeds
894 WHERE id = '$feed'");
895
896 $feed_title = db_fetch_result($result, 0, "title");
897 $feed_site_url = db_fetch_result($result, 0, "site_url");
898
899 } else if ($feed == -1) {
900 $feed_title = "Starred articles";
901 } else if ($feed < -10) {
902 $label_id = -$feed - 11;
903 $result = db_query($link, "SELECT description FROM ttrss_labels
904 WHERE id = '$label_id'");
905 $feed_title = db_fetch_result($result, 0, "description");
906 } else {
907 $feed_title = "?";
908 }
909
910 print "<table class=\"headlinesSubToolbar\"
911 width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tr>";
912
913 print "<td class=\"headlineActions\">
914 Select:
915 <a href=\"javascript:selectTableRowsByIdPrefix('headlinesList',
916 'RROW-', 'RCHK-', true)\">All</a>,
917 <a href=\"javascript:selectTableRowsByIdPrefix('headlinesList',
918 'RROW-', 'RCHK-', true, 'Unread')\">Unread</a>,
919 <a href=\"javascript:selectTableRowsByIdPrefix('headlinesList',
920 'RROW-', 'RCHK-', false)\">None</a>
921 &nbsp;&nbsp;
922 Toggle: <a href=\"javascript:toggleUnread()\">Unread</a>,
923 <a href=\"javascript:toggleStarred()\">Starred</a>";
924
925 /* print "&nbsp;&nbsp;
926 View:
927 <a href=\"javascript:limitView('All')\">All</a>,
928 <a href=\"javascript:limitView('Unread')\">Unread</a>,
929 <a href=\"javascript:limitView('Starred')\">Starred</a>
930 &nbsp;&nbsp;
931 Feed:
932 <a href=\"javascript:updateCurrentFeed()\">Update</a>,
933 <a href=\"javascript:catchupCurrentFeed()\">Mark as read</a>"; */
934
935 print "</td>";
936
937 print "<td class=\"headlineTitle\">";
938
939 if ($feed_site_url) {
940 print "<a href=\"$feed_site_url\">$feed_title</a>";
941 } else {
942 print $feed_title;
943 }
944
945 print "</td>";
946 print "</tr></table>";
947
948 print "<table class=\"headlinesList\" id=\"headlinesList\"
949 cellspacing=\"0\" width=\"100%\">";
950
951
952 if ($feed < -10) error_reporting (0);
953
954 if (sprintf("%d", $feed) != 0) {
955
956 if ($feed > 0) {
957 $feed_kind = "Feeds";
958 } else {
959 $feed_kind = "Labels";
960 }
961
962 $result = db_query($link, "SELECT
963 id,title,
964 SUBSTRING(updated,1,16) as updated,
965 unread,feed_id,marked,link,last_read,
966 SUBSTRING(last_read,1,19) as last_read_noms,
967 $vfeed_query_part
968 SUBSTRING(updated,1,19) as updated_noms,
969 content as content_preview
970 FROM
971 ttrss_entries,ttrss_user_entries
972 WHERE
973 ttrss_user_entries.ref_id = ttrss_entries.id AND
974 owner_uid = '".$_SESSION["uid"]."' AND
975 $search_query_part
976 $view_query_part
977 $query_strategy_part ORDER BY $order_by
978 $limit_query_part");
979
980 } else {
981 // browsing by tag
982
983 $feed_kind = "Tags";
984
985 $result = db_query($link, "SELECT
986 ttrss_entries.id as id,title,
987 SUBSTRING(updated,1,16) as updated,
988 unread,feed_id,
989 marked,link,last_read,
990 SUBSTRING(last_read,1,19) as last_read_noms,
991 $vfeed_query_part
992 SUBSTRING(updated,1,19) as updated_noms,
993 content
994 FROM
995 ttrss_entries,ttrss_user_entries,ttrss_tags
996 WHERE
997 ref_id = ttrss_entries.id AND
998 ttrss_user_entries.owner_uid = '".$_SESSION["uid"]."' AND
999 post_int_id = int_id AND tag_name = '$feed' AND
1000 $view_query_part
1001 $search_query_part
1002 $query_strategy_part ORDER BY $order_by
1003 $limit_query_part");
1004 }
1005
1006 if (!$result) {
1007 print "<tr><td colspan='4' align='center'>
1008 Could not display feed (query failed). Please check match syntax or local configuration.</td></tr>";
1009 return;
1010 }
1011
1012 $lnum = 0;
1013
1014 error_reporting (DEFAULT_ERROR_LEVEL);
1015
1016 $num_unread = 0;
1017
1018 while ($line = db_fetch_assoc($result)) {
1019
1020 $class = ($lnum % 2) ? "even" : "odd";
1021
1022 $id = $line["id"];
1023 $feed_id = $line["feed_id"];
1024
1025 if ($line["last_read"] == "" &&
1026 ($line["unread"] != "t" && $line["unread"] != "1")) {
1027
1028 $update_pic = "<img id='FUPDPIC-$id' src=\"images/updated.png\"
1029 alt=\"Updated\">";
1030 } else {
1031 $update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.gif\"
1032 alt=\"Updated\">";
1033 }
1034
1035 if ($line["unread"] == "t" || $line["unread"] == "1") {
1036 $class .= "Unread";
1037 ++$num_unread;
1038 }
1039
1040 if ($line["marked"] == "t" || $line["marked"] == "1") {
1041 $marked_pic = "<img id=\"FMARKPIC-$id\" src=\"images/mark_set.png\"
1042 alt=\"Reset mark\" onclick='javascript:toggleMark($id, false)'>";
1043 } else {
1044 $marked_pic = "<img id=\"FMARKPIC-$id\" src=\"images/mark_unset.png\"
1045 alt=\"Set mark\" onclick='javascript:toggleMark($id, true)'>";
1046 }
1047
1048 $content_link = "<a id=\"FTITLE-$id\" href=\"javascript:view($id,$feed_id);\">" .
1049 $line["title"] . "</a>";
1050
1051 print "<tr class='$class' id='RROW-$id'>";
1052 // onclick=\"javascript:view($id,$feed_id)\">
1053
1054 print "<td valign='center' class='hlUpdatePic'>$update_pic</td>";
1055
1056 print "<td valign='center' class='hlSelectRow'>
1057 <input type=\"checkbox\" onclick=\"toggleSelectRow(this)\"
1058 class=\"feedCheckBox\" id=\"RCHK-$id\">
1059 </td>";
1060
1061 print "<td valign='center' class='hlMarkedPic'>$marked_pic</td>";
1062
1063 if ($line["feed_title"]) {
1064 print "<td class='hlContent'>$content_link</td>";
1065 print "<td class='hlFeed'>
1066 <a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a></td>";
1067 } else {
1068 print "<td class='hlContent'>$content_link";
1069 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
1070 $content_preview = truncate_string(strip_tags($line["content_preview"]),
1071 101);
1072
1073 print "<span class=\"contentPreview\"> - $content_preview</span>";
1074 }
1075 print "</td>";
1076 }
1077
1078 $updated_fmt = date("M d, G:i", strtotime($line["updated"]));
1079 print "<td class=\"hlUpdated\"><nobr>$updated_fmt</nobr></td>";
1080
1081 print "</tr>";
1082
1083 ++$lnum;
1084 }
1085
1086 if ($lnum == 0) {
1087 print "<tr><td align='center'>No articles found.</td></tr>";
1088 }
1089
1090 print "</table>";
1091
1092 print "<script type=\"text/javascript\">
1093 document.onkeydown = hotkey_handler;
1094 update_all_counters('$feed');
1095 </script>";
1096
1097 if ($addheader) {
1098 print "</body></html>";
1099 }
1100
1101 }
1102
1103 if ($op == "pref-rpc") {
1104
1105 $subop = $_GET["subop"];
1106
1107 if ($subop == "unread") {
1108 $ids = split(",", $_GET["ids"]);
1109 foreach ($ids as $id) {
1110 db_query($link, "UPDATE ttrss_user_entries SET unread = true
1111 WHERE feed_id = '$id' AND owner_uid = ".$_SESSION["uid"]);
1112 }
1113
1114 print "Marked selected feeds as unread.";
1115 }
1116
1117 if ($subop == "read") {
1118 $ids = split(",", $_GET["ids"]);
1119 foreach ($ids as $id) {
1120 db_query($link, "UPDATE ttrss_user_entries
1121 SET unread = false,last_read = NOW() WHERE
1122 feed_id = '$id' AND owner_uid = ".$_SESSION["uid"]);
1123 }
1124
1125 print "Marked selected feeds as read.";
1126
1127 }
1128
1129 }
1130
1131 if ($op == "pref-feeds") {
1132
1133 $subop = $_GET["subop"];
1134
1135 if ($subop == "editSave") {
1136 $feed_title = db_escape_string($_GET["t"]);
1137 $feed_link = db_escape_string($_GET["l"]);
1138 $upd_intl = db_escape_string($_GET["ui"]);
1139 $purge_intl = db_escape_string($_GET["pi"]);
1140 $feed_id = db_escape_string($_GET["id"]);
1141 $cat_id = db_escape_string($_GET["catid"]);
1142
1143 if (strtoupper($upd_intl) == "DEFAULT")
1144 $upd_intl = 0;
1145
1146 if (strtoupper($purge_intl) == "DEFAULT")
1147 $purge_intl = 0;
1148
1149 if (strtoupper($purge_intl) == "DISABLED")
1150 $purge_intl = -1;
1151
1152 if ($cat_id != 0) {
1153 $category_qpart = "cat_id = '$cat_id'";
1154 } else {
1155 $category_qpart = 'cat_id = NULL';
1156 }
1157
1158 $result = db_query($link, "UPDATE ttrss_feeds SET
1159 $category_qpart,
1160 title = '$feed_title', feed_url = '$feed_link',
1161 update_interval = '$upd_intl',
1162 purge_interval = '$purge_intl'
1163 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
1164
1165 }
1166
1167 if ($subop == "remove") {
1168
1169 if (!WEB_DEMO_MODE) {
1170
1171 $ids = split(",", $_GET["ids"]);
1172
1173 foreach ($ids as $id) {
1174 db_query($link, "DELETE FROM ttrss_feeds
1175 WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
1176
1177 $icons_dir = ICONS_DIR;
1178
1179 if (file_exists($icons_dir . "/$id.ico")) {
1180 unlink($icons_dir . "/$id.ico");
1181 }
1182 }
1183 }
1184 }
1185
1186 if ($subop == "add") {
1187
1188 if (!WEB_DEMO_MODE) {
1189
1190 $feed_link = db_escape_string(trim($_GET["link"]));
1191
1192 $result = db_query($link,
1193 "SELECT id FROM ttrss_feeds
1194 WHERE feed_url = '$feed_link' AND owner_uid = ".$_SESSION["uid"]);
1195
1196 if (db_num_rows($result) == 0) {
1197
1198 $result = db_query($link,
1199 "INSERT INTO ttrss_feeds (owner_uid,feed_url,title)
1200 VALUES ('".$_SESSION["uid"]."', '$feed_link', '')");
1201
1202 $result = db_query($link,
1203 "SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_link'
1204 AND owner_uid = " . $_SESSION["uid"]);
1205
1206 $feed_id = db_fetch_result($result, 0, "id");
1207
1208 if ($feed_id) {
1209 update_rss_feed($link, $feed_link, $feed_id);
1210 }
1211 } else {
1212
1213 print "<div class=\"warning\">
1214 Feed <b>$feed_link</b> already exists in the database.
1215 </div>";
1216 }
1217 }
1218 }
1219
1220 if ($subop == "addCat") {
1221
1222 if (!WEB_DEMO_MODE) {
1223
1224 $feed_cat = db_escape_string(trim($_GET["cat"]));
1225
1226 $result = db_query($link,
1227 "SELECT id FROM ttrss_feed_categories
1228 WHERE title = '$feed_cat' AND owner_uid = ".$_SESSION["uid"]);
1229
1230 if (db_num_rows($result) == 0) {
1231
1232 $result = db_query($link,
1233 "INSERT INTO ttrss_feed_categories (owner_uid,title)
1234 VALUES ('".$_SESSION["uid"]."', '$feed_cat')");
1235
1236 } else {
1237
1238 print "<div class=\"warning\">
1239 Category <b>$feed_cat</b> already exists in the database.
1240 </div>";
1241 }
1242
1243
1244 }
1245 }
1246
1247 if ($subop == "removeCats") {
1248
1249 if (!WEB_DEMO_MODE) {
1250
1251 $ids = split(",", $_GET["ids"]);
1252
1253 foreach ($ids as $id) {
1254
1255 db_query($link, "BEGIN");
1256
1257 $result = db_query($link,
1258 "SELECT count(id) as num_feeds FROM ttrss_feeds
1259 WHERE cat_id = '$id'");
1260
1261 $num_feeds = db_fetch_result($result, 0, "num_feeds");
1262
1263 if ($num_feeds == 0) {
1264 db_query($link, "DELETE FROM ttrss_feed_categories
1265 WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
1266 } else {
1267
1268 print "<div class=\"warning\">
1269 Unable to delete non empty feed categories.</div>";
1270
1271 }
1272
1273 db_query($link, "COMMIT");
1274 }
1275 }
1276 }
1277
1278 // print "<h3>Edit Feeds</h3>";
1279
1280 $result = db_query($link, "SELECT id,title,feed_url,last_error
1281 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
1282
1283 if (db_num_rows($result) > 0) {
1284
1285 print "<div class=\"warning\">";
1286
1287 print "<b>Feeds with update errors:</b>";
1288
1289 print "<ul class=\"nomarks\">";
1290
1291 while ($line = db_fetch_assoc($result)) {
1292 print "<li>" . $line["title"] . " (" . $line["feed_url"] . "): " .
1293 $line["last_error"];
1294 }
1295
1296 print "</ul>";
1297 print "</div>";
1298
1299 }
1300
1301 print "<p><div class=\"prefGenericAddBox\">
1302 <input id=\"fadd_link\" size=\"40\">&nbsp;<input
1303 type=\"submit\" class=\"button\"
1304 onclick=\"javascript:addFeed()\" value=\"Add feed\"></div>";
1305
1306 $feeds_sort = db_escape_string($_GET["sort"]);
1307
1308 if (!$feeds_sort || $feeds_sort == "undefined") {
1309 $feeds_sort = $_SESSION["pref_sort_feeds"];
1310 if (!$feeds_sort) $feeds_sort = "title";
1311 }
1312
1313 $_SESSION["pref_sort_feeds"] = $feeds_sort;
1314
1315 $result = db_query($link, "SELECT
1316 id,title,feed_url,substring(last_updated,1,16) as last_updated,
1317 update_interval,purge_interval,
1318 (SELECT title FROM ttrss_feed_categories
1319 WHERE id = cat_id) AS category
1320 FROM
1321 ttrss_feeds WHERE owner_uid = '".$_SESSION["uid"]."'
1322 ORDER by $feeds_sort,title");
1323
1324 if (db_num_rows($result) != 0) {
1325
1326 print "<div id=\"infoBoxShadow\"><div id=\"infoBox\">PLACEHOLDER</div></div>";
1327
1328 print "<p><table width=\"100%\" class=\"prefFeedList\" id=\"prefFeedList\">";
1329 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
1330 Select:
1331 <a href=\"javascript:selectTableRowsByIdPrefix('prefFeedList',
1332 'FEEDR-', 'FRCHK-', true)\">All</a>,
1333 <a href=\"javascript:selectTableRowsByIdPrefix('prefFeedList',
1334 'FEEDR-', 'FRCHK-', false)\">None</a>
1335 </td</tr>";
1336
1337 print "<tr class=\"title\">
1338 <td width=\"3%\">&nbsp;</td>
1339 <td width=\"3%\">Select</td>
1340 <td width=\"20%\">
1341 <a href=\"javascript:updateFeedList('title')\">Title</a></td>
1342 <td width=\"20%\">
1343 <a href=\"javascript:updateFeedList('feed_url')\">Link</a>
1344 </td>";
1345
1346 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1347 print "<td width=\"10%\">
1348 <a href=\"javascript:updateFeedList('category')\">Category</a></td>";
1349 }
1350
1351 print "
1352 <td width=\"10%\">
1353 <a href=\"javascript:updateFeedList('update_interval')\">Update Interval</a>
1354 </td>
1355 <td width=\"10%\">
1356 <a href=\"javascript:updateFeedList('purge_interval')\">Purge Days</a>
1357 </td>
1358 </tr>";
1359
1360 $lnum = 0;
1361
1362 while ($line = db_fetch_assoc($result)) {
1363
1364 $class = ($lnum % 2) ? "even" : "odd";
1365
1366 $feed_id = $line["id"];
1367
1368 $edit_feed_id = $_GET["id"];
1369
1370 if ($subop == "edit" && $feed_id != $edit_feed_id) {
1371 $class .= "Grayed";
1372 $this_row_id = "";
1373 } else {
1374 $this_row_id = "id=\"FEEDR-$feed_id\"";
1375 }
1376
1377 print "<tr class=\"$class\" $this_row_id>";
1378
1379 $icon_file = ICONS_DIR . "/$feed_id.ico";
1380
1381 if (file_exists($icon_file) && filesize($icon_file) > 0) {
1382 $feed_icon = "<img width=\"16\" height=\"16\"
1383 src=\"" . ICONS_URL . "/$feed_id.ico\">";
1384 } else {
1385 $feed_icon = "&nbsp;";
1386 }
1387 print "<td align='center'>$feed_icon</td>";
1388
1389 $edit_title = htmlspecialchars(db_unescape_string($line["title"]));
1390 $edit_link = htmlspecialchars(db_unescape_string($line["feed_url"]));
1391 $edit_cat = htmlspecialchars(db_unescape_string($line["category"]));
1392
1393 if (!$edit_cat) $edit_cat = "Uncategorized";
1394
1395 if (!$edit_feed_id || $subop != "edit") {
1396
1397 print "<td><input onclick='toggleSelectRow(this);'
1398 type=\"checkbox\" id=\"FRCHK-".$line["id"]."\"></td>";
1399
1400 $edit_title = truncate_string($edit_title, 40);
1401 $edit_link = truncate_string($edit_link, 60);
1402
1403 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
1404 $edit_title . "</a></td>";
1405
1406 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
1407 $edit_link . "</a></td>";
1408
1409 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1410 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
1411 $edit_cat . "</a></td>";
1412 }
1413
1414 if ($line["update_interval"] == "0")
1415 $line["update_interval"] = "Default";
1416
1417 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
1418 $line["update_interval"] . "</a></td>";
1419
1420 if ($line["purge_interval"] == "0")
1421 $line["purge_interval"] = "Default";
1422
1423 if ($line["purge_interval"] < 0)
1424 $line["purge_interval"] = "Disabled";
1425
1426 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
1427 $line["purge_interval"] . "</a></td>";
1428
1429 } else if ($feed_id != $edit_feed_id) {
1430
1431 print "<td><input disabled=\"true\" type=\"checkbox\"
1432 id=\"FRCHK-".$line["id"]."\"></td>";
1433
1434 $edit_title = truncate_string($edit_title, 40);
1435 $edit_link = truncate_string($edit_link, 60);
1436
1437 print "<td>$edit_title</td>";
1438 print "<td>$edit_link</td>";
1439
1440 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1441 print "<td>$edit_cat</td>";
1442 }
1443
1444 if ($line["update_interval"] == "0")
1445 $line["update_interval"] = "Default";
1446
1447 print "<td>" . $line["update_interval"] . "</td>";
1448
1449 if ($line["purge_interval"] == "0")
1450 $line["purge_interval"] = "Default";
1451
1452 if ($line["purge_interval"] < 0)
1453 $line["purge_interval"] = "Disabled";
1454
1455 print "<td>" . $line["purge_interval"] . "</td>";
1456
1457 } else {
1458
1459 print "<td><input disabled=\"true\" type=\"checkbox\" checked></td>";
1460
1461 print "<td><input id=\"iedit_title\" value=\"$edit_title\"></td>";
1462 print "<td><input id=\"iedit_link\" value=\"$edit_link\"></td>";
1463
1464 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1465
1466 print "<td>";
1467 print "<select id=\"iedit_fcat\">";
1468 print "<option id=\"0\">Uncategorized</option>";
1469
1470 $tmp_result = db_query($link, "SELECT id,title FROM ttrss_feed_categories
1471 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
1472
1473 if (db_num_rows($tmp_result) > 0) {
1474 print "<option disabled>--------</option>";
1475 }
1476
1477 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1478 if ($tmp_line["id"] == $line["cat_id"]) {
1479 $is_selected = "selected";
1480 } else {
1481 $is_selected = "";
1482 }
1483 printf("<option $is_selected id='%d'>%s</option>",
1484 $tmp_line["id"], $tmp_line["title"]);
1485 }
1486
1487 print "</select></td>";
1488 print "</td>";
1489
1490 }
1491
1492 print "<td><input id=\"iedit_updintl\"
1493 value=\"".$line["update_interval"]."\"></td>";
1494 print "<td><input id=\"iedit_purgintl\"
1495 value=\"".$line["purge_interval"]."\"></td>";
1496
1497 }
1498
1499 /* if (!$line["last_updated"]) $line["last_updated"] = "Never";
1500
1501 print "<td>" . $line["last_updated"] . "</td>"; */
1502
1503 print "</tr>";
1504
1505 ++$lnum;
1506 }
1507
1508 print "</table>";
1509
1510 print "<p>";
1511
1512 if ($subop == "edit") {
1513 print "Edit feed:&nbsp;
1514 <input type=\"submit\" class=\"button\"
1515 onclick=\"javascript:feedEditCancel()\" value=\"Cancel\">
1516 <input type=\"submit\" class=\"button\"
1517 onclick=\"javascript:feedEditSave()\" value=\"Save\">";
1518 } else {
1519
1520 print "
1521 Selection:&nbsp;
1522 <input type=\"submit\" class=\"button\"
1523 onclick=\"javascript:selectedFeedDetails()\" value=\"Details\">
1524 <input type=\"submit\" class=\"button\"
1525 onclick=\"javascript:editSelectedFeed()\" value=\"Edit\">
1526 <input type=\"submit\" class=\"button\"
1527 onclick=\"javascript:removeSelectedFeeds()\" value=\"Remove\">";
1528
1529 if (get_pref($link, 'ENABLE_PREFS_CATCHUP_UNCATCHUP')) {
1530 print "
1531 <input type=\"submit\" class=\"button\"
1532 onclick=\"javascript:readSelectedFeeds(true)\" value=\"Mark as read\">
1533 <input type=\"submit\" class=\"button\"
1534 onclick=\"javascript:readSelectedFeeds(false)\"
1535 value=\"Mark as unread\">&nbsp;";
1536 }
1537
1538 print "
1539 All feeds: <input type=\"submit\"
1540 class=\"button\" onclick=\"gotoExportOpml()\"
1541 value=\"Export OPML\">";
1542 }
1543 } else {
1544
1545 print "<p>No feeds defined.</p>";
1546
1547 }
1548
1549 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1550
1551 print "<h3>Edit Categories</h3>";
1552
1553 // print "<h3>Categories</h3>";
1554
1555 print "<div class=\"prefGenericAddBox\">
1556 <input id=\"fadd_cat\" size=\"40\">&nbsp;<input
1557 type=\"submit\" class=\"button\"
1558 onclick=\"javascript:addFeedCat()\" value=\"Add category\"></div>";
1559
1560 $result = db_query($link, "SELECT title,id FROM ttrss_feed_categories
1561 WHERE owner_uid = ".$_SESSION["uid"]."
1562 ORDER BY title");
1563
1564 if (db_num_rows($result) != 0) {
1565
1566 print "<p><table width=\"100%\" class=\"prefFeedCatList\"
1567 id=\"prefFeedCatList\">";
1568
1569 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
1570 Select:
1571 <a href=\"javascript:selectTableRowsByIdPrefix('prefFeedCatList',
1572 'FCATR-', 'FCCHK-', true)\">All</a>,
1573 <a href=\"javascript:selectTableRowsByIdPrefix('prefFeedCatList',
1574 'FCATR-', 'FCCHK-', false)\">None</a>
1575 </td</tr>";
1576
1577 print "<tr class=\"title\">
1578 <td width=\"10%\">Select</td><td width=\"80%\">Title</td>
1579 </tr>";
1580
1581 $lnum = 0;
1582
1583 while ($line = db_fetch_assoc($result)) {
1584
1585 $class = ($lnum % 2) ? "even" : "odd";
1586
1587 $cat_id = $line["id"];
1588
1589 $edit_cat_id = $_GET["id"];
1590
1591 if ($subop == "editCat" && $cat_id != $edit_cat_id) {
1592 $class .= "Grayed";
1593 $this_row_id = "";
1594 } else {
1595 $this_row_id = "id=\"FCATR-$cat_id\"";
1596 }
1597
1598 print "<tr class=\"$class\" $this_row_id>";
1599
1600 $edit_title = htmlspecialchars(db_unescape_string($line["title"]));
1601
1602 if (!$edit_cat_id || $subop != "editCat") {
1603
1604 print "<td><input onclick='toggleSelectRow(this);'
1605 type=\"checkbox\" id=\"FCCHK-".$line["id"]."\"></td>";
1606
1607 print "<td><a href=\"javascript:editFeedCat($cat_id);\">" .
1608 $edit_title . "</a></td>";
1609
1610 } else if ($cat_id != $edit_cat_id) {
1611
1612 print "<td><input disabled=\"true\" type=\"checkbox\"
1613 id=\"FRCHK-".$line["id"]."\"></td>";
1614
1615 print "<td>$edit_title</td>";
1616
1617 } else {
1618
1619 print "<td><input disabled=\"true\" type=\"checkbox\" checked></td>";
1620
1621 print "<td><input id=\"iedit_title\" value=\"$edit_title\"></td>";
1622
1623 }
1624
1625 print "</tr>";
1626
1627 ++$lnum;
1628 }
1629
1630 print "</table>";
1631
1632 print "<p>";
1633
1634 if ($subop == "editCat") {
1635 print "Edit category:&nbsp;
1636 <input type=\"submit\" class=\"button\"
1637 onclick=\"javascript:feedCatEditCancel()\" value=\"Cancel\">
1638 <input type=\"submit\" class=\"button\"
1639 onclick=\"javascript:feedCatEditSave()\" value=\"Save\">";
1640 } else {
1641
1642 print "
1643 Selection:&nbsp;
1644 <input type=\"submit\" class=\"button\"
1645 onclick=\"javascript:editSelectedFeedCat()\" value=\"Edit\">
1646 <input type=\"submit\" class=\"button\"
1647 onclick=\"javascript:removeSelectedFeedCats()\" value=\"Remove\">";
1648
1649 }
1650
1651 } else {
1652 print "<p>No feed categories defined.</p>";
1653 }
1654 }
1655
1656 print "<h3>Import OPML</h3>
1657 <form enctype=\"multipart/form-data\" method=\"POST\" action=\"opml.php\">
1658 File: <input id=\"opml_file\" name=\"opml_file\" type=\"file\">&nbsp;
1659 <input class=\"button\" name=\"op\" onclick=\"return validateOpmlImport();\"
1660 type=\"submit\" value=\"Import\">
1661 </form>";
1662
1663 }
1664
1665 if ($op == "pref-filters") {
1666
1667 $subop = $_GET["subop"];
1668
1669 if ($subop == "editSave") {
1670
1671 $regexp = db_escape_string($_GET["r"]);
1672 $descr = db_escape_string($_GET["d"]);
1673 $match = db_escape_string($_GET["m"]);
1674 $filter_id = db_escape_string($_GET["id"]);
1675 $feed_id = db_escape_string($_GET["fid"]);
1676
1677 if (!$feed_id) {
1678 $feed_id = 'NULL';
1679 } else {
1680 $feed_id = sprintf("'%s'", db_escape_string($feed_id));
1681 }
1682
1683 $result = db_query($link, "UPDATE ttrss_filters SET
1684 reg_exp = '$regexp',
1685 description = '$descr',
1686 feed_id = $feed_id,
1687 filter_type = (SELECT id FROM ttrss_filter_types WHERE
1688 description = '$match')
1689 WHERE id = '$filter_id'");
1690 }
1691
1692 if ($subop == "remove") {
1693
1694 if (!WEB_DEMO_MODE) {
1695
1696 $ids = split(",", $_GET["ids"]);
1697
1698 foreach ($ids as $id) {
1699 db_query($link, "DELETE FROM ttrss_filters WHERE id = '$id'");
1700
1701 }
1702 }
1703 }
1704
1705 if ($subop == "add") {
1706
1707 if (!WEB_DEMO_MODE) {
1708
1709 $regexp = db_escape_string(trim($_GET["regexp"]));
1710 $match = db_escape_string(trim($_GET["match"]));
1711 $feed_id = db_escape_string($_GET["fid"]);
1712
1713 if (!$feed_id) {
1714 $feed_id = 'NULL';
1715 } else {
1716 $feed_id = sprintf("'%s'", db_escape_string($feed_id));
1717 }
1718
1719 $result = db_query($link,
1720 "INSERT INTO ttrss_filters (reg_exp,filter_type,owner_uid,feed_id) VALUES
1721 ('$regexp', (SELECT id FROM ttrss_filter_types WHERE
1722 description = '$match'),'".$_SESSION["uid"]."', $feed_id)");
1723 }
1724 }
1725
1726 $result = db_query($link, "SELECT description
1727 FROM ttrss_filter_types ORDER BY description");
1728
1729 $filter_types = array();
1730
1731 while ($line = db_fetch_assoc($result)) {
1732 array_push($filter_types, $line["description"]);
1733 }
1734
1735 print "<div class=\"prefGenericAddBox\">
1736 <input id=\"fadd_regexp\" size=\"40\">&nbsp;";
1737
1738 print_select("fadd_match", "Title", $filter_types);
1739
1740 print "&nbsp;<select id=\"fadd_feed\">";
1741
1742 print "<option selected id=\"0\">All feeds</option>";
1743
1744 $result = db_query($link, "SELECT id,title FROM ttrss_feeds
1745 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
1746
1747 if (db_num_rows($result) > 0) {
1748 print "<option disabled>--------</option>";
1749 }
1750
1751 while ($line = db_fetch_assoc($result)) {
1752 printf("<option id='%d'>%s</option>", $line["id"], $line["title"]);
1753 }
1754
1755 print "</select>&nbsp;";
1756
1757 print "<input type=\"submit\"
1758 class=\"button\" onclick=\"javascript:addFilter()\"
1759 value=\"Add filter\">";
1760
1761 $result = db_query($link, "SELECT
1762 ttrss_filters.id AS id,reg_exp,
1763 ttrss_filters.description AS description,
1764 ttrss_filter_types.name AS filter_type_name,
1765 ttrss_filter_types.description AS filter_type_descr,
1766 feed_id,
1767 (SELECT title FROM ttrss_feeds WHERE id = feed_id) AS feed_title
1768 FROM
1769 ttrss_filters,ttrss_filter_types
1770 WHERE
1771 filter_type = ttrss_filter_types.id AND
1772 ttrss_filters.owner_uid = ".$_SESSION["uid"]."
1773 ORDER by reg_exp");
1774
1775 if (db_num_rows($result) != 0) {
1776
1777 print "<p><table width=\"100%\" class=\"prefFilterList\" id=\"prefFilterList\">";
1778
1779 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
1780 Select:
1781 <a href=\"javascript:selectTableRowsByIdPrefix('prefFilterList',
1782 'FILRR-', 'FICHK-', true)\">All</a>,
1783 <a href=\"javascript:selectTableRowsByIdPrefix('prefFilterList',
1784 'FILRR-', 'FICHK-', false)\">None</a>
1785 </td</tr>";
1786
1787 print "<tr class=\"title\">
1788 <td width=\"5%\">Select</td><td width=\"30%\">Filter expression</td>
1789 <td width=\"30%\">Feed</td><td width=\"10%\">Match</td>
1790 <td width=\"30%\">Description</td></tr>";
1791
1792 $lnum = 0;
1793
1794 while ($line = db_fetch_assoc($result)) {
1795
1796 $class = ($lnum % 2) ? "even" : "odd";
1797
1798 $filter_id = $line["id"];
1799 $edit_filter_id = $_GET["id"];
1800
1801 if ($subop == "edit" && $filter_id != $edit_filter_id) {
1802 $class .= "Grayed";
1803 $this_row_id = "";
1804 } else {
1805 $this_row_id = "id=\"FILRR-$filter_id\"";
1806 }
1807
1808 print "<tr class=\"$class\" $this_row_id>";
1809
1810 $line["regexp"] = htmlspecialchars($line["reg_exp"]);
1811 $line["description"] = htmlspecialchars($line["description"]);
1812
1813 if (!$line["feed_title"]) $line["feed_title"] = "All feeds";
1814
1815 if (!$edit_filter_id || $subop != "edit") {
1816
1817 if (!$line["description"]) $line["description"] = "[No description]";
1818
1819 print "<td><input onclick='toggleSelectRow(this);'
1820 type=\"checkbox\" id=\"FICHK-".$line["id"]."\"></td>";
1821
1822 print "<td><a href=\"javascript:editFilter($filter_id);\">" .
1823 $line["reg_exp"] . "</td>";
1824
1825 print "<td><a href=\"javascript:editFilter($filter_id);\">" .
1826 $line["feed_title"] . "</td>";
1827
1828 print "<td><a href=\"javascript:editFilter($filter_id);\">" .
1829 $line["filter_type_descr"] . "</td>";
1830
1831 print "<td><a href=\"javascript:editFilter($filter_id);\">" .
1832 $line["description"] . "</td>";
1833
1834 } else if ($filter_id != $edit_filter_id) {
1835
1836 if (!$line["description"]) $line["description"] = "[No description]";
1837
1838 print "<td><input disabled=\"true\" type=\"checkbox\"
1839 id=\"FICHK-".$line["id"]."\"></td>";
1840
1841 print "<td>".$line["reg_exp"]."</td>";
1842 print "<td>".$line["feed_title"]."</td>";
1843 print "<td>".$line["filter_type_descr"]."</td>";
1844 print "<td>".$line["description"]."</td>";
1845
1846 } else {
1847
1848 print "<td><input disabled=\"true\" type=\"checkbox\" checked></td>";
1849
1850 print "<td><input id=\"iedit_regexp\" value=\"".$line["reg_exp"].
1851 "\"></td>";
1852
1853 print "<td>";
1854
1855 print "<select id=\"iedit_feed\">";
1856
1857 print "<option id=\"0\">All feeds</option>";
1858
1859 if (db_num_rows($result) > 0) {
1860 print "<option disabled>--------</option>";
1861 }
1862
1863 $tmp_result = db_query($link, "SELECT id,title FROM ttrss_feeds
1864 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
1865
1866 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1867 if ($tmp_line["id"] == $line["feed_id"]) {
1868 $is_selected = "selected";
1869 } else {
1870 $is_selected = "";
1871 }
1872 printf("<option $is_selected id='%d'>%s</option>",
1873 $tmp_line["id"], $tmp_line["title"]);
1874 }
1875
1876 print "</select></td>";
1877
1878 print "<td>";
1879 print_select("iedit_match", $line["filter_type_descr"], $filter_types);
1880 print "</td>";
1881
1882 print "<td><input id=\"iedit_descr\" value=\"".$line["description"].
1883 "\"></td>";
1884
1885 print "</td>";
1886 }
1887
1888 print "</tr>";
1889
1890 ++$lnum;
1891 }
1892
1893 if ($lnum == 0) {
1894 print "<tr><td colspan=\"4\" align=\"center\">No filters defined.</td></tr>";
1895 }
1896
1897 print "</table>";
1898
1899 print "<p>";
1900
1901 if ($subop == "edit") {
1902 print "Edit feed:
1903 <input type=\"submit\" class=\"button\"
1904 onclick=\"javascript:filterEditCancel()\" value=\"Cancel\">
1905 <input type=\"submit\" class=\"button\"
1906 onclick=\"javascript:filterEditSave()\" value=\"Save\">";
1907
1908 } else {
1909
1910 print "
1911 Selection:
1912 <input type=\"submit\" class=\"button\"
1913 onclick=\"javascript:editSelectedFilter()\" value=\"Edit\">
1914 <input type=\"submit\" class=\"button\"
1915 onclick=\"javascript:removeSelectedFilters()\" value=\"Remove\">";
1916 }
1917
1918 } else {
1919
1920 print "<p>No filters defined.</p>";
1921
1922 }
1923 }
1924
1925 if ($op == "pref-labels") {
1926
1927 $subop = $_GET["subop"];
1928
1929 if ($subop == "test") {
1930
1931 $expr = $_GET["expr"];
1932 $descr = $_GET["descr"];
1933
1934 print "<div class='infoBoxContents'>";
1935
1936 print "<h1>Label &laquo;$descr&raquo;</h1>";
1937
1938 // print "<p><b>Expression</b>: $expr</p>";
1939
1940 $result = db_query($link,
1941 "SELECT count(id) AS num_matches
1942 FROM ttrss_entries,ttrss_user_entries
1943 WHERE ($expr) AND
1944 ttrss_user_entries.ref_id = ttrss_entries.id AND
1945 owner_uid = " . $_SESSION["uid"]);
1946
1947 $num_matches = db_fetch_result($result, 0, "num_matches");;
1948
1949 if ($num_matches > 0) {
1950
1951 print "<p>Query returned <b>$num_matches</b> matches, first 5 follow:</p>";
1952
1953 $result = db_query($link,
1954 "SELECT title,
1955 (SELECT title FROM ttrss_feeds WHERE id = feed_id) AS feed_title
1956 FROM ttrss_entries,ttrss_user_entries
1957 WHERE ($expr) AND
1958 ttrss_user_entries.ref_id = ttrss_entries.id
1959 AND owner_uid = " . $_SESSION["uid"] . "
1960 ORDER BY date_entered DESC LIMIT 5");
1961
1962 print "<ul class=\"nomarks\">";
1963 while ($line = db_fetch_assoc($result)) {
1964 print "<li>".$line["title"].
1965 " <span class=\"insensitive\">(".$line["feed_title"].")</span></li>";
1966 }
1967 print "</ul>";
1968
1969 } else {
1970 print "<p>Query didn't return any matches.</p>";
1971 }
1972
1973 print "</div>";
1974
1975 print "<div align='center'>
1976 <input type='submit' class='button'
1977 onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
1978 return;
1979 }
1980
1981 if ($subop == "editSave") {
1982
1983 $sql_exp = $_GET["s"];
1984 $descr = $_GET["d"];
1985 $label_id = db_escape_string($_GET["id"]);
1986
1987 // print "$sql_exp : $descr : $label_id";
1988
1989 $result = db_query($link, "UPDATE ttrss_labels SET
1990 sql_exp = '$sql_exp',
1991 description = '$descr'
1992 WHERE id = '$label_id'");
1993 }
1994
1995 if ($subop == "remove") {
1996
1997 if (!WEB_DEMO_MODE) {
1998
1999 $ids = split(",", $_GET["ids"]);
2000
2001 foreach ($ids as $id) {
2002 db_query($link, "DELETE FROM ttrss_labels WHERE id = '$id'");
2003
2004 }
2005 }
2006 }
2007
2008 if ($subop == "add") {
2009
2010 if (!WEB_DEMO_MODE) {
2011
2012 // no escaping is done here on purpose
2013 $exp = trim($_GET["exp"]);
2014
2015 $result = db_query($link,
2016 "INSERT INTO ttrss_labels (sql_exp,description,owner_uid)
2017 VALUES ('$exp', '$exp', '".$_SESSION["uid"]."')");
2018 }
2019 }
2020
2021 print "<div class=\"prefGenericAddBox\">
2022 <input size=\"40\" id=\"ladd_expr\">&nbsp;";
2023
2024 print"<input type=\"submit\" class=\"button\"
2025 onclick=\"javascript:addLabel()\" value=\"Add label\"></div>";
2026
2027 $result = db_query($link, "SELECT
2028 id,sql_exp,description
2029 FROM
2030 ttrss_labels
2031 WHERE
2032 owner_uid = ".$_SESSION["uid"]."
2033 ORDER by description");
2034
2035 print "<div id=\"infoBoxShadow\"><div id=\"infoBox\">PLACEHOLDER</div></div>";
2036
2037 if (db_num_rows($result) != 0) {
2038
2039 print "<p><table width=\"100%\" class=\"prefLabelList\" id=\"prefLabelList\">";
2040
2041 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
2042 Select:
2043 <a href=\"javascript:selectTableRowsByIdPrefix('prefLabelList',
2044 'LILRR-', 'LICHK-', true)\">All</a>,
2045 <a href=\"javascript:selectTableRowsByIdPrefix('prefLabelList',
2046 'LILRR-', 'LICHK-', false)\">None</a>
2047 </td</tr>";
2048
2049 print "<tr class=\"title\">
2050 <td width=\"5%\">Select</td><td width=\"40%\">SQL expression
2051 <a class=\"helpLink\" href=\"javascript:displayHelpInfobox(1)\">(?)</a>
2052 </td>
2053 <td width=\"40%\">Caption</td></tr>";
2054
2055 $lnum = 0;
2056
2057 while ($line = db_fetch_assoc($result)) {
2058
2059 $class = ($lnum % 2) ? "even" : "odd";
2060
2061 $label_id = $line["id"];
2062 $edit_label_id = $_GET["id"];
2063
2064 if ($subop == "edit" && $label_id != $edit_label_id) {
2065 $class .= "Grayed";
2066 $this_row_id = "";
2067 } else {
2068 $this_row_id = "id=\"LILRR-$label_id\"";
2069 }
2070
2071 print "<tr class=\"$class\" $this_row_id>";
2072
2073 $line["sql_exp"] = htmlspecialchars($line["sql_exp"]);
2074 $line["description"] = htmlspecialchars($line["description"]);
2075
2076 if (!$edit_label_id || $subop != "edit") {
2077
2078 if (!$line["description"]) $line["description"] = "[No caption]";
2079
2080 print "<td><input onclick='toggleSelectRow(this);'
2081 type=\"checkbox\" id=\"LICHK-".$line["id"]."\"></td>";
2082
2083 print "<td><a href=\"javascript:editLabel($label_id);\">" .
2084 $line["sql_exp"] . "</td>";
2085
2086 print "<td><a href=\"javascript:editLabel($label_id);\">" .
2087 $line["description"] . "</td>";
2088
2089 } else if ($label_id != $edit_label_id) {
2090
2091 if (!$line["description"]) $line["description"] = "[No description]";
2092
2093 print "<td><input disabled=\"true\" type=\"checkbox\"
2094 id=\"LICHK-".$line["id"]."\"></td>";
2095
2096 print "<td>".$line["sql_exp"]."</td>";
2097 print "<td>".$line["description"]."</td>";
2098
2099 } else {
2100
2101 print "<td><input disabled=\"true\" type=\"checkbox\" checked></td>";
2102
2103 print "<td><input id=\"iedit_expr\" value=\"".$line["sql_exp"].
2104 "\"></td>";
2105
2106 print "<td><input id=\"iedit_descr\" value=\"".$line["description"].
2107 "\"></td>";
2108
2109 }
2110
2111
2112 print "</tr>";
2113
2114 ++$lnum;
2115 }
2116
2117 if ($lnum == 0) {
2118 print "<tr><td colspan=\"4\" align=\"center\">No labels defined.</td></tr>";
2119 }
2120
2121 print "</table>";
2122
2123 print "<p>";
2124
2125 if ($subop == "edit") {
2126 print "Edit label:
2127 <input type=\"submit\" class=\"button\"
2128 onclick=\"javascript:labelTest()\" value=\"Test\">
2129 <input type=\"submit\" class=\"button\"
2130 onclick=\"javascript:labelEditCancel()\" value=\"Cancel\">
2131 <input type=\"submit\" class=\"button\"
2132 onclick=\"javascript:labelEditSave()\" value=\"Save\">";
2133
2134 } else {
2135
2136 print "
2137 Selection:
2138 <input type=\"submit\" class=\"button\"
2139 onclick=\"javascript:editSelectedLabel()\" value=\"Edit\">
2140 <input type=\"submit\" class=\"button\"
2141 onclick=\"javascript:removeSelectedLabels()\" value=\"Remove\">";
2142 }
2143 } else {
2144 print "<p>No labels defined.</p>";
2145 }
2146 }
2147
2148 if ($op == "error") {
2149 print "<div width=\"100%\" align='center'>";
2150 $msg = $_GET["msg"];
2151 print $msg;
2152 print "</div>";
2153 }
2154
2155 if ($op == "help") {
2156 if (!$_GET["noheaders"]) {
2157 print "<html><head>
2158 <title>Tiny Tiny RSS : Help</title>
2159 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
2160 <script type=\"text/javascript\" src=\"functions.js\"></script>
2161 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
2162 </head><body>";
2163 }
2164
2165 $tid = sprintf("%d", $_GET["tid"]);
2166
2167 print "<div class='infoBoxContents'>";
2168
2169 if (file_exists("help/$tid.php")) {
2170 include("help/$tid.php");
2171 } else {
2172 print "<p>Help topic not found.</p>";
2173 }
2174
2175 print "</div>";
2176
2177 print "<div align='center'>
2178 <input type='submit' class='button'
2179 onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
2180
2181 if (!$_GET["noheaders"]) {
2182 print "</body></html>";
2183 }
2184
2185 }
2186
2187 if ($op == "dlg") {
2188 $id = $_GET["id"];
2189 $param = $_GET["param"];
2190
2191 if ($id == "quickAddFeed") {
2192 print "
2193 Feed URL: <input
2194 onblur=\"javascript:enableHotkeys()\" onfocus=\"javascript:disableHotkeys()\"
2195 id=\"qafInput\">
2196 <input class=\"button\"
2197 type=\"submit\" onclick=\"javascript:qafAdd()\" value=\"Add feed\">
2198 <input class=\"button\"
2199 type=\"submit\" onclick=\"javascript:closeDlg()\"
2200 value=\"Cancel\">";
2201 }
2202
2203 if ($id == "quickDelFeed") {
2204
2205 $param = db_escape_string($param);
2206
2207 $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$param'");
2208
2209 if ($result) {
2210
2211 $f_title = db_fetch_result($result, 0, "title");
2212
2213 print "Remove current feed (<b>$f_title</b>)?&nbsp;
2214 <input class=\"button\"
2215 type=\"submit\" onclick=\"javascript:qfdDelete($param)\" value=\"Remove\">
2216 <input class=\"button\"
2217 type=\"submit\" onclick=\"javascript:closeDlg()\"
2218 value=\"Cancel\">";
2219 } else {
2220 print "Error: Feed $param not found.&nbsp;
2221 <input class=\"button\"
2222 type=\"submit\" onclick=\"javascript:closeDlg()\"
2223 value=\"Cancel\">";
2224 }
2225 }
2226
2227 if ($id == "search") {
2228
2229 print "<input id=\"searchbox\" class=\"extSearch\"
2230 onblur=\"javascript:enableHotkeys()\" onfocus=\"javascript:disableHotkeys()\"
2231 onchange=\"javascript:search()\">
2232 <select id=\"searchmodebox\">
2233 <option selected>All feeds</option>
2234 <option>This feed</option>
2235 </select>
2236 <input type=\"submit\"
2237 class=\"button\" onclick=\"javascript:search()\" value=\"Search\">
2238 <input class=\"button\"
2239 type=\"submit\" onclick=\"javascript:closeDlg()\"
2240 value=\"Close\">";
2241
2242 }
2243
2244 }
2245
2246 // update feeds of all users, may be used anonymously
2247 if ($op == "globalUpdateFeeds") {
2248
2249 $result = db_query($link, "SELECT id FROM ttrss_users");
2250
2251 while ($line = db_fetch_assoc($result)) {
2252 $user_id = $line["id"];
2253 // print "<!-- updating feeds of uid $user_id -->";
2254 update_all_feeds($link, false, $user_id);
2255 }
2256
2257 print "<rpc-reply>
2258 <message msg=\"All feeds updated\"/>
2259 </rpc-reply>";
2260
2261 }
2262
2263 if ($op == "pref-prefs") {
2264
2265 $subop = $_REQUEST["subop"];
2266
2267 if ($subop == "Save configuration") {
2268
2269 if (WEB_DEMO_MODE) {
2270 header("Location: prefs.php");
2271 return;
2272 }
2273
2274 $_SESSION["prefs_op_result"] = "save-config";
2275
2276 foreach (array_keys($_POST) as $pref_name) {
2277
2278 $pref_name = db_escape_string($pref_name);
2279 $value = db_escape_string($_POST[$pref_name]);
2280
2281 $result = db_query($link, "SELECT type_name
2282 FROM ttrss_prefs,ttrss_prefs_types
2283 WHERE pref_name = '$pref_name' AND type_id = ttrss_prefs_types.id");
2284
2285 if (db_num_rows($result) > 0) {
2286
2287 $type_name = db_fetch_result($result, 0, "type_name");
2288
2289 // print "$pref_name : $type_name : $value<br>";
2290
2291 if ($type_name == "bool") {
2292 if ($value == "1") {
2293 $value = "true";
2294 } else {
2295 $value = "false";
2296 }
2297 } else if ($type_name == "integer") {
2298 $value = sprintf("%d", $value);
2299 }
2300
2301 // print "$pref_name : $type_name : $value<br>";
2302
2303 db_query($link, "UPDATE ttrss_user_prefs SET value = '$value'
2304 WHERE pref_name = '$pref_name' AND owner_uid = ".$_SESSION["uid"]);
2305
2306 }
2307
2308 header("Location: prefs.php");
2309
2310 }
2311
2312 } else if ($subop == "getHelp") {
2313
2314 $pref_name = db_escape_string($_GET["pn"]);
2315
2316 $result = db_query($link, "SELECT help_text FROM ttrss_prefs
2317 WHERE pref_name = '$pref_name'");
2318
2319 if (db_num_rows($result) > 0) {
2320 $help_text = db_fetch_result($result, 0, "help_text");
2321 print $help_text;
2322 } else {
2323 print "Unknown option: $pref_name";
2324 }
2325
2326 } else if ($subop == "Change password") {
2327
2328 if (WEB_DEMO_MODE) {
2329 header("Location: prefs.php");
2330 return;
2331 }
2332
2333 $old_pw = $_POST["OLD_PASSWORD"];
2334 $new_pw = $_POST["OLD_PASSWORD"];
2335
2336 $old_pw_hash = 'SHA1:' . sha1($_POST["OLD_PASSWORD"]);
2337 $new_pw_hash = 'SHA1:' . sha1($_POST["NEW_PASSWORD"]);
2338
2339 $active_uid = $_SESSION["uid"];
2340
2341 if ($old_pw && $new_pw) {
2342
2343 $login = db_escape_string($_SERVER['PHP_AUTH_USER']);
2344
2345 $result = db_query($link, "SELECT id FROM ttrss_users WHERE
2346 id = '$active_uid' AND (pwd_hash = '$old_pw' OR
2347 pwd_hash = '$old_pw_hash')");
2348
2349 if (db_num_rows($result) == 1) {
2350 db_query($link, "UPDATE ttrss_users SET pwd_hash = '$new_pw_hash'
2351 WHERE id = '$active_uid'");
2352
2353 $_SESSION["pwd_change_result"] = "ok";
2354 } else {
2355 $_SESSION["pwd_change_result"] = "failed";
2356 }
2357 }
2358
2359 header("Location: prefs.php");
2360
2361 } else if ($subop == "Reset to defaults") {
2362
2363 if (WEB_DEMO_MODE) {
2364 header("Location: prefs.php");
2365 return;
2366 }
2367
2368 $_SESSION["prefs_op_result"] = "reset-to-defaults";
2369
2370 if (DB_TYPE == "pgsql") {
2371 db_query($link,"UPDATE ttrss_user_prefs
2372 SET value = ttrss_prefs.def_value
2373 WHERE owner_uid = '".$_SESSION["uid"]."' AND
2374 ttrss_prefs.pref_name = ttrss_user_prefs.pref_name");
2375 } else {
2376 db_query($link, "DELETE FROM ttrss_user_prefs
2377 WHERE owner_uid = ".$_SESSION["uid"]);
2378 initialize_user_prefs($link, $_SESSION["uid"]);
2379 }
2380
2381 header("Location: prefs.php");
2382
2383 } else if ($subop == "Change theme") {
2384
2385 $theme = db_escape_string($_POST["theme"]);
2386
2387 if ($theme == "Default") {
2388 $theme_qpart = 'NULL';
2389 } else {
2390 $theme_qpart = "'$theme'";
2391 }
2392
2393 $result = db_query($link, "SELECT id,theme_path FROM ttrss_themes
2394 WHERE theme_name = '$theme'");
2395
2396 if (db_num_rows($result) == 1) {
2397 $theme_id = db_fetch_result($result, 0, "id");
2398 $theme_path = db_fetch_result($result, 0, "theme_path");
2399 } else {
2400 $theme_id = "NULL";
2401 $theme_path = "";
2402 }
2403
2404 db_query($link, "UPDATE ttrss_users SET
2405 theme_id = $theme_id WHERE id = " . $_SESSION["uid"]);
2406
2407 $_SESSION["theme"] = $theme_path;
2408
2409 header("Location: prefs.php");
2410
2411 } else {
2412
2413 if (!SINGLE_USER_MODE) {
2414
2415 $result = db_query($link, "SELECT id FROM ttrss_users
2416 WHERE id = ".$_SESSION["uid"]." AND (pwd_hash = 'password' OR
2417 pwd_hash = 'SHA1:".sha1("password")."')");
2418
2419 if (db_num_rows($result) != 0) {
2420 print "<div class=\"warning\">
2421 Your password is at default value, please change it.
2422 </div>";
2423 }
2424
2425 if ($_SESSION["pwd_change_result"] == "failed") {
2426 print "<div class=\"warning\">
2427 There was an error while changing your password.
2428 </div>";
2429 }
2430
2431 if ($_SESSION["pwd_change_result"] == "ok") {
2432 print "<div class=\"notice\">
2433 Password changed successfully.
2434 </div>";
2435 }
2436
2437 $_SESSION["pwd_change_result"] = "";
2438
2439 if ($_SESSION["prefs_op_result"] == "reset-to-defaults") {
2440 print "<div class=\"notice\">
2441 Your configuration was reset to defaults.
2442 </div>";
2443 }
2444
2445 if ($_SESSION["prefs_op_result"] == "save-config") {
2446 print "<div class=\"notice\">
2447 Your configuration was saved successfully.
2448 </div>";
2449 }
2450
2451 $_SESSION["prefs_op_result"] = "";
2452
2453 print "<form action=\"backend.php\" method=\"POST\">";
2454
2455 print "<table width=\"100%\" class=\"prefPrefsList\">";
2456 print "<tr><td colspan='3'><h3>Authentication</h3></tr></td>";
2457
2458 print "<tr><td width=\"40%\">Old password</td>";
2459 print "<td><input class=\"editbox\" type=\"password\"
2460 name=\"OLD_PASSWORD\"></td></tr>";
2461
2462 print "<tr><td width=\"40%\">New password</td>";
2463
2464 print "<td><input class=\"editbox\" type=\"password\"
2465 name=\"NEW_PASSWORD\"></td></tr>";
2466
2467 print "</table>";
2468
2469 print "<input type=\"hidden\" name=\"op\" value=\"pref-prefs\">";
2470
2471 print "<p><input class=\"button\" type=\"submit\"
2472 value=\"Change password\" name=\"subop\">";
2473
2474 print "</form>";
2475
2476 }
2477
2478 $result = db_query($link, "SELECT
2479 theme_id FROM ttrss_users WHERE id = " . $_SESSION["uid"]);
2480
2481 $user_theme_id = db_fetch_result($result, 0, "theme_id");
2482
2483 $result = db_query($link, "SELECT
2484 id,theme_name FROM ttrss_themes ORDER BY theme_name");
2485
2486 if (db_num_rows($result) > 0) {
2487
2488 print "<form action=\"backend.php\" method=\"POST\">";
2489 print "<table width=\"100%\" class=\"prefPrefsList\">";
2490 print "<tr><td colspan='3'><h3>Themes</h3></tr></td>";
2491 print "<tr><td width=\"40%\">Select theme</td>";
2492 print "<td><select name=\"theme\">";
2493 print "<option>Default</option>";
2494 print "<option disabled>--------</option>";
2495
2496 while ($line = db_fetch_assoc($result)) {
2497 if ($line["id"] == $user_theme_id) {
2498 $selected = "selected";
2499 } else {
2500 $selected = "";
2501 }
2502 print "<option $selected>" . $line["theme_name"] . "</option>";
2503 }
2504 print "</select></td></tr>";
2505 print "</table>";
2506 print "<input type=\"hidden\" name=\"op\" value=\"pref-prefs\">";
2507 print "<p><input class=\"button\" type=\"submit\"
2508 value=\"Change theme\" name=\"subop\">";
2509 print "</form>";
2510 }
2511
2512 $result = db_query($link, "SELECT
2513 ttrss_user_prefs.pref_name,short_desc,help_text,value,type_name,
2514 section_name,def_value
2515 FROM ttrss_prefs,ttrss_prefs_types,ttrss_prefs_sections,ttrss_user_prefs
2516 WHERE type_id = ttrss_prefs_types.id AND
2517 section_id = ttrss_prefs_sections.id AND
2518 ttrss_user_prefs.pref_name = ttrss_prefs.pref_name AND
2519 owner_uid = ".$_SESSION["uid"]."
2520 ORDER BY section_id,short_desc");
2521
2522 print "<form action=\"backend.php\" method=\"POST\">";
2523
2524 $lnum = 0;
2525
2526 $active_section = "";
2527
2528 while ($line = db_fetch_assoc($result)) {
2529
2530 if ($active_section != $line["section_name"]) {
2531
2532 if ($active_section != "") {
2533 print "</table>";
2534 }
2535
2536 print "<p><table width=\"100%\" class=\"prefPrefsList\">";
2537
2538 $active_section = $line["section_name"];
2539
2540 print "<tr><td colspan=\"3\"><h3>$active_section</h3></td></tr>";
2541 // print "<tr class=\"title\">
2542 // <td width=\"25%\">Option</td><td>Value</td></tr>";
2543
2544 $lnum = 0;
2545 }
2546
2547 // $class = ($lnum % 2) ? "even" : "odd";
2548
2549 print "<tr>";
2550
2551 $type_name = $line["type_name"];
2552 $pref_name = $line["pref_name"];
2553 $value = $line["value"];
2554 $def_value = $line["def_value"];
2555 $help_text = $line["help_text"];
2556
2557 print "<td width=\"40%\" id=\"$pref_name\">" . $line["short_desc"];
2558
2559 if ($help_text) print "<div class=\"prefHelp\">$help_text</div>";
2560
2561 print "</td>";
2562
2563 print "<td>";
2564
2565 if ($type_name == "bool") {
2566 // print_select($pref_name, $value, array("true", "false"));
2567
2568 if ($value == "true") {
2569 $value = "Yes";
2570 } else {
2571 $value = "No";
2572 }
2573
2574 print_radio($pref_name, $value, array("Yes", "No"));
2575
2576 } else {
2577 print "<input class=\"editbox\" name=\"$pref_name\" value=\"$value\">";
2578 }
2579
2580 print "</td>";
2581
2582 print "</tr>";
2583
2584 $lnum++;
2585 }
2586
2587 print "</table>";
2588
2589 print "<input type=\"hidden\" name=\"op\" value=\"pref-prefs\">";
2590
2591 print "<p><input class=\"button\" type=\"submit\"
2592 name=\"subop\" value=\"Save configuration\">";
2593
2594 print "&nbsp;<input class=\"button\" type=\"submit\"
2595 name=\"subop\" value=\"Reset to defaults\"></p>";
2596
2597 print "</form>";
2598
2599 }
2600
2601 }
2602
2603 if ($op == "pref-users") {
2604
2605 $subop = $_GET["subop"];
2606
2607 if ($subop == "editSave") {
2608
2609 if (!WEB_DEMO_MODE) {
2610
2611 $login = db_escape_string($_GET["l"]);
2612 $uid = db_escape_string($_GET["id"]);
2613 $access_level = sprintf("%d", $_GET["al"]);
2614
2615 db_query($link, "UPDATE ttrss_users SET login = '$login', access_level = '$access_level' WHERE id = '$uid'");
2616
2617 }
2618 } else if ($subop == "remove") {
2619
2620 if (!WEB_DEMO_MODE && $_SESSION["access_level"] >= 10) {
2621
2622 $ids = split(",", $_GET["ids"]);
2623
2624 foreach ($ids as $id) {
2625 db_query($link, "DELETE FROM ttrss_users WHERE id = '$id' AND id != " . $_SESSION["uid"]);
2626
2627 }
2628 }
2629 } else if ($subop == "add") {
2630
2631 if (!WEB_DEMO_MODE && $_SESSION["access_level"] >= 10) {
2632
2633 $login = db_escape_string(trim($_GET["login"]));
2634 $tmp_user_pwd = make_password(8);
2635 $pwd_hash = 'SHA1:' . sha1($tmp_user_pwd);
2636
2637 db_query($link, "INSERT INTO ttrss_users (login,pwd_hash,access_level)
2638 VALUES ('$login', '$pwd_hash', 0)");
2639
2640
2641 $result = db_query($link, "SELECT id FROM ttrss_users WHERE
2642 login = '$login' AND pwd_hash = '$pwd_hash'");
2643
2644 if (db_num_rows($result) == 1) {
2645
2646 $new_uid = db_fetch_result($result, 0, "id");
2647
2648 print "<div class=\"notice\">Added user <b>".$_GET["login"].
2649 "</b> with password <b>$tmp_user_pwd</b>.</div>";
2650
2651 initialize_user($link, $new_uid);
2652
2653 } else {
2654
2655 print "<div class=\"warning\">Error while adding user <b>".
2656 $_GET["login"].".</b></div>";
2657
2658 }
2659 }
2660 } else if ($subop == "resetPass") {
2661
2662 if (!WEB_DEMO_MODE && $_SESSION["access_level"] >= 10) {
2663
2664 $uid = db_escape_string($_GET["id"]);
2665
2666 $result = db_query($link, "SELECT login FROM ttrss_users WHERE id = '$uid'");
2667
2668 $login = db_fetch_result($result, 0, "login");
2669 $tmp_user_pwd = make_password(8);
2670 $pwd_hash = 'SHA1:' . sha1($tmp_user_pwd);
2671
2672 db_query($link, "UPDATE ttrss_users SET pwd_hash = '$pwd_hash'
2673 WHERE id = '$uid'");
2674
2675 print "<div class=\"notice\">Changed password of
2676 user <b>$login</b> to <b>$tmp_user_pwd</b>.</div>";
2677
2678 }
2679 }
2680
2681 print "<div class=\"prefGenericAddBox\">
2682 <input id=\"uadd_box\" size=\"40\">&nbsp;";
2683
2684 print"<input type=\"submit\" class=\"button\"
2685 onclick=\"javascript:addUser()\" value=\"Add user\"></div>";
2686
2687 $result = db_query($link, "SELECT
2688 id,login,access_level,
2689 SUBSTRING(last_login,1,16) as last_login
2690 FROM
2691 ttrss_users
2692 ORDER by login");
2693
2694 print "<div id=\"infoBoxShadow\"><div id=\"infoBox\">PLACEHOLDER</div></div>";
2695
2696 print "<p><table width=\"100%\" class=\"prefUserList\" id=\"prefUserList\">";
2697
2698 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
2699 Select:
2700 <a href=\"javascript:selectTableRowsByIdPrefix('prefUserList',
2701 'UMRR-', 'UMCHK-', true)\">All</a>,
2702 <a href=\"javascript:selectTableRowsByIdPrefix('prefUserList',
2703 'UMRR-', 'UMCHK-', false)\">None</a>
2704 </td</tr>";
2705
2706 print "<tr class=\"title\">
2707 <td width=\"5%\">Select</td>
2708 <td width='30%'>Username</td>
2709 <td width='30%'>Access Level</td>
2710 <td width='30%'>Last login</td></tr>";
2711
2712 $lnum = 0;
2713
2714 while ($line = db_fetch_assoc($result)) {
2715
2716 $class = ($lnum % 2) ? "even" : "odd";
2717
2718 $uid = $line["id"];
2719 $edit_uid = $_GET["id"];
2720
2721 if ($uid == $_SESSION["uid"] || ($subop == "edit" && $uid != $edit_uid)) {
2722 $class .= "Grayed";
2723 $this_row_id = "";
2724 } else {
2725 $this_row_id = "id=\"UMRR-$uid\"";
2726 }
2727
2728 print "<tr class=\"$class\" $this_row_id>";
2729
2730 $line["login"] = htmlspecialchars($line["login"]);
2731
2732 if ($uid == $_SESSION["uid"]) {
2733
2734 print "<td><input disabled=\"true\" type=\"checkbox\"
2735 id=\"UMCHK-".$line["id"]."\"></td>";
2736
2737 print "<td>".$line["login"]."</td>";
2738 print "<td>".$line["access_level"]."</td>";
2739
2740 } else if (!$edit_uid || $subop != "edit") {
2741
2742 print "<td><input onclick='toggleSelectRow(this);'
2743 type=\"checkbox\" id=\"UMCHK-$uid\"></td>";
2744
2745 print "<td><a href=\"javascript:editUser($uid);\">" .
2746 $line["login"] . "</td>";
2747
2748 print "<td><a href=\"javascript:editUser($uid);\">" .
2749 $line["access_level"] . "</td>";
2750
2751 } else if ($uid != $edit_uid) {
2752
2753 print "<td><input disabled=\"true\" type=\"checkbox\"
2754 id=\"UMCHK-".$line["id"]."\"></td>";
2755
2756 print "<td>".$line["login"]."</td>";
2757 print "<td>".$line["access_level"]."</td>";
2758
2759 } else {
2760
2761 print "<td><input disabled=\"true\" type=\"checkbox\" checked></td>";
2762
2763 print "<td><input id=\"iedit_ulogin\" value=\"".$line["login"].
2764 "\"></td>";
2765
2766 print "<td><input id=\"iedit_ulevel\" value=\"".$line["access_level"].
2767 "\"></td>";
2768
2769 }
2770
2771 print "<td>".$line["last_login"]."</td>";
2772
2773 print "</tr>";
2774
2775 ++$lnum;
2776 }
2777
2778 print "</table>";
2779
2780 print "<p>";
2781
2782 if ($subop == "edit") {
2783 print "Edit label:
2784 <input type=\"submit\" class=\"button\"
2785 onclick=\"javascript:userEditCancel()\" value=\"Cancel\">
2786 <input type=\"submit\" class=\"button\"
2787 onclick=\"javascript:userEditSave()\" value=\"Save\">";
2788
2789 } else {
2790
2791 print "
2792 Selection:
2793 <input type=\"submit\" class=\"button\"
2794 onclick=\"javascript:selectedUserDetails()\" value=\"User details\">
2795 <input type=\"submit\" class=\"button\"
2796 onclick=\"javascript:editSelectedUser()\" value=\"Edit\">
2797 <input type=\"submit\" class=\"button\"
2798 onclick=\"javascript:removeSelectedUsers()\" value=\"Remove\">
2799 <input type=\"submit\" class=\"button\"
2800 onclick=\"javascript:resetSelectedUserPass()\" value=\"Reset password\">";
2801
2802 }
2803 }
2804
2805 if ($op == "user-details") {
2806
2807 if (WEB_DEMO_MODE || $_SESSION["access_level"] < 10) {
2808 return;
2809 }
2810
2811 /* print "<html><head>
2812 <title>Tiny Tiny RSS : User Details</title>
2813 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
2814 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
2815 </head><body>"; */
2816
2817 $uid = sprintf("%d", $_GET["id"]);
2818
2819 print "<div class='infoBoxContents'>";
2820
2821 $result = db_query($link, "SELECT login,
2822 SUBSTRING(last_login,1,16) AS last_login,
2823 access_level,
2824 (SELECT COUNT(int_id) FROM ttrss_user_entries
2825 WHERE owner_uid = id) AS stored_articles
2826 FROM ttrss_users
2827 WHERE id = '$uid'");
2828
2829 if (db_num_rows($result) == 0) {
2830 print "<h1>User not found</h1>";
2831 return;
2832 }
2833
2834 print "<h1>User Details</h1>";
2835
2836 print "<table width='100%'>";
2837
2838 $login = db_fetch_result($result, 0, "login");
2839 $last_login = db_fetch_result($result, 0, "last_login");
2840 $access_level = db_fetch_result($result, 0, "access_level");
2841 $stored_articles = db_fetch_result($result, 0, "stored_articles");
2842
2843 print "<tr><td>Username</td><td>$login</td></tr>";
2844 print "<tr><td>Access level</td><td>$access_level</td></tr>";
2845 print "<tr><td>Last logged in</td><td>$last_login</td></tr>";
2846 print "<tr><td>Stored articles</td><td>$stored_articles</td></tr>";
2847
2848 $result = db_query($link, "SELECT COUNT(id) as num_feeds FROM ttrss_feeds
2849 WHERE owner_uid = '$uid'");
2850
2851 $num_feeds = db_fetch_result($result, 0, "num_feeds");
2852
2853 print "<tr><td>Subscribed feeds count</td><td>$num_feeds</td></tr>";
2854
2855 /* $result = db_query($link, "SELECT
2856 SUM(LENGTH(content)+LENGTH(title)+LENGTH(link)+LENGTH(guid)) AS db_size
2857 FROM ttrss_user_entries,ttrss_entries
2858 WHERE owner_uid = '$uid' AND ref_id = id");
2859
2860 $db_size = round(db_fetch_result($result, 0, "db_size") / 1024);
2861
2862 print "<tr><td>Approx. used DB size</td><td>$db_size KBytes</td></tr>"; */
2863
2864 print "</table>";
2865
2866 print "<h1>Subscribed feeds</h1>";
2867
2868 $result = db_query($link, "SELECT id,title,feed_url FROM ttrss_feeds
2869 WHERE owner_uid = '$uid' ORDER BY title");
2870
2871 print "<ul class=\"nomarks\">";
2872
2873 while ($line = db_fetch_assoc($result)) {
2874
2875 $icon_file = ICONS_URL."/".$line["id"].".ico";
2876
2877 if (file_exists($icon_file) && filesize($icon_file) > 0) {
2878 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"$icon_file\">";
2879 } else {
2880 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
2881 }
2882
2883 print "<li>$feed_icon&nbsp;<a href=\"".$line["feed_url"]."\">".$line["title"]."</a></li>";
2884 }
2885
2886 print "</ul>";
2887
2888 print "</div>";
2889
2890 print "<div align='center'>
2891 <input type='submit' class='button'
2892 onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
2893
2894 // print "</body></html>";
2895
2896 }
2897
2898 if ($op == "feed-details") {
2899
2900 $feed_id = $_GET["id"];
2901
2902 $result = db_query($link,
2903 "SELECT
2904 title,feed_url,last_updated,icon_url,site_url,
2905 (SELECT COUNT(int_id) FROM ttrss_user_entries
2906 WHERE feed_id = id) AS total,
2907 (SELECT COUNT(int_id) FROM ttrss_user_entries
2908 WHERE feed_id = id AND unread = true) AS unread,
2909 (SELECT COUNT(int_id) FROM ttrss_user_entries
2910 WHERE feed_id = id AND marked = true) AS marked
2911 FROM ttrss_feeds
2912 WHERE id = '$feed_id' AND owner_uid = ".$_SESSION["uid"]);
2913
2914 if (db_num_rows($result) == 0) return;
2915
2916 $title = db_fetch_result($result, 0, "title");
2917 $last_updated = db_fetch_result($result, 0, "last_updated");
2918 $feed_url = db_fetch_result($result, 0, "feed_url");
2919 $icon_url = db_fetch_result($result, 0, "icon_url");
2920 $total = db_fetch_result($result, 0, "total");
2921 $unread = db_fetch_result($result, 0, "unread");
2922 $marked = db_fetch_result($result, 0, "marked");
2923 $site_url = db_fetch_result($result, 0, "site_url");
2924
2925 $result = db_query($link, "SELECT COUNT(id) AS subscribed
2926 FROM ttrss_feeds WHERE feed_url = '$feed_url'");
2927
2928 $subscribed = db_fetch_result($result, 0, "subscribed");
2929
2930 print "<div class=\"infoBoxContents\">";
2931
2932 $icon_file = ICONS_DIR . "/$feed_id.ico";
2933
2934 if (file_exists($icon_file) && filesize($icon_file) > 0) {
2935 $feed_icon = "<img width=\"16\" height=\"16\"
2936 src=\"" . ICONS_URL . "/$feed_id.ico\">";
2937 } else {
2938 $feed_icon = "";
2939 }
2940
2941 print "<h1>$feed_icon $title</h1>";
2942
2943 print "<table width='100%'>";
2944
2945 if ($site_url) {
2946 print "<tr><td width='30%'>Link</td>
2947 <td><a href=\"$site_url\">$site_url</a>
2948 <a href=\"$feed_url\">(feed)</a></td>
2949 </td></tr>";
2950 } else {
2951 print "<tr><td width='30%'>Feed URL</td>
2952 <td><a href=\"$feed_url\">$feed_url</a></td></tr>";
2953 }
2954 print "<tr><td>Last updated</td><td>$last_updated</td></tr>";
2955 print "<tr><td>Total articles</td><td>$total</td></tr>";
2956 print "<tr><td>Unread articles</td><td>$unread</td></tr>";
2957 print "<tr><td>Starred articles</td><td>$marked</td></tr>";
2958 print "<tr><td>Subscribed users</td><td>$subscribed</td></tr>";
2959
2960 print "</table>";
2961
2962 $result = db_query($link, "SELECT title,
2963 SUBSTRING(updated,1,16) AS updated,unread
2964 FROM ttrss_entries,ttrss_user_entries
2965 WHERE ref_id = id AND feed_id = '$feed_id'
2966 ORDER BY date_entered DESC LIMIT 5");
2967
2968 if (db_num_rows($result) > 0) {
2969
2970 print "<h1>Latest headlines</h1>";
2971
2972 print "<ul class=\"nomarks\">";
2973
2974 while ($line = db_fetch_assoc($result)) {
2975 if ($line["unread"] == "t" || $line["unread"] == "1") {
2976 $line["title"] = "<b>" . $line["title"] . "</b>";
2977 }
2978 print "<li>" . $line["title"].
2979 "&nbsp;<span class=\"insensitive\">(" .$line["updated"].")</span></li>";
2980 }
2981
2982 print "</ul>";
2983
2984 print "</div>";
2985
2986 print "<div align='center'>
2987 <input type='submit' class='button'
2988 onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
2989 }
2990 }
2991
2992 db_close($link);
2993 ?>
2994
2995 <!-- <?= sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
2996