]> git.wh0rd.org - tt-rss.git/blame - modules/pref-feeds.php
update translations
[tt-rss.git] / modules / pref-feeds.php
CommitLineData
ef8be8ea 1<?php
d20f3544 2
ef8be8ea
AD
3 function module_pref_feeds($link) {
4
d20f3544
AD
5 global $update_intervals;
6 global $purge_intervals;
7
ef8be8ea
AD
8 $subop = $_REQUEST["subop"];
9 $quiet = $_REQUEST["quiet"];
10
11 if ($subop == "massSubscribe") {
12 $ids = split(",", db_escape_string($_GET["ids"]));
13
14 $subscribed = array();
15
16 foreach ($ids as $id) {
17 $result = db_query($link, "SELECT feed_url,title FROM ttrss_feeds
18 WHERE id = '$id'");
19
20 $feed_url = db_escape_string(db_fetch_result($result, 0, "feed_url"));
21 $title = db_escape_string(db_fetch_result($result, 0, "title"));
22
23 $title_orig = db_fetch_result($result, 0, "title");
24
25 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
26 feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
27
28 if (db_num_rows($result) == 0) {
29 $result = db_query($link,
30 "INSERT INTO ttrss_feeds (owner_uid,feed_url,title,cat_id)
31 VALUES ('".$_SESSION["uid"]."', '$feed_url', '$title', NULL)");
32
33 array_push($subscribed, $title_orig);
34 }
35 }
36
37 if (count($subscribed) > 0) {
31cc42f6 38 $msg = "<b>".__('Subscribed to feeds:')."</b>".
0d32b41e
AD
39 "<ul class=\"nomarks\">";
40
ef8be8ea 41 foreach ($subscribed as $title) {
0d32b41e 42 $msg .= "<li>$title</li>";
ef8be8ea 43 }
0d32b41e
AD
44 $msg .= "</ul>";
45
46 print format_notice($msg);
ef8be8ea
AD
47 }
48 }
49
50 if ($subop == "browse") {
51
52 if (!ENABLE_FEED_BROWSER) {
31cc42f6 53 print __("Feed browser is administratively disabled.");
ef8be8ea
AD
54 return;
55 }
56
31cc42f6 57 print "<div id=\"infoBoxTitle\">".__('Other feeds: Top 25')."</div>";
ef8be8ea
AD
58
59 print "<div class=\"infoBoxContents\">";
60
31cc42f6 61 print "<p>".__("Showing top 25 registered feeds, sorted by popularity:")."</p>";
ef8be8ea
AD
62
63# $result = db_query($link, "SELECT feed_url,count(id) AS subscribers
64# FROM ttrss_feeds
65# WHERE auth_login = '' AND auth_pass = '' AND private = false
66# GROUP BY feed_url ORDER BY subscribers DESC LIMIT 25");
67
68 $owner_uid = $_SESSION["uid"];
69
70 $result = db_query($link, "SELECT feed_url,COUNT(id) AS subscribers
71 FROM ttrss_feeds WHERE (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf
72 WHERE tf.feed_url = ttrss_feeds.feed_url
73 AND owner_uid = '$owner_uid') GROUP BY feed_url
74 ORDER BY subscribers DESC LIMIT 25");
75
76 print "<ul class='browseFeedList' id='browseFeedList'>";
77
78 $feedctr = 0;
79
80 while ($line = db_fetch_assoc($result)) {
81 $feed_url = $line["feed_url"];
82 $subscribers = $line["subscribers"];
83
84 $det_result = db_query($link, "SELECT site_url,title,id
85 FROM ttrss_feeds WHERE feed_url = '$feed_url' LIMIT 1");
86
87 $details = db_fetch_assoc($det_result);
88
89 $icon_file = ICONS_DIR . "/" . $details["id"] . ".ico";
90
91 if (file_exists($icon_file) && filesize($icon_file) > 0) {
92 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"" . ICONS_URL .
93 "/".$details["id"].".ico\">";
94 } else {
95 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
96 }
97
98 $check_box = "<input onclick='toggleSelectListRow(this)' class='feedBrowseCB'
99 type=\"checkbox\" id=\"FBCHK-" . $details["id"] . "\">";
100
101 $class = ($feedctr % 2) ? "even" : "odd";
102
103 print "<li class='$class' id=\"FBROW-".$details["id"]."\">$check_box".
47439031 104 "$feed_icon " . $details["title"] .
ef8be8ea
AD
105 "&nbsp;<span class='subscribers'>($subscribers)</span></li>";
106
107 ++$feedctr;
108 }
109
110 if ($feedctr == 0) {
31cc42f6 111 print "<li>".__('No feeds found to subscribe.')."</li>";
ef8be8ea
AD
112 }
113
114 print "</ul>";
115
116 print "<div align='center'>
117 <input type=\"submit\" class=\"button\"
31cc42f6 118 onclick=\"feedBrowserSubscribe()\" value=\"".__('Subscribe')."\">
ef8be8ea 119 <input type='submit' class='button'
31cc42f6 120 onclick=\"closeInfoBox()\" value=\"".__('Cancel')."\"></div>";
ef8be8ea
AD
121
122 print "</div>";
123 return;
124 }
125
126 if ($subop == "editfeed") {
127 $feed_id = db_escape_string($_REQUEST["id"]);
128
129 $result = db_query($link,
130 "SELECT * FROM ttrss_feeds WHERE id = '$feed_id' AND
131 owner_uid = " . $_SESSION["uid"]);
132
47439031
AD
133 $title = htmlspecialchars(db_fetch_result($result,
134 0, "title"));
ef8be8ea
AD
135
136 $icon_file = ICONS_DIR . "/$feed_id.ico";
137
138 if (file_exists($icon_file) && filesize($icon_file) > 0) {
139 $feed_icon = "<img width=\"16\" height=\"16\"
140 src=\"" . ICONS_URL . "/$feed_id.ico\">";
141 } else {
142 $feed_icon = "";
143 }
144
31cc42f6 145 print "<div id=\"infoBoxTitle\">".__('Feed editor')."</div>";
ef8be8ea
AD
146
147 print "<div class=\"infoBoxContents\">";
148
e6312f6c 149 print "<form id=\"edit_feed_form\" onsubmit=\"return false\">";
ef8be8ea
AD
150
151 print "<input type=\"hidden\" name=\"id\" value=\"$feed_id\">";
152 print "<input type=\"hidden\" name=\"op\" value=\"pref-feeds\">";
153 print "<input type=\"hidden\" name=\"subop\" value=\"editSave\">";
154
155 print "<table width='100%'>";
156
31cc42f6 157 print "<tr><td>".__('Title:')."</td>";
ef8be8ea
AD
158 print "<td><input class=\"iedit\" onkeypress=\"return filterCR(event, feedEditSave)\"
159 name=\"title\" value=\"$title\"></td></tr>";
160
161 $feed_url = db_fetch_result($result, 0, "feed_url");
47439031
AD
162 $feed_url = htmlspecialchars(db_fetch_result($result,
163 0, "feed_url"));
ef8be8ea 164
31cc42f6 165 print "<tr><td>".__('Feed URL:')."</td>";
ef8be8ea
AD
166 print "<td><input class=\"iedit\" onkeypress=\"return filterCR(event, feedEditSave)\"
167 name=\"feed_url\" value=\"$feed_url\"></td></tr>";
168
169 if (get_pref($link, 'ENABLE_FEED_CATS')) {
170
171 $cat_id = db_fetch_result($result, 0, "cat_id");
172
31cc42f6 173 print "<tr><td>".__('Category:')."</td>";
ef8be8ea
AD
174 print "<td>";
175
176 $parent_feed = db_fetch_result($result, 0, "parent_feed");
177
178 if (sprintf("%d", $parent_feed) > 0) {
179 $disabled = "disabled";
180 } else {
181 $disabled = "";
182 }
183
184 print_feed_cat_select($link, "cat_id", $cat_id, "class=\"iedit\" $disabled");
185
186 print "</td>";
187 print "</td></tr>";
188
189 }
190
191 $update_interval = db_fetch_result($result, 0, "update_interval");
192
31cc42f6 193 print "<tr><td>".__('Update Interval:')."</td>";
ef8be8ea
AD
194
195 print "<td>";
196
197 print_select_hash("update_interval", $update_interval, $update_intervals,
198 "class=\"iedit\"");
199
200 print "</td>";
201
31cc42f6 202 print "<tr><td>".__('Link to:')."</td><td>";
ef8be8ea
AD
203
204 $tmp_result = db_query($link, "SELECT COUNT(id) AS count
205 FROM ttrss_feeds WHERE parent_feed = '$feed_id'");
206
207 $linked_count = db_fetch_result($tmp_result, 0, "count");
208
209 $parent_feed = db_fetch_result($result, 0, "parent_feed");
210
211 if ($linked_count > 0) {
212 $disabled = "disabled";
213 } else {
214 $disabled = "";
215 }
216
217 print "<select class=\"iedit\" $disabled name=\"parent_feed\">";
218
31cc42f6 219 print "<option value=\"0\">".__('Not linked')."</option>";
ef8be8ea
AD
220
221 if (get_pref($link, 'ENABLE_FEED_CATS')) {
222 if ($cat_id) {
223 $cat_qpart = "AND cat_id = '$cat_id'";
224 } else {
225 $cat_qpart = "AND cat_id IS NULL";
226 }
227 }
228
229 $tmp_result = db_query($link, "SELECT id,title FROM ttrss_feeds
230 WHERE id != '$feed_id' AND owner_uid = ".$_SESSION["uid"]." AND
231 (SELECT COUNT(id) FROM ttrss_feeds AS T2 WHERE T2.id = ttrss_feeds.parent_feed) = 0
232 $cat_qpart ORDER BY title");
233
234 if (db_num_rows($tmp_result) > 0) {
235 print "<option disabled>--------</option>";
236 }
237
238 while ($tmp_line = db_fetch_assoc($tmp_result)) {
239 if ($tmp_line["id"] == $parent_feed) {
240 $is_selected = "selected";
241 } else {
242 $is_selected = "";
243 }
244 printf("<option $is_selected value='%d'>%s</option>",
245 $tmp_line["id"], $tmp_line["title"]);
246 }
247
248 print "</select>";
249 print "</td></tr>";
250
251 $purge_interval = db_fetch_result($result, 0, "purge_interval");
252
31cc42f6 253 print "<tr><td>".__('Article purging:')."</td>";
ef8be8ea
AD
254
255 print "<td>";
256
257 print_select_hash("purge_interval", $purge_interval, $purge_intervals,
258 "class=\"iedit\"");
259
260 print "</td>";
261
47439031 262 $auth_login = htmlspecialchars(db_fetch_result($result, 0, "auth_login"));
ef8be8ea 263
31cc42f6 264 print "<tr><td>".__('Login:')."</td>";
ef8be8ea
AD
265 print "<td><input class=\"iedit\" onkeypress=\"return filterCR(event, feedEditSave)\"
266 name=\"auth_login\" value=\"$auth_login\"></td></tr>";
267
47439031 268 $auth_pass = htmlspecialchars(db_fetch_result($result, 0, "auth_pass"));
ef8be8ea 269
31cc42f6 270 print "<tr><td>".__('Password:')."</td>";
ef8be8ea
AD
271 print "<td><input class=\"iedit\" type=\"password\" name=\"auth_pass\"
272 onkeypress=\"return filterCR(event, feedEditSave)\"
273 value=\"$auth_pass\"></td></tr>";
274
275 $private = sql_bool_to_bool(db_fetch_result($result, 0, "private"));
276
277 if ($private) {
278 $checked = "checked";
279 } else {
280 $checked = "";
281 }
282
31cc42f6 283 print "<tr><td valign='top'>".__('Options:')."</td>";
ef8be8ea 284 print "<td><input type=\"checkbox\" name=\"private\" id=\"private\"
31cc42f6 285 $checked><label for=\"private\">".__('Hide from "Other Feeds"')."</label>";
ef8be8ea
AD
286
287 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
288
289 if ($rtl_content) {
290 $checked = "checked";
291 } else {
292 $checked = "";
293 }
294
295 print "<br><input type=\"checkbox\" id=\"rtl_content\" name=\"rtl_content\"
3692e98f 296 $checked><label for=\"rtl_content\">".__('Right-to-left content')."</label>";
ef8be8ea
AD
297
298 $hidden = sql_bool_to_bool(db_fetch_result($result, 0, "hidden"));
299
300 if ($hidden) {
301 $checked = "checked";
302 } else {
303 $checked = "";
304 }
305
306 print "<br><input type=\"checkbox\" id=\"hidden\" name=\"hidden\"
31cc42f6 307 $checked><label for=\"hidden\">".__('Hide from my feed list')."</label>";
ef8be8ea
AD
308
309 $include_in_digest = sql_bool_to_bool(db_fetch_result($result, 0, "include_in_digest"));
310
311 if ($include_in_digest) {
312 $checked = "checked";
313 } else {
314 $checked = "";
315 }
316
317 print "<br><input type=\"checkbox\" id=\"include_in_digest\"
318 name=\"include_in_digest\"
31cc42f6 319 $checked><label for=\"include_in_digest\">".__('Include in e-mail digest')."</label>";
ef8be8ea
AD
320
321 print "</td></tr>";
322
323 print "</table>";
324
325 print "</form>";
326
327 print "<div align='right'>
328 <input type=\"submit\" class=\"button\"
31cc42f6 329 onclick=\"return feedEditSave()\" value=\"".__('Save')."\">
ef8be8ea 330 <input type='submit' class='button'
31cc42f6 331 onclick=\"return feedEditCancel()\" value=\"".__('Cancel')."\"></div>";
ef8be8ea
AD
332
333 print "</div>";
334
335 return;
336 }
337
338 if ($subop == "editSave") {
339
340 $feed_title = db_escape_string(trim($_POST["title"]));
341 $feed_link = db_escape_string(trim($_POST["feed_url"]));
342 $upd_intl = db_escape_string($_POST["update_interval"]);
343 $purge_intl = db_escape_string($_POST["purge_interval"]);
344 $feed_id = db_escape_string($_POST["id"]);
345 $cat_id = db_escape_string($_POST["cat_id"]);
346 $auth_login = db_escape_string(trim($_POST["auth_login"]));
347 $auth_pass = db_escape_string(trim($_POST["auth_pass"]));
348 $parent_feed = db_escape_string($_POST["parent_feed"]);
349 $private = checkbox_to_sql_bool(db_escape_string($_POST["private"]));
350 $rtl_content = checkbox_to_sql_bool(db_escape_string($_POST["rtl_content"]));
351 $hidden = checkbox_to_sql_bool(db_escape_string($_POST["hidden"]));
352 $include_in_digest = checkbox_to_sql_bool(
353 db_escape_string($_POST["include_in_digest"]));
354
355 if (get_pref($link, 'ENABLE_FEED_CATS')) {
356 if ($cat_id && $cat_id != 0) {
357 $category_qpart = "cat_id = '$cat_id',";
358 $category_qpart_nocomma = "cat_id = '$cat_id'";
359 } else {
360 $category_qpart = 'cat_id = NULL,';
361 $category_qpart_nocomma = 'cat_id = NULL';
362 }
363 } else {
364 $category_qpart = "";
365 $category_qpart_nocomma = "";
366 }
367
368 if ($parent_feed && $parent_feed != 0) {
369 $parent_qpart = "parent_feed = '$parent_feed'";
370 } else {
371 $parent_qpart = 'parent_feed = NULL';
372 }
373
374 $result = db_query($link, "UPDATE ttrss_feeds SET
375 $category_qpart $parent_qpart,
376 title = '$feed_title', feed_url = '$feed_link',
377 update_interval = '$upd_intl',
378 purge_interval = '$purge_intl',
379 auth_login = '$auth_login',
380 auth_pass = '$auth_pass',
381 private = $private,
382 rtl_content = $rtl_content,
383 hidden = $hidden,
384 include_in_digest = $include_in_digest
385 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
386
387 if (get_pref($link, 'ENABLE_FEED_CATS')) {
388 # update linked feed categories
389 $result = db_query($link, "UPDATE ttrss_feeds SET
390 $category_qpart_nocomma WHERE parent_feed = '$feed_id' AND
391 owner_uid = " . $_SESSION["uid"]);
392 }
393 }
394
ef8be8ea
AD
395 if ($subop == "remove") {
396
397 if (!WEB_DEMO_MODE) {
398
399 $ids = split(",", db_escape_string($_GET["ids"]));
400
401 foreach ($ids as $id) {
402
403 if ($id > 0) {
404
405 db_query($link, "DELETE FROM ttrss_feeds
406 WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
407
408 $icons_dir = ICONS_DIR;
409
410 if (file_exists($icons_dir . "/$id.ico")) {
411 unlink($icons_dir . "/$id.ico");
412 }
413 } else if ($id < -10) {
414
415 $label_id = -$id - 11;
416
417 db_query($link, "DELETE FROM ttrss_labels
418 WHERE id = '$label_id' AND owner_uid = " . $_SESSION["uid"]);
419 }
420 }
421 }
422 }
423
424 if ($subop == "add") {
425
426 if (!WEB_DEMO_MODE) {
427
f27de515
AD
428 $feed_url = db_escape_string(trim($_REQUEST["feed_url"]));
429 $cat_id = db_escape_string($_REQUEST["cat_id"]);
430 $p_from = db_escape_string($_REQUEST["from"]);
431
432 /* only read authentication information from POST */
433
434 $auth_login = db_escape_string(trim($_POST["auth_login"]));
435 $auth_pass = db_escape_string(trim($_POST["auth_pass"]));
aa2122d4 436
e513a74a 437 if ($p_from != 'tt-rss') {
aa2122d4
AD
438 print "<html>
439 <head>
440 <title>Tiny Tiny RSS - Subscribe to feed...</title>
441 <link rel=\"stylesheet\" type=\"text/css\" href=\"quicksub.css\">
442 </head>
443 <body>
444 <img class=\"logo\" src=\"images/ttrss_logo.png\"
445 alt=\"Tiny Tiny RSS\"/>
e513a74a
AD
446 <h1>Subscribe to feed...</h1>
447 <div class=\"content\">";
aa2122d4 448 }
ef8be8ea 449
f27de515 450 if (subscribe_to_feed($link, $feed_url, $cat_id, $auth_login, $auth_pass)) {
4dccf1ed 451 print_notice(T_sprintf("Subscribed to <b>%s</b>.", $feed_url));
ef8be8ea 452 } else {
4dccf1ed 453 print_warning(T_sprintf("Already subscribed to <b>%s</b>.", $feed_url));
ef8be8ea 454 }
aa2122d4 455
e513a74a 456 if ($p_from != 'tt-rss') {
aa2122d4
AD
457 $tt_uri = 'http://' . $_SERVER['SERVER_NAME'] .
458 preg_replace('/backend\.php.*$/',
459 'tt-rss.php', $_SERVER["REQUEST_URI"]);
460
e513a74a
AD
461 $tp_uri = 'http://' . $_SERVER['SERVER_NAME'] .
462 preg_replace('/backend\.php.*$/',
463 'prefs.php', $_SERVER["REQUEST_URI"]);
464
465 print "<p><a href='$tt_uri'>Return to Tiny Tiny RSS</a> |";
466
467 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
468 feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
469
470 $feed_id = db_fetch_result($result, 0, "id");
471
472 if ($feed_id) {
473 print "<a href='$tp_uri?tab=feedConfig&subop=editFeed:$feed_id'>
474 Edit subscription options</a> | ";
475 }
476
477 print "<a href='javascript:window.close()'>Close this window</a>.</p>";
aa2122d4 478
e513a74a 479 print "</div></body></html>";
aa2122d4
AD
480 return;
481 }
442d77f1 482
ef8be8ea
AD
483 }
484 }
485
ef8be8ea
AD
486 if ($subop == "categorize") {
487
488 if (!WEB_DEMO_MODE) {
489
490 $ids = split(",", db_escape_string($_GET["ids"]));
491
492 $cat_id = db_escape_string($_GET["cat_id"]);
493
494 if ($cat_id == 0) {
495 $cat_id_qpart = 'NULL';
496 } else {
497 $cat_id_qpart = "'$cat_id'";
498 }
499
500 db_query($link, "BEGIN");
501
502 foreach ($ids as $id) {
503
504 db_query($link, "UPDATE ttrss_feeds SET cat_id = $cat_id_qpart
505 WHERE id = '$id' AND parent_feed IS NULL
506 AND owner_uid = " . $_SESSION["uid"]);
507
508 # update linked feed categories
509 db_query($link, "UPDATE ttrss_feeds SET
510 cat_id = $cat_id_qpart WHERE parent_feed = '$id' AND
511 owner_uid = " . $_SESSION["uid"]);
512
513 }
514
515 db_query($link, "COMMIT");
516 }
517
518 }
519
9c483746
AD
520 if ($subop == "editCats") {
521
9c483746
AD
522 $action = $_REQUEST["action"];
523
524 if ($action == "save") {
525
11f083e7
AD
526 $cat_title = db_escape_string(trim($_REQUEST["value"]));
527 $cat_id = db_escape_string($_GET["cid"]);
9c483746
AD
528
529 $result = db_query($link, "UPDATE ttrss_feed_categories SET
530 title = '$cat_title' WHERE id = '$cat_id' AND owner_uid = ".$_SESSION["uid"]);
11f083e7
AD
531
532 print $_REQUEST["value"];
533
534 return;
535
9c483746
AD
536 }
537
11f083e7
AD
538 print "<div id=\"infoBoxTitle\">".__('Category editor')."</div>";
539
540 print "<div class=\"infoBoxContents\">";
541
542
9c483746
AD
543 if ($action == "add") {
544
545 if (!WEB_DEMO_MODE) {
546
547 $feed_cat = db_escape_string(trim($_GET["cat"]));
548
549 $result = db_query($link,
550 "SELECT id FROM ttrss_feed_categories
551 WHERE title = '$feed_cat' AND owner_uid = ".$_SESSION["uid"]);
552
553 if (db_num_rows($result) == 0) {
554
555 $result = db_query($link,
556 "INSERT INTO ttrss_feed_categories (owner_uid,title)
557 VALUES ('".$_SESSION["uid"]."', '$feed_cat')");
558
559 } else {
560
4dccf1ed
AD
561 print_warning(T_sprintf("Category <b>$%s</b> already exists in the database.",
562 $feed_cat));
9c483746
AD
563 }
564
565 }
566 }
567
568 if ($action == "remove") {
569
570 if (!WEB_DEMO_MODE) {
571
572 $ids = split(",", db_escape_string($_GET["ids"]));
573
574 foreach ($ids as $id) {
575
576 db_query($link, "BEGIN");
577
578 $result = db_query($link,
579 "SELECT count(id) as num_feeds FROM ttrss_feeds
580 WHERE cat_id = '$id'");
581
582 $num_feeds = db_fetch_result($result, 0, "num_feeds");
583
584 if ($num_feeds == 0) {
585 db_query($link, "DELETE FROM ttrss_feed_categories
586 WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
587 } else {
588
31cc42f6 589 print format_warning(__("Unable to delete non empty feed categories."));
9c483746
AD
590
591 }
592
593 db_query($link, "COMMIT");
594 }
595 }
596 }
597
598 print "<div class=\"prefGenericAddBox\">
599 <input id=\"fadd_cat\"
1043a8c3 600 onkeypress=\"return filterCR(event, addFeedCat)\"
9c483746 601 onkeyup=\"toggleSubmitNotEmpty(this, 'catadd_submit_btn')\"
b5015f72 602 onchange=\"toggleSubmitNotEmpty(this, 'catadd_submit_btn')\"
9c483746
AD
603 size=\"40\">&nbsp;
604 <input
605 type=\"submit\" class=\"button\" disabled=\"true\" id=\"catadd_submit_btn\"
31cc42f6 606 onclick=\"javascript:addFeedCat()\" value=\"".__('Create category')."\"></div>";
9c483746
AD
607
608 $result = db_query($link, "SELECT title,id FROM ttrss_feed_categories
609 WHERE owner_uid = ".$_SESSION["uid"]."
610 ORDER BY title");
611
612 print "<p>";
613
614 if (db_num_rows($result) != 0) {
615
616 print "<table width=\"100%\" class=\"prefFeedCatList\"
617 cellspacing=\"0\">";
618
619 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
e8d0177d
AD
620 ".__('Select:')."
621 <a href=\"javascript:selectPrefRows('fcat', true)\">".__('All')."</a>,
622 <a href=\"javascript:selectPrefRows('fcat', false)\">".__('None')."</a>
9c483746
AD
623 </td></tr>";
624
625 print "</table>";
626
627 print "<div class=\"prefFeedCatHolder\">";
628
e6312f6c 629 print "<form id=\"feed_cat_edit_form\" onsubmit=\"return false\">";
9c483746
AD
630
631 print "<table width=\"100%\" class=\"prefFeedCatList\"
632 cellspacing=\"0\" id=\"prefFeedCatList\">";
9c483746
AD
633
634 $lnum = 0;
635
636 while ($line = db_fetch_assoc($result)) {
637
638 $class = ($lnum % 2) ? "even" : "odd";
639
640 $cat_id = $line["id"];
11f083e7 641 $this_row_id = "id=\"FCATR-$cat_id\"";
9c483746
AD
642
643 print "<tr class=\"$class\" $this_row_id>";
644
47439031 645 $edit_title = htmlspecialchars($line["title"]);
9c483746 646
11f083e7
AD
647 print "<td width='5%' align='center'><input
648 onclick='toggleSelectPrefRow(this, \"fcat\");'
649 type=\"checkbox\" id=\"FCCHK-$cat_id\"></td>";
650
651 print "<td><span id=\"FCATT-$cat_id\">" .
652 $edit_title . "</span></td>";
9c483746
AD
653
654 print "</tr>";
655
656 ++$lnum;
657 }
658
659 print "</table>";
660
661 print "</form>";
662
663 print "</div>";
664
6f5b1e04 665 } else {
31cc42f6 666 print "<p>".__('No feed categories defined.')."</p>";
6f5b1e04 667 }
9c483746 668
6f5b1e04
AD
669 print "<div style='float : right'>
670 <input type='submit' class='button'
31cc42f6 671 onclick=\"selectTab('feedConfig')\" value=\"".__('Close this window')."\"></div>";
9c483746 672
6f5b1e04 673 print "<div id=\"catOpToolbar\">";
9c483746 674
11f083e7 675 print "
6f5b1e04 676 <input type=\"submit\" class=\"button\" disabled=\"true\"
31cc42f6 677 onclick=\"return removeSelectedFeedCats()\" value=\"".__('Remove')."\">";
11f083e7 678
9c483746
AD
679 print "</div>";
680
6f5b1e04
AD
681 print "</div>";
682
9c483746
AD
683 return;
684
685 }
686
ef8be8ea
AD
687 if ($quiet) return;
688
442d77f1
AD
689 set_pref($link, "_PREFS_ACTIVE_TAB", "feedConfig");
690
a3656a41 691 $result = db_query($link, "SELECT COUNT(id) AS num_errors
ef8be8ea
AD
692 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
693
a3656a41 694 $num_errors = db_fetch_result($result, 0, "num_errors");
ef8be8ea 695
a3656a41 696 if ($num_errors > 0) {
ef8be8ea 697
31cc42f6
AD
698 print format_notice("<a href=\"javascript:showFeedsWithErrors()\">".
699 __('Some feeds have update errors (click for details)')."</a>");
ef8be8ea
AD
700 }
701
702 $feed_search = db_escape_string($_GET["search"]);
703
704 if (array_key_exists("search", $_GET)) {
705 $_SESSION["prefs_feed_search"] = $feed_search;
706 } else {
707 $feed_search = $_SESSION["prefs_feed_search"];
708 }
709
710 print "<div class=\"feedEditSearch\">
711 <input id=\"feed_search\" size=\"20\"
712 onchange=\"javascript:updateFeedList()\" value=\"$feed_search\">
713 <input type=\"submit\" class=\"button\"
a3c159c4 714 onclick=\"javascript:updateFeedList()\" value=\"".__('Search')."\">
ef8be8ea 715 </div>";
5e6f933a 716
442d77f1 717/* print "<input id=\"fadd_link\"
ef8be8ea 718 onkeyup=\"toggleSubmitNotEmpty(this, 'fadd_submit_btn')\"
b5015f72 719 onchange=\"toggleSubmitNotEmpty(this, 'fadd_submit_btn')\"
ef8be8ea
AD
720 size=\"40\">
721 <input type=\"submit\" class=\"button\"
722 disabled=\"true\" id=\"fadd_submit_btn\"
442d77f1
AD
723 onclick=\"addFeed()\" value=\"".__('Subscribe')."\">"; */
724
725 print "<input onclick=\"javascript:displayDlg('quickAddFeed')\"
a349077c 726 type=\"submit\" id=\"subscribe_to_feed_btn\"
442d77f1 727 class=\"button\" value=\"".__('Subscribe to feed')."\">";
ef8be8ea
AD
728
729 if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) {
730 print " <input type=\"submit\" class=\"button\"
a349077c 731 id=\"top25_feeds_btn\"
a3c159c4 732 onclick=\"javascript:browseFeeds()\" value=\"".__('Top 25')."\">";
ef8be8ea
AD
733 }
734
ef8be8ea
AD
735 $feeds_sort = db_escape_string($_GET["sort"]);
736
737 if (!$feeds_sort || $feeds_sort == "undefined") {
738 $feeds_sort = $_SESSION["pref_sort_feeds"];
739 if (!$feeds_sort) $feeds_sort = "title";
740 }
741
742 $_SESSION["pref_sort_feeds"] = $feeds_sort;
743
744 if ($feed_search) {
745 $search_qpart = "(UPPER(F1.title) LIKE UPPER('%$feed_search%') OR
746 UPPER(F1.feed_url) LIKE UPPER('%$feed_search%')) AND";
747 } else {
748 $search_qpart = "";
749 }
750
400b60d8
AD
751 $show_last_article_info = false;
752 $show_last_article_checked = "";
753 $show_last_article_qpart = "";
754
755 if ($_GET["slat"] == "true") {
756 $show_last_article_info = true;
757 $show_last_article_checked = "checked";
758 $show_last_article_qpart = ", (SELECT SUBSTRING(MAX(updated),1,16) FROM ttrss_user_entries,
759 ttrss_entries WHERE ref_id = ttrss_entries.id
760 AND feed_id = F1.id) AS last_article";
d2ca9130
AD
761 } else if ($feeds_sort == "last_article") {
762 $feeds_sort = "title";
763 }
764
765 if (get_pref($link, 'ENABLE_FEED_CATS')) {
766 $order_by_qpart = "category,$feeds_sort,title";
767 } else {
768 $order_by_qpart = "$feeds_sort,title";
400b60d8
AD
769 }
770
ef8be8ea
AD
771 $result = db_query($link, "SELECT
772 F1.id,
773 F1.title,
774 F1.feed_url,
775 substring(F1.last_updated,1,16) AS last_updated,
776 F1.parent_feed,
777 F1.update_interval,
365f95dc 778 F1.last_error,
ef8be8ea
AD
779 F1.purge_interval,
780 F1.cat_id,
781 F2.title AS parent_title,
782 C1.title AS category,
783 F1.hidden,
400b60d8
AD
784 F1.include_in_digest
785 $show_last_article_qpart
ef8be8ea
AD
786 FROM
787 ttrss_feeds AS F1
788 LEFT JOIN ttrss_feeds AS F2
789 ON (F1.parent_feed = F2.id)
790 LEFT JOIN ttrss_feed_categories AS C1
791 ON (F1.cat_id = C1.id)
792 WHERE
793 $search_qpart F1.owner_uid = '".$_SESSION["uid"]."'
794 ORDER by $order_by_qpart");
795
796 if (db_num_rows($result) != 0) {
797
798// print "<div id=\"infoBoxShadow\"><div id=\"infoBox\">PLACEHOLDER</div></div>";
799
800 print "<p><table width=\"100%\" cellspacing=\"0\"
801 class=\"prefFeedList\" id=\"prefFeedList\">";
400b60d8
AD
802 print "<tr><td class=\"selectPrompt\" colspan=\"8\">".
803 "<div style='float : right'>".
804 "<input id='show_last_article_times' type='checkbox' onchange='feedlistToggleSLAT()'
805 $show_last_article_checked><label
806 for='show_last_article_times'>".__('Show last article times')."</label></div>".
807 __('Select:')."
e8d0177d
AD
808 <a href=\"javascript:selectPrefRows('feed', true)\">".__('All')."</a>,
809 <a href=\"javascript:selectPrefRows('feed', false)\">".__('None')."</a>
ef8be8ea
AD
810 </td</tr>";
811
812 if (!get_pref($link, 'ENABLE_FEED_CATS')) {
813 print "<tr class=\"title\">
814 <td width='5%' align='center'>&nbsp;</td>";
815
816 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
817 print "<td width='3%'>&nbsp;</td>";
818 }
819
c4b0f96c
AD
820 print "<td width='60%'><a href=\"javascript:updateFeedList('title')\">".__('Title')."</a></td>";
821
822 if ($show_last_article_info) {
823 print "<td width='20%' align='right'><a href=\"javascript:updateFeedList('last_article')\">".__('Last&nbsp;Article')."</a></td>";
824 }
825
826 print "<td width='20%' align='right'><a href=\"javascript:updateFeedList('last_updated')\">".__('Updated')."</a></td>";
ef8be8ea
AD
827 }
828
829 $lnum = 0;
830
831 $cur_cat_id = -1;
832
833 while ($line = db_fetch_assoc($result)) {
834
835 $feed_id = $line["id"];
836 $cat_id = $line["cat_id"];
837
47439031
AD
838 $edit_title = htmlspecialchars($line["title"]);
839 $edit_cat = htmlspecialchars($line["category"]);
ef8be8ea
AD
840
841 $hidden = sql_bool_to_bool($line["hidden"]);
842
365f95dc
AD
843 $last_error = $line["last_error"];
844
3692e98f 845 if (!$edit_cat) $edit_cat = __("Uncategorized");
ef8be8ea
AD
846
847 $last_updated = $line["last_updated"];
848
7a74abd5
AD
849 if (!$last_updated) {
850 $last_updated = "&mdash;";
851 } else if (get_pref($link, 'HEADLINES_SMART_DATE')) {
ef8be8ea
AD
852 $last_updated = smart_date_time(strtotime($last_updated));
853 } else {
854 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
855 $last_updated = date($short_date, strtotime($last_updated));
856 }
857
858 $last_article = $line["last_article"];
859
7a74abd5
AD
860 if (!$last_article) {
861 $last_article = "&mdash;";
862 } else if (get_pref($link, 'HEADLINES_SMART_DATE')) {
ef8be8ea
AD
863 $last_article = smart_date_time(strtotime($last_article));
864 } else {
865 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
866 $last_article = date($short_date, strtotime($last_article));
867 }
868
869 if (get_pref($link, 'ENABLE_FEED_CATS') && $cur_cat_id != $cat_id) {
870 $lnum = 0;
871
872 print "<tr><td colspan=\"6\" class=\"feedEditCat\">$edit_cat</td></tr>";
873
874 print "<tr class=\"title\">
875 <td width='5%'>&nbsp;</td>";
876
877 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
878 print "<td width='3%'>&nbsp;</td>";
879 }
880
400b60d8
AD
881 print "<td width='60%'><a href=\"javascript:updateFeedList('title')\">".__('Title')."</a></td>";
882
883 if ($show_last_article_info) {
884 print "<td width='20%' align='right'>
885 <a href=\"javascript:updateFeedList('last_article')\">".__('Last&nbsp;Article')."</a></td>";
886 }
887
888 print "<td width='20%' align='right'>
889 <a href=\"javascript:updateFeedList('last_updated')\">".__('Updated')."</a></td>";
ef8be8ea
AD
890
891 $cur_cat_id = $cat_id;
892 }
893
894 $class = ($lnum % 2) ? "even" : "odd";
895 $this_row_id = "id=\"FEEDR-$feed_id\"";
896
897 print "<tr class=\"$class\" $this_row_id>";
898
899 $icon_file = ICONS_DIR . "/$feed_id.ico";
900
901 if (file_exists($icon_file) && filesize($icon_file) > 0) {
902 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"" . ICONS_URL . "/$feed_id.ico\">";
903 } else {
904 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
905 }
906
907 print "<td class='feedSelect'><input onclick='toggleSelectPrefRow(this, \"feed\");'
908 type=\"checkbox\" id=\"FRCHK-".$line["id"]."\"></td>";
909
910 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
911 print "<td class='feedIcon'>$feed_icon</td>";
912 }
913
ef8be8ea
AD
914 if ($hidden) {
915 $edit_title = "<span class=\"insensitive\">$edit_title (Hidden)</span>";
ef8be8ea
AD
916 $last_updated = "<span class=\"insensitive\">$last_updated</span>";
917 $last_article = "<span class=\"insensitive\">$last_article</span>";
365f95dc
AD
918 }
919
920 if ($last_error) {
1fc77c25 921 $edit_title = "<span class=\"feed_error\">$edit_title</span>";
365f95dc
AD
922 $last_updated = "<span class=\"feed_error\">$last_updated</span>";
923 $last_article = "<span class=\"feed_error\">$last_article</span>";
ef8be8ea
AD
924 }
925
926 $parent_title = $line["parent_title"];
927 if ($parent_title) {
928 $parent_title = "<span class='groupPrompt'>(linked to
929 $parent_title)</span>";
930 }
931
932 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
933 "$edit_title $parent_title" . "</a></td>";
ef8be8ea 934
400b60d8
AD
935 if ($show_last_article_info) {
936 print "<td align='right'><a href=\"javascript:editFeed($feed_id);\">" .
937 "$last_article</a></td>";
938 }
ef8be8ea
AD
939
940 print "<td align='right'><a href=\"javascript:editFeed($feed_id);\">" .
941 "$last_updated</a></td>";
942
943 print "</tr>";
944
945 ++$lnum;
946 }
947
948 print "</table>";
949
950 print "<p><span id=\"feedOpToolbar\">";
951
a3c159c4
AD
952 print "<input type=\"submit\" class=\"button\" disabled=\"true\"
953 onclick=\"javascript:editSelectedFeed()\" value=\"".__('Edit')."\">
954 <input type=\"submit\" class=\"button\" disabled=\"true\"
955 onclick=\"javascript:removeSelectedFeeds()\"
956 value=\"".__('Unsubscribe')."\">";
ef8be8ea 957
a3c159c4 958 if (get_pref($link, 'ENABLE_FEED_CATS')) {
ef8be8ea 959
a3c159c4 960 print "&nbsp;|&nbsp;";
ef8be8ea 961
a3c159c4 962 print_feed_cat_select($link, "sfeed_set_fcat", "", "disabled");
ef8be8ea 963
a3c159c4
AD
964 print " <input type=\"submit\" class=\"button\" disabled=\"true\"
965 onclick=\"javascript:categorizeSelectedFeeds()\" value=\"".
966 __('Recategorize')."\">";
967 }
ef8be8ea 968
a3c159c4 969 print "</span>";
9c483746 970
a3c159c4 971 if (get_pref($link, 'ENABLE_FEED_CATS')) {
9c483746 972
a3c159c4 973 print " <input type=\"submit\" class=\"button\"
3692e98f
AD
974 onclick=\"javascript:editFeedCats()\" value=\"".
975 __("Edit categories")."\">";
9c483746 976
a3c159c4 977# print "&nbsp;|&nbsp;";
9c483746 978
ef8be8ea
AD
979 }
980 } else {
981
6f5b1e04 982// print "<p>No feeds defined.</p>";
ef8be8ea
AD
983
984 }
985
a3c159c4 986 print "<h3>".__('OPML')."</h3>
94a4ba88
AD
987
988 <div style='float : left'>
ef8be8ea
AD
989 <form enctype=\"multipart/form-data\" method=\"POST\" action=\"opml.php\">
990 File: <input id=\"opml_file\" name=\"opml_file\" type=\"file\">&nbsp;
991 <input class=\"button\" name=\"op\" onclick=\"return validateOpmlImport();\"
a3c159c4 992 type=\"submit\" value=\"".__('Import')."\">
94a4ba88
AD
993 </form></div>";
994
3692e98f 995 print "&nbsp;";
94a4ba88
AD
996
997 print "<input type=\"submit\"
998 class=\"button\" onclick=\"gotoExportOpml()\"
a3c159c4 999 value=\"".__('Export OPML')."\">";
94a4ba88 1000
e4f4b46f 1001
e400230e 1002 print "<h3>".__("Published articles")."</h3>";
e4f4b46f
AD
1003
1004 if (!get_pref($link, "_PREFS_PUBLISH_KEY")) {
1005 set_pref($link, "_PREFS_PUBLISH_KEY", generate_publish_key());
1006 }
1007
1008 print "<p>".__('Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the address specified below.')."</p>";
1009
f56e3080 1010 $url_path = article_publish_url($link);
e4f4b46f 1011
945c243e 1012 print "<p class=\"small\"><a id=\"pubGenAddress\" target=\"_new\" href=\"$url_path\">$url_path</a></p>";
e4f4b46f
AD
1013
1014 print "<p><input type=\"submit\" onclick=\"return pubRegenKey()\"
1015 value=\"".__('Generate another address')."\"></p>";
1016
ef8be8ea
AD
1017 }
1018?>