]> git.wh0rd.org - tt-rss.git/blame - backend.php
interface tweaks
[tt-rss.git] / backend.php
CommitLineData
1cd17194 1<?
36bfab86 2 require_once "sessions.php";
01b3e191 3 require_once "backend-rpc.php";
36bfab86 4
59b8192f 5 header("Cache-Control: no-cache, must-revalidate");
ce0619bb
AD
6 header("Pragma: no-cache");
7 header("Expires: -1");
de696427 8
894ebcf5 9/* if ($_GET["debug"]) {
cce28758
AD
10 define('DEFAULT_ERROR_LEVEL', E_ALL);
11 } else {
12 define('DEFAULT_ERROR_LEVEL', E_ERROR | E_WARNING | E_PARSE);
13 }
894ebcf5
AD
14
15 error_reporting(DEFAULT_ERROR_LEVEL); */
cce28758 16
262bd8ea
AD
17 $op = $_REQUEST["op"];
18
94834216 19 define('SCHEMA_VERSION', 8);
657770a0
AD
20
21 require_once "sanity_check.php";
22 require_once "config.php";
af106b0e
AD
23
24 require_once "db.php";
25 require_once "db-prefs.php";
26 require_once "functions.php";
27 require_once "magpierss/rss_fetch.inc";
657770a0
AD
28
29 $err_msg = check_configuration_variables();
30
31 if ($err_msg) {
af106b0e
AD
32 header("Content-Type: application/xml");
33 print_error_xml(9, $err_msg); die;
657770a0
AD
34 }
35
a2770077 36 if ((!$op || $op == "rpc" || $op == "globalUpdateFeeds") && !$_REQUEST["noxml"]) {
262bd8ea
AD
37 header("Content-Type: application/xml");
38 }
39
a2770077 40 if (!$_SESSION["uid"] && $op != "globalUpdateFeeds") {
262bd8ea 41
a2770077 42 if ($op == "rpc") {
af106b0e 43 print_error_xml(6); die;
04269460
AD
44 } else {
45 print "
46 <html><body>
47 <p>Error: Not logged in.</p>
48 <script type=\"text/javascript\">
49 if (parent.window != 'undefined') {
50 parent.window.location = \"login.php\";
51 } else {
52 window.location = \"login.php\";
53 }
54 </script>
55 </body></html>
56 ";
262bd8ea
AD
57 }
58 exit;
59 }
1c7f75ed 60
a2770077 61 if (!$op) {
af106b0e 62 print_error_xml(7); exit;
a2770077
AD
63 }
64
ad815c71
AD
65 $purge_intervals = array(
66 0 => "Default",
67 -1 => "Never purge",
68 5 => "1 week",
69 14 => "2 weeks",
70 31 => "1 month",
71 60 => "2 months",
72 90 => "3 months");
73
74 $update_intervals = array(
75 0 => "Default",
76 -1 => "Disable updates",
77 30 => "30 minutes",
78 60 => "1 hour",
79 240 => "4 hours",
80 720 => "12 hours",
81 1440 => "Daily",
82 10080 => "Weekly");
83
406d9489
AD
84 $script_started = getmicrotime();
85
648472a7 86 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
d76a3b03 87
5136011e
AD
88 if (!$link) {
89 if (DB_TYPE == "mysql") {
90 print mysql_error();
91 }
92 // PG seems to display its own errors just fine by default.
93 return;
94 }
95
648472a7
AD
96 if (DB_TYPE == "pgsql") {
97 pg_query("set client_encoding = 'utf-8'");
98 }
7ec2a838 99
4053b540
AD
100 if ($_SESSION["uid"]) {
101 if (get_pref($link, "HIDE_READ_FEEDS") == "true") {
102 setcookie("ttrss_vf_hreadf", 1);
103 } else {
104 setcookie("ttrss_vf_hreadf", 0);
105 }
f5de0d8d
AD
106
107 setcookie('ttrss_vf_refresh', FEEDS_FRAME_REFRESH);
c6784aea 108 setcookie('ttrss_vf_daemon', ENABLE_UPDATE_DAEMON);
233b8e07
AD
109
110 if (get_pref($link, "ON_CATCHUP_SHOW_NEXT_FEED")) {
111 setcookie('ttrss_vf_catchupnext', 1);
112 } else {
113 setcookie('ttrss_vf_catchupnext', 0);
114 }
4053b540 115 }
7f123cda 116
331900c6 117 $fetch = $_GET["fetch"];
175847de 118
76b4eae1 119// setcookie("ttrss_icons_url", ICONS_URL);
b2804af7
AD
120
121 if (!sanity_check($link)) { return; }
023fe037 122
8143ae1f 123 function outputFeedList($link, $tags = false) {
175847de 124
1a66d16e
AD
125 print "<html><head>
126 <title>Tiny Tiny RSS : Feedlist</title>
430bf183
AD
127 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">";
128
503eb349
AD
129 $user_theme = $_SESSION["theme"];
130 if ($user_theme) {
131 print "<link rel=\"stylesheet\" type=\"text/css\"
132 href=\"themes/$user_theme/theme.css\">";
133 }
134
4769ddaf 135 if (get_pref($link, 'USE_COMPACT_STYLESHEET')) {
430bf183
AD
136 print "<link rel=\"stylesheet\" type=\"text/css\"
137 href=\"tt-rss_compact.css\"/>";
138 } else {
139 print "<link title=\"Compact Stylesheet\" rel=\"alternate stylesheet\"
140 type=\"text/css\" href=\"tt-rss_compact.css\"/>";
141 }
142
8911ac8b
AD
143 $script_dt_add = get_script_dt_add();
144
53515ff1
AD
145 print "<script type=\"text/javascript\" src=\"functions.js?$script_dt_add\"></script>
146 <script type=\"text/javascript\" src=\"feedlist.js?$script_dt_add\"></script>
1a66d16e 147 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
beac550b
AD
148 <!--[if gte IE 5.5000]>
149 <script type=\"text/javascript\" src=\"pngfix.js\"></script>
2f52ca1b 150 <link rel=\"stylesheet\" type=\"text/css\" href=\"tt-rss-ie.css\">
beac550b 151 <![endif]-->
97dcd654
AD
152 </head><body>
153 <script type=\"text/javascript\">
154 if (document.addEventListener) {
155 document.addEventListener(\"DOMContentLoaded\", init, null);
156 }
157 window.onload = init;
158 </script>";
254e0e4b 159
140ff9db 160 print "<ul class=\"feedList\" id=\"feedList\">\n";
254e0e4b 161
4356293a
AD
162 $owner_uid = $_SESSION["uid"];
163
8143ae1f 164 if (!$tags) {
254e0e4b 165
8143ae1f 166 /* virtual feeds */
254e0e4b 167
91ff844a 168 if (get_pref($link, 'ENABLE_FEED_CATS')) {
937881b5
AD
169 print "<li class=\"feedCat\">Special</li>";
170 print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">";
91ff844a
AD
171 }
172
8143ae1f 173 $result = db_query($link, "SELECT count(id) as num_starred
4c193675
AD
174 FROM ttrss_entries,ttrss_user_entries
175 WHERE marked = true AND
176 ttrss_user_entries.ref_id = ttrss_entries.id AND
177 unread = true AND owner_uid = '$owner_uid'");
8143ae1f 178 $num_starred = db_fetch_result($result, 0, "num_starred");
254e0e4b 179
3745788e 180 $class = "virt";
8add756a
AD
181
182 if ($num_starred > 0) $class .= "Unread";
183
184 printFeedEntry(-1, $class, "Starred articles", $num_starred,
4668523d 185 "images/mark_set.png", $link);
48f0adb0 186
91ff844a 187 if (get_pref($link, 'ENABLE_FEED_CATS')) {
140ff9db 188 print "</ul>\n";
91ff844a
AD
189 }
190
cfaba6df 191 if (GLOBAL_ENABLE_LABELS && get_pref($link, 'ENABLE_LABELS')) {
8143ae1f
AD
192
193 $result = db_query($link, "SELECT id,sql_exp,description FROM
4356293a 194 ttrss_labels WHERE owner_uid = '$owner_uid' ORDER by description");
8143ae1f
AD
195
196 if (db_num_rows($result) > 0) {
91ff844a 197 if (get_pref($link, 'ENABLE_FEED_CATS')) {
937881b5
AD
198 print "<li class=\"feedCat\">Labels</li>";
199 print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">";
91ff844a 200 } else {
937881b5 201 print "<li><hr></li>";
91ff844a 202 }
8143ae1f
AD
203 }
204
205 while ($line = db_fetch_assoc($result)) {
48f0adb0 206
8143ae1f
AD
207 error_reporting (0);
208
280ee9a3
AD
209 $tmp_result = db_query($link, "SELECT count(id) as count
210 FROM ttrss_entries,ttrss_user_entries
4c193675
AD
211 WHERE (" . $line["sql_exp"] . ") AND unread = true AND
212 ttrss_user_entries.ref_id = ttrss_entries.id
655be073 213 AND owner_uid = '$owner_uid'");
8143ae1f
AD
214
215 $count = db_fetch_result($tmp_result, 0, "count");
216
3745788e 217 $class = "label";
8143ae1f
AD
218
219 if ($count > 0) {
220 $class .= "Unread";
221 }
222
cce28758 223 error_reporting (DEFAULT_ERROR_LEVEL);
8143ae1f
AD
224
225 printFeedEntry(-$line["id"]-11,
4668523d 226 $class, $line["description"], $count, "images/label.png", $link);
8143ae1f
AD
227
228 }
91ff844a
AD
229
230 if (db_num_rows($result) > 0) {
231 if (get_pref($link, 'ENABLE_FEED_CATS')) {
140ff9db 232 print "</ul>";
91ff844a
AD
233 }
234 }
235
236 }
237
238// if (!get_pref($link, 'ENABLE_FEED_CATS')) {
239 print "<li><hr></li>";
240// }
241
242 if (get_pref($link, 'ENABLE_FEED_CATS')) {
243 $order_by_qpart = "category,title";
244 } else {
245 $order_by_qpart = "title";
48f0adb0 246 }
8143ae1f 247
db42b934 248 $result = db_query($link, "SELECT ttrss_feeds.*,
fb1fb4ab 249 SUBSTRING(last_updated,1,19) AS last_updated_noms,
db42b934 250 (SELECT COUNT(id) FROM ttrss_entries,ttrss_user_entries
4c193675
AD
251 WHERE feed_id = ttrss_feeds.id AND
252 ttrss_user_entries.ref_id = ttrss_entries.id AND
253 owner_uid = '$owner_uid') AS total,
db42b934 254 (SELECT COUNT(id) FROM ttrss_entries,ttrss_user_entries
b88917af 255 WHERE feed_id = ttrss_feeds.id AND unread = true
4c193675 256 AND ttrss_user_entries.ref_id = ttrss_entries.id
91ff844a 257 AND owner_uid = '$owner_uid') as unread,
023fe037 258 cat_id,last_error,
db42b934
AD
259 ttrss_feed_categories.title AS category,
260 ttrss_feed_categories.collapsed
261 FROM ttrss_feeds LEFT JOIN ttrss_feed_categories
262 ON (ttrss_feed_categories.id = cat_id)
263 WHERE
264 ttrss_feeds.owner_uid = '$owner_uid' AND parent_feed IS NULL
265 ORDER BY $order_by_qpart");
266
8143ae1f
AD
267 $actid = $_GET["actid"];
268
269 /* real feeds */
270
271 $lnum = 0;
272
273 $total_unread = 0;
91ff844a
AD
274
275 $category = "";
fb1fb4ab
AD
276
277 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
8143ae1f 278
48f0adb0 279 while ($line = db_fetch_assoc($result)) {
8143ae1f 280
69668465 281 $feed = db_unescape_string($line["title"]);
8143ae1f
AD
282 $feed_id = $line["id"];
283
284 $subop = $_GET["subop"];
285
286 $total = $line["total"];
287 $unread = $line["unread"];
91ff844a 288
fb1fb4ab
AD
289 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
290 $last_updated = smart_date_time(strtotime($line["last_updated_noms"]));
291 } else {
292 $last_updated = date($short_date, strtotime($line["last_updated_noms"]));
293 }
294
9323147e
AD
295 $rtl_content = sql_bool_to_bool($line["rtl_content"]);
296
297 if ($rtl_content) {
298 $rtl_tag = "dir=\"RTL\"";
299 } else {
300 $rtl_tag = "";
301 }
302
db42b934
AD
303 $tmp_result = db_query($link,
304 "SELECT id,COUNT(unread) AS unread
305 FROM ttrss_feeds LEFT JOIN ttrss_user_entries
306 ON (ttrss_feeds.id = ttrss_user_entries.feed_id)
307 WHERE parent_feed = '$feed_id' AND unread = true
308 GROUP BY ttrss_feeds.id");
309
310 if (db_num_rows($tmp_result) > 0) {
311 while ($l = db_fetch_assoc($tmp_result)) {
312 $unread += $l["unread"];
313 }
314 }
315
fe14aeb8
AD
316 $cat_id = $line["cat_id"];
317
91ff844a
AD
318 $tmp_category = $line["category"];
319
320 if (!$tmp_category) {
321 $tmp_category = "Uncategorized";
322 }
8143ae1f
AD
323
324 // $class = ($lnum % 2) ? "even" : "odd";
023fe037
AD
325
326 if ($line["last_error"]) {
327 $class = "error";
328 } else {
329 $class = "feed";
330 }
8143ae1f
AD
331
332 if ($unread > 0) $class .= "Unread";
333
334 if ($actid == $feed_id) {
335 $class .= "Selected";
392d4563 336 }
48f0adb0 337
8143ae1f 338 $total_unread += $unread;
91ff844a
AD
339
340 if ($category != $tmp_category && get_pref($link, 'ENABLE_FEED_CATS')) {
341
342 if ($category) {
140ff9db 343 print "</ul></li>";
91ff844a
AD
344 }
345
346 $category = $tmp_category;
fe14aeb8
AD
347
348 $collapsed = $line["collapsed"];
349
65f85814
AD
350 // workaround for NULL category
351 if ($category == "Uncategorized") {
352 if ($_COOKIE["ttrss_vf_uclps"] == 1) {
353 $collapsed = "t";
354 }
355 }
356
fe14aeb8
AD
357 if ($collapsed == "t" || $collapsed == "1") {
358 $holder_class = "invisible";
65f85814 359 $ellipsis = "...";
fe14aeb8
AD
360 } else {
361 $holder_class = "";
65f85814 362 $ellipsis = "";
280ee9a3
AD
363 }
364
365 if ($cat_id) {
366 $cat_id_qpart = "cat_id = '$cat_id'";
367 } else {
368 $cat_id_qpart = "cat_id IS NULL";
369 }
370
371 $tmp_result = db_query($link, "SELECT count(int_id) AS unread
372 FROM ttrss_user_entries,ttrss_feeds WHERE
373 unread = true AND
374 feed_id = ttrss_feeds.id AND $cat_id_qpart AND
375 ttrss_user_entries.owner_uid = " . $_SESSION["uid"]);
376
377 $cat_unread = db_fetch_result($tmp_result, 0, "unread");
378
379 $cat_id = sprintf("%d", $cat_id);
91ff844a 380
fe14aeb8 381 print "<li class=\"feedCat\" id=\"FCAT-$cat_id\">
ff2c6e6a 382 <a href=\"javascript:toggleCollapseCat($cat_id)\">$tmp_category</a>
99ff73f4 383 <a href=\"javascript:viewCategory($cat_id)\" id=\"FCAP-$cat_id\">
280ee9a3 384 <span id=\"FCATCTR-$cat_id\"
fb1fb4ab
AD
385 class=\"$catctr_class\">($cat_unread unread)$ellipsis</span>
386 </a></li>";
c3f348c2
AD
387
388 // !!! NO SPACE before <ul...feedCatList - breaks firstChild DOM function
389 // -> keyboard navigation, etc.
96737ce9 390 print "<li id=\"feedCatHolder\" class=\"$holder_class\"><ul class=\"feedCatList\" id=\"FCATLIST-$cat_id\">";
91ff844a 391 }
8143ae1f 392
91ff844a 393 printFeedEntry($feed_id, $class, $feed, $unread,
fb1fb4ab
AD
394 "icons/$feed_id.ico", $link, $rtl_content,
395 $last_updated, $line["last_error"]);
8143ae1f
AD
396
397 ++$lnum;
48f0adb0 398 }
91ff844a 399
8143ae1f 400 } else {
a1a8a2be 401
8143ae1f 402 // tags
a1a8a2be 403
987170e6 404/* $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
05732aa0
AD
405 FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
406 post_int_id = ttrss_user_entries.int_id AND
407 unread = true AND ref_id = ttrss_entries.id
3b0948c4 408 AND ttrss_tags.owner_uid = '$owner_uid' GROUP BY tag_name
8143ae1f 409 UNION
3b0948c4 410 select tag_name,0 as count FROM ttrss_tags WHERE owner_uid = '$owner_uid'
987170e6
AD
411 ORDER BY tag_name"); */
412
413 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
414 FROM ttrss_user_entries WHERE int_id = post_int_id
415 AND unread = true)) AS count FROM ttrss_tags
416 WHERE owner_uid = 2 GROUP BY tag_name ORDER BY tag_name");
417
8143ae1f
AD
418 $tags = array();
419
420 while ($line = db_fetch_assoc($result)) {
421 $tags[$line["tag_name"]] += $line["count"];
1a66d16e 422 }
8143ae1f
AD
423
424 foreach (array_keys($tags) as $tag) {
425
426 $unread = $tags[$tag];
427
83957936 428 $class = "tag";
8143ae1f
AD
429
430 if ($unread > 0) {
431 $class .= "Unread";
432 }
433
4668523d 434 printFeedEntry($tag, $class, $tag, $unread, "images/tag.png", $link);
8143ae1f
AD
435
436 }
1a66d16e 437
e828e31e 438 }
82baad4a 439
dc33ec95 440 if (db_num_rows($result) == 0) {
8037c618
AD
441 if ($tags) {
442 $what = "tags";
443 } else {
444 $what = "feeds";
445 }
446 print "<li>No $what to display.</li>";
dc33ec95
AD
447 }
448
8143ae1f 449 print "</ul>";
1cd17194 450
97dcd654
AD
451 print '
452 <script type="text/javascript">
453 /* for IE */
454 function statechange() {
455 if (document.readyState == "interactive") init();
456 }
457
458 if (document.readyState) {
459 if (document.readyState == "interactive" || document.readyState == "complete") {
460 init();
461 } else {
462 document.onreadystatechange = statechange;
463 }
464 }
465 </script></body></html>';
c3b81db0
AD
466 }
467
468
469 if ($op == "rpc") {
01b3e191 470 handle_rpc_request($link);
c3b81db0
AD
471 }
472
473 if ($op == "feeds") {
474
8143ae1f
AD
475 $tags = $_GET["tags"];
476
c3b81db0
AD
477 $subop = $_GET["subop"];
478
479 if ($subop == "catchupAll") {
b018b49b 480 db_query($link, "UPDATE ttrss_user_entries SET
6d15e1ef 481 last_read = NOW(),unread = false WHERE owner_uid = " . $_SESSION["uid"]);
c3b81db0
AD
482 }
483
fe14aeb8
AD
484 if ($subop == "collapse") {
485 $cat_id = db_escape_string($_GET["cid"]);
280ee9a3 486
fe14aeb8
AD
487 db_query($link, "UPDATE ttrss_feed_categories SET
488 collapsed = NOT collapsed WHERE id = '$cat_id' AND owner_uid = " .
489 $_SESSION["uid"]);
490 return;
491 }
492
8143ae1f 493 outputFeedList($link, $tags);
c3b81db0 494
1cd17194
AD
495 }
496
497 if ($op == "view") {
498
70f6dbb1
AD
499 $id = db_escape_string($_GET["id"]);
500 $feed_id = db_escape_string($_GET["feed"]);
501
502 $result = db_query($link, "SELECT rtl_content FROM ttrss_feeds
503 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
504
505 if (db_num_rows($result) == 1) {
506 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
507 } else {
508 $rtl_content = false;
509 }
510
511 if ($rtl_content) {
512 $rtl_tag = "dir=\"RTL\"";
ed51e128 513 $rtl_class = "RTL";
70f6dbb1
AD
514 } else {
515 $rtl_tag = "";
ed51e128 516 $rtl_class = "";
70f6dbb1 517 }
d76a3b03 518
4c193675
AD
519 $result = db_query($link, "UPDATE ttrss_user_entries
520 SET unread = false,last_read = NOW()
521 WHERE ref_id = '$id' AND feed_id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
a1a8a2be 522
21703604 523 $result = db_query($link, "SELECT title,link,content,feed_id,comments,int_id,
9167e250 524 SUBSTRING(updated,1,16) as updated,
11b0dce2 525 (SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url,
a545b564
AD
526 num_comments,
527 author
4c193675 528 FROM ttrss_entries,ttrss_user_entries
12fb24b9 529 WHERE id = '$id' AND ref_id = id AND owner_uid = " . $_SESSION["uid"]);
1cd17194 530
59b8192f
AD
531 print "<html><head>
532 <title>Tiny Tiny RSS : Article $id</title>
533 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">";
503eb349 534
59b8192f
AD
535 $user_theme = $_SESSION["theme"];
536 if ($user_theme) {
537 print "<link rel=\"stylesheet\" type=\"text/css\"
538 href=\"themes/$user_theme/theme.css\">";
539 }
503eb349 540
59b8192f
AD
541 if (get_pref($link, 'USE_COMPACT_STYLESHEET')) {
542 print "<link rel=\"stylesheet\" type=\"text/css\"
543 href=\"tt-rss_compact.css\"/>";
544 } else {
545 print "<link title=\"Compact Stylesheet\" rel=\"alternate stylesheet\"
546 type=\"text/css\" href=\"tt-rss_compact.css\"/>";
70830c87
AD
547 }
548
8911ac8b
AD
549 $script_dt_add = get_script_dt_add();
550
53515ff1 551 print "<script type=\"text/javascript\" src=\"functions.js?$script_dt_add\"></script>
59b8192f 552 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
70f6dbb1 553 </head><body $rtl_tag>";
59b8192f 554
d76a3b03 555 if ($result) {
1cd17194 556
648472a7 557 $line = db_fetch_assoc($result);
1cd17194 558
b7f4bda2
AD
559 if ($line["icon_url"]) {
560 $feed_icon = "<img class=\"feedIcon\" src=\"" . $line["icon_url"] . "\">";
561 } else {
562 $feed_icon = "&nbsp;";
563 }
d76a3b03 564
11b0dce2 565/* if ($line["comments"] && $line["link"] != $line["comments"]) {
f7181e9b
AD
566 $entry_comments = "(<a href=\"".$line["comments"]."\">Comments</a>)";
567 } else {
568 $entry_comments = "";
11b0dce2
AD
569 } */
570
571 $num_comments = $line["num_comments"];
572 $entry_comments = "";
573
574 if ($num_comments > 0) {
575 if ($line["comments"]) {
576 $comments_url = $line["comments"];
577 } else {
578 $comments_url = $line["link"];
579 }
6a1ad084 580 $entry_comments = "<a href=\"$comments_url\">$num_comments comments</a>";
11b0dce2
AD
581 } else {
582 if ($line["comments"] && $line["link"] != $line["comments"]) {
672366bd 583 $entry_comments = "<a href=\"".$line["comments"]."\">comments</a>";
11b0dce2 584 }
f7181e9b
AD
585 }
586
e828e31e
AD
587 print "<div class=\"postReply\">";
588
21703604
AD
589 print "<div class=\"postHeader\"><table width=\"100%\">";
590
a545b564
AD
591 $entry_author = $line["author"];
592
593 if ($entry_author) {
594 $entry_author = " - by $entry_author";
595 }
596
597 print "<tr><td><a href=\"" . $line["link"] . "\">" . $line["title"] .
598 "</a>$entry_author</td>";
9167e250
AD
599
600 $parsed_updated = date(get_pref($link, 'LONG_DATE_FORMAT'),
601 strtotime($line["updated"]));
602
ed51e128 603 print "<td class=\"postDate$rtl_class\">$parsed_updated</td>";
9167e250
AD
604
605 print "</tr>";
21703604
AD
606
607 $tmp_result = db_query($link, "SELECT DISTINCT tag_name FROM
608 ttrss_tags WHERE post_int_id = " . $line["int_id"] . "
609 ORDER BY tag_name");
610
611 $tags_str = "";
42918a07
AD
612 $f_tags_str = "";
613
614 $num_tags = 0;
21703604
AD
615
616 while ($tmp_line = db_fetch_assoc($tmp_result)) {
42918a07
AD
617 $num_tags++;
618 $tag = $tmp_line["tag_name"];
619 $tag_str = "<a href=\"javascript:parent.viewfeed('$tag')\">$tag</a>, ";
620
621 if ($num_tags == 5) {
622 $tags_str .= "<a href=\"javascript:showBlockElement('allEntryTags')\">...</a>";
623 } else if ($num_tags < 5) {
624 $tags_str .= $tag_str;
625 }
626 $f_tags_str .= $tag_str;
627 }
21703604 628
42918a07
AD
629 $tags_str = preg_replace("/, $/", "", $tags_str);
630 $f_tags_str = preg_replace("/, $/", "", $f_tags_str);
e828e31e 631
6a1ad084 632// $truncated_link = truncate_string($line["link"], 60);
21703604 633
6a1ad084
AD
634 if ($tags_str || $entry_comments) {
635 print "<tr><td width='50%'>
636 $entry_comments</td>
637 <td align=\"right\">$tags_str</td></tr>";
638 }
21703604 639
e828e31e
AD
640 print "</table></div>";
641
642 print "<div class=\"postIcon\">" . $feed_icon . "</div>";
42918a07
AD
643 print "<div class=\"postContent\">";
644
645 if (db_num_rows($tmp_result) > 5) {
646 print "<div id=\"allEntryTags\">Tags: $f_tags_str</div>";
647 }
648
68511f86
AD
649 if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW')) {
650 $line["content"] = preg_replace("/href=/i", "target=\"_new\" href=", $line["content"]);
651 }
652
42918a07 653 print $line["content"] . "</div>";
e828e31e
AD
654
655 print "</div>";
656
090e250b 657 print "<script type=\"text/javascript\">
4f3a84f4 658 update_all_counters('$feed_id');
090e250b 659 </script>";
d76a3b03 660 }
70830c87 661
59b8192f 662 print "</body></html>";
1cd17194
AD
663 }
664
665 if ($op == "viewfeed") {
666
3c81ae1a
AD
667 $feed = db_escape_string($_GET["feed"]);
668 $skip = db_escape_string($_GET["skip"]);
669 $subop = db_escape_string($_GET["subop"]);
670 $view_mode = db_escape_string($_GET["view"]);
671 $limit = db_escape_string($_GET["limit"]);
672 $cat_view = db_escape_string($_GET["cat"]);
e0998414 673 $next_unread_feed = db_escape_string($_GET["nuf"]);
a1a8a2be 674
ac53063a
AD
675 if (!$skip) $skip = 0;
676
476cac42 677 if ($subop == "undefined") $subop = "";
1cd17194 678
59b8192f
AD
679 print "<html><head>
680 <title>Tiny Tiny RSS : Feed $feed</title>
681 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">";
503eb349 682
59b8192f
AD
683 $user_theme = $_SESSION["theme"];
684 if ($user_theme) {
685 print "<link rel=\"stylesheet\" type=\"text/css\"
686 href=\"themes/$user_theme/theme.css\">";
687 }
430bf183 688
59b8192f
AD
689 if (get_pref($link, 'USE_COMPACT_STYLESHEET')) {
690 print "<link rel=\"stylesheet\"
691 type=\"text/css\" href=\"tt-rss_compact.css\"/>";
503eb349 692
59b8192f
AD
693 } else {
694 print "<link title=\"Compact Stylesheet\" rel=\"alternate stylesheet\"
695 type=\"text/css\" href=\"tt-rss_compact.css\"/>";
f0601b87
AD
696 }
697
e0998414
AD
698 if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0) {
699 update_generic_feed($link, $feed, $cat_view);
700 }
701
702 if ($subop == "MarkAllRead") {
703 catchup_feed($link, $feed, $cat_view);
704
705 if (get_pref($link, 'ON_CATCHUP_SHOW_NEXT_FEED')) {
adba6b85
AD
706 if ($next_unread_feed) {
707 $feed = $next_unread_feed;
708 }
e0998414
AD
709 }
710 }
711
2e915ba9
AD
712 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
713
714 $result = db_query($link, "SELECT rtl_content FROM ttrss_feeds
715 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
70f6dbb1 716
2e915ba9
AD
717 if (db_num_rows($result) == 1) {
718 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
719 } else {
720 $rtl_content = false;
721 }
722
723 if ($rtl_content) {
724 $rtl_tag = "dir=\"RTL\"";
725 } else {
726 $rtl_tag = "";
727 }
70f6dbb1
AD
728 } else {
729 $rtl_tag = "";
2e915ba9 730 $rtl_content = false;
70f6dbb1
AD
731 }
732
8911ac8b
AD
733 $script_dt_add = get_script_dt_add();
734
59b8192f 735 print "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
53515ff1
AD
736 <script type=\"text/javascript\" src=\"functions.js?$script_dt_add\"></script>
737 <script type=\"text/javascript\" src=\"viewfeed.js?$script_dt_add\"></script>
59b8192f
AD
738 <!--[if gte IE 5.5000]>
739 <script type=\"text/javascript\" src=\"pngfix.js\"></script>
740 <link rel=\"stylesheet\" type=\"text/css\" href=\"tt-rss-ie.css\">
741 <![endif]-->
10031c3b 742 </head><body $rtl_tag>
59b8192f
AD
743 <script type=\"text/javascript\">
744 if (document.addEventListener) {
745 document.addEventListener(\"DOMContentLoaded\", init, null);
746 }
747 window.onload = init;
748 </script>";
749
f932bc9f
AD
750 $search = db_escape_string($_GET["search"]);
751 $search_mode = db_escape_string($_GET["smode"]);
52b51244 752
f175937c 753 if ($search) {
8e84993b
AD
754 $search_query_part = "(upper(ttrss_entries.title) LIKE upper('%$search%')
755 OR ttrss_entries.content LIKE '%$search%') AND";
f175937c
AD
756 } else {
757 $search_query_part = "";
758 }
759
760 $view_query_part = "";
761
0ee2d12f 762 if ($view_mode == "Adaptive") {
f18d0d94
AD
763 if ($search) {
764 $view_query_part = " ";
765 } else if ($feed != -1) {
0ee2d12f
AD
766 $unread = getFeedUnread($link, $feed);
767 if ($unread > 0) {
768 $view_query_part = " unread = true AND ";
769 }
770 }
771 }
772
f175937c
AD
773 if ($view_mode == "Starred") {
774 $view_query_part = " marked = true AND ";
ac53063a
AD
775 }
776
ac43eba1
AD
777 if ($view_mode == "Unread") {
778 $view_query_part = " unread = true AND ";
779 }
780
8d7008c7 781 if ($limit && $limit != "All") {
82c9223c 782 $limit_query_part = "LIMIT " . $limit;
ad3cb710 783 }
f0601b87 784
254e0e4b
AD
785 $vfeed_query_part = "";
786
52b51244 787 // override query strategy and enable feed display when searching globally
d3416913 788 if ($search && $search_mode == "All feeds") {
8e84993b 789 $query_strategy_part = "ttrss_entries.id > 0";
b0005823 790 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
d0bb308e 791 } else if (preg_match("/^-?[0-9][0-9]*$/", $feed) == false) {
8143ae1f
AD
792 $query_strategy_part = "ttrss_entries.id > 0";
793 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
794 id = feed_id) as feed_title,";
b0005823
AD
795 } else if ($feed >= 0 && $search && $search_mode == "This category") {
796
797 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
798
799 $tmp_result = db_query($link, "SELECT id
800 FROM ttrss_feeds WHERE cat_id =
801 (SELECT cat_id FROM ttrss_feeds WHERE id = '$feed') AND id != '$feed'");
802
803 $cat_siblings = array();
804
805 if (db_num_rows($tmp_result) > 0) {
806 while ($p = db_fetch_assoc($tmp_result)) {
807 array_push($cat_siblings, "feed_id = " . $p["id"]);
808 }
809
810 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
811 $feed, implode(" OR ", $cat_siblings));
812
813 } else {
814 $query_strategy_part = "ttrss_entries.id > 0";
815 }
ff2c6e6a 816
8143ae1f 817 } else if ($feed >= 0) {
60103089 818
ff2c6e6a 819 if ($cat_view) {
b0005823 820
99ff73f4
AD
821 if ($feed > 0) {
822 $query_strategy_part = "cat_id = '$feed'";
823 } else {
824 $query_strategy_part = "cat_id IS NULL";
825 }
826
60103089 827 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ff2c6e6a
AD
828
829 } else {
830 $tmp_result = db_query($link, "SELECT id
831 FROM ttrss_feeds WHERE parent_feed = '$feed'
832 ORDER BY cat_id,title");
833
834 $parent_ids = array();
835
836 if (db_num_rows($tmp_result) > 0) {
837 while ($p = db_fetch_assoc($tmp_result)) {
838 array_push($parent_ids, "feed_id = " . $p["id"]);
839 }
840
841 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
842 $feed, implode(" OR ", $parent_ids));
843
844 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
845 } else {
846 $query_strategy_part = "feed_id = '$feed'";
847 }
60103089 848 }
48f0adb0 849 } else if ($feed == -1) { // starred virtual feed
254e0e4b 850 $query_strategy_part = "marked = true";
60103089 851 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
48f0adb0
AD
852 } else if ($feed <= -10) { // labels
853 $label_id = -$feed - 11;
854
855 $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels
856 WHERE id = '$label_id'");
857
858 $query_strategy_part = db_fetch_result($tmp_result, 0, "sql_exp");
859
60103089 860 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
254e0e4b 861 } else {
48f0adb0 862 $query_strategy_part = "id > 0"; // dumb
254e0e4b
AD
863 }
864
f99321a3
AD
865 $order_by = "updated DESC";
866
867// if ($feed < -10) {
868// $order_by = "feed_id,updated DESC";
869// }
870
1572afe5
AD
871 $feed_title = "";
872
873 if ($search && $search_mode == "All feeds") {
49b7cbd3 874 $feed_title = "Global search results ($search)";
d0bb308e 875 } else if ($search && preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
49b7cbd3 876 $feed_title = "Feed search results ($search, $feed)";
d0bb308e
AD
877 } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
878 $feed_title = $feed;
879 } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) != false && $feed >= 0) {
1572afe5 880
ff2c6e6a 881 if ($cat_view) {
ff2c6e6a 882
019ce9f3
AD
883 if ($feed != 0) {
884 $result = db_query($link, "SELECT title FROM ttrss_feed_categories
885 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
886 $feed_title = db_fetch_result($result, 0, "title");
887 } else {
888 $feed_title = "Uncategorized";
889 }
ff2c6e6a
AD
890 } else {
891
892 $result = db_query($link, "SELECT title,site_url,last_error FROM ttrss_feeds
893 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
894
895 $feed_title = db_fetch_result($result, 0, "title");
896 $feed_site_url = db_fetch_result($result, 0, "site_url");
897 $last_error = db_fetch_result($result, 0, "last_error");
898
899 }
1572afe5
AD
900
901 } else if ($feed == -1) {
902 $feed_title = "Starred articles";
903 } else if ($feed < -10) {
904 $label_id = -$feed - 11;
905 $result = db_query($link, "SELECT description FROM ttrss_labels
906 WHERE id = '$label_id'");
907 $feed_title = db_fetch_result($result, 0, "description");
908 } else {
909 $feed_title = "?";
910 }
911
3fdaa067
AD
912 $feed_title = db_unescape_string($feed_title);
913
48f0adb0
AD
914 if ($feed < -10) error_reporting (0);
915
386cbf27
AD
916 print "<div id=\"headlinesContainer\">";
917
d0bb308e 918 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
8143ae1f 919
99ff73f4 920 if ($feed >= 0) {
21703604
AD
921 $feed_kind = "Feeds";
922 } else {
923 $feed_kind = "Labels";
924 }
925
386cbf27
AD
926// if (!$vfeed_query_part) {
927 $content_query_part = "content as content_preview,";
928// } else {
929// $content_query_part = "";
930// }
bd34c528 931
894ebcf5 932 $query = "SELECT
60103089 933 ttrss_entries.id,ttrss_entries.title,
1572afe5
AD
934 SUBSTRING(updated,1,16) as updated,
935 unread,feed_id,marked,link,last_read,
8143ae1f
AD
936 SUBSTRING(last_read,1,19) as last_read_noms,
937 $vfeed_query_part
bd34c528
AD
938 $content_query_part
939 SUBSTRING(updated,1,19) as updated_noms
8143ae1f 940 FROM
60103089 941 ttrss_entries,ttrss_user_entries,ttrss_feeds
8143ae1f 942 WHERE
60103089 943 ttrss_user_entries.feed_id = ttrss_feeds.id AND
4c193675 944 ttrss_user_entries.ref_id = ttrss_entries.id AND
60103089 945 ttrss_user_entries.owner_uid = '".$_SESSION["uid"]."' AND
8143ae1f
AD
946 $search_query_part
947 $view_query_part
948 $query_strategy_part ORDER BY $order_by
894ebcf5
AD
949 $limit_query_part";
950
951 $result = db_query($link, $query);
952
953 if ($_GET["debug"]) print $query;
8143ae1f
AD
954
955 } else {
956 // browsing by tag
957
21703604
AD
958 $feed_kind = "Tags";
959
8143ae1f 960 $result = db_query($link, "SELECT
1572afe5
AD
961 ttrss_entries.id as id,title,
962 SUBSTRING(updated,1,16) as updated,
963 unread,feed_id,
1e471f3b 964 marked,link,last_read,
c05a19f3 965 SUBSTRING(last_read,1,19) as last_read_noms,
254e0e4b 966 $vfeed_query_part
bd34c528
AD
967 $content_query_part
968 SUBSTRING(updated,1,19) as updated_noms
8143ae1f 969 FROM
05732aa0 970 ttrss_entries,ttrss_user_entries,ttrss_tags
8143ae1f 971 WHERE
05732aa0
AD
972 ref_id = ttrss_entries.id AND
973 ttrss_user_entries.owner_uid = '".$_SESSION["uid"]."' AND
974 post_int_id = int_id AND tag_name = '$feed' AND
8143ae1f
AD
975 $view_query_part
976 $search_query_part
977 $query_strategy_part ORDER BY $order_by
978 $limit_query_part");
979 }
d76a3b03 980
48f0adb0 981 if (!$result) {
386cbf27
AD
982 print "<div align='center'>
983 Could not display feed (query failed). Please check label match syntax or local configuration.</div>";
984 return;
adccd201 985 }
98bea1b1 986
e0a7121b 987 function print_headline_subtoolbar($link, $feed_site_url, $feed_title,
c1c9df00 988 $bottom = false, $rtl_content = false) {
f56ec297 989
e0a7121b
AD
990 if (!$bottom) {
991 $class = "headlinesSubToolbar";
992 $tid = "headlineActionsTop";
993 } else {
994 $class = "invisible";
995 $tid = "headlineActionsBottom";
996 }
997
998 print "<table class=\"$class\" id=\"$tid\"
386cbf27
AD
999 width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tr>";
1000
c1c9df00
AD
1001 if ($rtl_content) {
1002 $rtl_cpart = "RTL";
1003 } else {
1004 $rtl_cpart = "";
1005 }
1006
386cbf27 1007 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
adccd201 1008
c1c9df00 1009 print "<td class=\"headlineActions$rtl_cpart\">
adccd201 1010 Select:
e7811ea5
AD
1011 <a href='#' onclick=\"javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, '', true)\">All</a>,
1012 <a href='#' onclick=\"javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true)\">Unread</a>,
1013 <a href='#' onclick=\"javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false)\">None</a>
386cbf27 1014 &nbsp;&nbsp;
e7811ea5
AD
1015 Toggle: <a href='#' onclick=\"javascript:selectionToggleUnread()\">Unread</a>,
1016 <a href='#' onclick=\"javascript:selectionToggleMarked()\">Starred</a>";
adccd201 1017 print "</td>";
386cbf27
AD
1018
1019 } else {
1020
c1c9df00 1021 print "<td class=\"headlineActions$rtl_cpart\">
386cbf27 1022 Select:
e7811ea5
AD
1023 <a href=\"#\" onclick=\"javascript:cdmSelectArticles('all')\">All</a>,
1024 <a href=\"#\" onclick=\"javascript:cdmSelectArticles('unread')\">Unread</a>,
1025 <a href=\"#\" onclick=\"javascript:cdmSelectArticles('none')\">None</a>
386cbf27 1026 &nbsp;&nbsp;
e7811ea5
AD
1027 Toggle: <a href=\"#\" onclick=\"javascript:selectionToggleUnread(true)\">Unread</a>,
1028 <a href=\"#\" onclick=\"javascript:selectionToggleMarked(true)\">Starred</a>";
386cbf27 1029
adccd201 1030 print "</td>";
386cbf27 1031
386cbf27
AD
1032 }
1033
c1c9df00 1034 print "<td class=\"headlineTitle$rtl_cpart\">";
adccd201 1035
386cbf27 1036 if ($feed_site_url) {
c7a8abe6
AD
1037 if (!$bottom) {
1038 $target = "target=\"_blank\"";
1039 }
1040 print "<a $target href=\"$feed_site_url\">$feed_title</a>";
386cbf27
AD
1041 } else {
1042 print $feed_title;
1043 }
1044
1045 print "</td>";
1046 print "</tr></table>";
1047
98bea1b1
AD
1048 }
1049
1050 if (db_num_rows($result) > 0) {
1051
c1c9df00
AD
1052 print_headline_subtoolbar($link, $feed_site_url, $feed_title, false,
1053 $rtl_content);
98bea1b1 1054
386cbf27 1055 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
adccd201 1056 print "<table class=\"headlinesList\" id=\"headlinesList\"
10031c3b 1057 cellspacing=\"0\" width=\"100%\">";
f4c10d44 1058 }
386cbf27 1059
e5a99b88
AD
1060 $lnum = 0;
1061
1062 error_reporting (DEFAULT_ERROR_LEVEL);
1063
1064 $num_unread = 0;
1065
1066 while ($line = db_fetch_assoc($result)) {
adccd201 1067
e5a99b88
AD
1068 $class = ($lnum % 2) ? "even" : "odd";
1069
1070 $id = $line["id"];
1071 $feed_id = $line["feed_id"];
1072
1073 if ($line["last_read"] == "" &&
1074 ($line["unread"] != "t" && $line["unread"] != "1")) {
1075
1076 $update_pic = "<img id='FUPDPIC-$id' src=\"images/updated.png\"
1077 alt=\"Updated\">";
1078 } else {
1079 $update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.gif\"
1080 alt=\"Updated\">";
1081 }
1082
1083 if ($line["unread"] == "t" || $line["unread"] == "1") {
1084 $class .= "Unread";
1085 ++$num_unread;
386cbf27 1086 $is_unread = true;
adccd201 1087 } else {
386cbf27 1088 $is_unread = false;
e5a99b88
AD
1089 }
1090
1091 if ($line["marked"] == "t" || $line["marked"] == "1") {
1092 $marked_pic = "<img id=\"FMARKPIC-$id\" src=\"images/mark_set.png\"
9932fb06 1093 alt=\"Reset mark\" onclick='javascript:toggleMark($id)'>";
e5a99b88
AD
1094 } else {
1095 $marked_pic = "<img id=\"FMARKPIC-$id\" src=\"images/mark_unset.png\"
9932fb06 1096 alt=\"Set mark\" onclick='javascript:toggleMark($id)'>";
e5a99b88
AD
1097 }
1098
e454a889 1099 $content_link = "<a href=\"javascript:view($id,$feed_id);\">" .
e5a99b88 1100 $line["title"] . "</a>";
adccd201 1101
e5a99b88
AD
1102 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
1103 $updated_fmt = smart_date_time(strtotime($line["updated"]));
1104 } else {
1105 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
1106 $updated_fmt = date($short_date, strtotime($line["updated"]));
1107 }
adccd201
AD
1108
1109 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
8fd0c717 1110 $content_preview = truncate_string(strip_tags($line["content_preview"]),
070d0d2a 1111 100);
adccd201
AD
1112 }
1113
386cbf27 1114 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
adccd201
AD
1115
1116 print "<tr class='$class' id='RROW-$id'>";
adccd201
AD
1117
1118 print "<td class='hlUpdatePic'>$update_pic</td>";
1119
1120 print "<td class='hlSelectRow'>
1121 <input type=\"checkbox\" onclick=\"toggleSelectRow(this)\"
1122 class=\"feedCheckBox\" id=\"RCHK-$id\">
1123 </td>";
1124
1125 print "<td class='hlMarkedPic'>$marked_pic</td>";
1126
1127 if ($line["feed_title"]) {
1128 print "<td class='hlContent'>$content_link</td>";
1129 print "<td class='hlFeed'>
9b1424fe
AD
1130 <a href='javascript:viewfeed($feed_id)'>".
1131 $line["feed_title"]."</a>&nbsp;</td>";
adccd201 1132 } else {
de244d27 1133 print "<td class='hlContent' valign='middle'>";
adccd201 1134
e454a889 1135 print "<a href=\"javascript:view($id,$feed_id);\">" .
adccd201
AD
1136 $line["title"];
1137
70f6dbb1 1138 if (get_pref($link, 'SHOW_CONTENT_PREVIEW') && !$rtl_tag) {
adccd201
AD
1139 if ($content_preview) {
1140 print "<span class=\"contentPreview\"> - $content_preview</span>";
1141 }
1142 }
1143
1144 print "</a>";
1145 print "</td>";
1146 }
1147
1148 print "<td class=\"hlUpdated\"><nobr>$updated_fmt&nbsp;</nobr></td>";
1149
1150 print "</tr>";
1151
1152 } else {
386cbf27
AD
1153
1154 if ($is_unread) {
1155 $add_class = "Unread";
1156 } else {
1157 $add_class = "";
1158 }
1159
1160 print "<div class=\"cdmArticle$add_class\" id=\"RROW-$id\">";
1161
1162 print "<div class=\"cdmHeader\">";
adccd201 1163
5f51022a
AD
1164 print "<div style=\"float : right\">$updated_fmt,
1165 <a class=\"cdmToggleLink\"
1166 href=\"javascript:toggleUnread($id)\">Toggle unread</a>
1167 </div>";
386cbf27 1168
5f51022a
AD
1169 print "<a class=\"title\"
1170 onclick=\"javascript:toggleUnread($id, 0)\"
1171 target=\"new\" href=\"".$line["link"]."\">".$line["title"]."</a>";
adccd201 1172
386cbf27
AD
1173 if ($line["feed_title"]) {
1174 print "&nbsp;(<a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a>)";
adccd201 1175 }
adccd201 1176
386cbf27
AD
1177 print "</div>";
1178
1179 print "<div class=\"cdmContent\">" . $line["content_preview"] . "</div>";
5f51022a 1180
386cbf27 1181 print "<div style=\"float : right\">$marked_pic</div>
5f51022a 1182 <div lass=\"cdmFooter\">
386cbf27
AD
1183 <input type=\"checkbox\" onclick=\"toggleSelectRowById(this,
1184 'RROW-$id')\" class=\"feedCheckBox\" id=\"RCHK-$id\"></div>";
1185
5f51022a
AD
1186# print "<div align=\"center\"><a class=\"cdmToggleLink\"
1187# href=\"javascript:toggleUnread($id)\">
1188# Toggle unread</a></div>";
1189
386cbf27
AD
1190 print "</div>";
1191
1192 }
e5a99b88
AD
1193
1194 ++$lnum;
254e0e4b 1195 }
adccd201 1196
386cbf27 1197 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
adccd201 1198 print "</table>";
adccd201 1199 }
d76a3b03 1200
e0a7121b 1201 print_headline_subtoolbar($link,
f90372c4 1202 "javascript:catchupPage()", "Mark page as read", true, $rtl_content);
98bea1b1
AD
1203
1204
e5a99b88
AD
1205 } else {
1206 print "<div width='100%' align='center'>No articles found.</div>";
a1a8a2be 1207 }
d76a3b03 1208
386cbf27 1209 print "</div>";
d76a3b03 1210
386cbf27
AD
1211 print "<script type=\"text/javascript\">
1212 document.onkeydown = hotkey_handler;
5a494a0b 1213 // if (parent.daemon_enabled) parent.updateTitle('$feed_title');
386cbf27
AD
1214 update_all_counters('$feed');
1215 </script>";
adccd201 1216
97dcd654
AD
1217 print '
1218 <script type="text/javascript">
1219 /* for IE */
1220 function statechange() {
1221 if (document.readyState == "interactive") init();
1222 }
1223
1224 if (document.readyState) {
1225 if (document.readyState == "interactive" || document.readyState == "complete") {
1226 init();
1227 } else {
1228 document.onreadystatechange = statechange;
1229 }
1230 }
1231 </script>';
1232
59b8192f 1233 print "</body></html>";
1cd17194
AD
1234 }
1235
0e091d38 1236 if ($op == "pref-rpc") {
331900c6 1237
0e091d38 1238 $subop = $_GET["subop"];
331900c6 1239
83fe4d6d 1240 if ($subop == "unread") {
f932bc9f 1241 $ids = split(",", db_escape_string($_GET["ids"]));
83fe4d6d 1242 foreach ($ids as $id) {
a5873b2e
AD
1243 db_query($link, "UPDATE ttrss_user_entries SET unread = true
1244 WHERE feed_id = '$id' AND owner_uid = ".$_SESSION["uid"]);
83fe4d6d 1245 }
0e091d38 1246
a5873b2e 1247 print "Marked selected feeds as unread.";
83fe4d6d
AD
1248 }
1249
1250 if ($subop == "read") {
f932bc9f 1251 $ids = split(",", db_escape_string($_GET["ids"]));
83fe4d6d 1252 foreach ($ids as $id) {
a5873b2e
AD
1253 db_query($link, "UPDATE ttrss_user_entries
1254 SET unread = false,last_read = NOW() WHERE
1255 feed_id = '$id' AND owner_uid = ".$_SESSION["uid"]);
83fe4d6d 1256 }
0e091d38 1257
a5873b2e 1258 print "Marked selected feeds as read.";
0e091d38
AD
1259
1260 }
1261
1262 }
1263
1264 if ($op == "pref-feeds") {
1265
47c6c988
AD
1266 $subop = $_REQUEST["subop"];
1267 $quiet = $_REQUEST["quiet"];
0e091d38 1268
a0476535
AD
1269 if ($subop == "massSubscribe") {
1270 $ids = split(",", db_escape_string($_GET["ids"]));
1271
a7f22b70
AD
1272 $subscribed = array();
1273
a0476535
AD
1274 foreach ($ids as $id) {
1275 $result = db_query($link, "SELECT feed_url,title FROM ttrss_feeds
1276 WHERE id = '$id'");
1277
1278 $feed_url = db_fetch_result($result, 0, "feed_url");
1279 $title = db_fetch_result($result, 0, "title");
1280
1281 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
1282 feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
1283
1284 if (db_num_rows($result) == 0) {
1285 $result = db_query($link,
1286 "INSERT INTO ttrss_feeds (owner_uid,feed_url,title,cat_id)
1287 VALUES ('".$_SESSION["uid"]."', '$feed_url', '$title', NULL)");
a7f22b70
AD
1288
1289 array_push($subscribed, $title);
1290 }
1291 }
1292
1293 if (count($subscribed) > 0) {
1294 print "<div class=\"notice\">";
1295 print "<b>Subscribed to feeds:</b>";
1296 print "<ul class=\"nomarks\">";
1297 foreach ($subscribed as $title) {
1298 print "<li>$title</li>";
a0476535 1299 }
a7f22b70
AD
1300 print "</ul>";
1301 print "</div>";
a0476535
AD
1302 }
1303 }
1304
f9cb39ac 1305 if ($subop == "browse") {
e2f728be
AD
1306
1307 if (!ENABLE_FEED_BROWSER) {
1308 print "Feed browser is administratively disabled.";
1309 return;
1310 }
e5d758e3 1311
6311acbe 1312 print "<div id=\"infoBoxTitle\">Other feeds: Top 25</div>";
f9cb39ac
AD
1313
1314 print "<div class=\"infoBoxContents\">";
1315
6311acbe 1316 print "<p>Showing top 25 registered feeds, sorted by popularity:</p>";
f9cb39ac
AD
1317
1318 $result = db_query($link, "SELECT feed_url,count(id) AS subscribers
e3c99f3b
AD
1319 FROM ttrss_feeds
1320 WHERE auth_login = '' AND auth_pass = '' AND private = false
6311acbe 1321 GROUP BY feed_url ORDER BY subscribers DESC LIMIT 25");
f9cb39ac
AD
1322
1323 print "<ul class='browseFeedList' id='browseFeedList'>";
dc932d0a
AD
1324
1325 $feedctr = 0;
f9cb39ac
AD
1326
1327 while ($line = db_fetch_assoc($result)) {
1328 $feed_url = $line["feed_url"];
1329 $subscribers = $line["subscribers"];
dc932d0a
AD
1330
1331 $sub_result = db_query($link, "SELECT id
1332 FROM ttrss_feeds WHERE feed_url = '$feed_url' AND owner_uid =" .
1333 $_SESSION["uid"]);
1334
1335 if (db_num_rows($sub_result) > 0) {
1336 continue; // already subscribed
1337 }
f9cb39ac
AD
1338
1339 $det_result = db_query($link, "SELECT site_url,title,id
1340 FROM ttrss_feeds WHERE feed_url = '$feed_url' LIMIT 1");
1341
1342 $details = db_fetch_assoc($det_result);
1343
1344 $icon_file = ICONS_DIR . "/" . $details["id"] . ".ico";
1345
1346 if (file_exists($icon_file) && filesize($icon_file) > 0) {
1347 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"" . ICONS_URL .
1348 "/".$details["id"].".ico\">";
1349 } else {
1350 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
1351 }
1352
b92e6209
AD
1353 $check_box = "<input onclick='toggleSelectListRow(this)' class='feedBrowseCB'
1354 type=\"checkbox\" id=\"FBCHK-" . $details["id"] . "\">";
f9cb39ac 1355
b92e6209
AD
1356 $class = ($feedctr % 2) ? "even" : "odd";
1357
1358 print "<li class='$class' id=\"FBROW-".$details["id"]."\">$check_box".
1359 "$feed_icon " . db_unescape_string($details["title"]) .
f9cb39ac 1360 "&nbsp;<span class='subscribers'>($subscribers)</span></li>";
dc932d0a
AD
1361
1362 ++$feedctr;
1363 }
1364
1365 if ($feedctr == 0) {
1366 print "<li>No feeds found to subscribe.</li>";
1367 }
f9cb39ac
AD
1368
1369 print "</ul>";
1370
1371 print "<div align='center'>
f9cb39ac 1372 <input type=\"submit\" class=\"button\"
d10fabe4
AD
1373 onclick=\"feedBrowserSubscribe()\" value=\"Subscribe\">
1374 <input type='submit' class='button'
1375 onclick=\"closeInfoBox()\" value=\"Cancel\"></div>";
f9cb39ac
AD
1376
1377 print "</div>";
1378 return;
1379 }
1380
0ea4fb50
AD
1381 if ($subop == "editfeed") {
1382 $feed_id = db_escape_string($_GET["id"]);
1383
1384 $result = db_query($link,
1385 "SELECT * FROM ttrss_feeds WHERE id = '$feed_id' AND
1386 owner_uid = " . $_SESSION["uid"]);
1387
1388 $title = htmlspecialchars(db_unescape_string(db_fetch_result($result,
1389 0, "title")));
1390
0ea4fb50
AD
1391 $icon_file = ICONS_DIR . "/$feed_id.ico";
1392
1393 if (file_exists($icon_file) && filesize($icon_file) > 0) {
1394 $feed_icon = "<img width=\"16\" height=\"16\"
1395 src=\"" . ICONS_URL . "/$feed_id.ico\">";
1396 } else {
1397 $feed_icon = "";
1398 }
e5d758e3
AD
1399
1400 print "<div id=\"infoBoxTitle\">Feed editor</div>";
1401
1402 print "<div class=\"infoBoxContents\">";
1403
1404# print "<h1>$feed_icon $title</h1>";
0ea4fb50
AD
1405
1406 print "<table width='100%'>";
1407
2bf88d9f 1408# $row_class = "odd";
0ea4fb50
AD
1409
1410 print "<tr class='$row_class'><td>Title:</td>";
1411 print "<td><input id=\"iedit_title\" value=\"$title\"></td></tr>";
1412
1413 $feed_url = db_fetch_result($result, 0, "feed_url");
1414 $feed_url = htmlspecialchars(db_unescape_string(db_fetch_result($result,
1415 0, "feed_url")));
2bf88d9f 1416# $row_class = toggleEvenOdd($row_class);
0ea4fb50
AD
1417
1418 print "<tr class='$row_class'><td>Feed URL:</td>";
1419 print "<td><input id=\"iedit_link\" value=\"$feed_url\"></td></tr>";
ad815c71 1420
0ea4fb50
AD
1421 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1422
1423 $cat_id = db_fetch_result($result, 0, "cat_id");
1424
2bf88d9f 1425# $row_class = toggleEvenOdd($row_class);
0ea4fb50
AD
1426
1427 print "<tr class='$row_class'><td>Category:</td>";
1428 print "<td>";
1429 print "<select id=\"iedit_fcat\">";
1430 print "<option id=\"0\">Uncategorized</option>";
1431
1432 $tmp_result = db_query($link, "SELECT id,title FROM ttrss_feed_categories
1433 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
1434
1435 if (db_num_rows($tmp_result) > 0) {
1436 print "<option disabled>--------</option>";
1437 }
1438
1439 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1440 if ($tmp_line["id"] == $cat_id) {
1441 $is_selected = "selected";
1442 } else {
1443 $is_selected = "";
1444 }
1445 printf("<option $is_selected id='%d'>%s</option>",
1446 $tmp_line["id"], $tmp_line["title"]);
1447 }
1448
1449 print "</select></td>";
1450 print "</td></tr>";
1451
1452 }
1453
1454 $update_interval = db_fetch_result($result, 0, "update_interval");
2bf88d9f 1455# $row_class = toggleEvenOdd($row_class);
0ea4fb50
AD
1456
1457 print "<tr class='$row_class'><td>Update Interval:</td>";
ad815c71
AD
1458// print "<td><input id=\"iedit_updintl\"
1459// value=\"$update_interval\"></td></tr>";
1460
1461 print "<td>";
1462
1463 print "<select id=\"iedit_updintl\">";
1464
1465 foreach (array_keys($update_intervals) as $i) {
1466
1467 if ($i == $update_interval) {
1468 $selected = "selected";
1469 } else {
1470 $selected = "";
1471 }
1472 print "<option $selected id=\"$i\">" . $update_intervals[$i] . "</option>";
1473 }
1474
1475 print "</select>";
1476
1477 print "</td>";
0ea4fb50 1478
2bf88d9f 1479# $row_class = toggleEvenOdd($row_class);
d1793994
AD
1480
1481 print "<tr class='$row_class'><td>Link to:</td><td>";
1da7e457 1482
3b0027a4
AD
1483 $tmp_result = db_query($link, "SELECT COUNT(id) AS count
1484 FROM ttrss_feeds WHERE parent_feed = '$feed_id'");
1485
1486 $linked_count = db_fetch_result($tmp_result, 0, "count");
1487
1da7e457 1488 $parent_feed = db_fetch_result($result, 0, "parent_feed");
3b0027a4
AD
1489
1490 if ($linked_count > 0) {
1491 $disabled = "disabled";
1492 }
1493
d1793994 1494 print "<select $disabled id=\"iedit_parent_feed\">";
3b0027a4 1495
eac46afb 1496 print "<option id=\"0\">Not linked</option>";
1da7e457 1497
8a53e029
AD
1498 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1499 if ($cat_id) {
1500 $cat_qpart = "AND cat_id = '$cat_id'";
1501 } else {
1502 $cat_qpart = "AND cat_id IS NULL";
1503 }
1504 }
1505
1da7e457 1506 $tmp_result = db_query($link, "SELECT id,title FROM ttrss_feeds
262c2426
AD
1507 WHERE id != '$feed_id' AND owner_uid = ".$_SESSION["uid"]."
1508 $cat_qpart ORDER BY title");
1da7e457
AD
1509
1510 if (db_num_rows($tmp_result) > 0) {
1511 print "<option disabled>--------</option>";
1512 }
1513
1514 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1515 if ($tmp_line["id"] == $parent_feed) {
1516 $is_selected = "selected";
1517 } else {
1518 $is_selected = "";
1519 }
1520 printf("<option $is_selected id='%d'>%s</option>",
1521 $tmp_line["id"], $tmp_line["title"]);
1522 }
1523
d1793994
AD
1524 print "</select>";
1525 print "</td></tr>";
1da7e457 1526
0ea4fb50 1527 $purge_interval = db_fetch_result($result, 0, "purge_interval");
2bf88d9f 1528# $row_class = toggleEvenOdd($row_class);
0ea4fb50
AD
1529
1530 print "<tr class='$row_class'><td>Purge Days:</td>";
ad815c71
AD
1531// print "<td><input id=\"iedit_purgintl\"
1532// value=\"$purge_interval\"></td></tr>";
1533
1534 print "<td>";
1535
1536 print "<select id=\"iedit_purgintl\">";
1537
1538 foreach (array_keys($purge_intervals) as $i) {
1539
1540 if ($i == $purge_interval) {
1541 $selected = "selected";
1542 } else {
1543 $selected = "";
1544 }
1545 print "<option $selected id=\"$i\">" . $purge_intervals[$i] . "</option>";
1546 }
1547
1548 print "</select>";
1549
1550 print "</td>";
0ea4fb50 1551
47c6c988
AD
1552// print "<tr><td colspan=\"2\"><b>Authentication</b></td></tr>";
1553
2bf88d9f 1554# $row_class = toggleEvenOdd($row_class);
47c6c988
AD
1555 $auth_login = db_fetch_result($result, 0, "auth_login");
1556
1557 print "<tr class='$row_class'><td>Login:</td>";
1558 print "<td><input id=\"iedit_login\"
1559 value=\"$auth_login\"></td></tr>";
1560
2bf88d9f 1561# $row_class = toggleEvenOdd($row_class);
47c6c988
AD
1562 $auth_pass = db_fetch_result($result, 0, "auth_pass");
1563
1564 print "<tr class='$row_class'><td>Password:</td>";
1565 print "<td><input type=\"password\" id=\"iedit_pass\"
1566 value=\"$auth_pass\"></td></tr>";
1567
2bf88d9f 1568# $row_class = toggleEvenOdd($row_class);
e3c99f3b
AD
1569 $private = sql_bool_to_bool(db_fetch_result($result, 0, "private"));
1570
1571 if ($private) {
1572 $checked = "checked";
1573 } else {
1574 $checked = "";
1575 }
1576
991ee9e2 1577 print "<tr class='$row_class'><td valign='top'>Options:</td>";
e3c99f3b 1578 print "<td><input type=\"checkbox\" id=\"iedit_private\"
70f6dbb1
AD
1579 $checked><label for=\"iedit_private\">Hide from feed browser</label>";
1580
1581 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
1582
1583 if ($rtl_content) {
1584 $checked = "checked";
1585 } else {
1586 $checked = "";
1587 }
1588
1589 print "<br><input type=\"checkbox\" id=\"iedit_rtl\"
1590 $checked><label for=\"iedit_rtl\">Right-to-left content</label>";
1591
1592 print "</td></tr>";
e3c99f3b 1593
0ea4fb50
AD
1594 print "</table>";
1595 print "</div>";
1596
1597 print "<div align='center'>
0ea4fb50 1598 <input type=\"submit\" class=\"button\"
d10fabe4
AD
1599 onclick=\"feedEditSave()\" value=\"Save\">
1600 <input type='submit' class='button'
1601 onclick=\"feedEditCancel()\" value=\"Cancel\"></div>";
0ea4fb50
AD
1602 return;
1603 }
1604
508a81e1 1605 if ($subop == "editSave") {
47c6c988
AD
1606 $feed_title = db_escape_string($_POST["t"]);
1607 $feed_link = db_escape_string($_POST["l"]);
1608 $upd_intl = db_escape_string($_POST["ui"]);
1609 $purge_intl = db_escape_string($_POST["pi"]);
1610 $feed_id = db_escape_string($_POST["id"]);
1611 $cat_id = db_escape_string($_POST["catid"]);
1612 $auth_login = db_escape_string($_POST["login"]);
1613 $auth_pass = db_escape_string($_POST["pass"]);
1da7e457 1614 $parent_feed = db_escape_string($_POST["pfeed"]);
19ded366 1615 $private = db_escape_string($_POST["is_pvt"]);
70f6dbb1 1616 $rtl_content = db_escape_string($_POST["is_rtl"]);
508a81e1 1617
d148926e
AD
1618 if (strtoupper($upd_intl) == "DEFAULT")
1619 $upd_intl = 0;
1620
a88c1f36
AD
1621 if (strtoupper($upd_intl) == "DISABLED")
1622 $upd_intl = -1;
1623
5d73494a
AD
1624 if (strtoupper($purge_intl) == "DEFAULT")
1625 $purge_intl = 0;
1626
140aae81
AD
1627 if (strtoupper($purge_intl) == "DISABLED")
1628 $purge_intl = -1;
1629
91ff844a
AD
1630 if ($cat_id != 0) {
1631 $category_qpart = "cat_id = '$cat_id'";
1632 } else {
1633 $category_qpart = 'cat_id = NULL';
1634 }
1635
1da7e457
AD
1636 if ($parent_feed != 0) {
1637 $parent_qpart = "parent_feed = '$parent_feed'";
1638 } else {
1639 $parent_qpart = 'parent_feed = NULL';
1640 }
1641
648472a7 1642 $result = db_query($link, "UPDATE ttrss_feeds SET
91ff844a 1643 $category_qpart,
1da7e457 1644 $parent_qpart,
d148926e 1645 title = '$feed_title', feed_url = '$feed_link',
5d73494a 1646 update_interval = '$upd_intl',
47c6c988
AD
1647 purge_interval = '$purge_intl',
1648 auth_login = '$auth_login',
e3c99f3b 1649 auth_pass = '$auth_pass',
ac92cb46
AD
1650 private = $private,
1651 rtl_content = $rtl_content
1652 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
5ddadb4c
AD
1653 }
1654
1655 if ($subop == "saveCat") {
1656 $cat_title = db_escape_string($_GET["title"]);
1657 $cat_id = db_escape_string($_GET["id"]);
1658
1659 $result = db_query($link, "UPDATE ttrss_feed_categories SET
1660 title = '$cat_title' WHERE id = '$cat_id' AND owner_uid = ".$_SESSION["uid"]);
508a81e1 1661
83fe4d6d
AD
1662 }
1663
331900c6 1664 if ($subop == "remove") {
331900c6 1665
b0b4abcf 1666 if (!WEB_DEMO_MODE) {
331900c6 1667
f932bc9f 1668 $ids = split(",", db_escape_string($_GET["ids"]));
b0b4abcf
AD
1669
1670 foreach ($ids as $id) {
f72dbbde
AD
1671 db_query($link, "DELETE FROM ttrss_feeds
1672 WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4769ddaf 1673
273a2f6b 1674 $icons_dir = ICONS_DIR;
d5caaae5 1675
4769ddaf
AD
1676 if (file_exists($icons_dir . "/$id.ico")) {
1677 unlink($icons_dir . "/$id.ico");
d5caaae5 1678 }
b0b4abcf 1679 }
331900c6
AD
1680 }
1681 }
1682
1683 if ($subop == "add") {
b0b4abcf
AD
1684
1685 if (!WEB_DEMO_MODE) {
331900c6 1686
b6b535ca 1687 $feed_link = db_escape_string(trim($_GET["link"]));
15da5cc1
AD
1688 $cat_id = db_escape_string($_GET["cid"]);
1689
956c7629
AD
1690 if (subscribe_to_feed($link, $feed_link, $cat_id)) {
1691 print "Added feed.";
15da5cc1 1692 } else {
7e9a3986
AD
1693 print "<div class=\"warning\">
1694 Feed <b>$feed_link</b> already exists in the database.
1695 </div>";
b0b4abcf
AD
1696 }
1697 }
331900c6 1698 }
a0d53889 1699
91ff844a
AD
1700 if ($subop == "addCat") {
1701
1702 if (!WEB_DEMO_MODE) {
1703
1704 $feed_cat = db_escape_string(trim($_GET["cat"]));
1705
1706 $result = db_query($link,
1707 "SELECT id FROM ttrss_feed_categories
1708 WHERE title = '$feed_cat' AND owner_uid = ".$_SESSION["uid"]);
1709
1710 if (db_num_rows($result) == 0) {
1711
1712 $result = db_query($link,
1713 "INSERT INTO ttrss_feed_categories (owner_uid,title)
1714 VALUES ('".$_SESSION["uid"]."', '$feed_cat')");
1715
1716 } else {
1717
1718 print "<div class=\"warning\">
1719 Category <b>$feed_cat</b> already exists in the database.
1720 </div>";
1721 }
1722
1723
1724 }
1725 }
1726
1727 if ($subop == "removeCats") {
1728
1729 if (!WEB_DEMO_MODE) {
1730
f932bc9f 1731 $ids = split(",", db_escape_string($_GET["ids"]));
91ff844a
AD
1732
1733 foreach ($ids as $id) {
1734
1735 db_query($link, "BEGIN");
1736
1737 $result = db_query($link,
1738 "SELECT count(id) as num_feeds FROM ttrss_feeds
1739 WHERE cat_id = '$id'");
1740
1741 $num_feeds = db_fetch_result($result, 0, "num_feeds");
1742
1743 if ($num_feeds == 0) {
1744 db_query($link, "DELETE FROM ttrss_feed_categories
1745 WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
1746 } else {
1747
1748 print "<div class=\"warning\">
1749 Unable to delete non empty feed categories.</div>";
1750
1751 }
1752
1753 db_query($link, "COMMIT");
1754 }
1755 }
1756 }
1757
f932bc9f
AD
1758 if ($subop == "categorize") {
1759
1760 if (!WEB_DEMO_MODE) {
1761
1762 $ids = split(",", db_escape_string($_GET["ids"]));
1763
1764 $cat_id = db_escape_string($_GET["cat_id"]);
1765
1766 if ($cat_id == 0) {
1767 $cat_id_qpart = 'NULL';
1768 } else {
1769 $cat_id_qpart = "'$cat_id'";
1770 }
1771
1772 db_query($link, "BEGIN");
1773
1774 foreach ($ids as $id) {
1775
1776 db_query($link, "UPDATE ttrss_feeds SET cat_id = $cat_id_qpart
1777 WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
1778 }
1779
1780 db_query($link, "COMMIT");
1781 }
1782
1783 }
1784
a24f525c
AD
1785 if ($quiet) return;
1786
c64d5b03 1787// print "<h3>Edit Feeds</h3>";
91ff844a 1788
4904f845
AD
1789 $result = db_query($link, "SELECT id,title,feed_url,last_error
1790 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
1791
1792 if (db_num_rows($result) > 0) {
1793
1794 print "<div class=\"warning\">";
a9b0bfd5
AD
1795
1796// print"<img class=\"closeButton\"
1797// onclick=\"javascript:hideParentElement(this);\" src=\"images/close.png\">";
1798
36aab70f 1799 print "<a href=\"javascript:showBlockElement('feedUpdateErrors')\">
0ceded7a 1800 <b>Some feeds have update errors (click for details)</b></a>";
4904f845 1801
36aab70f 1802 print "<ul id=\"feedUpdateErrors\" class=\"nomarks\">";
4904f845
AD
1803
1804 while ($line = db_fetch_assoc($result)) {
1805 print "<li>" . $line["title"] . " (" . $line["feed_url"] . "): " .
1806 $line["last_error"];
1807 }
1808
1809 print "</ul>";
1810 print "</div>";
1811
1812 }
1813
f932bc9f
AD
1814 $feed_search = db_escape_string($_GET["search"]);
1815
1816 if (array_key_exists("search", $_GET)) {
1817 $_SESSION["prefs_feed_search"] = $feed_search;
1818 } else {
1819 $feed_search = $_SESSION["prefs_feed_search"];
1820 }
1821
1822 print "<table width='100%' class=\"prefGenericAddBox\"
1823 cellspacing='0' cellpadding='0'><tr>
1824 <td>
1825 <input id=\"fadd_link\"
1826 onchange=\"javascript:addFeed()\"
1827 size=\"40\">
1828 <input type=\"submit\" class=\"button\"
e5d758e3 1829 onclick=\"javascript:addFeed()\" value=\"Subscribe\">";
e2f728be 1830
0b68215c 1831 if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) {
e5d758e3 1832 print " <input type=\"submit\" class=\"button\"
6311acbe 1833 onclick=\"javascript:browseFeeds()\" value=\"Top 25\">";
e2f728be
AD
1834 }
1835
1836 print "</td><td align='right'>
f932bc9f
AD
1837 <input id=\"feed_search\" size=\"20\"
1838 onchange=\"javascript:updateFeedList()\"
1839 value=\"$feed_search\">
1840 <input type=\"submit\" class=\"button\"
1841 onclick=\"javascript:updateFeedList()\" value=\"Search\">
1842 </td>
1843 </tr></table>";
a0d53889 1844
b83c7545
AD
1845 $feeds_sort = db_escape_string($_GET["sort"]);
1846
1847 if (!$feeds_sort || $feeds_sort == "undefined") {
1848 $feeds_sort = $_SESSION["pref_sort_feeds"];
1849 if (!$feeds_sort) $feeds_sort = "title";
1850 }
1851
1852 $_SESSION["pref_sort_feeds"] = $feeds_sort;
1853
f932bc9f 1854 if ($feed_search) {
11de82c3
AD
1855 $search_qpart = "(UPPER(F1.title) LIKE UPPER('%$feed_search%') OR
1856 UPPER(F1.feed_url) LIKE UPPER('%$feed_search%')) AND";
f932bc9f
AD
1857 } else {
1858 $search_qpart = "";
1859 }
1860
648472a7 1861 $result = db_query($link, "SELECT
db42b934
AD
1862 F1.id,
1863 F1.title,
1864 F1.feed_url,
1865 substring(F1.last_updated,1,16) AS last_updated,
1866 F1.parent_feed,
1867 F1.update_interval,
1868 F1.purge_interval,
1869 F1.cat_id,
1870 F2.title AS parent_title,
1871 C1.title AS category
c0e5a40e 1872 FROM
db42b934
AD
1873 ttrss_feeds AS F1
1874 LEFT JOIN ttrss_feeds AS F2
1875 ON (F1.parent_feed = F2.id)
1876 LEFT JOIN ttrss_feed_categories AS C1
1877 ON (F1.cat_id = C1.id)
f932bc9f 1878 WHERE
db42b934 1879 $search_qpart F1.owner_uid = '".$_SESSION["uid"]."'
0ea4fb50 1880 ORDER by category,$feeds_sort,title");
1cd17194 1881
3b0feb9b 1882 if (db_num_rows($result) != 0) {
91ff844a 1883
3b0feb9b 1884 print "<div id=\"infoBoxShadow\"><div id=\"infoBox\">PLACEHOLDER</div></div>";
35f3c923 1885
f4fe2cde
AD
1886 print "<p><table width=\"100%\" cellspacing=\"0\"
1887 class=\"prefFeedList\" id=\"prefFeedList\">";
35f3c923
AD
1888 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
1889 Select:
1890 <a href=\"javascript:selectTableRowsByIdPrefix('prefFeedList',
3055bc41 1891 'FEEDR-', 'FRCHK-', true)\">All</a>,
35f3c923 1892 <a href=\"javascript:selectTableRowsByIdPrefix('prefFeedList',
3055bc41 1893 'FEEDR-', 'FRCHK-', false)\">None</a>
35f3c923
AD
1894 </td</tr>";
1895
0ea4fb50
AD
1896 if (!get_pref($link, 'ENABLE_FEED_CATS')) {
1897 print "<tr class=\"title\">
e325c6e7 1898 <td width='5%' align='center'>&nbsp;</td>
01b3e191
AD
1899 <td width='40%'><a href=\"javascript:updateFeedList('title')\">Title</a></td>
1900 <td width='45%'><a href=\"javascript:updateFeedList('feed_url')\">Feed</a></td>
1901 <td width='15%' align='right'><a href=\"javascript:updateFeedList('last_updated')\">Updated</a></td>";
603c27f8 1902 }
603c27f8 1903
c64d5b03 1904 $lnum = 0;
0ea4fb50
AD
1905
1906 $cur_cat_id = -1;
c64d5b03
AD
1907
1908 while ($line = db_fetch_assoc($result)) {
1909
3b0feb9b 1910 $feed_id = $line["id"];
0ea4fb50
AD
1911 $cat_id = $line["cat_id"];
1912
1913 $edit_title = htmlspecialchars(db_unescape_string($line["title"]));
1914 $edit_link = htmlspecialchars(db_unescape_string($line["feed_url"]));
1915 $edit_cat = htmlspecialchars(db_unescape_string($line["category"]));
0ea4fb50
AD
1916
1917 if (!$edit_cat) $edit_cat = "Uncategorized";
1918
01b3e191
AD
1919 $last_updated = $line["last_updated"];
1920
1921 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
1922 $last_updated = smart_date_time(strtotime($last_updated));
1923 } else {
1924 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
1925 $last_updated = date($short_date, strtotime($last_updated));
1926 }
1927
0ea4fb50 1928 if (get_pref($link, 'ENABLE_FEED_CATS') && $cur_cat_id != $cat_id) {
cb58d0df
AD
1929 $lnum = 0;
1930
0ea4fb50
AD
1931 print "<tr><td colspan=\"6\" class=\"feedEditCat\">$edit_cat</td></tr>";
1932
1933 print "<tr class=\"title\">
2eb15f6f 1934 <td width='5%'>&nbsp;</td>";
d1793994
AD
1935
1936 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
2eb15f6f 1937 print "<td width='3%'>&nbsp;</td>";
d1793994
AD
1938 }
1939
1940 print "<td width='40%'><a href=\"javascript:updateFeedList('title')\">Title</a></td>
01b3e191
AD
1941 <td width='45%'><a href=\"javascript:updateFeedList('feed_url')\">Feed</a></td>
1942 <td width='15%' align='right'><a href=\"javascript:updateFeedList('last_updated')\">Updated</a></td>";
0ea4fb50
AD
1943
1944 $cur_cat_id = $cat_id;
c64d5b03 1945 }
0ea4fb50 1946
cb58d0df 1947 $class = ($lnum % 2) ? "even" : "odd";
0ea4fb50
AD
1948 $this_row_id = "id=\"FEEDR-$feed_id\"";
1949
53226edc 1950 print "<tr class=\"$class\" $this_row_id>";
3b0feb9b
AD
1951
1952 $icon_file = ICONS_DIR . "/$feed_id.ico";
1953
1954 if (file_exists($icon_file) && filesize($icon_file) > 0) {
327a3bbe 1955 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"" . ICONS_URL . "/$feed_id.ico\">";
3b0feb9b 1956 } else {
327a3bbe 1957 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
3b0feb9b 1958 }
d1793994 1959
62ac0cc8 1960 print "<td class='feedSelect'><input onclick='toggleSelectRow(this);'
0ea4fb50 1961 type=\"checkbox\" id=\"FRCHK-".$line["id"]."\"></td>";
3547842a 1962
d1793994
AD
1963 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
1964 print "<td class='feedIcon'>$feed_icon</td>";
1965 }
1966
0ea4fb50
AD
1967 $edit_title = truncate_string($edit_title, 40);
1968 $edit_link = truncate_string($edit_link, 60);
a88c1f36 1969
1da7e457
AD
1970 $parent_title = $line["parent_title"];
1971 if ($parent_title) {
1972 $parent_title = "<span class='groupPrompt'>(linked to
1973 $parent_title)</span>";
1974 }
1975
0ea4fb50 1976 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
d1793994 1977 "$edit_title $parent_title" . "</a></td>";
0ea4fb50
AD
1978
1979 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
1980 $edit_link . "</a></td>";
3547842a 1981
0ea4fb50
AD
1982/* if (get_pref($link, 'ENABLE_FEED_CATS')) {
1983 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
1984 $edit_cat . "</a></td>";
1985 } */
3547842a 1986
01b3e191 1987/* print "<td><a href=\"javascript:editFeed($feed_id);\">" .
ad815c71 1988 $update_intervals[$line["update_interval"]] . "</a></td>";
3b0feb9b 1989
0ea4fb50 1990 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
01b3e191
AD
1991 $purge_intervals[$line["purge_interval"]] . "</a></td>"; */
1992
1993 print "<td align='right'><a href=\"javascript:editFeed($feed_id);\">" .
1994 "$last_updated</a></td>";
1995
c64d5b03
AD
1996 print "</tr>";
1997
1998 ++$lnum;
1999 }
2000
c64d5b03 2001 print "</table>";
3b0feb9b 2002
c64d5b03
AD
2003 print "<p>";
2004
3b0feb9b
AD
2005 if ($subop == "edit") {
2006 print "Edit feed:&nbsp;
c64d5b03 2007 <input type=\"submit\" class=\"button\"
3b0feb9b 2008 onclick=\"javascript:feedEditCancel()\" value=\"Cancel\">
c64d5b03 2009 <input type=\"submit\" class=\"button\"
3b0feb9b
AD
2010 onclick=\"javascript:feedEditSave()\" value=\"Save\">";
2011 } else {
c64d5b03
AD
2012
2013 print "
2014 Selection:&nbsp;
e5d758e3
AD
2015 <!-- <input type=\"submit\" class=\"button\"
2016 onclick=\"javascript:selectedFeedDetails()\" value=\"Details\"> -->
c64d5b03 2017 <input type=\"submit\" class=\"button\"
3b0feb9b
AD
2018 onclick=\"javascript:editSelectedFeed()\" value=\"Edit\">
2019 <input type=\"submit\" class=\"button\"
e5d758e3 2020 onclick=\"javascript:removeSelectedFeeds()\" value=\"Unsubscribe\">";
f932bc9f
AD
2021
2022 if (get_pref($link, 'ENABLE_FEED_CATS')) {
2023
e5d758e3 2024 print "&nbsp;|&nbsp;";
f932bc9f
AD
2025
2026 $result = db_query($link, "SELECT title,id FROM ttrss_feed_categories
2027 WHERE owner_uid = ".$_SESSION["uid"]."
2028 ORDER BY title");
2029
2030 print "<select id=\"sfeed_set_fcat\">";
2031 print "<option id=\"0\">Uncategorized</option>";
2032
2033 if (db_num_rows($result) != 0) {
2034
2035 print "<option disabled>--------</option>";
2036
2037 while ($line = db_fetch_assoc($result)) {
2038 printf("<option id='%d'>%s</option>",
2039 $line["id"], $line["title"]);
2040 }
2041 }
2042
2043 print "</select>";
2044
2045 print " <input type=\"submit\" class=\"button\"
6d1e02a2 2046 onclick=\"javascript:categorizeSelectedFeeds()\" value=\"Recategorize\">";
f932bc9f
AD
2047
2048 }
3b0feb9b
AD
2049
2050 print "
f932bc9f 2051 &nbsp;All feeds: <input type=\"submit\"
3b0feb9b
AD
2052 class=\"button\" onclick=\"gotoExportOpml()\"
2053 value=\"Export OPML\">";
2054 }
2055 } else {
2056
2057 print "<p>No feeds defined.</p>";
2058
2059 }
2060
2061 if (get_pref($link, 'ENABLE_FEED_CATS')) {
2062
2063 print "<h3>Edit Categories</h3>";
2064
2065 // print "<h3>Categories</h3>";
2066
2067 print "<div class=\"prefGenericAddBox\">
f932bc9f
AD
2068 <input id=\"fadd_cat\"
2069 onchange=\"javascript:addFeedCat()\"
2070 size=\"40\">&nbsp;
2071 <input
3b0feb9b 2072 type=\"submit\" class=\"button\"
e5d758e3 2073 onclick=\"javascript:addFeedCat()\" value=\"Create category\"></div>";
3b0feb9b
AD
2074
2075 $result = db_query($link, "SELECT title,id FROM ttrss_feed_categories
2076 WHERE owner_uid = ".$_SESSION["uid"]."
2077 ORDER BY title");
2078
2079 if (db_num_rows($result) != 0) {
2080
35f3c923 2081 print "<p><table width=\"100%\" class=\"prefFeedCatList\"
f4fe2cde 2082 cellspacing=\"0\" id=\"prefFeedCatList\">";
35f3c923
AD
2083
2084 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
2085 Select:
2086 <a href=\"javascript:selectTableRowsByIdPrefix('prefFeedCatList',
3055bc41 2087 'FCATR-', 'FCCHK-', true)\">All</a>,
35f3c923 2088 <a href=\"javascript:selectTableRowsByIdPrefix('prefFeedCatList',
3055bc41 2089 'FCATR-', 'FCCHK-', false)\">None</a>
35f3c923
AD
2090 </td</tr>";
2091
3b0feb9b 2092 print "<tr class=\"title\">
0b68215c 2093 <td width=\"5%\">&nbsp;</td><td width=\"80%\">Title</td>
3b0feb9b
AD
2094 </tr>";
2095
2096 $lnum = 0;
2097
2098 while ($line = db_fetch_assoc($result)) {
2099
2100 $class = ($lnum % 2) ? "even" : "odd";
2101
2102 $cat_id = $line["id"];
2103
2104 $edit_cat_id = $_GET["id"];
2105
2106 if ($subop == "editCat" && $cat_id != $edit_cat_id) {
2107 $class .= "Grayed";
53226edc
AD
2108 $this_row_id = "";
2109 } else {
2110 $this_row_id = "id=\"FCATR-$cat_id\"";
3b0feb9b
AD
2111 }
2112
53226edc 2113 print "<tr class=\"$class\" $this_row_id>";
3b0feb9b
AD
2114
2115 $edit_title = htmlspecialchars(db_unescape_string($line["title"]));
2116
2117 if (!$edit_cat_id || $subop != "editCat") {
2118
a426e532 2119 print "<td align='center'><input onclick='toggleSelectRow(this);'
3b0feb9b
AD
2120 type=\"checkbox\" id=\"FCCHK-".$line["id"]."\"></td>";
2121
2122 print "<td><a href=\"javascript:editFeedCat($cat_id);\">" .
2123 $edit_title . "</a></td>";
2124
2125 } else if ($cat_id != $edit_cat_id) {
2126
2127 print "<td><input disabled=\"true\" type=\"checkbox\"
2128 id=\"FRCHK-".$line["id"]."\"></td>";
2129
2130 print "<td>$edit_title</td>";
2131
2132 } else {
2133
2134 print "<td><input disabled=\"true\" type=\"checkbox\" checked></td>";
2135
2136 print "<td><input id=\"iedit_title\" value=\"$edit_title\"></td>";
2137
2138 }
2139
2140 print "</tr>";
2141
2142 ++$lnum;
2143 }
2144
2145 print "</table>";
2146
2147 print "<p>";
2148
2149 if ($subop == "editCat") {
2150 print "Edit category:&nbsp;
2151 <input type=\"submit\" class=\"button\"
2152 onclick=\"javascript:feedCatEditCancel()\" value=\"Cancel\">
2153 <input type=\"submit\" class=\"button\"
2154 onclick=\"javascript:feedCatEditSave()\" value=\"Save\">";
2155 } else {
2156
2157 print "
2158 Selection:&nbsp;
2159 <input type=\"submit\" class=\"button\"
2160 onclick=\"javascript:editSelectedFeedCat()\" value=\"Edit\">
2161 <input type=\"submit\" class=\"button\"
2162 onclick=\"javascript:removeSelectedFeedCats()\" value=\"Remove\">";
2163
2164 }
2165
2166 } else {
2167 print "<p>No feed categories defined.</p>";
2168 }
c64d5b03
AD
2169 }
2170
2171 print "<h3>Import OPML</h3>
f5a50b25
AD
2172 <form enctype=\"multipart/form-data\" method=\"POST\" action=\"opml.php\">
2173 File: <input id=\"opml_file\" name=\"opml_file\" type=\"file\">&nbsp;
2174 <input class=\"button\" name=\"op\" onclick=\"return validateOpmlImport();\"
2175 type=\"submit\" value=\"Import\">
2176 </form>";
2177
007bda35
AD
2178 }
2179
a0d53889
AD
2180 if ($op == "pref-filters") {
2181
2182 $subop = $_GET["subop"];
a24f525c 2183 $quiet = $_GET["quiet"];
a0d53889
AD
2184
2185 if ($subop == "editSave") {
a0d53889 2186
648472a7 2187 $regexp = db_escape_string($_GET["r"]);
648472a7
AD
2188 $match = db_escape_string($_GET["m"]);
2189 $filter_id = db_escape_string($_GET["id"]);
ead60402 2190 $feed_id = db_escape_string($_GET["fid"]);
19c9cb11 2191 $action_id = db_escape_string($_GET["aid"]);
ead60402
AD
2192
2193 if (!$feed_id) {
2194 $feed_id = 'NULL';
2195 } else {
2196 $feed_id = sprintf("'%s'", db_escape_string($feed_id));
2197 }
0afbd851 2198
648472a7 2199 $result = db_query($link, "UPDATE ttrss_filters SET
4b3dff6e 2200 reg_exp = '$regexp',
ead60402 2201 feed_id = $feed_id,
19c9cb11 2202 action_id = '$action_id',
0afbd851
AD
2203 filter_type = (SELECT id FROM ttrss_filter_types WHERE
2204 description = '$match')
2205 WHERE id = '$filter_id'");
a0d53889
AD
2206 }
2207
2208 if ($subop == "remove") {
2209
2210 if (!WEB_DEMO_MODE) {
2211
f932bc9f 2212 $ids = split(",", db_escape_string($_GET["ids"]));
a0d53889
AD
2213
2214 foreach ($ids as $id) {
648472a7 2215 db_query($link, "DELETE FROM ttrss_filters WHERE id = '$id'");
a0d53889
AD
2216
2217 }
2218 }
2219 }
2220
2221 if ($subop == "add") {
2222
de435974 2223 if (!WEB_DEMO_MODE) {
a0d53889 2224
b6b535ca
AD
2225 $regexp = db_escape_string(trim($_GET["regexp"]));
2226 $match = db_escape_string(trim($_GET["match"]));
ead60402 2227 $feed_id = db_escape_string($_GET["fid"]);
19c9cb11 2228 $action_id = db_escape_string($_GET["aid"]);
ead60402
AD
2229
2230 if (!$feed_id) {
2231 $feed_id = 'NULL';
2232 } else {
2233 $feed_id = sprintf("'%s'", db_escape_string($feed_id));
2234 }
4401bf04 2235
648472a7 2236 $result = db_query($link,
19c9cb11
AD
2237 "INSERT INTO ttrss_filters (reg_exp,filter_type,owner_uid,feed_id,
2238 action_id)
2239 VALUES
de435974 2240 ('$regexp', (SELECT id FROM ttrss_filter_types WHERE
19c9cb11
AD
2241 description = '$match'),'".$_SESSION["uid"]."',
2242 $feed_id, '$action_id')");
de435974 2243 }
a0d53889
AD
2244 }
2245
a24f525c
AD
2246 if ($quiet) return;
2247
e5d758e3
AD
2248 print "<div id=\"infoBoxShadow\">
2249 <div id=\"infoBox\">PLACEHOLDER</div></div>";
7b5c6012 2250
648472a7 2251 $result = db_query($link, "SELECT description
a0d53889
AD
2252 FROM ttrss_filter_types ORDER BY description");
2253
2254 $filter_types = array();
2255
648472a7 2256 while ($line = db_fetch_assoc($result)) {
a0d53889
AD
2257 array_push($filter_types, $line["description"]);
2258 }
2259
7b5c6012 2260/* print "<div class=\"prefGenericAddBox\">
7cc1e5d6 2261 <input id=\"fadd_regexp\" size=\"40\">&nbsp;";
2c7070b5 2262
ead60402
AD
2263 print_select("fadd_match", "Title", $filter_types);
2264
2265 print "&nbsp;<select id=\"fadd_feed\">";
2266
2267 print "<option selected id=\"0\">All feeds</option>";
2268
2269 $result = db_query($link, "SELECT id,title FROM ttrss_feeds
2270 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
2271
2272 if (db_num_rows($result) > 0) {
2273 print "<option disabled>--------</option>";
2274 }
2275
2276 while ($line = db_fetch_assoc($result)) {
3fdaa067
AD
2277 printf("<option id='%d'>%s</option>", $line["id"],
2278 db_unescape_string($line["title"]));
ead60402
AD
2279 }
2280
2c7070b5 2281 print "</select>&nbsp;";
19c9cb11
AD
2282
2283 print "&nbsp;Action: ";
2284
2285 print "<select id=\"fadd_action\">";
2286
2287 $result = db_query($link, "SELECT id,description FROM ttrss_filter_actions
2288 ORDER BY name");
2289
2290 while ($line = db_fetch_assoc($result)) {
2291 printf("<option id='%d'>%s</option>", $line["id"], $line["description"]);
2292 }
2293
2294 print "</select>&nbsp;";
2295
9323147e
AD
2296/* print "<input type=\"submit\"
2297 class=\"button\" onclick=\"javascript:testFilter()\"
2298 value=\"Test filter\"> "; */
2299
7b5c6012 2300/* print "<input type=\"submit\"
2c7070b5 2301 class=\"button\" onclick=\"javascript:addFilter()\"
7b5c6012 2302 value=\"Create filter\">"; */
a0d53889 2303
7b5c6012
AD
2304 print "<input type=\"submit\"
2305 class=\"button\"
2306 onclick=\"javascript:displayDlg('quickAddFilter', false)\"
2307 value=\"Create filter\">";
2308
2309// print "</div>";
19c9cb11 2310
648472a7 2311 $result = db_query($link, "SELECT
ead60402 2312 ttrss_filters.id AS id,reg_exp,
ead60402
AD
2313 ttrss_filter_types.name AS filter_type_name,
2314 ttrss_filter_types.description AS filter_type_descr,
2315 feed_id,
19c9cb11 2316 ttrss_filter_actions.description AS action_description,
11de82c3 2317 ttrss_feeds.title AS feed_title
a0d53889 2318 FROM
5890c3f4
AD
2319 ttrss_filter_types,ttrss_filter_actions,ttrss_filters LEFT JOIN
2320 ttrss_feeds ON (ttrss_filters.feed_id = ttrss_feeds.id)
4356293a 2321 WHERE
ead60402 2322 filter_type = ttrss_filter_types.id AND
19c9cb11 2323 ttrss_filter_actions.id = action_id AND
ead60402 2324 ttrss_filters.owner_uid = ".$_SESSION["uid"]."
4356293a 2325 ORDER by reg_exp");
a0d53889 2326
3b0feb9b 2327 if (db_num_rows($result) != 0) {
a0d53889 2328
f4fe2cde
AD
2329 print "<p><table width=\"100%\" cellspacing=\"0\" class=\"prefFilterList\"
2330 id=\"prefFilterList\">";
35f3c923
AD
2331
2332 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
2333 Select:
2334 <a href=\"javascript:selectTableRowsByIdPrefix('prefFilterList',
3055bc41 2335 'FILRR-', 'FICHK-', true)\">All</a>,
35f3c923 2336 <a href=\"javascript:selectTableRowsByIdPrefix('prefFilterList',
3055bc41 2337 'FILRR-', 'FICHK-', false)\">None</a>
35f3c923
AD
2338 </td</tr>";
2339
3b0feb9b 2340 print "<tr class=\"title\">
e325c6e7 2341 <td align='center' width=\"5%\">&nbsp;</td>
19c9cb11
AD
2342 <td width=\"20%\">Filter expression</td>
2343 <td width=\"20%\">Feed</td>
2344 <td width=\"15%\">Match</td>
01b3e191
AD
2345 <td width=\"15%\">Action</td>";
2346
3b0feb9b
AD
2347 $lnum = 0;
2348
2349 while ($line = db_fetch_assoc($result)) {
2350
2351 $class = ($lnum % 2) ? "even" : "odd";
2352
2353 $filter_id = $line["id"];
2354 $edit_filter_id = $_GET["id"];
2355
2356 if ($subop == "edit" && $filter_id != $edit_filter_id) {
2357 $class .= "Grayed";
53226edc
AD
2358 $this_row_id = "";
2359 } else {
2360 $this_row_id = "id=\"FILRR-$filter_id\"";
ead60402 2361 }
3b0feb9b 2362
53226edc 2363 print "<tr class=\"$class\" $this_row_id>";
3b0feb9b
AD
2364
2365 $line["regexp"] = htmlspecialchars($line["reg_exp"]);
3b0feb9b
AD
2366
2367 if (!$line["feed_title"]) $line["feed_title"] = "All feeds";
2368
2369 if (!$edit_filter_id || $subop != "edit") {
2370
a426e532 2371 print "<td align='center'><input onclick='toggleSelectRow(this);'
3b0feb9b
AD
2372 type=\"checkbox\" id=\"FICHK-".$line["id"]."\"></td>";
2373
2374 print "<td><a href=\"javascript:editFilter($filter_id);\">" .
2375 $line["reg_exp"] . "</td>";
2376
2377 print "<td><a href=\"javascript:editFilter($filter_id);\">" .
2378 $line["feed_title"] . "</td>";
2379
2380 print "<td><a href=\"javascript:editFilter($filter_id);\">" .
2381 $line["filter_type_descr"] . "</td>";
19c9cb11
AD
2382
2383 print "<td><a href=\"javascript:editFilter($filter_id);\">" .
2384 $line["action_description"] . "</td>";
3b0feb9b
AD
2385
2386 } else if ($filter_id != $edit_filter_id) {
2387
2388 if (!$line["description"]) $line["description"] = "[No description]";
2389
e5d758e3 2390 print "<td align='center'><input disabled=\"true\" type=\"checkbox\"
3b0feb9b
AD
2391 id=\"FICHK-".$line["id"]."\"></td>";
2392
2393 print "<td>".$line["reg_exp"]."</td>";
2394 print "<td>".$line["feed_title"]."</td>";
2395 print "<td>".$line["filter_type_descr"]."</td>";
19c9cb11 2396 print "<td>".$line["action_description"]."</td>";
19c9cb11 2397
3b0feb9b
AD
2398 } else {
2399
e5d758e3 2400 print "<td align='center'><input disabled=\"true\" type=\"checkbox\" checked></td>";
3b0feb9b
AD
2401
2402 print "<td><input id=\"iedit_regexp\" value=\"".$line["reg_exp"].
2403 "\"></td>";
2404
2405 print "<td>";
3b0feb9b 2406 print "<select id=\"iedit_feed\">";
3b0feb9b
AD
2407 print "<option id=\"0\">All feeds</option>";
2408
3b0feb9b
AD
2409 $tmp_result = db_query($link, "SELECT id,title FROM ttrss_feeds
2410 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
19c9cb11
AD
2411
2412 if (db_num_rows($tmp_result) > 0) {
2413 print "<option disabled>--------</option>";
2414 }
2415
3b0feb9b
AD
2416 while ($tmp_line = db_fetch_assoc($tmp_result)) {
2417 if ($tmp_line["id"] == $line["feed_id"]) {
2418 $is_selected = "selected";
2419 } else {
2420 $is_selected = "";
2421 }
2422 printf("<option $is_selected id='%d'>%s</option>",
3fdaa067 2423 $tmp_line["id"], db_unescape_string($tmp_line["title"]));
ead60402 2424 }
3b0feb9b
AD
2425
2426 print "</select></td>";
2427
2428 print "<td>";
2429 print_select("iedit_match", $line["filter_type_descr"], $filter_types);
2430 print "</td>";
19c9cb11
AD
2431
2432 print "<td>";
2433 print "<select id=\"iedit_filter_action\">";
2434
2435 $tmp_result = db_query($link, "SELECT id,description FROM ttrss_filter_actions
2436 ORDER BY description");
2437
2438 while ($tmp_line = db_fetch_assoc($tmp_result)) {
2439 if ($tmp_line["description"] == $line["action_description"]) {
2440 $is_selected = "selected";
2441 } else {
2442 $is_selected = "";
2443 }
2444 printf("<option $is_selected id='%d'>%s</option>",
2445 $tmp_line["id"], $tmp_line["description"]);
2446 }
3b0feb9b 2447
19c9cb11
AD
2448 print "</select></td>";
2449
3b0feb9b 2450 print "</td>";
ead60402 2451 }
3b0feb9b
AD
2452
2453 print "</tr>";
2454
2455 ++$lnum;
a0d53889 2456 }
3b0feb9b
AD
2457
2458 if ($lnum == 0) {
2459 print "<tr><td colspan=\"4\" align=\"center\">No filters defined.</td></tr>";
2460 }
2461
2462 print "</table>";
2463
2464 print "<p>";
2465
2466 if ($subop == "edit") {
d10fabe4 2467 print "Edit filter:
3b0feb9b 2468 <input type=\"submit\" class=\"button\"
d10fabe4 2469 onclick=\"javascript:filterEditSave()\" value=\"Save\">
3b0feb9b 2470 <input type=\"submit\" class=\"button\"
d10fabe4 2471 onclick=\"javascript:filterEditCancel()\" value=\"Cancel\">";
3b0feb9b
AD
2472
2473 } else {
2474
2475 print "
2476 Selection:
e828e31e 2477 <input type=\"submit\" class=\"button\"
3b0feb9b 2478 onclick=\"javascript:editSelectedFilter()\" value=\"Edit\">
e828e31e 2479 <input type=\"submit\" class=\"button\"
3b0feb9b
AD
2480 onclick=\"javascript:removeSelectedFilters()\" value=\"Remove\">";
2481 }
2482
a0d53889
AD
2483 } else {
2484
3b0feb9b
AD
2485 print "<p>No filters defined.</p>";
2486
a0d53889
AD
2487 }
2488 }
2489
80dce858
AD
2490 // We need to accept raw SQL data in label queries, so not everything is escaped
2491 // here, this is by design. If you don't like the whole idea, disable labels
2492 // altogether with GLOBAL_ENABLE_LABELS = false
2493
48f0adb0
AD
2494 if ($op == "pref-labels") {
2495
cfaba6df
AD
2496 if (!GLOBAL_ENABLE_LABELS) {
2497 return;
2498 }
2499
48f0adb0
AD
2500 $subop = $_GET["subop"];
2501
d9dde1d6
AD
2502 if ($subop == "test") {
2503
2504 $expr = $_GET["expr"];
2505 $descr = $_GET["descr"];
2506
e5d758e3
AD
2507 print "<div id=\"infoBoxTitle\">Test label: $descr</div>";
2508
d9dde1d6
AD
2509 print "<div class='infoBoxContents'>";
2510
e5d758e3 2511# print "<h1>Label &laquo;$descr&raquo;</h1>";
d9dde1d6
AD
2512
2513// print "<p><b>Expression</b>: $expr</p>";
2514
2515 $result = db_query($link,
2516 "SELECT count(id) AS num_matches
2517 FROM ttrss_entries,ttrss_user_entries
2518 WHERE ($expr) AND
2519 ttrss_user_entries.ref_id = ttrss_entries.id AND
2520 owner_uid = " . $_SESSION["uid"]);
2521
2522 $num_matches = db_fetch_result($result, 0, "num_matches");;
2523
2524 if ($num_matches > 0) {
2525
a31a7b39 2526 print "<p>Query returned <b>$num_matches</b> matches, first 5 follow:</p>";
d9dde1d6
AD
2527
2528 $result = db_query($link,
2529 "SELECT title,
2530 (SELECT title FROM ttrss_feeds WHERE id = feed_id) AS feed_title
2531 FROM ttrss_entries,ttrss_user_entries
2532 WHERE ($expr) AND
2533 ttrss_user_entries.ref_id = ttrss_entries.id
2534 AND owner_uid = " . $_SESSION["uid"] . "
2535 ORDER BY date_entered DESC LIMIT 5");
2536
2537 print "<ul class=\"nomarks\">";
2538 while ($line = db_fetch_assoc($result)) {
2539 print "<li>".$line["title"].
2540 " <span class=\"insensitive\">(".$line["feed_title"].")</span></li>";
2541 }
2542 print "</ul>";
2543
2544 } else {
2545 print "<p>Query didn't return any matches.</p>";
2546 }
2547
2548 print "</div>";
2549
2550 print "<div align='center'>
2551 <input type='submit' class='button'
2552 onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
2553 return;
2554 }
2555
48f0adb0
AD
2556 if ($subop == "editSave") {
2557
2558 $sql_exp = $_GET["s"];
2559 $descr = $_GET["d"];
2560 $label_id = db_escape_string($_GET["id"]);
2561
2562// print "$sql_exp : $descr : $label_id";
2563
2564 $result = db_query($link, "UPDATE ttrss_labels SET
2565 sql_exp = '$sql_exp',
2566 description = '$descr'
2567 WHERE id = '$label_id'");
2568 }
2569
2570 if ($subop == "remove") {
2571
2572 if (!WEB_DEMO_MODE) {
2573
f932bc9f 2574 $ids = split(",", db_escape_string($_GET["ids"]));
48f0adb0
AD
2575
2576 foreach ($ids as $id) {
2577 db_query($link, "DELETE FROM ttrss_labels WHERE id = '$id'");
2578
2579 }
2580 }
2581 }
2582
2583 if ($subop == "add") {
2584
2585 if (!WEB_DEMO_MODE) {
2586
4401bf04
AD
2587 // no escaping is done here on purpose
2588 $exp = trim($_GET["exp"]);
48f0adb0
AD
2589
2590 $result = db_query($link,
4356293a
AD
2591 "INSERT INTO ttrss_labels (sql_exp,description,owner_uid)
2592 VALUES ('$exp', '$exp', '".$_SESSION["uid"]."')");
48f0adb0
AD
2593 }
2594 }
2595
2c7070b5
AD
2596 print "<div class=\"prefGenericAddBox\">
2597 <input size=\"40\" id=\"ladd_expr\">&nbsp;";
48f0adb0 2598
2c7070b5
AD
2599 print"<input type=\"submit\" class=\"button\"
2600 onclick=\"javascript:addLabel()\" value=\"Add label\"></div>";
48f0adb0
AD
2601
2602 $result = db_query($link, "SELECT
2603 id,sql_exp,description
2604 FROM
4356293a
AD
2605 ttrss_labels
2606 WHERE
2607 owner_uid = ".$_SESSION["uid"]."
2608 ORDER by description");
48f0adb0 2609
d9dde1d6
AD
2610 print "<div id=\"infoBoxShadow\"><div id=\"infoBox\">PLACEHOLDER</div></div>";
2611
3b0feb9b 2612 if (db_num_rows($result) != 0) {
48f0adb0 2613
f4fe2cde
AD
2614 print "<p><table width=\"100%\" cellspacing=\"0\"
2615 class=\"prefLabelList\" id=\"prefLabelList\">";
35f3c923
AD
2616
2617 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
2618 Select:
2619 <a href=\"javascript:selectTableRowsByIdPrefix('prefLabelList',
3055bc41 2620 'LILRR-', 'LICHK-', true)\">All</a>,
35f3c923 2621 <a href=\"javascript:selectTableRowsByIdPrefix('prefLabelList',
3055bc41 2622 'LILRR-', 'LICHK-', false)\">None</a>
35f3c923
AD
2623 </td</tr>";
2624
3b0feb9b 2625 print "<tr class=\"title\">
e325c6e7
AD
2626 <td align='center' width=\"5%\">&nbsp;</td>
2627 <td width=\"40%\">SQL expression
01c9c74a 2628 <a class=\"helpLink\" href=\"javascript:displayHelpInfobox(1)\">(?)</a>
3b0feb9b
AD
2629 </td>
2630 <td width=\"40%\">Caption</td></tr>";
2631
2632 $lnum = 0;
2633
2634 while ($line = db_fetch_assoc($result)) {
2635
2636 $class = ($lnum % 2) ? "even" : "odd";
2637
2638 $label_id = $line["id"];
2639 $edit_label_id = $_GET["id"];
2640
2641 if ($subop == "edit" && $label_id != $edit_label_id) {
2642 $class .= "Grayed";
53226edc
AD
2643 $this_row_id = "";
2644 } else {
2645 $this_row_id = "id=\"LILRR-$label_id\"";
3b0feb9b
AD
2646 }
2647
53226edc 2648 print "<tr class=\"$class\" $this_row_id>";
3b0feb9b
AD
2649
2650 $line["sql_exp"] = htmlspecialchars($line["sql_exp"]);
2651 $line["description"] = htmlspecialchars($line["description"]);
2652
2653 if (!$edit_label_id || $subop != "edit") {
2654
2655 if (!$line["description"]) $line["description"] = "[No caption]";
2656
a426e532 2657 print "<td align='center'><input onclick='toggleSelectRow(this);'
3b0feb9b
AD
2658 type=\"checkbox\" id=\"LICHK-".$line["id"]."\"></td>";
2659
2660 print "<td><a href=\"javascript:editLabel($label_id);\">" .
2661 $line["sql_exp"] . "</td>";
48f0adb0 2662
3b0feb9b
AD
2663 print "<td><a href=\"javascript:editLabel($label_id);\">" .
2664 $line["description"] . "</td>";
2665
2666 } else if ($label_id != $edit_label_id) {
2667
2668 if (!$line["description"]) $line["description"] = "[No description]";
2669
2670 print "<td><input disabled=\"true\" type=\"checkbox\"
2671 id=\"LICHK-".$line["id"]."\"></td>";
2672
2673 print "<td>".$line["sql_exp"]."</td>";
2674 print "<td>".$line["description"]."</td>";
2675
2676 } else {
2677
2678 print "<td><input disabled=\"true\" type=\"checkbox\" checked></td>";
2679
2680 print "<td><input id=\"iedit_expr\" value=\"".$line["sql_exp"].
2681 "\"></td>";
2682
2683 print "<td><input id=\"iedit_descr\" value=\"".$line["description"].
2684 "\"></td>";
2685
2686 }
2687
48f0adb0 2688
3b0feb9b
AD
2689 print "</tr>";
2690
2691 ++$lnum;
2692 }
2693
2694 if ($lnum == 0) {
2695 print "<tr><td colspan=\"4\" align=\"center\">No labels defined.</td></tr>";
2696 }
2697
2698 print "</table>";
2699
2700 print "<p>";
2701
2702 if ($subop == "edit") {
2703 print "Edit label:
d9dde1d6
AD
2704 <input type=\"submit\" class=\"button\"
2705 onclick=\"javascript:labelTest()\" value=\"Test\">
3b0feb9b 2706 <input type=\"submit\" class=\"button\"
d10fabe4 2707 onclick=\"javascript:labelEditSave()\" value=\"Save\">
3b0feb9b 2708 <input type=\"submit\" class=\"button\"
d10fabe4 2709 onclick=\"javascript:labelEditCancel()\" value=\"Cancel\">";
3b0feb9b
AD
2710
2711 } else {
2712
2713 print "
2714 Selection:
48f0adb0 2715 <input type=\"submit\" class=\"button\"
3b0feb9b 2716 onclick=\"javascript:editSelectedLabel()\" value=\"Edit\">
48f0adb0 2717 <input type=\"submit\" class=\"button\"
3b0feb9b
AD
2718 onclick=\"javascript:removeSelectedLabels()\" value=\"Remove\">";
2719 }
48f0adb0 2720 } else {
3b0feb9b 2721 print "<p>No labels defined.</p>";
48f0adb0
AD
2722 }
2723 }
2724
e828e31e
AD
2725 if ($op == "error") {
2726 print "<div width=\"100%\" align='center'>";
2727 $msg = $_GET["msg"];
2728 print $msg;
2729 print "</div>";
2730 }
2731
7dc66a61 2732 if ($op == "help") {
01c9c74a
AD
2733 if (!$_GET["noheaders"]) {
2734 print "<html><head>
2735 <title>Tiny Tiny RSS : Help</title>
2736 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
53515ff1 2737 <script type=\"text/javascript\" src=\"functions.js?$script_dt_add\"></script>
01c9c74a
AD
2738 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
2739 </head><body>";
2740 }
7dc66a61
AD
2741
2742 $tid = sprintf("%d", $_GET["tid"]);
2743
e5d758e3
AD
2744 print "<div id=\"infoBoxTitle\">Help</div>";
2745
01c9c74a 2746 print "<div class='infoBoxContents'>";
7dc66a61 2747
01c9c74a
AD
2748 if (file_exists("help/$tid.php")) {
2749 include("help/$tid.php");
2750 } else {
2751 print "<p>Help topic not found.</p>";
2752 }
7dc66a61 2753
01c9c74a 2754 print "</div>";
7dc66a61
AD
2755
2756 print "<div align='center'>
01c9c74a
AD
2757 <input type='submit' class='button'
2758 onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
7dc66a61 2759
01c9c74a
AD
2760 if (!$_GET["noheaders"]) {
2761 print "</body></html>";
2762 }
7dc66a61
AD
2763
2764 }
2765
f84a97a3
AD
2766 if ($op == "dlg") {
2767 $id = $_GET["id"];
6de5d056 2768 $param = $_GET["param"];
f84a97a3
AD
2769
2770 if ($id == "quickAddFeed") {
e5d758e3
AD
2771
2772 print "<div id=\"infoBoxTitle\">Subscribe to feed</div>";
2773 print "<div class=\"infoBoxContents\">";
2774
2775 print "<table width='100%'>
2776 <tr><td>Feed URL:</td><td>
2777 <input onblur=\"javascript:enableHotkeys()\"
2778 onfocus=\"javascript:disableHotkeys()\" id=\"qafInput\"></td></tr>";
15da5cc1
AD
2779
2780 if (get_pref($link, 'ENABLE_FEED_CATS')) {
e5d758e3
AD
2781 print "<tr><td>Category:</td><td>";
2782
15da5cc1
AD
2783 $result = db_query($link, "SELECT title,id FROM ttrss_feed_categories
2784 WHERE owner_uid = ".$_SESSION["uid"]."
2785 ORDER BY title");
2786
e5d758e3 2787 print "<select id=\"qafCat\">";
15da5cc1
AD
2788 print "<option id=\"0\">Uncategorized</option>";
2789
2790 if (db_num_rows($result) != 0) {
2791
2792 print "<option disabled>--------</option>";
2793
2794 while ($line = db_fetch_assoc($result)) {
2795 printf("<option id='%d'>%s</option>",
2796 $line["id"], $line["title"]);
2797 }
2798 }
2799
2800 print "</select>";
e5d758e3 2801 print "</td></tr>";
15da5cc1
AD
2802 }
2803
e5d758e3
AD
2804 print "<tr><td colspan='2' align='right'><input class=\"button\"
2805 type=\"submit\" onclick=\"javascript:qafAdd()\" value=\"Subscribe\">
f84a97a3 2806 <input class=\"button\"
e5d758e3
AD
2807 type=\"submit\" onclick=\"javascript:closeInfoBox()\"
2808 value=\"Cancel\"></td></tr></table>";
f84a97a3 2809 }
6de5d056
AD
2810
2811 if ($id == "quickDelFeed") {
2812
2813 $param = db_escape_string($param);
2814
2815 $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$param'");
2816
2817 if ($result) {
2818
2819 $f_title = db_fetch_result($result, 0, "title");
2820
76332f3c 2821 print "Remove current feed (<b>$f_title</b>)?&nbsp;
6de5d056
AD
2822 <input class=\"button\"
2823 type=\"submit\" onclick=\"javascript:qfdDelete($param)\" value=\"Remove\">
2824 <input class=\"button\"
e5d758e3 2825 type=\"submit\" onclick=\"javascript:closeInfoBox()\"
6de5d056
AD
2826 value=\"Cancel\">";
2827 } else {
2828 print "Error: Feed $param not found.&nbsp;
2829 <input class=\"button\"
e5d758e3 2830 type=\"submit\" onclick=\"javascript:closeInfoBox()\"
6de5d056
AD
2831 value=\"Cancel\">";
2832 }
2833 }
2834
033e47e0
AD
2835 if ($id == "search") {
2836
e5d758e3
AD
2837 print "<div id=\"infoBoxTitle\">Search</div>";
2838 print "<div class=\"infoBoxContents\">";
2839
49b7cbd3
AD
2840 $active_feed_id = db_escape_string($_GET["param"]);
2841
e5d758e3
AD
2842 print "<table width='100%'><tr><td>Search:</td><td>";
2843
033e47e0
AD
2844 print "<input id=\"searchbox\" class=\"extSearch\"
2845 onblur=\"javascript:enableHotkeys()\" onfocus=\"javascript:disableHotkeys()\"
2846 onchange=\"javascript:search()\">
e5d758e3 2847 </td></tr><tr><td>Where:</td><td>
033e47e0 2848 <select id=\"searchmodebox\">
49b7cbd3
AD
2849 <option selected>All feeds</option>";
2850
2851 if ($active_feed_id) {
2852 print "<option>This feed</option>";
2853 } else {
2854 print "<option disabled>This feed</option>";
2855 }
b0005823
AD
2856
2857 if (get_pref($link, 'ENABLE_FEED_CATS')) {
2858 print "<option>This category</option>";
2859 }
2860
e5d758e3
AD
2861 print "</select></td></tr>
2862
2863 <tr><td colspan='2' align='right'>
033e47e0
AD
2864 <input type=\"submit\"
2865 class=\"button\" onclick=\"javascript:search()\" value=\"Search\">
2866 <input class=\"button\"
e5d758e3
AD
2867 type=\"submit\" onclick=\"javascript:closeInfoBox()\"
2868 value=\"Cancel\"></td></tr></table>";
033e47e0
AD
2869
2870 }
2871
a24f525c
AD
2872 if ($id == "quickAddFilter") {
2873
e5d758e3
AD
2874 print "<div id=\"infoBoxTitle\">Create filter</div>";
2875 print "<div class=\"infoBoxContents\">";
2876
a24f525c
AD
2877 $result = db_query($link, "SELECT description
2878 FROM ttrss_filter_types ORDER BY description");
2879
2880 $filter_types = array();
2881
2882 while ($line = db_fetch_assoc($result)) {
2883 array_push($filter_types, $line["description"]);
2884 }
2885
e5d758e3 2886 print "<table width='100%'>";
a24f525c 2887
e5d758e3 2888 print "<tr><td>Match:</td><td><input id=\"fadd_regexp\" size=\"30\">&nbsp;";
a24f525c
AD
2889
2890 print_select("fadd_match", "Title", $filter_types);
2891
2892 print "</td></tr>";
2893 print "<tr><td>Feed:</td><td><select id=\"fadd_feed\">";
2894
2895 print "<option selected id=\"0\">All feeds</option>";
2896
2897 $result = db_query($link, "SELECT id,title FROM ttrss_feeds
2898 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
2899
2900 if (db_num_rows($result) > 0) {
2901 print "<option disabled>--------</option>";
2902 }
2903
2904 while ($line = db_fetch_assoc($result)) {
2905 if ($param == $line["id"]) {
2906 $selected = "selected";
2907 } else {
2908 $selected = "";
2909 }
2910 printf("<option id='%d' %s>%s</option>", $line["id"], $selected, $line["title"]);
2911 }
2912
2913 print "</select></td></tr>";
2914
2915 print "<tr><td>Action:</td>";
2916
2917 print "<td><select id=\"fadd_action\">";
2918
2919 $result = db_query($link, "SELECT id,description FROM ttrss_filter_actions
2920 ORDER BY name");
2921
2922 while ($line = db_fetch_assoc($result)) {
2923 printf("<option id='%d'>%s</option>", $line["id"], $line["description"]);
2924 }
2925
2926 print "</select>";
2927
2928 print "</td></tr><tr><td colspan=\"2\" align=\"right\">";
2929
2930 print "<input type=\"submit\"
2931 class=\"button\" onclick=\"javascript:qaddFilter()\"
e5d758e3 2932 value=\"Create\"> ";
a24f525c
AD
2933
2934 print "<input class=\"button\"
e5d758e3
AD
2935 type=\"submit\" onclick=\"javascript:closeInfoBox()\"
2936 value=\"Cancel\">";
a24f525c
AD
2937
2938 print "</td></tr></table>";
e5d758e3 2939
a24f525c 2940 }
7b5c6012
AD
2941
2942 print "</div>";
2943
f84a97a3
AD
2944 }
2945
a2770077
AD
2946 // update feeds of all users, may be used anonymously
2947 if ($op == "globalUpdateFeeds") {
2948
2949 $result = db_query($link, "SELECT id FROM ttrss_users");
2950
2951 while ($line = db_fetch_assoc($result)) {
2952 $user_id = $line["id"];
2953// print "<!-- updating feeds of uid $user_id -->";
2954 update_all_feeds($link, false, $user_id);
2955 }
e65af9c1 2956
a2770077
AD
2957 print "<rpc-reply>
2958 <message msg=\"All feeds updated\"/>
2959 </rpc-reply>";
e65af9c1
AD
2960
2961 }
2962
77e96719
AD
2963 if ($op == "pref-prefs") {
2964
b1895692 2965 $subop = $_REQUEST["subop"];
77e96719
AD
2966
2967 if ($subop == "Save configuration") {
2968
d2892032
AD
2969 if (WEB_DEMO_MODE) {
2970 header("Location: prefs.php");
2971 return;
2972 }
01d68cf9 2973
93cb4442
AD
2974 $_SESSION["prefs_op_result"] = "save-config";
2975
11de82c3
AD
2976 $_SESSION["prefs_cache"] = false;
2977
77e96719
AD
2978 foreach (array_keys($_POST) as $pref_name) {
2979
2980 $pref_name = db_escape_string($pref_name);
2981 $value = db_escape_string($_POST[$pref_name]);
2982
2983 $result = db_query($link, "SELECT type_name
2984 FROM ttrss_prefs,ttrss_prefs_types
2985 WHERE pref_name = '$pref_name' AND type_id = ttrss_prefs_types.id");
2986
2987 if (db_num_rows($result) > 0) {
2988
2989 $type_name = db_fetch_result($result, 0, "type_name");
2990
5da169d9
AD
2991// print "$pref_name : $type_name : $value<br>";
2992
77e96719 2993 if ($type_name == "bool") {
5da169d9 2994 if ($value == "1") {
77e96719
AD
2995 $value = "true";
2996 } else {
2997 $value = "false";
2998 }
2999 } else if ($type_name == "integer") {
3000 $value = sprintf("%d", $value);
3001 }
3002
3003// print "$pref_name : $type_name : $value<br>";
3004
ff485f1d
AD
3005 db_query($link, "UPDATE ttrss_user_prefs SET value = '$value'
3006 WHERE pref_name = '$pref_name' AND owner_uid = ".$_SESSION["uid"]);
77e96719
AD
3007
3008 }
3009
3010 header("Location: prefs.php");
3011
3012 }
3013
b1895692
AD
3014 } else if ($subop == "getHelp") {
3015
3016 $pref_name = db_escape_string($_GET["pn"]);
3017
3018 $result = db_query($link, "SELECT help_text FROM ttrss_prefs
3019 WHERE pref_name = '$pref_name'");
3020
3021 if (db_num_rows($result) > 0) {
3022 $help_text = db_fetch_result($result, 0, "help_text");
3023 print $help_text;
3024 } else {
3025 print "Unknown option: $pref_name";
3026 }
3027
cbb01696
AD
3028 } else if ($subop == "Change e-mail") {
3029
3030 if (WEB_DEMO_MODE) {
3031 header("Location: prefs.php");
3032 return;
3033 }
3034
3035 $email = db_escape_string($_GET["email"]);
3036 $active_uid = $_SESSION["uid"];
3037
3038 if ($email) {
3039 db_query($link, "UPDATE ttrss_users SET email = '$email'
3040 WHERE id = '$active_uid'");
3041 }
3042
3043 header("Location: prefs.php");
3044
1c7f75ed
AD
3045 } else if ($subop == "Change password") {
3046
d2892032
AD
3047 if (WEB_DEMO_MODE) {
3048 header("Location: prefs.php");
3049 return;
3050 }
1c7f75ed
AD
3051
3052 $old_pw = $_POST["OLD_PASSWORD"];
3053 $new_pw = $_POST["OLD_PASSWORD"];
3054
3055 $old_pw_hash = 'SHA1:' . sha1($_POST["OLD_PASSWORD"]);
3056 $new_pw_hash = 'SHA1:' . sha1($_POST["NEW_PASSWORD"]);
3057
3058 $active_uid = $_SESSION["uid"];
3059
3060 if ($old_pw && $new_pw) {
3061
3062 $login = db_escape_string($_SERVER['PHP_AUTH_USER']);
3063
3064 $result = db_query($link, "SELECT id FROM ttrss_users WHERE
3065 id = '$active_uid' AND (pwd_hash = '$old_pw' OR
3066 pwd_hash = '$old_pw_hash')");
3067
3068 if (db_num_rows($result) == 1) {
3069 db_query($link, "UPDATE ttrss_users SET pwd_hash = '$new_pw_hash'
3070 WHERE id = '$active_uid'");
b791095d
AD
3071
3072 $_SESSION["pwd_change_result"] = "ok";
3073 } else {
3074 $_SESSION["pwd_change_result"] = "failed";
1c7f75ed
AD
3075 }
3076 }
3077
3078 header("Location: prefs.php");
b791095d 3079
77e96719
AD
3080 } else if ($subop == "Reset to defaults") {
3081
d2892032
AD
3082 if (WEB_DEMO_MODE) {
3083 header("Location: prefs.php");
3084 return;
3085 }
01d68cf9 3086
93cb4442
AD
3087 $_SESSION["prefs_op_result"] = "reset-to-defaults";
3088
e1aa0559
AD
3089 if (DB_TYPE == "pgsql") {
3090 db_query($link,"UPDATE ttrss_user_prefs
3091 SET value = ttrss_prefs.def_value
3092 WHERE owner_uid = '".$_SESSION["uid"]."' AND
3093 ttrss_prefs.pref_name = ttrss_user_prefs.pref_name");
3094 } else {
3095 db_query($link, "DELETE FROM ttrss_user_prefs
3096 WHERE owner_uid = ".$_SESSION["uid"]);
3097 initialize_user_prefs($link, $_SESSION["uid"]);
3098 }
5da169d9 3099
77e96719
AD
3100 header("Location: prefs.php");
3101
58f8ad54
AD
3102 } else if ($subop == "Change theme") {
3103
3104 $theme = db_escape_string($_POST["theme"]);
3105
3106 if ($theme == "Default") {
3107 $theme_qpart = 'NULL';
3108 } else {
3109 $theme_qpart = "'$theme'";
3110 }
3111
6752e330
AD
3112 $result = db_query($link, "SELECT id,theme_path FROM ttrss_themes
3113 WHERE theme_name = '$theme'");
3114
3115 if (db_num_rows($result) == 1) {
3116 $theme_id = db_fetch_result($result, 0, "id");
3117 $theme_path = db_fetch_result($result, 0, "theme_path");
3118 } else {
3119 $theme_id = "NULL";
3120 $theme_path = "";
3121 }
3122
58f8ad54 3123 db_query($link, "UPDATE ttrss_users SET
6752e330 3124 theme_id = $theme_id WHERE id = " . $_SESSION["uid"]);
58f8ad54 3125
6752e330 3126 $_SESSION["theme"] = $theme_path;
503eb349 3127
58f8ad54
AD
3128 header("Location: prefs.php");
3129
77e96719
AD
3130 } else {
3131
7d4c898a 3132 if (!SINGLE_USER_MODE) {
1c7f75ed 3133
cbb01696 3134 $result = db_query($link, "SELECT id,email FROM ttrss_users
a029d530
AD
3135 WHERE id = ".$_SESSION["uid"]." AND (pwd_hash = 'password' OR
3136 pwd_hash = 'SHA1:".sha1("password")."')");
3137
3138 if (db_num_rows($result) != 0) {
b791095d 3139 print "<div class=\"warning\">
a029d530
AD
3140 Your password is at default value, please change it.
3141 </div>";
3142 }
3143
b791095d
AD
3144 if ($_SESSION["pwd_change_result"] == "failed") {
3145 print "<div class=\"warning\">
3146 There was an error while changing your password.
3147 </div>";
3148 }
3149
3150 if ($_SESSION["pwd_change_result"] == "ok") {
3151 print "<div class=\"notice\">
3152 Password changed successfully.
3153 </div>";
3154 }
3155
3156 $_SESSION["pwd_change_result"] = "";
3157
93cb4442
AD
3158 if ($_SESSION["prefs_op_result"] == "reset-to-defaults") {
3159 print "<div class=\"notice\">
3160 Your configuration was reset to defaults.
3161 </div>";
3162 }
3163
3164 if ($_SESSION["prefs_op_result"] == "save-config") {
3165 print "<div class=\"notice\">
3166 Your configuration was saved successfully.
3167 </div>";
3168 }
3169
3170 $_SESSION["prefs_op_result"] = "";
3171
cbb01696
AD
3172 print "<form action=\"backend.php\" method=\"GET\">";
3173
3174 print "<table width=\"100%\" class=\"prefPrefsList\">";
3175 print "<tr><td colspan='3'><h3>Personal data</h3></tr></td>";
3176
3177 $result = db_query($link, "SELECT email FROM ttrss_users
3178 WHERE id = ".$_SESSION["uid"]);
3179
3180 $email = db_fetch_result($result, 0, "email");
3181
3182 print "<tr><td width=\"40%\">E-mail</td>";
3183 print "<td><input class=\"editbox\" name=\"email\"
3184 value=\"$email\"></td></tr>";
3185
3186 print "</table>";
3187
3188 print "<input type=\"hidden\" name=\"op\" value=\"pref-prefs\">";
3189
3190 print "<p><input class=\"button\" type=\"submit\"
3191 value=\"Change e-mail\" name=\"subop\">";
3192
a132b8b1
AD
3193 print "</form>";
3194
64dc5976 3195 print "<form action=\"backend.php\" method=\"POST\" name=\"changePassForm\">";
7d4c898a
AD
3196
3197 print "<table width=\"100%\" class=\"prefPrefsList\">";
3198 print "<tr><td colspan='3'><h3>Authentication</h3></tr></td>";
3199
3200 print "<tr><td width=\"40%\">Old password</td>";
3201 print "<td><input class=\"editbox\" type=\"password\"
3202 name=\"OLD_PASSWORD\"></td></tr>";
3203
3204 print "<tr><td width=\"40%\">New password</td>";
3205
3206 print "<td><input class=\"editbox\" type=\"password\"
3207 name=\"NEW_PASSWORD\"></td></tr>";
3208
3209 print "</table>";
3210
3211 print "<input type=\"hidden\" name=\"op\" value=\"pref-prefs\">";
3212
3213 print "<p><input class=\"button\" type=\"submit\"
64dc5976 3214 onclick=\"return validateNewPassword(this.form)\"
7d4c898a
AD
3215 value=\"Change password\" name=\"subop\">";
3216
3217 print "</form>";
1c7f75ed 3218
7d4c898a 3219 }
1c7f75ed 3220
58f8ad54
AD
3221 $result = db_query($link, "SELECT
3222 theme_id FROM ttrss_users WHERE id = " . $_SESSION["uid"]);
3223
3224 $user_theme_id = db_fetch_result($result, 0, "theme_id");
3225
3226 $result = db_query($link, "SELECT
3227 id,theme_name FROM ttrss_themes ORDER BY theme_name");
3228
3229 if (db_num_rows($result) > 0) {
6752e330
AD
3230
3231 print "<form action=\"backend.php\" method=\"POST\">";
3232 print "<table width=\"100%\" class=\"prefPrefsList\">";
3233 print "<tr><td colspan='3'><h3>Themes</h3></tr></td>";
3234 print "<tr><td width=\"40%\">Select theme</td>";
3235 print "<td><select name=\"theme\">";
3236 print "<option>Default</option>";
58f8ad54 3237 print "<option disabled>--------</option>";
6752e330 3238
58f8ad54
AD
3239 while ($line = db_fetch_assoc($result)) {
3240 if ($line["id"] == $user_theme_id) {
3241 $selected = "selected";
3242 } else {
3243 $selected = "";
3244 }
3245 print "<option $selected>" . $line["theme_name"] . "</option>";
3246 }
6752e330
AD
3247 print "</select></td></tr>";
3248 print "</table>";
3249 print "<input type=\"hidden\" name=\"op\" value=\"pref-prefs\">";
3250 print "<p><input class=\"button\" type=\"submit\"
3251 value=\"Change theme\" name=\"subop\">";
3252 print "</form>";
58f8ad54
AD
3253 }
3254
77e96719 3255 $result = db_query($link, "SELECT
ff485f1d 3256 ttrss_user_prefs.pref_name,short_desc,help_text,value,type_name,
77e96719 3257 section_name,def_value
ff485f1d 3258 FROM ttrss_prefs,ttrss_prefs_types,ttrss_prefs_sections,ttrss_user_prefs
77e96719 3259 WHERE type_id = ttrss_prefs_types.id AND
ff485f1d 3260 section_id = ttrss_prefs_sections.id AND
a2411bd9
AD
3261 ttrss_user_prefs.pref_name = ttrss_prefs.pref_name AND
3262 owner_uid = ".$_SESSION["uid"]."
650bc435 3263 ORDER BY section_id,short_desc");
77e96719
AD
3264
3265 print "<form action=\"backend.php\" method=\"POST\">";
3266
77e96719
AD
3267 $lnum = 0;
3268
3269 $active_section = "";
3270
3271 while ($line = db_fetch_assoc($result)) {
3272
3273 if ($active_section != $line["section_name"]) {
59a654ba
AD
3274
3275 if ($active_section != "") {
1c7f75ed 3276 print "</table>";
59a654ba 3277 }
1c7f75ed
AD
3278
3279 print "<p><table width=\"100%\" class=\"prefPrefsList\">";
59a654ba
AD
3280
3281 $active_section = $line["section_name"];
3282
77e96719 3283 print "<tr><td colspan=\"3\"><h3>$active_section</h3></td></tr>";
59a654ba
AD
3284// print "<tr class=\"title\">
3285// <td width=\"25%\">Option</td><td>Value</td></tr>";
7268adf7
AD
3286
3287 $lnum = 0;
77e96719
AD
3288 }
3289
650bc435 3290// $class = ($lnum % 2) ? "even" : "odd";
77e96719 3291
650bc435 3292 print "<tr>";
77e96719 3293
77e96719
AD
3294 $type_name = $line["type_name"];
3295 $pref_name = $line["pref_name"];
3296 $value = $line["value"];
3297 $def_value = $line["def_value"];
b1895692
AD
3298 $help_text = $line["help_text"];
3299
3300 print "<td width=\"40%\" id=\"$pref_name\">" . $line["short_desc"];
3301
3302 if ($help_text) print "<div class=\"prefHelp\">$help_text</div>";
3303
3304 print "</td>";
77e96719
AD
3305
3306 print "<td>";
3307
3308 if ($type_name == "bool") {
3309// print_select($pref_name, $value, array("true", "false"));
3310
3311 if ($value == "true") {
3312 $value = "Yes";
3313 } else {
3314 $value = "No";
3315 }
3316
3317 print_radio($pref_name, $value, array("Yes", "No"));
3318
3319 } else {
3320 print "<input class=\"editbox\" name=\"$pref_name\" value=\"$value\">";
3321 }
3322
3323 print "</td>";
3324
3325 print "</tr>";
3326
3327 $lnum++;
3328 }
3329
3330 print "</table>";
3331
3332 print "<input type=\"hidden\" name=\"op\" value=\"pref-prefs\">";
3333
3334 print "<p><input class=\"button\" type=\"submit\"
3335 name=\"subop\" value=\"Save configuration\">";
3336
3337 print "&nbsp;<input class=\"button\" type=\"submit\"
69668465
AD
3338 name=\"subop\" onclick=\"return validatePrefsReset()\"
3339 value=\"Reset to defaults\"></p>";
77e96719
AD
3340
3341 print "</form>";
3342
3343 }
3344
3345 }
3346
e6cb77a0
AD
3347 if ($op == "pref-users") {
3348
3349 $subop = $_GET["subop"];
3350
3351 if ($subop == "editSave") {
3352
3353 if (!WEB_DEMO_MODE) {
3354
3355 $login = db_escape_string($_GET["l"]);
3356 $uid = db_escape_string($_GET["id"]);
3357 $access_level = sprintf("%d", $_GET["al"]);
72932a75 3358 $email = db_escape_string($_GET["e"]);
e6cb77a0 3359
72932a75
AD
3360 db_query($link, "UPDATE ttrss_users SET login = '$login',
3361 access_level = '$access_level', email = '$email' WHERE id = '$uid'");
e6cb77a0
AD
3362
3363 }
3364 } else if ($subop == "remove") {
3365
3366 if (!WEB_DEMO_MODE && $_SESSION["access_level"] >= 10) {
3367
f932bc9f 3368 $ids = split(",", db_escape_string($_GET["ids"]));
e6cb77a0
AD
3369
3370 foreach ($ids as $id) {
3371 db_query($link, "DELETE FROM ttrss_users WHERE id = '$id' AND id != " . $_SESSION["uid"]);
3372
3373 }
3374 }
3375 } else if ($subop == "add") {
3376
3377 if (!WEB_DEMO_MODE && $_SESSION["access_level"] >= 10) {
3378
b6b535ca 3379 $login = db_escape_string(trim($_GET["login"]));
e6cb77a0
AD
3380 $tmp_user_pwd = make_password(8);
3381 $pwd_hash = 'SHA1:' . sha1($tmp_user_pwd);
3382
69c0d759
AD
3383 db_query($link, "INSERT INTO ttrss_users
3384 (login,pwd_hash,access_level,last_login)
3385 VALUES ('$login', '$pwd_hash', 0, NOW())");
e6cb77a0
AD
3386
3387
3388 $result = db_query($link, "SELECT id FROM ttrss_users WHERE
3389 login = '$login' AND pwd_hash = '$pwd_hash'");
3390
3391 if (db_num_rows($result) == 1) {
3392
3393 $new_uid = db_fetch_result($result, 0, "id");
3394
3395 print "<div class=\"notice\">Added user <b>".$_GET["login"].
3396 "</b> with password <b>$tmp_user_pwd</b>.</div>";
3397
3398 initialize_user($link, $new_uid);
3399
3400 } else {
3401
3402 print "<div class=\"warning\">Error while adding user <b>".
3403 $_GET["login"].".</b></div>";
3404
3405 }
3406 }
3407 } else if ($subop == "resetPass") {
3408
3409 if (!WEB_DEMO_MODE && $_SESSION["access_level"] >= 10) {
3410
3411 $uid = db_escape_string($_GET["id"]);
3412
72932a75
AD
3413 $result = db_query($link, "SELECT login,email
3414 FROM ttrss_users WHERE id = '$uid'");
e6cb77a0
AD
3415
3416 $login = db_fetch_result($result, 0, "login");
72932a75 3417 $email = db_fetch_result($result, 0, "email");
e6cb77a0
AD
3418 $tmp_user_pwd = make_password(8);
3419 $pwd_hash = 'SHA1:' . sha1($tmp_user_pwd);
3420
3421 db_query($link, "UPDATE ttrss_users SET pwd_hash = '$pwd_hash'
3422 WHERE id = '$uid'");
3423
3424 print "<div class=\"notice\">Changed password of
72932a75
AD
3425 user <b>$login</b> to <b>$tmp_user_pwd</b>.";
3426
3427 if (MAIL_RESET_PASS && $email) {
3428 print " Notifying <b>$email</b>.";
3429
3430 mail("$login <$email>", "Password reset notification",
3431 "Hi, $login.\n".
3432 "\n".
3433 "Your password for this TT-RSS installation was reset by".
3434 " an administrator.\n".
3435 "\n".
3436 "Your new password is $tmp_user_pwd, please remember".
3437 " it for later reference.\n".
3438 "\n".
3439 "Sincerely, TT-RSS Mail Daemon.", "From: " . MAIL_FROM);
3440 }
3441
3442 print "</div>";
e6cb77a0
AD
3443
3444 }
3445 }
3446
2c7070b5 3447 print "<div class=\"prefGenericAddBox\">
f932bc9f 3448 <input id=\"uadd_box\" onchange=\"javascript:addUser()\" size=\"40\">&nbsp;";
e6cb77a0 3449
2c7070b5
AD
3450 print"<input type=\"submit\" class=\"button\"
3451 onclick=\"javascript:addUser()\" value=\"Add user\"></div>";
e6cb77a0
AD
3452
3453 $result = db_query($link, "SELECT
72932a75 3454 id,login,access_level,email,
fe99ab12 3455 SUBSTRING(last_login,1,16) as last_login
e6cb77a0
AD
3456 FROM
3457 ttrss_users
3458 ORDER by login");
3459
2317ffaa 3460 print "<div id=\"infoBoxShadow\"><div id=\"infoBox\">PLACEHOLDER</div></div>";
1a7572cb 3461
f4fe2cde
AD
3462 print "<p><table width=\"100%\" cellspacing=\"0\"
3463 class=\"prefUserList\" id=\"prefUserList\">";
e6cb77a0 3464
35f3c923
AD
3465 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
3466 Select:
3467 <a href=\"javascript:selectTableRowsByIdPrefix('prefUserList',
3055bc41 3468 'UMRR-', 'UMCHK-', true)\">All</a>,
35f3c923 3469 <a href=\"javascript:selectTableRowsByIdPrefix('prefUserList',
3055bc41 3470 'UMRR-', 'UMCHK-', false)\">None</a>
35f3c923
AD
3471 </td</tr>";
3472
e6cb77a0 3473 print "<tr class=\"title\">
e325c6e7 3474 <td align='center' width=\"5%\">&nbsp;</td>
0b68215c 3475 <td width='20%'>Login</td>
72932a75
AD
3476 <td width='20%'>E-mail</td>
3477 <td width='20%'>Access Level</td>
3478 <td width='20%'>Last login</td></tr>";
e6cb77a0
AD
3479
3480 $lnum = 0;
3481
3482 while ($line = db_fetch_assoc($result)) {
3483
3484 $class = ($lnum % 2) ? "even" : "odd";
3485
3486 $uid = $line["id"];
3487 $edit_uid = $_GET["id"];
3488
4154a415 3489 if ($subop == "edit" && $uid != $edit_uid) {
e6cb77a0 3490 $class .= "Grayed";
53226edc
AD
3491 $this_row_id = "";
3492 } else {
3493 $this_row_id = "id=\"UMRR-$uid\"";
3494 }
3495
3496 print "<tr class=\"$class\" $this_row_id>";
e6cb77a0
AD
3497
3498 $line["login"] = htmlspecialchars($line["login"]);
3499
6be6bc03
AD
3500 $line["last_login"] = date(get_pref($link, 'SHORT_DATE_FORMAT'),
3501 strtotime($line["last_login"]));
3502
5917a8e4
AD
3503 $access_level_names = array(0 => "User", 10 => "Administrator");
3504
72932a75 3505/* if ($uid == $_SESSION["uid"]) {
e6cb77a0 3506
a426e532 3507 print "<td align='center'><input disabled=\"true\" type=\"checkbox\"
e6cb77a0
AD
3508 id=\"UMCHK-".$line["id"]."\"></td>";
3509
72932a75
AD
3510 print "<td>".$line["login"]."</td>";
3511 print "<td>".$line["email"]."</td>";
3512 print "<td>".$line["access_level"]."</td>";
e6cb77a0 3513
72932a75 3514 } else */ if (!$edit_uid || $subop != "edit") {
e6cb77a0 3515
a426e532 3516 print "<td align='center'><input onclick='toggleSelectRow(this);'
1a7572cb 3517 type=\"checkbox\" id=\"UMCHK-$uid\"></td>";
e6cb77a0
AD
3518
3519 print "<td><a href=\"javascript:editUser($uid);\">" .
3520 $line["login"] . "</td>";
72932a75 3521
0b68215c
AD
3522 if (!$line["email"]) $line["email"] = "&nbsp;";
3523
72932a75
AD
3524 print "<td><a href=\"javascript:editUser($uid);\">" .
3525 $line["email"] . "</td>";
3526
e6cb77a0 3527 print "<td><a href=\"javascript:editUser($uid);\">" .
5917a8e4 3528 $access_level_names[$line["access_level"]] . "</td>";
e6cb77a0
AD
3529
3530 } else if ($uid != $edit_uid) {
3531
0b68215c
AD
3532 if (!$line["email"]) $line["email"] = "&nbsp;";
3533
72932a75 3534 print "<td align='center'><input disabled=\"true\" type=\"checkbox\"
e6cb77a0
AD
3535 id=\"UMCHK-".$line["id"]."\"></td>";
3536
3537 print "<td>".$line["login"]."</td>";
72932a75 3538 print "<td>".$line["email"]."</td>";
5917a8e4 3539 print "<td>".$access_level_names[$line["access_level"]]."</td>";
e6cb77a0
AD
3540
3541 } else {
3542
72932a75
AD
3543 print "<td align='center'>
3544 <input disabled=\"true\" type=\"checkbox\" checked></td>";
e6cb77a0
AD
3545
3546 print "<td><input id=\"iedit_ulogin\" value=\"".$line["login"].
3547 "\"></td>";
3548
72932a75
AD
3549 print "<td><input id=\"iedit_email\" value=\"".$line["email"].
3550 "\"></td>";
3551
5917a8e4
AD
3552// print "<td><input id=\"iedit_ulevel\" value=\"".$line["access_level"].
3553// "\"></td>";
3554
3555 print "<td>";
3556 print "<select id=\"iedit_ulevel\">";
3557 foreach (array_keys($access_level_names) as $al) {
3558 if ($al == $line["access_level"]) {
3559 $selected = "selected";
3560 } else {
3561 $selected = "";
3562 }
3563 print "<option $selected id=\"$al\">" .
3564 $access_level_names[$al] . "</option>";
3565 }
3566 print "</select>";
3567 print "</td>";
3568
e6cb77a0
AD
3569 }
3570
f6f32198
AD
3571 print "<td>".$line["last_login"]."</td>";
3572
e6cb77a0
AD
3573 print "</tr>";
3574
3575 ++$lnum;
3576 }
3577
3578 print "</table>";
3579
3580 print "<p>";
3581
3582 if ($subop == "edit") {
d10fabe4 3583 print "Edit user:
e6cb77a0 3584 <input type=\"submit\" class=\"button\"
d10fabe4 3585 onclick=\"javascript:userEditSave()\" value=\"Save\">
e6cb77a0 3586 <input type=\"submit\" class=\"button\"
d10fabe4 3587 onclick=\"javascript:userEditCancel()\" value=\"Cancel\">";
e6cb77a0
AD
3588
3589 } else {
3590
3591 print "
3592 Selection:
3593 <input type=\"submit\" class=\"button\"
717f5e64 3594 onclick=\"javascript:selectedUserDetails()\" value=\"User details\">
e6cb77a0
AD
3595 <input type=\"submit\" class=\"button\"
3596 onclick=\"javascript:editSelectedUser()\" value=\"Edit\">
3597 <input type=\"submit\" class=\"button\"
717f5e64
AD
3598 onclick=\"javascript:removeSelectedUsers()\" value=\"Remove\">
3599 <input type=\"submit\" class=\"button\"
3600 onclick=\"javascript:resetSelectedUserPass()\" value=\"Reset password\">";
3601
3602 }
3603 }
3604
3605 if ($op == "user-details") {
3606
3607 if (WEB_DEMO_MODE || $_SESSION["access_level"] < 10) {
3608 return;
3609 }
3610
1a7572cb 3611/* print "<html><head>
717f5e64
AD
3612 <title>Tiny Tiny RSS : User Details</title>
3613 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
3614 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
1a7572cb 3615 </head><body>"; */
717f5e64
AD
3616
3617 $uid = sprintf("%d", $_GET["id"]);
3618
e5d758e3
AD
3619 print "<div id=\"infoBoxTitle\">User details</div>";
3620
c6c3a07f 3621 print "<div class='infoBoxContents'>";
717f5e64 3622
fe99ab12
AD
3623 $result = db_query($link, "SELECT login,
3624 SUBSTRING(last_login,1,16) AS last_login,
3625 access_level,
c6c3a07f
AD
3626 (SELECT COUNT(int_id) FROM ttrss_user_entries
3627 WHERE owner_uid = id) AS stored_articles
717f5e64
AD
3628 FROM ttrss_users
3629 WHERE id = '$uid'");
3630
3631 if (db_num_rows($result) == 0) {
3632 print "<h1>User not found</h1>";
3633 return;
3634 }
3635
adba6b85
AD
3636# print "<h1>User Details</h1>";
3637
3638 $login = db_fetch_result($result, 0, "login");
3639
3640 print "<h1>$login</h1>";
717f5e64
AD
3641
3642 print "<table width='100%'>";
3643
6be6bc03
AD
3644 $last_login = date(get_pref($link, 'LONG_DATE_FORMAT'),
3645 strtotime(db_fetch_result($result, 0, "last_login")));
717f5e64 3646 $access_level = db_fetch_result($result, 0, "access_level");
c6c3a07f 3647 $stored_articles = db_fetch_result($result, 0, "stored_articles");
717f5e64 3648
adba6b85 3649# print "<tr><td>Username</td><td>$login</td></tr>";
717f5e64
AD
3650 print "<tr><td>Access level</td><td>$access_level</td></tr>";
3651 print "<tr><td>Last logged in</td><td>$last_login</td></tr>";
c6c3a07f 3652 print "<tr><td>Stored articles</td><td>$stored_articles</td></tr>";
717f5e64
AD
3653
3654 $result = db_query($link, "SELECT COUNT(id) as num_feeds FROM ttrss_feeds
3655 WHERE owner_uid = '$uid'");
3656
3657 $num_feeds = db_fetch_result($result, 0, "num_feeds");
3658
3659 print "<tr><td>Subscribed feeds count</td><td>$num_feeds</td></tr>";
3660
5d15d3ea 3661/* $result = db_query($link, "SELECT
717f5e64 3662 SUM(LENGTH(content)+LENGTH(title)+LENGTH(link)+LENGTH(guid)) AS db_size
c6c3a07f
AD
3663 FROM ttrss_user_entries,ttrss_entries
3664 WHERE owner_uid = '$uid' AND ref_id = id");
717f5e64 3665
d9f115c3 3666 $db_size = round(db_fetch_result($result, 0, "db_size") / 1024);
717f5e64 3667
c6c3a07f 3668 print "<tr><td>Approx. used DB size</td><td>$db_size KBytes</td></tr>"; */
717f5e64
AD
3669
3670 print "</table>";
3671
3672 print "<h1>Subscribed feeds</h1>";
3673
e94645ca 3674 $result = db_query($link, "SELECT id,title,site_url FROM ttrss_feeds
9b3e2cc7 3675 WHERE owner_uid = '$uid' ORDER BY title");
717f5e64 3676
9b3e2cc7 3677 print "<ul class=\"userFeedList\">";
717f5e64 3678
adba6b85
AD
3679 $row_class = "odd";
3680
717f5e64
AD
3681 while ($line = db_fetch_assoc($result)) {
3682
3683 $icon_file = ICONS_URL."/".$line["id"].".ico";
3684
3685 if (file_exists($icon_file) && filesize($icon_file) > 0) {
6c56687e 3686 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"$icon_file\">";
717f5e64 3687 } else {
5951ded1 3688 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
717f5e64
AD
3689 }
3690
adba6b85
AD
3691 print "<li class=\"$row_class\">$feed_icon&nbsp;<a href=\"".$line["site_url"]."\">".$line["title"]."</a></li>";
3692
3693 $row_class = toggleEvenOdd($row_class);
3694
e6cb77a0 3695 }
717f5e64 3696
a88c1f36
AD
3697 if (db_num_rows($result) < $num_feeds) {
3698 // FIXME - add link to show ALL subscribed feeds here somewhere
3699 print "<li><img
3700 class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">&nbsp;...</li>";
3701 }
3702
717f5e64
AD
3703 print "</ul>";
3704
717f5e64
AD
3705 print "</div>";
3706
1a7572cb
AD
3707 print "<div align='center'>
3708 <input type='submit' class='button'
c6c3a07f 3709 onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
1a7572cb
AD
3710
3711// print "</body></html>";
717f5e64 3712
e6cb77a0
AD
3713 }
3714
c6c3a07f
AD
3715 if ($op == "feed-details") {
3716
df268d47 3717// $feed_id = $_GET["id"];
4fec9fd7 3718
df268d47 3719 $feed_ids = split(",", db_escape_string($_GET["id"]));
c6c3a07f 3720
e5d758e3 3721 print "<div id=\"infoBoxTitle\">Feed details</div>";
df268d47 3722 print "<div class=\"infoBoxContents\">";
bca02305 3723
df268d47 3724 foreach ($feed_ids as $feed_id) {
c6c3a07f 3725
df268d47
AD
3726 $result = db_query($link,
3727 "SELECT
3728 title,feed_url,
3729 SUBSTRING(last_updated,1,16) as last_updated,
3730 icon_url,site_url,
3731 (SELECT COUNT(int_id) FROM ttrss_user_entries
3732 WHERE feed_id = id) AS total,
3733 (SELECT COUNT(int_id) FROM ttrss_user_entries
3734 WHERE feed_id = id AND unread = true) AS unread,
3735 (SELECT COUNT(int_id) FROM ttrss_user_entries
3736 WHERE feed_id = id AND marked = true) AS marked
3737 FROM ttrss_feeds
3738 WHERE id = '$feed_id' AND owner_uid = ".$_SESSION["uid"]);
3739
3740 if (db_num_rows($result) == 0) return;
3741
3742 $title = db_unescape_string(db_fetch_result($result, 0, "title"));
3743 $last_updated = date(get_pref($link, 'LONG_DATE_FORMAT'),
3744 strtotime(db_fetch_result($result, 0, "last_updated")));
3745 $feed_url = db_fetch_result($result, 0, "feed_url");
3746 $icon_url = db_fetch_result($result, 0, "icon_url");
3747 $total = db_fetch_result($result, 0, "total");
3748 $unread = db_fetch_result($result, 0, "unread");
3749 $marked = db_fetch_result($result, 0, "marked");
3750 $site_url = db_fetch_result($result, 0, "site_url");
bca02305 3751
df268d47 3752 $result = db_query($link, "SELECT COUNT(id) AS subscribed
3803fa6a 3753 FROM ttrss_feeds WHERE feed_url = '$feed_url' AND private = false");
df268d47
AD
3754
3755 $subscribed = db_fetch_result($result, 0, "subscribed");
3756
3757 $icon_file = ICONS_DIR . "/$feed_id.ico";
3758
3759 if (file_exists($icon_file) && filesize($icon_file) > 0) {
3760 $feed_icon = "<img width=\"16\" height=\"16\"
3761 src=\"" . ICONS_URL . "/$feed_id.ico\">";
3762 } else {
3763 $feed_icon = "";
bca02305
AD
3764 }
3765
df268d47 3766 print "<h1>$feed_icon $title</h1>";
bca02305 3767
df268d47 3768 print "<table width='100%'>";
bca02305 3769
df268d47
AD
3770 if ($site_url) {
3771 print "<tr><td width='30%'>Link</td>
3772 <td><a href=\"$site_url\">$site_url</a>
3773 <a href=\"$feed_url\">(feed)</a></td>
3774 </td></tr>";
3775 } else {
3776 print "<tr><td width='30%'>Feed URL</td>
3777 <td><a href=\"$feed_url\">$feed_url</a></td></tr>";
3778 }
3779 print "<tr><td>Last updated</td><td>$last_updated</td></tr>";
3780 print "<tr><td>Total articles</td><td>$total</td></tr>";
3781 print "<tr><td>Unread articles</td><td>$unread</td></tr>";
3782 print "<tr><td>Starred articles</td><td>$marked</td></tr>";
3783 print "<tr><td>Subscribed users</td><td>$subscribed</td></tr>";
3784
3785 print "</table>";
3786
3787/* $result = db_query($link, "SELECT title,
3788 SUBSTRING(updated,1,16) AS updated,unread
3789 FROM ttrss_entries,ttrss_user_entries
3790 WHERE ref_id = id AND feed_id = '$feed_id'
3791 ORDER BY date_entered DESC LIMIT 5");
3792
3793 if (db_num_rows($result) > 0) {
3794
3795 print "<h1>Latest headlines</h1>";
3796
3797 print "<ul class=\"nomarks\">";
3798
3799 while ($line = db_fetch_assoc($result)) {
3800 if ($line["unread"] == "t" || $line["unread"] == "1") {
3801 $line["title"] = "<b>" . $line["title"] . "</b>";
3802 }
3803 print "<li>" . $line["title"].
3804 "&nbsp;<span class=\"insensitive\">(" .
3805 date(get_pref($link, 'SHORT_DATE_FORMAT'),
3806 strtotime($line["updated"])).
3807 ")</span></li>";
3808 }
3809
3810 print "</ul>";
3811
3812 } */
bca02305 3813 }
df268d47
AD
3814
3815 print "</div>";
3816
3817 print "<div align='center'>
3818 <input type='submit' class='button'
3819 onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
3820 }
c6c3a07f 3821
c6232e43
AD
3822 if ($op == "pref-feed-browser") {
3823
e2f728be
AD
3824 if (!ENABLE_FEED_BROWSER) {
3825 print "Feed browser is administratively disabled.";
3826 return;
3827 }
3828
c6232e43
AD
3829 $subop = $_REQUEST["subop"];
3830
3831 if ($subop == "details") {
3832 $id = db_escape_string($_GET["id"]);
c2b2aee0 3833
072f1ee2
AD
3834 print "<div class=\"browserFeedInfo\">";
3835 print "<b>Feed information:</b>";
3836 print "<div class=\"detailsPart\">";
3837
3838 $result = db_query($link, "SELECT
3839 feed_url,site_url,
3840 SUBSTRING(last_updated,1,19) AS last_updated
3841 FROM ttrss_feeds WHERE id = '$id'");
3842
3843 $feed_url = db_fetch_result($result, 0, "feed_url");
3844 $site_url = db_fetch_result($result, 0, "site_url");
3845 $last_updated = db_fetch_result($result, 0, "last_updated");
3846
3847 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
3848 $last_updated = smart_date_time(strtotime($last_updated));
3849 } else {
3850 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
3851 $last_updated = date($short_date, strtotime($last_updated));
3852 }
3853
3854 print "Site: <a href='$site_url'>$site_url</a> ".
3855 "(<a href='$feed_url'>feed</a>), ".
3856 "Last updated: $last_updated";
3857
3858 print "</div>";
3859
3860 $result = db_query($link, "SELECT
3861 ttrss_entries.title,
3862 content,
c2b2aee0
AD
3863 substring(date_entered,1,19) as date_entered,
3864 substring(updated,1,19) as updated
072f1ee2
AD
3865 FROM ttrss_entries,ttrss_user_entries
3866 WHERE ttrss_entries.id = ref_id AND feed_id = '$id'
c2b2aee0
AD
3867 ORDER BY updated DESC LIMIT 5");
3868
3869 if (db_num_rows($result) > 0) {
c2b2aee0
AD
3870
3871 print "<b>Last headlines:</b><br>";
3872
3873 print "<div class=\"detailsPart\">";
3874 print "<ul class=\"compact\">";
3875 while ($line = db_fetch_assoc($result)) {
3876
3877 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
3878 $entry_dt = smart_date_time(strtotime($line["updated"]));
3879 } else {
3880 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
3881 $entry_dt = date($short_date, strtotime($line["updated"]));
3882 }
3883
3884 print "<li>" . $line["title"] .
3885 "&nbsp;<span class=\"insensitive\">($entry_dt)</span></li>";
3886 }
3887 print "</ul></div>";
3888 }
072f1ee2
AD
3889
3890 print "</div>";
c2b2aee0 3891
c6232e43
AD
3892 return;
3893 }
65f28a40 3894
beccbed5
AD
3895 print "<p>This panel shows feeds subscribed by other users of this system, just in case you are interested in some of them too.</p>";
3896
6311acbe
AD
3897 $limit = db_escape_string($_GET["limit"]);
3898
3899 if (!$limit) $limit = 25;
3900
c6232e43
AD
3901 $result = db_query($link, "SELECT feed_url,count(id) AS subscribers
3902 FROM ttrss_feeds
3903 WHERE auth_login = '' AND auth_pass = '' AND private = false
6311acbe
AD
3904 GROUP BY feed_url ORDER BY subscribers DESC LIMIT $limit");
3905
3906 print "<div style=\"float : right\">
3907 Top <select id=\"feedBrowserLimit\">";
3908
3909 foreach (array(25, 50, 100) as $l) {
3910 $issel = ($l == $limit) ? "selected" : "";
3911 print "<option $issel>$l</option>";
3912 }
3913
3914 print "</select>
3915 <input type=\"submit\" class=\"button\"
3916 onclick=\"updateBigFeedBrowser()\" value=\"Show\">
3917 </div>";
0b68215c
AD
3918
3919 print "<p>Selection:
3920 <input type='submit' class='button' onclick=\"feedBrowserSubscribe()\"
3921 value=\"Subscribe\">";
3922
0fefdacc 3923 print "<ul class='nomarks' id='browseBigFeedList'>";
c6232e43
AD
3924
3925 $feedctr = 0;
3926
3927 while ($line = db_fetch_assoc($result)) {
3928 $feed_url = $line["feed_url"];
3929 $subscribers = $line["subscribers"];
3930
3931 $sub_result = db_query($link, "SELECT id
3932 FROM ttrss_feeds WHERE feed_url = '$feed_url' AND owner_uid =" .
3933 $_SESSION["uid"]);
3934
3935 if (db_num_rows($sub_result) > 0) {
3936 continue; // already subscribed
3937 }
3938
3939 $det_result = db_query($link, "SELECT site_url,title,id
3940 FROM ttrss_feeds WHERE feed_url = '$feed_url' LIMIT 1");
3941
3942 $details = db_fetch_assoc($det_result);
3943
3944 $icon_file = ICONS_DIR . "/" . $details["id"] . ".ico";
3945
3946 if (file_exists($icon_file) && filesize($icon_file) > 0) {
3947 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"" . ICONS_URL .
3948 "/".$details["id"].".ico\">";
3949 } else {
3950 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
3951 }
3952
3953 $check_box = "<input onclick='toggleSelectListRow(this)' class='feedBrowseCB'
3954 type=\"checkbox\" id=\"FBCHK-" . $details["id"] . "\">";
3955
3956 $class = ($feedctr % 2) ? "even" : "odd";
3957
3958 print "<li class='$class' id=\"FBROW-".$details["id"]."\">$check_box".
3959 "$feed_icon ";
3960
c2b2aee0 3961 print "<a href=\"javascript:browserToggleExpand('".$details["id"]."')\">" .
c6232e43
AD
3962 $details["title"] ."</a>&nbsp;" .
3963 "<span class='subscribers'>($subscribers)</span>";
3964
3965 print "<div class=\"browserDetails\" id=\"BRDET-" . $details["id"] . "\">";
3966 print "</div>";
3967
3968 print "</li>";
3969
3970 ++$feedctr;
3971 }
3972
3973 if ($feedctr == 0) {
3974 print "<li>No feeds found to subscribe.</li>";
3975 }
3976
3977 print "</ul>";
3978
c6232e43
AD
3979 print "</div>";
3980
3981 }
3982
657770a0
AD
3983 function check_configuration_variables() {
3984 if (!defined('SESSION_EXPIRE_TIME')) {
adf702d6 3985 return "config: SESSION_EXPIRE_TIME is undefined";
657770a0
AD
3986 }
3987
3988 if (SESSION_EXPIRE_TIME < 60) {
adf702d6
AD
3989 return "config: SESSION_EXPIRE_TIME is too low (less than 60)";
3990 }
3991
3992 if (SESSION_EXPIRE_TIME < SESSION_COOKIE_LIFETIME_REMEMBER) {
3993 return "config: SESSION_EXPIRE_TIME should be greater or equal to" .
3994 "SESSION_COOKIE_LIFETIME_REMEMBER";
3995 }
3996
9a3bb96a 3997 if (defined('DISABLE_SESSIONS')) {
adf702d6 3998 return "config: you have enabled DISABLE_SESSIONS. Please disable this option.";
657770a0
AD
3999 }
4000
8a414837
AD
4001 if (DATABASE_BACKED_SESSIONS && SINGLE_USER_MODE) {
4002 return "config: DATABASE_BACKED_SESSIONS is incompatible with SINGLE_USER_MODE";
4003 }
4004
657770a0
AD
4005 return false;
4006 }
4007
4b3dff6e 4008 db_close($link);
1cd17194 4009?>
406d9489
AD
4010
4011<!-- <?= sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
4012