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