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