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