]> git.wh0rd.org - tt-rss.git/blame - backend.php
fix preview display in headlines
[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
7d0e004f
AD
948 print "<table class=\"headlinesList\" id=\"headlinesList\"
949 cellspacing=\"0\" width=\"100%\">";
1572afe5
AD
950
951
48f0adb0
AD
952 if ($feed < -10) error_reporting (0);
953
8143ae1f
AD
954 if (sprintf("%d", $feed) != 0) {
955
21703604
AD
956 if ($feed > 0) {
957 $feed_kind = "Feeds";
958 } else {
959 $feed_kind = "Labels";
960 }
961
8143ae1f 962 $result = db_query($link, "SELECT
1572afe5
AD
963 id,title,
964 SUBSTRING(updated,1,16) as updated,
965 unread,feed_id,marked,link,last_read,
8143ae1f
AD
966 SUBSTRING(last_read,1,19) as last_read_noms,
967 $vfeed_query_part
591c396d 968 SUBSTRING(updated,1,19) as updated_noms,
2e85e07b 969 content as content_preview
8143ae1f 970 FROM
4c193675 971 ttrss_entries,ttrss_user_entries
8143ae1f 972 WHERE
4c193675 973 ttrss_user_entries.ref_id = ttrss_entries.id AND
aee86c2e 974 owner_uid = '".$_SESSION["uid"]."' AND
8143ae1f
AD
975 $search_query_part
976 $view_query_part
977 $query_strategy_part ORDER BY $order_by
978 $limit_query_part");
979
980 } else {
981 // browsing by tag
982
21703604
AD
983 $feed_kind = "Tags";
984
8143ae1f 985 $result = db_query($link, "SELECT
1572afe5
AD
986 ttrss_entries.id as id,title,
987 SUBSTRING(updated,1,16) as updated,
988 unread,feed_id,
8143ae1f 989 marked,link,last_read,
c05a19f3 990 SUBSTRING(last_read,1,19) as last_read_noms,
254e0e4b 991 $vfeed_query_part
591c396d 992 SUBSTRING(updated,1,19) as updated_noms,
2e85e07b 993 content
8143ae1f 994 FROM
05732aa0 995 ttrss_entries,ttrss_user_entries,ttrss_tags
8143ae1f 996 WHERE
05732aa0
AD
997 ref_id = ttrss_entries.id AND
998 ttrss_user_entries.owner_uid = '".$_SESSION["uid"]."' AND
999 post_int_id = int_id AND tag_name = '$feed' AND
8143ae1f
AD
1000 $view_query_part
1001 $search_query_part
1002 $query_strategy_part ORDER BY $order_by
1003 $limit_query_part");
1004 }
d76a3b03 1005
48f0adb0
AD
1006 if (!$result) {
1007 print "<tr><td colspan='4' align='center'>
1008 Could not display feed (query failed). Please check match syntax or local configuration.</td></tr>";
1009 return;
1010 }
1011
a1a8a2be 1012 $lnum = 0;
48f0adb0 1013
cce28758 1014 error_reporting (DEFAULT_ERROR_LEVEL);
48f0adb0 1015
e1123aee 1016 $num_unread = 0;
d76a3b03 1017
648472a7 1018 while ($line = db_fetch_assoc($result)) {
d76a3b03 1019
a1a8a2be 1020 $class = ($lnum % 2) ? "even" : "odd";
d76a3b03 1021
ad99045e
AD
1022 $id = $line["id"];
1023 $feed_id = $line["feed_id"];
1024
4cc6ea5e
AD
1025 if ($line["last_read"] == "" &&
1026 ($line["unread"] != "t" && $line["unread"] != "1")) {
1027
ecb14114
AD
1028 $update_pic = "<img id='FUPDPIC-$id' src=\"images/updated.png\"
1029 alt=\"Updated\">";
1030 } else {
1031 $update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.gif\"
1032 alt=\"Updated\">";
c43f77f5 1033 }
b197f117 1034
8158c57a 1035 if ($line["unread"] == "t" || $line["unread"] == "1") {
a1a8a2be 1036 $class .= "Unread";
e1123aee
AD
1037 ++$num_unread;
1038 }
d76a3b03 1039
8158c57a 1040 if ($line["marked"] == "t" || $line["marked"] == "1") {
f4c10d44
AD
1041 $marked_pic = "<img id=\"FMARKPIC-$id\" src=\"images/mark_set.png\"
1042 alt=\"Reset mark\" onclick='javascript:toggleMark($id, false)'>";
1043 } else {
1044 $marked_pic = "<img id=\"FMARKPIC-$id\" src=\"images/mark_unset.png\"
1045 alt=\"Set mark\" onclick='javascript:toggleMark($id, true)'>";
1046 }
1047
ac43eba1 1048 $content_link = "<a id=\"FTITLE-$id\" href=\"javascript:view($id,$feed_id);\">" .
b197f117
AD
1049 $line["title"] . "</a>";
1050
d5224f0d 1051 print "<tr class='$class' id='RROW-$id'>";
5f89f780 1052 // onclick=\"javascript:view($id,$feed_id)\">
b197f117 1053
179d6f57 1054 print "<td valign='center' class='hlUpdatePic'>$update_pic</td>";
1572afe5 1055
179d6f57 1056 print "<td valign='center' class='hlSelectRow'>
1572afe5
AD
1057 <input type=\"checkbox\" onclick=\"toggleSelectRow(this)\"
1058 class=\"feedCheckBox\" id=\"RCHK-$id\">
1059 </td>";
1060
179d6f57 1061 print "<td valign='center' class='hlMarkedPic'>$marked_pic</td>";
254e0e4b
AD
1062
1063 if ($line["feed_title"]) {
179d6f57
AD
1064 print "<td class='hlContent'>$content_link</td>";
1065 print "<td class='hlFeed'>
2db4190c 1066 <a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a></td>";
591c396d 1067 } else {
179d6f57 1068 print "<td class='hlContent'>$content_link";
591c396d
AD
1069 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
1070 $content_preview = truncate_string(strip_tags($line["content_preview"]),
2e85e07b
AD
1071 101);
1072
591c396d
AD
1073 print "<span class=\"contentPreview\"> - $content_preview</span>";
1074 }
1075 print "</td>";
254e0e4b 1076 }
d76a3b03 1077
179d6f57
AD
1078 $updated_fmt = date("M d, G:i", strtotime($line["updated"]));
1079 print "<td class=\"hlUpdated\"><nobr>$updated_fmt</nobr></td>";
1080
a1a8a2be 1081 print "</tr>";
d76a3b03 1082
a1a8a2be
AD
1083 ++$lnum;
1084 }
d76a3b03 1085
ac53063a 1086 if ($lnum == 0) {
a82065a1 1087 print "<tr><td align='center'>No articles found.</td></tr>";
047bae73 1088 }
a2015351 1089
a1a8a2be 1090 print "</table>";
6113ef7d
AD
1091
1092 print "<script type=\"text/javascript\">
bb7cface 1093 document.onkeydown = hotkey_handler;
4f3a84f4 1094 update_all_counters('$feed');
6113ef7d 1095 </script>";
d76a3b03 1096
f0601b87
AD
1097 if ($addheader) {
1098 print "</body></html>";
1099 }
1100
1cd17194
AD
1101 }
1102
0e091d38 1103 if ($op == "pref-rpc") {
331900c6 1104
0e091d38 1105 $subop = $_GET["subop"];
331900c6 1106
83fe4d6d
AD
1107 if ($subop == "unread") {
1108 $ids = split(",", $_GET["ids"]);
1109 foreach ($ids as $id) {
a5873b2e
AD
1110 db_query($link, "UPDATE ttrss_user_entries SET unread = true
1111 WHERE feed_id = '$id' AND owner_uid = ".$_SESSION["uid"]);
83fe4d6d 1112 }
0e091d38 1113
a5873b2e 1114 print "Marked selected feeds as unread.";
83fe4d6d
AD
1115 }
1116
1117 if ($subop == "read") {
1118 $ids = split(",", $_GET["ids"]);
1119 foreach ($ids as $id) {
a5873b2e
AD
1120 db_query($link, "UPDATE ttrss_user_entries
1121 SET unread = false,last_read = NOW() WHERE
1122 feed_id = '$id' AND owner_uid = ".$_SESSION["uid"]);
83fe4d6d 1123 }
0e091d38 1124
a5873b2e 1125 print "Marked selected feeds as read.";
0e091d38
AD
1126
1127 }
1128
1129 }
1130
1131 if ($op == "pref-feeds") {
1132
1133 $subop = $_GET["subop"];
1134
508a81e1 1135 if ($subop == "editSave") {
648472a7
AD
1136 $feed_title = db_escape_string($_GET["t"]);
1137 $feed_link = db_escape_string($_GET["l"]);
d148926e 1138 $upd_intl = db_escape_string($_GET["ui"]);
5d73494a 1139 $purge_intl = db_escape_string($_GET["pi"]);
91ff844a
AD
1140 $feed_id = db_escape_string($_GET["id"]);
1141 $cat_id = db_escape_string($_GET["catid"]);
508a81e1 1142
d148926e
AD
1143 if (strtoupper($upd_intl) == "DEFAULT")
1144 $upd_intl = 0;
1145
5d73494a
AD
1146 if (strtoupper($purge_intl) == "DEFAULT")
1147 $purge_intl = 0;
1148
140aae81
AD
1149 if (strtoupper($purge_intl) == "DISABLED")
1150 $purge_intl = -1;
1151
91ff844a
AD
1152 if ($cat_id != 0) {
1153 $category_qpart = "cat_id = '$cat_id'";
1154 } else {
1155 $category_qpart = 'cat_id = NULL';
1156 }
1157
648472a7 1158 $result = db_query($link, "UPDATE ttrss_feeds SET
91ff844a 1159 $category_qpart,
d148926e 1160 title = '$feed_title', feed_url = '$feed_link',
5d73494a 1161 update_interval = '$upd_intl',
91ff844a 1162 purge_interval = '$purge_intl'
f72dbbde 1163 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
508a81e1 1164
83fe4d6d
AD
1165 }
1166
331900c6 1167 if ($subop == "remove") {
331900c6 1168
b0b4abcf 1169 if (!WEB_DEMO_MODE) {
331900c6 1170
b0b4abcf
AD
1171 $ids = split(",", $_GET["ids"]);
1172
1173 foreach ($ids as $id) {
f72dbbde
AD
1174 db_query($link, "DELETE FROM ttrss_feeds
1175 WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4769ddaf 1176
273a2f6b 1177 $icons_dir = ICONS_DIR;
d5caaae5 1178
4769ddaf
AD
1179 if (file_exists($icons_dir . "/$id.ico")) {
1180 unlink($icons_dir . "/$id.ico");
d5caaae5 1181 }
b0b4abcf 1182 }
331900c6
AD
1183 }
1184 }
1185
1186 if ($subop == "add") {
b0b4abcf
AD
1187
1188 if (!WEB_DEMO_MODE) {
331900c6 1189
b6b535ca 1190 $feed_link = db_escape_string(trim($_GET["link"]));
331900c6 1191
648472a7 1192 $result = db_query($link,
7e9a3986
AD
1193 "SELECT id FROM ttrss_feeds
1194 WHERE feed_url = '$feed_link' AND owner_uid = ".$_SESSION["uid"]);
1195
1196 if (db_num_rows($result) == 0) {
1197
1198 $result = db_query($link,
1199 "INSERT INTO ttrss_feeds (owner_uid,feed_url,title)
1200 VALUES ('".$_SESSION["uid"]."', '$feed_link', '')");
331900c6 1201
7e9a3986
AD
1202 $result = db_query($link,
1203 "SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_link'
1204 AND owner_uid = " . $_SESSION["uid"]);
1205
1206 $feed_id = db_fetch_result($result, 0, "id");
1207
1208 if ($feed_id) {
1209 update_rss_feed($link, $feed_link, $feed_id);
1210 }
1211 } else {
331900c6 1212
7e9a3986
AD
1213 print "<div class=\"warning\">
1214 Feed <b>$feed_link</b> already exists in the database.
1215 </div>";
b0b4abcf
AD
1216 }
1217 }
331900c6 1218 }
a0d53889 1219
91ff844a
AD
1220 if ($subop == "addCat") {
1221
1222 if (!WEB_DEMO_MODE) {
1223
1224 $feed_cat = db_escape_string(trim($_GET["cat"]));
1225
1226 $result = db_query($link,
1227 "SELECT id FROM ttrss_feed_categories
1228 WHERE title = '$feed_cat' AND owner_uid = ".$_SESSION["uid"]);
1229
1230 if (db_num_rows($result) == 0) {
1231
1232 $result = db_query($link,
1233 "INSERT INTO ttrss_feed_categories (owner_uid,title)
1234 VALUES ('".$_SESSION["uid"]."', '$feed_cat')");
1235
1236 } else {
1237
1238 print "<div class=\"warning\">
1239 Category <b>$feed_cat</b> already exists in the database.
1240 </div>";
1241 }
1242
1243
1244 }
1245 }
1246
1247 if ($subop == "removeCats") {
1248
1249 if (!WEB_DEMO_MODE) {
1250
1251 $ids = split(",", $_GET["ids"]);
1252
1253 foreach ($ids as $id) {
1254
1255 db_query($link, "BEGIN");
1256
1257 $result = db_query($link,
1258 "SELECT count(id) as num_feeds FROM ttrss_feeds
1259 WHERE cat_id = '$id'");
1260
1261 $num_feeds = db_fetch_result($result, 0, "num_feeds");
1262
1263 if ($num_feeds == 0) {
1264 db_query($link, "DELETE FROM ttrss_feed_categories
1265 WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
1266 } else {
1267
1268 print "<div class=\"warning\">
1269 Unable to delete non empty feed categories.</div>";
1270
1271 }
1272
1273 db_query($link, "COMMIT");
1274 }
1275 }
1276 }
1277
c64d5b03 1278// print "<h3>Edit Feeds</h3>";
91ff844a 1279
4904f845
AD
1280 $result = db_query($link, "SELECT id,title,feed_url,last_error
1281 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
1282
1283 if (db_num_rows($result) > 0) {
1284
1285 print "<div class=\"warning\">";
1286
1287 print "<b>Feeds with update errors:</b>";
1288
1289 print "<ul class=\"nomarks\">";
1290
1291 while ($line = db_fetch_assoc($result)) {
1292 print "<li>" . $line["title"] . " (" . $line["feed_url"] . "): " .
1293 $line["last_error"];
1294 }
1295
1296 print "</ul>";
1297 print "</div>";
1298
1299 }
1300
c64d5b03 1301 print "<p><div class=\"prefGenericAddBox\">
2c7070b5
AD
1302 <input id=\"fadd_link\" size=\"40\">&nbsp;<input
1303 type=\"submit\" class=\"button\"
1304 onclick=\"javascript:addFeed()\" value=\"Add feed\"></div>";
a0d53889 1305
b83c7545
AD
1306 $feeds_sort = db_escape_string($_GET["sort"]);
1307
1308 if (!$feeds_sort || $feeds_sort == "undefined") {
1309 $feeds_sort = $_SESSION["pref_sort_feeds"];
1310 if (!$feeds_sort) $feeds_sort = "title";
1311 }
1312
1313 $_SESSION["pref_sort_feeds"] = $feeds_sort;
1314
648472a7 1315 $result = db_query($link, "SELECT
d148926e 1316 id,title,feed_url,substring(last_updated,1,16) as last_updated,
91ff844a
AD
1317 update_interval,purge_interval,
1318 (SELECT title FROM ttrss_feed_categories
1319 WHERE id = cat_id) AS category
c0e5a40e 1320 FROM
b83c7545
AD
1321 ttrss_feeds WHERE owner_uid = '".$_SESSION["uid"]."'
1322 ORDER by $feeds_sort,title");
1cd17194 1323
3b0feb9b 1324 if (db_num_rows($result) != 0) {
91ff844a 1325
3b0feb9b 1326 print "<div id=\"infoBoxShadow\"><div id=\"infoBox\">PLACEHOLDER</div></div>";
35f3c923 1327
3b0feb9b 1328 print "<p><table width=\"100%\" class=\"prefFeedList\" id=\"prefFeedList\">";
35f3c923
AD
1329 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
1330 Select:
1331 <a href=\"javascript:selectTableRowsByIdPrefix('prefFeedList',
3055bc41 1332 'FEEDR-', 'FRCHK-', true)\">All</a>,
35f3c923 1333 <a href=\"javascript:selectTableRowsByIdPrefix('prefFeedList',
3055bc41 1334 'FEEDR-', 'FRCHK-', false)\">None</a>
35f3c923
AD
1335 </td</tr>";
1336
3b0feb9b 1337 print "<tr class=\"title\">
3547842a
AD
1338 <td width=\"3%\">&nbsp;</td>
1339 <td width=\"3%\">Select</td>
3b0feb9b
AD
1340 <td width=\"20%\">
1341 <a href=\"javascript:updateFeedList('title')\">Title</a></td>
1342 <td width=\"20%\">
1343 <a href=\"javascript:updateFeedList('feed_url')\">Link</a>
1344 </td>";
54d3ba50 1345
3b0feb9b
AD
1346 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1347 print "<td width=\"10%\">
1348 <a href=\"javascript:updateFeedList('category')\">Category</a></td>";
603c27f8 1349 }
603c27f8 1350
f92db4f5 1351 print "
3b0feb9b
AD
1352 <td width=\"10%\">
1353 <a href=\"javascript:updateFeedList('update_interval')\">Update Interval</a>
1354 </td>
1355 <td width=\"10%\">
1356 <a href=\"javascript:updateFeedList('purge_interval')\">Purge Days</a>
1357 </td>
3b0feb9b
AD
1358 </tr>";
1359
c64d5b03
AD
1360 $lnum = 0;
1361
1362 while ($line = db_fetch_assoc($result)) {
1363
1364 $class = ($lnum % 2) ? "even" : "odd";
1365
3b0feb9b 1366 $feed_id = $line["id"];
c64d5b03 1367
3b0feb9b 1368 $edit_feed_id = $_GET["id"];
c64d5b03 1369
3b0feb9b 1370 if ($subop == "edit" && $feed_id != $edit_feed_id) {
c64d5b03 1371 $class .= "Grayed";
53226edc
AD
1372 $this_row_id = "";
1373 } else {
1374 $this_row_id = "id=\"FEEDR-$feed_id\"";
c64d5b03
AD
1375 }
1376
53226edc 1377 print "<tr class=\"$class\" $this_row_id>";
3b0feb9b
AD
1378
1379 $icon_file = ICONS_DIR . "/$feed_id.ico";
1380
1381 if (file_exists($icon_file) && filesize($icon_file) > 0) {
1382 $feed_icon = "<img width=\"16\" height=\"16\"
1383 src=\"" . ICONS_URL . "/$feed_id.ico\">";
1384 } else {
1385 $feed_icon = "&nbsp;";
1386 }
1387 print "<td align='center'>$feed_icon</td>";
c64d5b03
AD
1388
1389 $edit_title = htmlspecialchars(db_unescape_string($line["title"]));
3b0feb9b
AD
1390 $edit_link = htmlspecialchars(db_unescape_string($line["feed_url"]));
1391 $edit_cat = htmlspecialchars(db_unescape_string($line["category"]));
1392
1393 if (!$edit_cat) $edit_cat = "Uncategorized";
c64d5b03 1394
3b0feb9b 1395 if (!$edit_feed_id || $subop != "edit") {
c64d5b03
AD
1396
1397 print "<td><input onclick='toggleSelectRow(this);'
3b0feb9b 1398 type=\"checkbox\" id=\"FRCHK-".$line["id"]."\"></td>";
3547842a
AD
1399
1400 $edit_title = truncate_string($edit_title, 40);
1401 $edit_link = truncate_string($edit_link, 60);
c64d5b03 1402
3b0feb9b 1403 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
c64d5b03 1404 $edit_title . "</a></td>";
3b0feb9b
AD
1405
1406 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
1407 $edit_link . "</a></td>";
1408
1409 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1410 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
1411 $edit_cat . "</a></td>";
1412 }
1413
1414 if ($line["update_interval"] == "0")
1415 $line["update_interval"] = "Default";
c64d5b03 1416
3b0feb9b
AD
1417 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
1418 $line["update_interval"] . "</a></td>";
1419
1420 if ($line["purge_interval"] == "0")
1421 $line["purge_interval"] = "Default";
1422
1423 if ($line["purge_interval"] < 0)
1424 $line["purge_interval"] = "Disabled";
1425
1426 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
1427 $line["purge_interval"] . "</a></td>";
1428
1429 } else if ($feed_id != $edit_feed_id) {
c64d5b03
AD
1430
1431 print "<td><input disabled=\"true\" type=\"checkbox\"
1432 id=\"FRCHK-".$line["id"]."\"></td>";
3547842a
AD
1433
1434 $edit_title = truncate_string($edit_title, 40);
1435 $edit_link = truncate_string($edit_link, 60);
1436
c64d5b03 1437 print "<td>$edit_title</td>";
3b0feb9b
AD
1438 print "<td>$edit_link</td>";
1439
1440 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1441 print "<td>$edit_cat</td>";
1442 }
1443
1444 if ($line["update_interval"] == "0")
1445 $line["update_interval"] = "Default";
1446
1447 print "<td>" . $line["update_interval"] . "</td>";
1448
1449 if ($line["purge_interval"] == "0")
1450 $line["purge_interval"] = "Default";
1451
1452 if ($line["purge_interval"] < 0)
1453 $line["purge_interval"] = "Disabled";
1454
1455 print "<td>" . $line["purge_interval"] . "</td>";
c64d5b03
AD
1456
1457 } else {
1458
1459 print "<td><input disabled=\"true\" type=\"checkbox\" checked></td>";
1460
1461 print "<td><input id=\"iedit_title\" value=\"$edit_title\"></td>";
3b0feb9b
AD
1462 print "<td><input id=\"iedit_link\" value=\"$edit_link\"></td>";
1463
1464 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1465
1466 print "<td>";
1467 print "<select id=\"iedit_fcat\">";
1468 print "<option id=\"0\">Uncategorized</option>";
1469
1470 $tmp_result = db_query($link, "SELECT id,title FROM ttrss_feed_categories
1471 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
1472
1473 if (db_num_rows($tmp_result) > 0) {
1474 print "<option disabled>--------</option>";
1475 }
1476
1477 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1478 if ($tmp_line["id"] == $line["cat_id"]) {
1479 $is_selected = "selected";
1480 } else {
1481 $is_selected = "";
1482 }
1483 printf("<option $is_selected id='%d'>%s</option>",
1484 $tmp_line["id"], $tmp_line["title"]);
1485 }
1486
1487 print "</select></td>";
1488 print "</td>";
1489
1490 }
c64d5b03 1491
3b0feb9b
AD
1492 print "<td><input id=\"iedit_updintl\"
1493 value=\"".$line["update_interval"]."\"></td>";
1494 print "<td><input id=\"iedit_purgintl\"
1495 value=\"".$line["purge_interval"]."\"></td>";
1496
c64d5b03 1497 }
3b0feb9b 1498
3547842a 1499/* if (!$line["last_updated"]) $line["last_updated"] = "Never";
3b0feb9b 1500
3547842a 1501 print "<td>" . $line["last_updated"] . "</td>"; */
c64d5b03
AD
1502
1503 print "</tr>";
1504
1505 ++$lnum;
1506 }
1507
c64d5b03 1508 print "</table>";
3b0feb9b 1509
c64d5b03
AD
1510 print "<p>";
1511
3b0feb9b
AD
1512 if ($subop == "edit") {
1513 print "Edit feed:&nbsp;
c64d5b03 1514 <input type=\"submit\" class=\"button\"
3b0feb9b 1515 onclick=\"javascript:feedEditCancel()\" value=\"Cancel\">
c64d5b03 1516 <input type=\"submit\" class=\"button\"
3b0feb9b
AD
1517 onclick=\"javascript:feedEditSave()\" value=\"Save\">";
1518 } else {
c64d5b03
AD
1519
1520 print "
1521 Selection:&nbsp;
1522 <input type=\"submit\" class=\"button\"
3b0feb9b 1523 onclick=\"javascript:selectedFeedDetails()\" value=\"Details\">
c64d5b03 1524 <input type=\"submit\" class=\"button\"
3b0feb9b
AD
1525 onclick=\"javascript:editSelectedFeed()\" value=\"Edit\">
1526 <input type=\"submit\" class=\"button\"
1527 onclick=\"javascript:removeSelectedFeeds()\" value=\"Remove\">";
1528
1529 if (get_pref($link, 'ENABLE_PREFS_CATCHUP_UNCATCHUP')) {
1530 print "
1531 <input type=\"submit\" class=\"button\"
4f3a84f4 1532 onclick=\"javascript:readSelectedFeeds(true)\" value=\"Mark as read\">
3b0feb9b 1533 <input type=\"submit\" class=\"button\"
4f3a84f4 1534 onclick=\"javascript:readSelectedFeeds(false)\"
3b0feb9b
AD
1535 value=\"Mark as unread\">&nbsp;";
1536 }
1537
1538 print "
1539 All feeds: <input type=\"submit\"
1540 class=\"button\" onclick=\"gotoExportOpml()\"
1541 value=\"Export OPML\">";
1542 }
1543 } else {
1544
1545 print "<p>No feeds defined.</p>";
1546
1547 }
1548
1549 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1550
1551 print "<h3>Edit Categories</h3>";
1552
1553 // print "<h3>Categories</h3>";
1554
1555 print "<div class=\"prefGenericAddBox\">
1556 <input id=\"fadd_cat\" size=\"40\">&nbsp;<input
1557 type=\"submit\" class=\"button\"
1558 onclick=\"javascript:addFeedCat()\" value=\"Add category\"></div>";
1559
1560 $result = db_query($link, "SELECT title,id FROM ttrss_feed_categories
1561 WHERE owner_uid = ".$_SESSION["uid"]."
1562 ORDER BY title");
1563
1564 if (db_num_rows($result) != 0) {
1565
35f3c923
AD
1566 print "<p><table width=\"100%\" class=\"prefFeedCatList\"
1567 id=\"prefFeedCatList\">";
1568
1569 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
1570 Select:
1571 <a href=\"javascript:selectTableRowsByIdPrefix('prefFeedCatList',
3055bc41 1572 'FCATR-', 'FCCHK-', true)\">All</a>,
35f3c923 1573 <a href=\"javascript:selectTableRowsByIdPrefix('prefFeedCatList',
3055bc41 1574 'FCATR-', 'FCCHK-', false)\">None</a>
35f3c923
AD
1575 </td</tr>";
1576
3b0feb9b
AD
1577 print "<tr class=\"title\">
1578 <td width=\"10%\">Select</td><td width=\"80%\">Title</td>
1579 </tr>";
1580
1581 $lnum = 0;
1582
1583 while ($line = db_fetch_assoc($result)) {
1584
1585 $class = ($lnum % 2) ? "even" : "odd";
1586
1587 $cat_id = $line["id"];
1588
1589 $edit_cat_id = $_GET["id"];
1590
1591 if ($subop == "editCat" && $cat_id != $edit_cat_id) {
1592 $class .= "Grayed";
53226edc
AD
1593 $this_row_id = "";
1594 } else {
1595 $this_row_id = "id=\"FCATR-$cat_id\"";
3b0feb9b
AD
1596 }
1597
53226edc 1598 print "<tr class=\"$class\" $this_row_id>";
3b0feb9b
AD
1599
1600 $edit_title = htmlspecialchars(db_unescape_string($line["title"]));
1601
1602 if (!$edit_cat_id || $subop != "editCat") {
1603
1604 print "<td><input onclick='toggleSelectRow(this);'
1605 type=\"checkbox\" id=\"FCCHK-".$line["id"]."\"></td>";
1606
1607 print "<td><a href=\"javascript:editFeedCat($cat_id);\">" .
1608 $edit_title . "</a></td>";
1609
1610 } else if ($cat_id != $edit_cat_id) {
1611
1612 print "<td><input disabled=\"true\" type=\"checkbox\"
1613 id=\"FRCHK-".$line["id"]."\"></td>";
1614
1615 print "<td>$edit_title</td>";
1616
1617 } else {
1618
1619 print "<td><input disabled=\"true\" type=\"checkbox\" checked></td>";
1620
1621 print "<td><input id=\"iedit_title\" value=\"$edit_title\"></td>";
1622
1623 }
1624
1625 print "</tr>";
1626
1627 ++$lnum;
1628 }
1629
1630 print "</table>";
1631
1632 print "<p>";
1633
1634 if ($subop == "editCat") {
1635 print "Edit category:&nbsp;
1636 <input type=\"submit\" class=\"button\"
1637 onclick=\"javascript:feedCatEditCancel()\" value=\"Cancel\">
1638 <input type=\"submit\" class=\"button\"
1639 onclick=\"javascript:feedCatEditSave()\" value=\"Save\">";
1640 } else {
1641
1642 print "
1643 Selection:&nbsp;
1644 <input type=\"submit\" class=\"button\"
1645 onclick=\"javascript:editSelectedFeedCat()\" value=\"Edit\">
1646 <input type=\"submit\" class=\"button\"
1647 onclick=\"javascript:removeSelectedFeedCats()\" value=\"Remove\">";
1648
1649 }
1650
1651 } else {
1652 print "<p>No feed categories defined.</p>";
1653 }
c64d5b03
AD
1654 }
1655
1656 print "<h3>Import OPML</h3>
f5a50b25
AD
1657 <form enctype=\"multipart/form-data\" method=\"POST\" action=\"opml.php\">
1658 File: <input id=\"opml_file\" name=\"opml_file\" type=\"file\">&nbsp;
1659 <input class=\"button\" name=\"op\" onclick=\"return validateOpmlImport();\"
1660 type=\"submit\" value=\"Import\">
1661 </form>";
1662
007bda35
AD
1663 }
1664
a0d53889
AD
1665 if ($op == "pref-filters") {
1666
1667 $subop = $_GET["subop"];
1668
1669 if ($subop == "editSave") {
a0d53889 1670
648472a7
AD
1671 $regexp = db_escape_string($_GET["r"]);
1672 $descr = db_escape_string($_GET["d"]);
1673 $match = db_escape_string($_GET["m"]);
1674 $filter_id = db_escape_string($_GET["id"]);
ead60402
AD
1675 $feed_id = db_escape_string($_GET["fid"]);
1676
1677 if (!$feed_id) {
1678 $feed_id = 'NULL';
1679 } else {
1680 $feed_id = sprintf("'%s'", db_escape_string($feed_id));
1681 }
0afbd851 1682
648472a7 1683 $result = db_query($link, "UPDATE ttrss_filters SET
4b3dff6e 1684 reg_exp = '$regexp',
0afbd851 1685 description = '$descr',
ead60402 1686 feed_id = $feed_id,
0afbd851
AD
1687 filter_type = (SELECT id FROM ttrss_filter_types WHERE
1688 description = '$match')
1689 WHERE id = '$filter_id'");
a0d53889
AD
1690 }
1691
1692 if ($subop == "remove") {
1693
1694 if (!WEB_DEMO_MODE) {
1695
1696 $ids = split(",", $_GET["ids"]);
1697
1698 foreach ($ids as $id) {
648472a7 1699 db_query($link, "DELETE FROM ttrss_filters WHERE id = '$id'");
a0d53889
AD
1700
1701 }
1702 }
1703 }
1704
1705 if ($subop == "add") {
1706
de435974 1707 if (!WEB_DEMO_MODE) {
a0d53889 1708
b6b535ca
AD
1709 $regexp = db_escape_string(trim($_GET["regexp"]));
1710 $match = db_escape_string(trim($_GET["match"]));
ead60402
AD
1711 $feed_id = db_escape_string($_GET["fid"]);
1712
1713 if (!$feed_id) {
1714 $feed_id = 'NULL';
1715 } else {
1716 $feed_id = sprintf("'%s'", db_escape_string($feed_id));
1717 }
4401bf04 1718
648472a7 1719 $result = db_query($link,
ead60402 1720 "INSERT INTO ttrss_filters (reg_exp,filter_type,owner_uid,feed_id) VALUES
de435974 1721 ('$regexp', (SELECT id FROM ttrss_filter_types WHERE
ead60402 1722 description = '$match'),'".$_SESSION["uid"]."', $feed_id)");
de435974 1723 }
a0d53889
AD
1724 }
1725
648472a7 1726 $result = db_query($link, "SELECT description
a0d53889
AD
1727 FROM ttrss_filter_types ORDER BY description");
1728
1729 $filter_types = array();
1730
648472a7 1731 while ($line = db_fetch_assoc($result)) {
a0d53889
AD
1732 array_push($filter_types, $line["description"]);
1733 }
1734
2c7070b5
AD
1735 print "<div class=\"prefGenericAddBox\">
1736 <input id=\"fadd_regexp\" size=\"40\">&nbsp;";
1737
ead60402
AD
1738 print_select("fadd_match", "Title", $filter_types);
1739
1740 print "&nbsp;<select id=\"fadd_feed\">";
1741
1742 print "<option selected id=\"0\">All feeds</option>";
1743
1744 $result = db_query($link, "SELECT id,title FROM ttrss_feeds
1745 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
1746
1747 if (db_num_rows($result) > 0) {
1748 print "<option disabled>--------</option>";
1749 }
1750
1751 while ($line = db_fetch_assoc($result)) {
1752 printf("<option id='%d'>%s</option>", $line["id"], $line["title"]);
1753 }
1754
2c7070b5 1755 print "</select>&nbsp;";
a0d53889 1756
2c7070b5
AD
1757 print "<input type=\"submit\"
1758 class=\"button\" onclick=\"javascript:addFilter()\"
1759 value=\"Add filter\">";
a0d53889 1760
648472a7 1761 $result = db_query($link, "SELECT
ead60402
AD
1762 ttrss_filters.id AS id,reg_exp,
1763 ttrss_filters.description AS description,
1764 ttrss_filter_types.name AS filter_type_name,
1765 ttrss_filter_types.description AS filter_type_descr,
1766 feed_id,
1767 (SELECT title FROM ttrss_feeds WHERE id = feed_id) AS feed_title
a0d53889 1768 FROM
ead60402 1769 ttrss_filters,ttrss_filter_types
4356293a 1770 WHERE
ead60402
AD
1771 filter_type = ttrss_filter_types.id AND
1772 ttrss_filters.owner_uid = ".$_SESSION["uid"]."
4356293a 1773 ORDER by reg_exp");
a0d53889 1774
3b0feb9b 1775 if (db_num_rows($result) != 0) {
a0d53889 1776
3b0feb9b 1777 print "<p><table width=\"100%\" class=\"prefFilterList\" id=\"prefFilterList\">";
35f3c923
AD
1778
1779 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
1780 Select:
1781 <a href=\"javascript:selectTableRowsByIdPrefix('prefFilterList',
3055bc41 1782 'FILRR-', 'FICHK-', true)\">All</a>,
35f3c923 1783 <a href=\"javascript:selectTableRowsByIdPrefix('prefFilterList',
3055bc41 1784 'FILRR-', 'FICHK-', false)\">None</a>
35f3c923
AD
1785 </td</tr>";
1786
3b0feb9b
AD
1787 print "<tr class=\"title\">
1788 <td width=\"5%\">Select</td><td width=\"30%\">Filter expression</td>
1789 <td width=\"30%\">Feed</td><td width=\"10%\">Match</td>
1790 <td width=\"30%\">Description</td></tr>";
a0d53889 1791
3b0feb9b
AD
1792 $lnum = 0;
1793
1794 while ($line = db_fetch_assoc($result)) {
1795
1796 $class = ($lnum % 2) ? "even" : "odd";
1797
1798 $filter_id = $line["id"];
1799 $edit_filter_id = $_GET["id"];
1800
1801 if ($subop == "edit" && $filter_id != $edit_filter_id) {
1802 $class .= "Grayed";
53226edc
AD
1803 $this_row_id = "";
1804 } else {
1805 $this_row_id = "id=\"FILRR-$filter_id\"";
ead60402 1806 }
3b0feb9b 1807
53226edc 1808 print "<tr class=\"$class\" $this_row_id>";
3b0feb9b
AD
1809
1810 $line["regexp"] = htmlspecialchars($line["reg_exp"]);
1811 $line["description"] = htmlspecialchars($line["description"]);
1812
1813 if (!$line["feed_title"]) $line["feed_title"] = "All feeds";
1814
1815 if (!$edit_filter_id || $subop != "edit") {
1816
1817 if (!$line["description"]) $line["description"] = "[No description]";
1818
1819 print "<td><input onclick='toggleSelectRow(this);'
1820 type=\"checkbox\" id=\"FICHK-".$line["id"]."\"></td>";
1821
1822 print "<td><a href=\"javascript:editFilter($filter_id);\">" .
1823 $line["reg_exp"] . "</td>";
1824
1825 print "<td><a href=\"javascript:editFilter($filter_id);\">" .
1826 $line["feed_title"] . "</td>";
1827
1828 print "<td><a href=\"javascript:editFilter($filter_id);\">" .
1829 $line["filter_type_descr"] . "</td>";
1830
1831 print "<td><a href=\"javascript:editFilter($filter_id);\">" .
1832 $line["description"] . "</td>";
1833
1834 } else if ($filter_id != $edit_filter_id) {
1835
1836 if (!$line["description"]) $line["description"] = "[No description]";
1837
1838 print "<td><input disabled=\"true\" type=\"checkbox\"
1839 id=\"FICHK-".$line["id"]."\"></td>";
1840
1841 print "<td>".$line["reg_exp"]."</td>";
1842 print "<td>".$line["feed_title"]."</td>";
1843 print "<td>".$line["filter_type_descr"]."</td>";
1844 print "<td>".$line["description"]."</td>";
1845
1846 } else {
1847
1848 print "<td><input disabled=\"true\" type=\"checkbox\" checked></td>";
1849
1850 print "<td><input id=\"iedit_regexp\" value=\"".$line["reg_exp"].
1851 "\"></td>";
1852
1853 print "<td>";
1854
1855 print "<select id=\"iedit_feed\">";
1856
1857 print "<option id=\"0\">All feeds</option>";
1858
1859 if (db_num_rows($result) > 0) {
1860 print "<option disabled>--------</option>";
1861 }
1862
1863 $tmp_result = db_query($link, "SELECT id,title FROM ttrss_feeds
1864 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
1865
1866 while ($tmp_line = db_fetch_assoc($tmp_result)) {
1867 if ($tmp_line["id"] == $line["feed_id"]) {
1868 $is_selected = "selected";
1869 } else {
1870 $is_selected = "";
1871 }
1872 printf("<option $is_selected id='%d'>%s</option>",
1873 $tmp_line["id"], $tmp_line["title"]);
ead60402 1874 }
3b0feb9b
AD
1875
1876 print "</select></td>";
1877
1878 print "<td>";
1879 print_select("iedit_match", $line["filter_type_descr"], $filter_types);
1880 print "</td>";
1881
1882 print "<td><input id=\"iedit_descr\" value=\"".$line["description"].
1883 "\"></td>";
1884
1885 print "</td>";
ead60402 1886 }
3b0feb9b
AD
1887
1888 print "</tr>";
1889
1890 ++$lnum;
a0d53889 1891 }
3b0feb9b
AD
1892
1893 if ($lnum == 0) {
1894 print "<tr><td colspan=\"4\" align=\"center\">No filters defined.</td></tr>";
1895 }
1896
1897 print "</table>";
1898
1899 print "<p>";
1900
1901 if ($subop == "edit") {
1902 print "Edit feed:
1903 <input type=\"submit\" class=\"button\"
1904 onclick=\"javascript:filterEditCancel()\" value=\"Cancel\">
1905 <input type=\"submit\" class=\"button\"
1906 onclick=\"javascript:filterEditSave()\" value=\"Save\">";
1907
1908 } else {
1909
1910 print "
1911 Selection:
e828e31e 1912 <input type=\"submit\" class=\"button\"
3b0feb9b 1913 onclick=\"javascript:editSelectedFilter()\" value=\"Edit\">
e828e31e 1914 <input type=\"submit\" class=\"button\"
3b0feb9b
AD
1915 onclick=\"javascript:removeSelectedFilters()\" value=\"Remove\">";
1916 }
1917
a0d53889
AD
1918 } else {
1919
3b0feb9b
AD
1920 print "<p>No filters defined.</p>";
1921
a0d53889
AD
1922 }
1923 }
1924
48f0adb0
AD
1925 if ($op == "pref-labels") {
1926
1927 $subop = $_GET["subop"];
1928
d9dde1d6
AD
1929 if ($subop == "test") {
1930
1931 $expr = $_GET["expr"];
1932 $descr = $_GET["descr"];
1933
1934 print "<div class='infoBoxContents'>";
1935
1936 print "<h1>Label &laquo;$descr&raquo;</h1>";
1937
1938// print "<p><b>Expression</b>: $expr</p>";
1939
1940 $result = db_query($link,
1941 "SELECT count(id) AS num_matches
1942 FROM ttrss_entries,ttrss_user_entries
1943 WHERE ($expr) AND
1944 ttrss_user_entries.ref_id = ttrss_entries.id AND
1945 owner_uid = " . $_SESSION["uid"]);
1946
1947 $num_matches = db_fetch_result($result, 0, "num_matches");;
1948
1949 if ($num_matches > 0) {
1950
a31a7b39 1951 print "<p>Query returned <b>$num_matches</b> matches, first 5 follow:</p>";
d9dde1d6
AD
1952
1953 $result = db_query($link,
1954 "SELECT title,
1955 (SELECT title FROM ttrss_feeds WHERE id = feed_id) AS feed_title
1956 FROM ttrss_entries,ttrss_user_entries
1957 WHERE ($expr) AND
1958 ttrss_user_entries.ref_id = ttrss_entries.id
1959 AND owner_uid = " . $_SESSION["uid"] . "
1960 ORDER BY date_entered DESC LIMIT 5");
1961
1962 print "<ul class=\"nomarks\">";
1963 while ($line = db_fetch_assoc($result)) {
1964 print "<li>".$line["title"].
1965 " <span class=\"insensitive\">(".$line["feed_title"].")</span></li>";
1966 }
1967 print "</ul>";
1968
1969 } else {
1970 print "<p>Query didn't return any matches.</p>";
1971 }
1972
1973 print "</div>";
1974
1975 print "<div align='center'>
1976 <input type='submit' class='button'
1977 onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
1978 return;
1979 }
1980
48f0adb0
AD
1981 if ($subop == "editSave") {
1982
1983 $sql_exp = $_GET["s"];
1984 $descr = $_GET["d"];
1985 $label_id = db_escape_string($_GET["id"]);
1986
1987// print "$sql_exp : $descr : $label_id";
1988
1989 $result = db_query($link, "UPDATE ttrss_labels SET
1990 sql_exp = '$sql_exp',
1991 description = '$descr'
1992 WHERE id = '$label_id'");
1993 }
1994
1995 if ($subop == "remove") {
1996
1997 if (!WEB_DEMO_MODE) {
1998
1999 $ids = split(",", $_GET["ids"]);
2000
2001 foreach ($ids as $id) {
2002 db_query($link, "DELETE FROM ttrss_labels WHERE id = '$id'");
2003
2004 }
2005 }
2006 }
2007
2008 if ($subop == "add") {
2009
2010 if (!WEB_DEMO_MODE) {
2011
4401bf04
AD
2012 // no escaping is done here on purpose
2013 $exp = trim($_GET["exp"]);
48f0adb0
AD
2014
2015 $result = db_query($link,
4356293a
AD
2016 "INSERT INTO ttrss_labels (sql_exp,description,owner_uid)
2017 VALUES ('$exp', '$exp', '".$_SESSION["uid"]."')");
48f0adb0
AD
2018 }
2019 }
2020
2c7070b5
AD
2021 print "<div class=\"prefGenericAddBox\">
2022 <input size=\"40\" id=\"ladd_expr\">&nbsp;";
48f0adb0 2023
2c7070b5
AD
2024 print"<input type=\"submit\" class=\"button\"
2025 onclick=\"javascript:addLabel()\" value=\"Add label\"></div>";
48f0adb0
AD
2026
2027 $result = db_query($link, "SELECT
2028 id,sql_exp,description
2029 FROM
4356293a
AD
2030 ttrss_labels
2031 WHERE
2032 owner_uid = ".$_SESSION["uid"]."
2033 ORDER by description");
48f0adb0 2034
d9dde1d6
AD
2035 print "<div id=\"infoBoxShadow\"><div id=\"infoBox\">PLACEHOLDER</div></div>";
2036
3b0feb9b 2037 if (db_num_rows($result) != 0) {
48f0adb0 2038
3b0feb9b 2039 print "<p><table width=\"100%\" class=\"prefLabelList\" id=\"prefLabelList\">";
35f3c923
AD
2040
2041 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
2042 Select:
2043 <a href=\"javascript:selectTableRowsByIdPrefix('prefLabelList',
3055bc41 2044 'LILRR-', 'LICHK-', true)\">All</a>,
35f3c923 2045 <a href=\"javascript:selectTableRowsByIdPrefix('prefLabelList',
3055bc41 2046 'LILRR-', 'LICHK-', false)\">None</a>
35f3c923
AD
2047 </td</tr>";
2048
3b0feb9b
AD
2049 print "<tr class=\"title\">
2050 <td width=\"5%\">Select</td><td width=\"40%\">SQL expression
01c9c74a 2051 <a class=\"helpLink\" href=\"javascript:displayHelpInfobox(1)\">(?)</a>
3b0feb9b
AD
2052 </td>
2053 <td width=\"40%\">Caption</td></tr>";
2054
2055 $lnum = 0;
2056
2057 while ($line = db_fetch_assoc($result)) {
2058
2059 $class = ($lnum % 2) ? "even" : "odd";
2060
2061 $label_id = $line["id"];
2062 $edit_label_id = $_GET["id"];
2063
2064 if ($subop == "edit" && $label_id != $edit_label_id) {
2065 $class .= "Grayed";
53226edc
AD
2066 $this_row_id = "";
2067 } else {
2068 $this_row_id = "id=\"LILRR-$label_id\"";
3b0feb9b
AD
2069 }
2070
53226edc 2071 print "<tr class=\"$class\" $this_row_id>";
3b0feb9b
AD
2072
2073 $line["sql_exp"] = htmlspecialchars($line["sql_exp"]);
2074 $line["description"] = htmlspecialchars($line["description"]);
2075
2076 if (!$edit_label_id || $subop != "edit") {
2077
2078 if (!$line["description"]) $line["description"] = "[No caption]";
2079
2080 print "<td><input onclick='toggleSelectRow(this);'
2081 type=\"checkbox\" id=\"LICHK-".$line["id"]."\"></td>";
2082
2083 print "<td><a href=\"javascript:editLabel($label_id);\">" .
2084 $line["sql_exp"] . "</td>";
48f0adb0 2085
3b0feb9b
AD
2086 print "<td><a href=\"javascript:editLabel($label_id);\">" .
2087 $line["description"] . "</td>";
2088
2089 } else if ($label_id != $edit_label_id) {
2090
2091 if (!$line["description"]) $line["description"] = "[No description]";
2092
2093 print "<td><input disabled=\"true\" type=\"checkbox\"
2094 id=\"LICHK-".$line["id"]."\"></td>";
2095
2096 print "<td>".$line["sql_exp"]."</td>";
2097 print "<td>".$line["description"]."</td>";
2098
2099 } else {
2100
2101 print "<td><input disabled=\"true\" type=\"checkbox\" checked></td>";
2102
2103 print "<td><input id=\"iedit_expr\" value=\"".$line["sql_exp"].
2104 "\"></td>";
2105
2106 print "<td><input id=\"iedit_descr\" value=\"".$line["description"].
2107 "\"></td>";
2108
2109 }
2110
48f0adb0 2111
3b0feb9b
AD
2112 print "</tr>";
2113
2114 ++$lnum;
2115 }
2116
2117 if ($lnum == 0) {
2118 print "<tr><td colspan=\"4\" align=\"center\">No labels defined.</td></tr>";
2119 }
2120
2121 print "</table>";
2122
2123 print "<p>";
2124
2125 if ($subop == "edit") {
2126 print "Edit label:
d9dde1d6
AD
2127 <input type=\"submit\" class=\"button\"
2128 onclick=\"javascript:labelTest()\" value=\"Test\">
3b0feb9b
AD
2129 <input type=\"submit\" class=\"button\"
2130 onclick=\"javascript:labelEditCancel()\" value=\"Cancel\">
2131 <input type=\"submit\" class=\"button\"
2132 onclick=\"javascript:labelEditSave()\" value=\"Save\">";
2133
2134 } else {
2135
2136 print "
2137 Selection:
48f0adb0 2138 <input type=\"submit\" class=\"button\"
3b0feb9b 2139 onclick=\"javascript:editSelectedLabel()\" value=\"Edit\">
48f0adb0 2140 <input type=\"submit\" class=\"button\"
3b0feb9b
AD
2141 onclick=\"javascript:removeSelectedLabels()\" value=\"Remove\">";
2142 }
48f0adb0 2143 } else {
3b0feb9b 2144 print "<p>No labels defined.</p>";
48f0adb0
AD
2145 }
2146 }
2147
e828e31e
AD
2148 if ($op == "error") {
2149 print "<div width=\"100%\" align='center'>";
2150 $msg = $_GET["msg"];
2151 print $msg;
2152 print "</div>";
2153 }
2154
7dc66a61 2155 if ($op == "help") {
01c9c74a
AD
2156 if (!$_GET["noheaders"]) {
2157 print "<html><head>
2158 <title>Tiny Tiny RSS : Help</title>
2159 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
2160 <script type=\"text/javascript\" src=\"functions.js\"></script>
2161 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
2162 </head><body>";
2163 }
7dc66a61
AD
2164
2165 $tid = sprintf("%d", $_GET["tid"]);
2166
01c9c74a 2167 print "<div class='infoBoxContents'>";
7dc66a61 2168
01c9c74a
AD
2169 if (file_exists("help/$tid.php")) {
2170 include("help/$tid.php");
2171 } else {
2172 print "<p>Help topic not found.</p>";
2173 }
7dc66a61 2174
01c9c74a 2175 print "</div>";
7dc66a61
AD
2176
2177 print "<div align='center'>
01c9c74a
AD
2178 <input type='submit' class='button'
2179 onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
7dc66a61 2180
01c9c74a
AD
2181 if (!$_GET["noheaders"]) {
2182 print "</body></html>";
2183 }
7dc66a61
AD
2184
2185 }
2186
f84a97a3
AD
2187 if ($op == "dlg") {
2188 $id = $_GET["id"];
6de5d056 2189 $param = $_GET["param"];
f84a97a3
AD
2190
2191 if ($id == "quickAddFeed") {
76332f3c
AD
2192 print "
2193 Feed URL: <input
033e47e0
AD
2194 onblur=\"javascript:enableHotkeys()\" onfocus=\"javascript:disableHotkeys()\"
2195 id=\"qafInput\">
f84a97a3
AD
2196 <input class=\"button\"
2197 type=\"submit\" onclick=\"javascript:qafAdd()\" value=\"Add feed\">
2198 <input class=\"button\"
2199 type=\"submit\" onclick=\"javascript:closeDlg()\"
2200 value=\"Cancel\">";
2201 }
6de5d056
AD
2202
2203 if ($id == "quickDelFeed") {
2204
2205 $param = db_escape_string($param);
2206
2207 $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$param'");
2208
2209 if ($result) {
2210
2211 $f_title = db_fetch_result($result, 0, "title");
2212
76332f3c 2213 print "Remove current feed (<b>$f_title</b>)?&nbsp;
6de5d056
AD
2214 <input class=\"button\"
2215 type=\"submit\" onclick=\"javascript:qfdDelete($param)\" value=\"Remove\">
2216 <input class=\"button\"
2217 type=\"submit\" onclick=\"javascript:closeDlg()\"
2218 value=\"Cancel\">";
2219 } else {
2220 print "Error: Feed $param not found.&nbsp;
2221 <input class=\"button\"
2222 type=\"submit\" onclick=\"javascript:closeDlg()\"
2223 value=\"Cancel\">";
2224 }
2225 }
2226
033e47e0
AD
2227 if ($id == "search") {
2228
2229 print "<input id=\"searchbox\" class=\"extSearch\"
2230 onblur=\"javascript:enableHotkeys()\" onfocus=\"javascript:disableHotkeys()\"
2231 onchange=\"javascript:search()\">
2232 <select id=\"searchmodebox\">
2233 <option selected>All feeds</option>
2234 <option>This feed</option>
2235 </select>
2236 <input type=\"submit\"
2237 class=\"button\" onclick=\"javascript:search()\" value=\"Search\">
2238 <input class=\"button\"
2239 type=\"submit\" onclick=\"javascript:closeDlg()\"
2240 value=\"Close\">";
2241
2242 }
2243
f84a97a3
AD
2244 }
2245
a2770077
AD
2246 // update feeds of all users, may be used anonymously
2247 if ($op == "globalUpdateFeeds") {
2248
2249 $result = db_query($link, "SELECT id FROM ttrss_users");
2250
2251 while ($line = db_fetch_assoc($result)) {
2252 $user_id = $line["id"];
2253// print "<!-- updating feeds of uid $user_id -->";
2254 update_all_feeds($link, false, $user_id);
2255 }
e65af9c1 2256
a2770077
AD
2257 print "<rpc-reply>
2258 <message msg=\"All feeds updated\"/>
2259 </rpc-reply>";
e65af9c1
AD
2260
2261 }
2262
77e96719
AD
2263 if ($op == "pref-prefs") {
2264
b1895692 2265 $subop = $_REQUEST["subop"];
77e96719
AD
2266
2267 if ($subop == "Save configuration") {
2268
d2892032
AD
2269 if (WEB_DEMO_MODE) {
2270 header("Location: prefs.php");
2271 return;
2272 }
01d68cf9 2273
93cb4442
AD
2274 $_SESSION["prefs_op_result"] = "save-config";
2275
77e96719
AD
2276 foreach (array_keys($_POST) as $pref_name) {
2277
2278 $pref_name = db_escape_string($pref_name);
2279 $value = db_escape_string($_POST[$pref_name]);
2280
2281 $result = db_query($link, "SELECT type_name
2282 FROM ttrss_prefs,ttrss_prefs_types
2283 WHERE pref_name = '$pref_name' AND type_id = ttrss_prefs_types.id");
2284
2285 if (db_num_rows($result) > 0) {
2286
2287 $type_name = db_fetch_result($result, 0, "type_name");
2288
5da169d9
AD
2289// print "$pref_name : $type_name : $value<br>";
2290
77e96719 2291 if ($type_name == "bool") {
5da169d9 2292 if ($value == "1") {
77e96719
AD
2293 $value = "true";
2294 } else {
2295 $value = "false";
2296 }
2297 } else if ($type_name == "integer") {
2298 $value = sprintf("%d", $value);
2299 }
2300
2301// print "$pref_name : $type_name : $value<br>";
2302
ff485f1d
AD
2303 db_query($link, "UPDATE ttrss_user_prefs SET value = '$value'
2304 WHERE pref_name = '$pref_name' AND owner_uid = ".$_SESSION["uid"]);
77e96719
AD
2305
2306 }
2307
2308 header("Location: prefs.php");
2309
2310 }
2311
b1895692
AD
2312 } else if ($subop == "getHelp") {
2313
2314 $pref_name = db_escape_string($_GET["pn"]);
2315
2316 $result = db_query($link, "SELECT help_text FROM ttrss_prefs
2317 WHERE pref_name = '$pref_name'");
2318
2319 if (db_num_rows($result) > 0) {
2320 $help_text = db_fetch_result($result, 0, "help_text");
2321 print $help_text;
2322 } else {
2323 print "Unknown option: $pref_name";
2324 }
2325
1c7f75ed
AD
2326 } else if ($subop == "Change password") {
2327
d2892032
AD
2328 if (WEB_DEMO_MODE) {
2329 header("Location: prefs.php");
2330 return;
2331 }
1c7f75ed
AD
2332
2333 $old_pw = $_POST["OLD_PASSWORD"];
2334 $new_pw = $_POST["OLD_PASSWORD"];
2335
2336 $old_pw_hash = 'SHA1:' . sha1($_POST["OLD_PASSWORD"]);
2337 $new_pw_hash = 'SHA1:' . sha1($_POST["NEW_PASSWORD"]);
2338
2339 $active_uid = $_SESSION["uid"];
2340
2341 if ($old_pw && $new_pw) {
2342
2343 $login = db_escape_string($_SERVER['PHP_AUTH_USER']);
2344
2345 $result = db_query($link, "SELECT id FROM ttrss_users WHERE
2346 id = '$active_uid' AND (pwd_hash = '$old_pw' OR
2347 pwd_hash = '$old_pw_hash')");
2348
2349 if (db_num_rows($result) == 1) {
2350 db_query($link, "UPDATE ttrss_users SET pwd_hash = '$new_pw_hash'
2351 WHERE id = '$active_uid'");
b791095d
AD
2352
2353 $_SESSION["pwd_change_result"] = "ok";
2354 } else {
2355 $_SESSION["pwd_change_result"] = "failed";
1c7f75ed
AD
2356 }
2357 }
2358
2359 header("Location: prefs.php");
b791095d 2360
77e96719
AD
2361 } else if ($subop == "Reset to defaults") {
2362
d2892032
AD
2363 if (WEB_DEMO_MODE) {
2364 header("Location: prefs.php");
2365 return;
2366 }
01d68cf9 2367
93cb4442
AD
2368 $_SESSION["prefs_op_result"] = "reset-to-defaults";
2369
e1aa0559
AD
2370 if (DB_TYPE == "pgsql") {
2371 db_query($link,"UPDATE ttrss_user_prefs
2372 SET value = ttrss_prefs.def_value
2373 WHERE owner_uid = '".$_SESSION["uid"]."' AND
2374 ttrss_prefs.pref_name = ttrss_user_prefs.pref_name");
2375 } else {
2376 db_query($link, "DELETE FROM ttrss_user_prefs
2377 WHERE owner_uid = ".$_SESSION["uid"]);
2378 initialize_user_prefs($link, $_SESSION["uid"]);
2379 }
5da169d9 2380
77e96719
AD
2381 header("Location: prefs.php");
2382
58f8ad54
AD
2383 } else if ($subop == "Change theme") {
2384
2385 $theme = db_escape_string($_POST["theme"]);
2386
2387 if ($theme == "Default") {
2388 $theme_qpart = 'NULL';
2389 } else {
2390 $theme_qpart = "'$theme'";
2391 }
2392
6752e330
AD
2393 $result = db_query($link, "SELECT id,theme_path FROM ttrss_themes
2394 WHERE theme_name = '$theme'");
2395
2396 if (db_num_rows($result) == 1) {
2397 $theme_id = db_fetch_result($result, 0, "id");
2398 $theme_path = db_fetch_result($result, 0, "theme_path");
2399 } else {
2400 $theme_id = "NULL";
2401 $theme_path = "";
2402 }
2403
58f8ad54 2404 db_query($link, "UPDATE ttrss_users SET
6752e330 2405 theme_id = $theme_id WHERE id = " . $_SESSION["uid"]);
58f8ad54 2406
6752e330 2407 $_SESSION["theme"] = $theme_path;
503eb349 2408
58f8ad54
AD
2409 header("Location: prefs.php");
2410
77e96719
AD
2411 } else {
2412
7d4c898a 2413 if (!SINGLE_USER_MODE) {
1c7f75ed 2414
a029d530
AD
2415 $result = db_query($link, "SELECT id FROM ttrss_users
2416 WHERE id = ".$_SESSION["uid"]." AND (pwd_hash = 'password' OR
2417 pwd_hash = 'SHA1:".sha1("password")."')");
2418
2419 if (db_num_rows($result) != 0) {
b791095d 2420 print "<div class=\"warning\">
a029d530
AD
2421 Your password is at default value, please change it.
2422 </div>";
2423 }
2424
b791095d
AD
2425 if ($_SESSION["pwd_change_result"] == "failed") {
2426 print "<div class=\"warning\">
2427 There was an error while changing your password.
2428 </div>";
2429 }
2430
2431 if ($_SESSION["pwd_change_result"] == "ok") {
2432 print "<div class=\"notice\">
2433 Password changed successfully.
2434 </div>";
2435 }
2436
2437 $_SESSION["pwd_change_result"] = "";
2438
93cb4442
AD
2439 if ($_SESSION["prefs_op_result"] == "reset-to-defaults") {
2440 print "<div class=\"notice\">
2441 Your configuration was reset to defaults.
2442 </div>";
2443 }
2444
2445 if ($_SESSION["prefs_op_result"] == "save-config") {
2446 print "<div class=\"notice\">
2447 Your configuration was saved successfully.
2448 </div>";
2449 }
2450
2451 $_SESSION["prefs_op_result"] = "";
2452
7d4c898a
AD
2453 print "<form action=\"backend.php\" method=\"POST\">";
2454
2455 print "<table width=\"100%\" class=\"prefPrefsList\">";
2456 print "<tr><td colspan='3'><h3>Authentication</h3></tr></td>";
2457
2458 print "<tr><td width=\"40%\">Old password</td>";
2459 print "<td><input class=\"editbox\" type=\"password\"
2460 name=\"OLD_PASSWORD\"></td></tr>";
2461
2462 print "<tr><td width=\"40%\">New password</td>";
2463
2464 print "<td><input class=\"editbox\" type=\"password\"
2465 name=\"NEW_PASSWORD\"></td></tr>";
2466
2467 print "</table>";
2468
2469 print "<input type=\"hidden\" name=\"op\" value=\"pref-prefs\">";
2470
2471 print "<p><input class=\"button\" type=\"submit\"
2472 value=\"Change password\" name=\"subop\">";
2473
2474 print "</form>";
1c7f75ed 2475
7d4c898a 2476 }
1c7f75ed 2477
58f8ad54
AD
2478 $result = db_query($link, "SELECT
2479 theme_id FROM ttrss_users WHERE id = " . $_SESSION["uid"]);
2480
2481 $user_theme_id = db_fetch_result($result, 0, "theme_id");
2482
2483 $result = db_query($link, "SELECT
2484 id,theme_name FROM ttrss_themes ORDER BY theme_name");
2485
2486 if (db_num_rows($result) > 0) {
6752e330
AD
2487
2488 print "<form action=\"backend.php\" method=\"POST\">";
2489 print "<table width=\"100%\" class=\"prefPrefsList\">";
2490 print "<tr><td colspan='3'><h3>Themes</h3></tr></td>";
2491 print "<tr><td width=\"40%\">Select theme</td>";
2492 print "<td><select name=\"theme\">";
2493 print "<option>Default</option>";
58f8ad54 2494 print "<option disabled>--------</option>";
6752e330 2495
58f8ad54
AD
2496 while ($line = db_fetch_assoc($result)) {
2497 if ($line["id"] == $user_theme_id) {
2498 $selected = "selected";
2499 } else {
2500 $selected = "";
2501 }
2502 print "<option $selected>" . $line["theme_name"] . "</option>";
2503 }
6752e330
AD
2504 print "</select></td></tr>";
2505 print "</table>";
2506 print "<input type=\"hidden\" name=\"op\" value=\"pref-prefs\">";
2507 print "<p><input class=\"button\" type=\"submit\"
2508 value=\"Change theme\" name=\"subop\">";
2509 print "</form>";
58f8ad54
AD
2510 }
2511
77e96719 2512 $result = db_query($link, "SELECT
ff485f1d 2513 ttrss_user_prefs.pref_name,short_desc,help_text,value,type_name,
77e96719 2514 section_name,def_value
ff485f1d 2515 FROM ttrss_prefs,ttrss_prefs_types,ttrss_prefs_sections,ttrss_user_prefs
77e96719 2516 WHERE type_id = ttrss_prefs_types.id AND
ff485f1d 2517 section_id = ttrss_prefs_sections.id AND
a2411bd9
AD
2518 ttrss_user_prefs.pref_name = ttrss_prefs.pref_name AND
2519 owner_uid = ".$_SESSION["uid"]."
650bc435 2520 ORDER BY section_id,short_desc");
77e96719
AD
2521
2522 print "<form action=\"backend.php\" method=\"POST\">";
2523
77e96719
AD
2524 $lnum = 0;
2525
2526 $active_section = "";
2527
2528 while ($line = db_fetch_assoc($result)) {
2529
2530 if ($active_section != $line["section_name"]) {
59a654ba
AD
2531
2532 if ($active_section != "") {
1c7f75ed 2533 print "</table>";
59a654ba 2534 }
1c7f75ed
AD
2535
2536 print "<p><table width=\"100%\" class=\"prefPrefsList\">";
59a654ba
AD
2537
2538 $active_section = $line["section_name"];
2539
77e96719 2540 print "<tr><td colspan=\"3\"><h3>$active_section</h3></td></tr>";
59a654ba
AD
2541// print "<tr class=\"title\">
2542// <td width=\"25%\">Option</td><td>Value</td></tr>";
7268adf7
AD
2543
2544 $lnum = 0;
77e96719
AD
2545 }
2546
650bc435 2547// $class = ($lnum % 2) ? "even" : "odd";
77e96719 2548
650bc435 2549 print "<tr>";
77e96719 2550
77e96719
AD
2551 $type_name = $line["type_name"];
2552 $pref_name = $line["pref_name"];
2553 $value = $line["value"];
2554 $def_value = $line["def_value"];
b1895692
AD
2555 $help_text = $line["help_text"];
2556
2557 print "<td width=\"40%\" id=\"$pref_name\">" . $line["short_desc"];
2558
2559 if ($help_text) print "<div class=\"prefHelp\">$help_text</div>";
2560
2561 print "</td>";
77e96719
AD
2562
2563 print "<td>";
2564
2565 if ($type_name == "bool") {
2566// print_select($pref_name, $value, array("true", "false"));
2567
2568 if ($value == "true") {
2569 $value = "Yes";
2570 } else {
2571 $value = "No";
2572 }
2573
2574 print_radio($pref_name, $value, array("Yes", "No"));
2575
2576 } else {
2577 print "<input class=\"editbox\" name=\"$pref_name\" value=\"$value\">";
2578 }
2579
2580 print "</td>";
2581
2582 print "</tr>";
2583
2584 $lnum++;
2585 }
2586
2587 print "</table>";
2588
2589 print "<input type=\"hidden\" name=\"op\" value=\"pref-prefs\">";
2590
2591 print "<p><input class=\"button\" type=\"submit\"
2592 name=\"subop\" value=\"Save configuration\">";
2593
2594 print "&nbsp;<input class=\"button\" type=\"submit\"
2595 name=\"subop\" value=\"Reset to defaults\"></p>";
2596
2597 print "</form>";
2598
2599 }
2600
2601 }
2602
e6cb77a0
AD
2603 if ($op == "pref-users") {
2604
2605 $subop = $_GET["subop"];
2606
2607 if ($subop == "editSave") {
2608
2609 if (!WEB_DEMO_MODE) {
2610
2611 $login = db_escape_string($_GET["l"]);
2612 $uid = db_escape_string($_GET["id"]);
2613 $access_level = sprintf("%d", $_GET["al"]);
2614
2615 db_query($link, "UPDATE ttrss_users SET login = '$login', access_level = '$access_level' WHERE id = '$uid'");
2616
2617 }
2618 } else if ($subop == "remove") {
2619
2620 if (!WEB_DEMO_MODE && $_SESSION["access_level"] >= 10) {
2621
2622 $ids = split(",", $_GET["ids"]);
2623
2624 foreach ($ids as $id) {
2625 db_query($link, "DELETE FROM ttrss_users WHERE id = '$id' AND id != " . $_SESSION["uid"]);
2626
2627 }
2628 }
2629 } else if ($subop == "add") {
2630
2631 if (!WEB_DEMO_MODE && $_SESSION["access_level"] >= 10) {
2632
b6b535ca 2633 $login = db_escape_string(trim($_GET["login"]));
e6cb77a0
AD
2634 $tmp_user_pwd = make_password(8);
2635 $pwd_hash = 'SHA1:' . sha1($tmp_user_pwd);
2636
2637 db_query($link, "INSERT INTO ttrss_users (login,pwd_hash,access_level)
2638 VALUES ('$login', '$pwd_hash', 0)");
2639
2640
2641 $result = db_query($link, "SELECT id FROM ttrss_users WHERE
2642 login = '$login' AND pwd_hash = '$pwd_hash'");
2643
2644 if (db_num_rows($result) == 1) {
2645
2646 $new_uid = db_fetch_result($result, 0, "id");
2647
2648 print "<div class=\"notice\">Added user <b>".$_GET["login"].
2649 "</b> with password <b>$tmp_user_pwd</b>.</div>";
2650
2651 initialize_user($link, $new_uid);
2652
2653 } else {
2654
2655 print "<div class=\"warning\">Error while adding user <b>".
2656 $_GET["login"].".</b></div>";
2657
2658 }
2659 }
2660 } else if ($subop == "resetPass") {
2661
2662 if (!WEB_DEMO_MODE && $_SESSION["access_level"] >= 10) {
2663
2664 $uid = db_escape_string($_GET["id"]);
2665
2666 $result = db_query($link, "SELECT login FROM ttrss_users WHERE id = '$uid'");
2667
2668 $login = db_fetch_result($result, 0, "login");
2669 $tmp_user_pwd = make_password(8);
2670 $pwd_hash = 'SHA1:' . sha1($tmp_user_pwd);
2671
2672 db_query($link, "UPDATE ttrss_users SET pwd_hash = '$pwd_hash'
2673 WHERE id = '$uid'");
2674
2675 print "<div class=\"notice\">Changed password of
2676 user <b>$login</b> to <b>$tmp_user_pwd</b>.</div>";
2677
2678 }
2679 }
2680
2c7070b5
AD
2681 print "<div class=\"prefGenericAddBox\">
2682 <input id=\"uadd_box\" size=\"40\">&nbsp;";
e6cb77a0 2683
2c7070b5
AD
2684 print"<input type=\"submit\" class=\"button\"
2685 onclick=\"javascript:addUser()\" value=\"Add user\"></div>";
e6cb77a0
AD
2686
2687 $result = db_query($link, "SELECT
fe99ab12
AD
2688 id,login,access_level,
2689 SUBSTRING(last_login,1,16) as last_login
e6cb77a0
AD
2690 FROM
2691 ttrss_users
2692 ORDER by login");
2693
2317ffaa 2694 print "<div id=\"infoBoxShadow\"><div id=\"infoBox\">PLACEHOLDER</div></div>";
1a7572cb 2695
e6cb77a0
AD
2696 print "<p><table width=\"100%\" class=\"prefUserList\" id=\"prefUserList\">";
2697
35f3c923
AD
2698 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
2699 Select:
2700 <a href=\"javascript:selectTableRowsByIdPrefix('prefUserList',
3055bc41 2701 'UMRR-', 'UMCHK-', true)\">All</a>,
35f3c923 2702 <a href=\"javascript:selectTableRowsByIdPrefix('prefUserList',
3055bc41 2703 'UMRR-', 'UMCHK-', false)\">None</a>
35f3c923
AD
2704 </td</tr>";
2705
e6cb77a0 2706 print "<tr class=\"title\">
f6f32198
AD
2707 <td width=\"5%\">Select</td>
2708 <td width='30%'>Username</td>
2709 <td width='30%'>Access Level</td>
2710 <td width='30%'>Last login</td></tr>";
e6cb77a0
AD
2711
2712 $lnum = 0;
2713
2714 while ($line = db_fetch_assoc($result)) {
2715
2716 $class = ($lnum % 2) ? "even" : "odd";
2717
2718 $uid = $line["id"];
2719 $edit_uid = $_GET["id"];
2720
2721 if ($uid == $_SESSION["uid"] || ($subop == "edit" && $uid != $edit_uid)) {
2722 $class .= "Grayed";
53226edc
AD
2723 $this_row_id = "";
2724 } else {
2725 $this_row_id = "id=\"UMRR-$uid\"";
2726 }
2727
2728 print "<tr class=\"$class\" $this_row_id>";
e6cb77a0
AD
2729
2730 $line["login"] = htmlspecialchars($line["login"]);
2731
2732 if ($uid == $_SESSION["uid"]) {
2733
2734 print "<td><input disabled=\"true\" type=\"checkbox\"
2735 id=\"UMCHK-".$line["id"]."\"></td>";
2736
2737 print "<td>".$line["login"]."</td>";
2738 print "<td>".$line["access_level"]."</td>";
e6cb77a0
AD
2739
2740 } else if (!$edit_uid || $subop != "edit") {
2741
2742 print "<td><input onclick='toggleSelectRow(this);'
1a7572cb 2743 type=\"checkbox\" id=\"UMCHK-$uid\"></td>";
e6cb77a0
AD
2744
2745 print "<td><a href=\"javascript:editUser($uid);\">" .
2746 $line["login"] . "</td>";
2747
2748 print "<td><a href=\"javascript:editUser($uid);\">" .
2749 $line["access_level"] . "</td>";
2750
2751 } else if ($uid != $edit_uid) {
2752
2753 print "<td><input disabled=\"true\" type=\"checkbox\"
2754 id=\"UMCHK-".$line["id"]."\"></td>";
2755
2756 print "<td>".$line["login"]."</td>";
2757 print "<td>".$line["access_level"]."</td>";
2758
2759 } else {
2760
2761 print "<td><input disabled=\"true\" type=\"checkbox\" checked></td>";
2762
2763 print "<td><input id=\"iedit_ulogin\" value=\"".$line["login"].
2764 "\"></td>";
2765
2766 print "<td><input id=\"iedit_ulevel\" value=\"".$line["access_level"].
2767 "\"></td>";
2768
2769 }
2770
f6f32198
AD
2771 print "<td>".$line["last_login"]."</td>";
2772
e6cb77a0
AD
2773 print "</tr>";
2774
2775 ++$lnum;
2776 }
2777
2778 print "</table>";
2779
2780 print "<p>";
2781
2782 if ($subop == "edit") {
2783 print "Edit label:
2784 <input type=\"submit\" class=\"button\"
2785 onclick=\"javascript:userEditCancel()\" value=\"Cancel\">
2786 <input type=\"submit\" class=\"button\"
2787 onclick=\"javascript:userEditSave()\" value=\"Save\">";
2788
2789 } else {
2790
2791 print "
2792 Selection:
2793 <input type=\"submit\" class=\"button\"
717f5e64 2794 onclick=\"javascript:selectedUserDetails()\" value=\"User details\">
e6cb77a0
AD
2795 <input type=\"submit\" class=\"button\"
2796 onclick=\"javascript:editSelectedUser()\" value=\"Edit\">
2797 <input type=\"submit\" class=\"button\"
717f5e64
AD
2798 onclick=\"javascript:removeSelectedUsers()\" value=\"Remove\">
2799 <input type=\"submit\" class=\"button\"
2800 onclick=\"javascript:resetSelectedUserPass()\" value=\"Reset password\">";
2801
2802 }
2803 }
2804
2805 if ($op == "user-details") {
2806
2807 if (WEB_DEMO_MODE || $_SESSION["access_level"] < 10) {
2808 return;
2809 }
2810
1a7572cb 2811/* print "<html><head>
717f5e64
AD
2812 <title>Tiny Tiny RSS : User Details</title>
2813 <link rel=\"stylesheet\" href=\"tt-rss.css\" type=\"text/css\">
2814 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
1a7572cb 2815 </head><body>"; */
717f5e64
AD
2816
2817 $uid = sprintf("%d", $_GET["id"]);
2818
c6c3a07f 2819 print "<div class='infoBoxContents'>";
717f5e64 2820
fe99ab12
AD
2821 $result = db_query($link, "SELECT login,
2822 SUBSTRING(last_login,1,16) AS last_login,
2823 access_level,
c6c3a07f
AD
2824 (SELECT COUNT(int_id) FROM ttrss_user_entries
2825 WHERE owner_uid = id) AS stored_articles
717f5e64
AD
2826 FROM ttrss_users
2827 WHERE id = '$uid'");
2828
2829 if (db_num_rows($result) == 0) {
2830 print "<h1>User not found</h1>";
2831 return;
2832 }
2833
2834 print "<h1>User Details</h1>";
2835
2836 print "<table width='100%'>";
2837
2838 $login = db_fetch_result($result, 0, "login");
2839 $last_login = db_fetch_result($result, 0, "last_login");
2840 $access_level = db_fetch_result($result, 0, "access_level");
c6c3a07f 2841 $stored_articles = db_fetch_result($result, 0, "stored_articles");
717f5e64
AD
2842
2843 print "<tr><td>Username</td><td>$login</td></tr>";
2844 print "<tr><td>Access level</td><td>$access_level</td></tr>";
2845 print "<tr><td>Last logged in</td><td>$last_login</td></tr>";
c6c3a07f 2846 print "<tr><td>Stored articles</td><td>$stored_articles</td></tr>";
717f5e64
AD
2847
2848 $result = db_query($link, "SELECT COUNT(id) as num_feeds FROM ttrss_feeds
2849 WHERE owner_uid = '$uid'");
2850
2851 $num_feeds = db_fetch_result($result, 0, "num_feeds");
2852
2853 print "<tr><td>Subscribed feeds count</td><td>$num_feeds</td></tr>";
2854
5d15d3ea 2855/* $result = db_query($link, "SELECT
717f5e64 2856 SUM(LENGTH(content)+LENGTH(title)+LENGTH(link)+LENGTH(guid)) AS db_size
c6c3a07f
AD
2857 FROM ttrss_user_entries,ttrss_entries
2858 WHERE owner_uid = '$uid' AND ref_id = id");
717f5e64 2859
d9f115c3 2860 $db_size = round(db_fetch_result($result, 0, "db_size") / 1024);
717f5e64 2861
c6c3a07f 2862 print "<tr><td>Approx. used DB size</td><td>$db_size KBytes</td></tr>"; */
717f5e64
AD
2863
2864 print "</table>";
2865
2866 print "<h1>Subscribed feeds</h1>";
2867
2868 $result = db_query($link, "SELECT id,title,feed_url FROM ttrss_feeds
d9f115c3 2869 WHERE owner_uid = '$uid' ORDER BY title");
717f5e64
AD
2870
2871 print "<ul class=\"nomarks\">";
2872
2873 while ($line = db_fetch_assoc($result)) {
2874
2875 $icon_file = ICONS_URL."/".$line["id"].".ico";
2876
2877 if (file_exists($icon_file) && filesize($icon_file) > 0) {
6c56687e 2878 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"$icon_file\">";
717f5e64 2879 } else {
5951ded1 2880 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
717f5e64
AD
2881 }
2882
2883 print "<li>$feed_icon&nbsp;<a href=\"".$line["feed_url"]."\">".$line["title"]."</a></li>";
e6cb77a0 2884 }
717f5e64
AD
2885
2886 print "</ul>";
2887
717f5e64
AD
2888 print "</div>";
2889
1a7572cb
AD
2890 print "<div align='center'>
2891 <input type='submit' class='button'
c6c3a07f 2892 onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
1a7572cb
AD
2893
2894// print "</body></html>";
717f5e64 2895
e6cb77a0
AD
2896 }
2897
c6c3a07f
AD
2898 if ($op == "feed-details") {
2899
2900 $feed_id = $_GET["id"];
2901
2902 $result = db_query($link,
2903 "SELECT
f324892e 2904 title,feed_url,last_updated,icon_url,site_url,
c6c3a07f
AD
2905 (SELECT COUNT(int_id) FROM ttrss_user_entries
2906 WHERE feed_id = id) AS total,
2907 (SELECT COUNT(int_id) FROM ttrss_user_entries
2908 WHERE feed_id = id AND unread = true) AS unread,
2909 (SELECT COUNT(int_id) FROM ttrss_user_entries
2910 WHERE feed_id = id AND marked = true) AS marked
2911 FROM ttrss_feeds
2912 WHERE id = '$feed_id' AND owner_uid = ".$_SESSION["uid"]);
2913
2914 if (db_num_rows($result) == 0) return;
2915
2916 $title = db_fetch_result($result, 0, "title");
2917 $last_updated = db_fetch_result($result, 0, "last_updated");
2918 $feed_url = db_fetch_result($result, 0, "feed_url");
4fec9fd7 2919 $icon_url = db_fetch_result($result, 0, "icon_url");
c6c3a07f
AD
2920 $total = db_fetch_result($result, 0, "total");
2921 $unread = db_fetch_result($result, 0, "unread");
2922 $marked = db_fetch_result($result, 0, "marked");
f324892e 2923 $site_url = db_fetch_result($result, 0, "site_url");
4fec9fd7
AD
2924
2925 $result = db_query($link, "SELECT COUNT(id) AS subscribed
2926 FROM ttrss_feeds WHERE feed_url = '$feed_url'");
2927
2928 $subscribed = db_fetch_result($result, 0, "subscribed");
2929
2930 print "<div class=\"infoBoxContents\">";
2931
2932 $icon_file = ICONS_DIR . "/$feed_id.ico";
2933
2934 if (file_exists($icon_file) && filesize($icon_file) > 0) {
2935 $feed_icon = "<img width=\"16\" height=\"16\"
2936 src=\"" . ICONS_URL . "/$feed_id.ico\">";
2937 } else {
2938 $feed_icon = "";
2939 }
2940
2941 print "<h1>$feed_icon $title</h1>";
c6c3a07f
AD
2942
2943 print "<table width='100%'>";
2944
f324892e
AD
2945 if ($site_url) {
2946 print "<tr><td width='30%'>Link</td>
2947 <td><a href=\"$site_url\">$site_url</a>
2948 <a href=\"$feed_url\">(feed)</a></td>
2949 </td></tr>";
2950 } else {
2951 print "<tr><td width='30%'>Feed URL</td>
2952 <td><a href=\"$feed_url\">$feed_url</a></td></tr>";
2953 }
c6c3a07f
AD
2954 print "<tr><td>Last updated</td><td>$last_updated</td></tr>";
2955 print "<tr><td>Total articles</td><td>$total</td></tr>";
2956 print "<tr><td>Unread articles</td><td>$unread</td></tr>";
2957 print "<tr><td>Starred articles</td><td>$marked</td></tr>";
4fec9fd7 2958 print "<tr><td>Subscribed users</td><td>$subscribed</td></tr>";
c6c3a07f
AD
2959
2960 print "</table>";
2961
bffdddd0
AD
2962 $result = db_query($link, "SELECT title,
2963 SUBSTRING(updated,1,16) AS updated,unread
bca02305
AD
2964 FROM ttrss_entries,ttrss_user_entries
2965 WHERE ref_id = id AND feed_id = '$feed_id'
c565e1ef 2966 ORDER BY date_entered DESC LIMIT 5");
c6c3a07f 2967
bca02305
AD
2968 if (db_num_rows($result) > 0) {
2969
2970 print "<h1>Latest headlines</h1>";
c6c3a07f 2971
bca02305
AD
2972 print "<ul class=\"nomarks\">";
2973
2974 while ($line = db_fetch_assoc($result)) {
c565e1ef
AD
2975 if ($line["unread"] == "t" || $line["unread"] == "1") {
2976 $line["title"] = "<b>" . $line["title"] . "</b>";
2977 }
bca02305
AD
2978 print "<li>" . $line["title"].
2979 "&nbsp;<span class=\"insensitive\">(" .$line["updated"].")</span></li>";
2980 }
2981
2982 print "</ul>";
2983
2984 print "</div>";
2985
2986 print "<div align='center'>
2987 <input type='submit' class='button'
2988 onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
2989 }
c6c3a07f
AD
2990 }
2991
4b3dff6e 2992 db_close($link);
1cd17194 2993?>
406d9489
AD
2994
2995<!-- <?= sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
2996