]> git.wh0rd.org - tt-rss.git/blob - modules/pref-feeds.php
add auth support to subscribe-to-feed dialog
[tt-rss.git] / modules / pref-feeds.php
1 <?php
2
3 function module_pref_feeds($link) {
4
5 global $update_intervals;
6 global $purge_intervals;
7
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) {
38 $msg = "<b>".__('Subscribed to feeds:')."</b>".
39 "<ul class=\"nomarks\">";
40
41 foreach ($subscribed as $title) {
42 $msg .= "<li>$title</li>";
43 }
44 $msg .= "</ul>";
45
46 print format_notice($msg);
47 }
48 }
49
50 if ($subop == "browse") {
51
52 if (!ENABLE_FEED_BROWSER) {
53 print __("Feed browser is administratively disabled.");
54 return;
55 }
56
57 print "<div id=\"infoBoxTitle\">".__('Other feeds: Top 25')."</div>";
58
59 print "<div class=\"infoBoxContents\">";
60
61 print "<p>".__("Showing top 25 registered feeds, sorted by popularity:")."</p>";
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".
104 "$feed_icon " . db_unescape_string($details["title"]) .
105 "&nbsp;<span class='subscribers'>($subscribers)</span></li>";
106
107 ++$feedctr;
108 }
109
110 if ($feedctr == 0) {
111 print "<li>".__('No feeds found to subscribe.')."</li>";
112 }
113
114 print "</ul>";
115
116 print "<div align='center'>
117 <input type=\"submit\" class=\"button\"
118 onclick=\"feedBrowserSubscribe()\" value=\"".__('Subscribe')."\">
119 <input type='submit' class='button'
120 onclick=\"closeInfoBox()\" value=\"".__('Cancel')."\"></div>";
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
133 $title = htmlspecialchars(db_unescape_string(db_fetch_result($result,
134 0, "title")));
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
145 print "<div id=\"infoBoxTitle\">".__('Feed editor')."</div>";
146
147 print "<div class=\"infoBoxContents\">";
148
149 print "<form id=\"edit_feed_form\" onsubmit=\"return false\">";
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
157 print "<tr><td>".__('Title:')."</td>";
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");
162 $feed_url = htmlspecialchars(db_unescape_string(db_fetch_result($result,
163 0, "feed_url")));
164
165 print "<tr><td>".__('Feed URL:')."</td>";
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
173 print "<tr><td>".__('Category:')."</td>";
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
193 print "<tr><td>".__('Update Interval:')."</td>";
194
195 print "<td>";
196
197 print_select_hash("update_interval", $update_interval, $update_intervals,
198 "class=\"iedit\"");
199
200 print "</td>";
201
202 print "<tr><td>".__('Link to:')."</td><td>";
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
219 print "<option value=\"0\">".__('Not linked')."</option>";
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
253 print "<tr><td>".__('Article purging:')."</td>";
254
255 print "<td>";
256
257 print_select_hash("purge_interval", $purge_interval, $purge_intervals,
258 "class=\"iedit\"");
259
260 print "</td>";
261
262 $auth_login = escape_for_form(db_fetch_result($result, 0, "auth_login"));
263
264 print "<tr><td>".__('Login:')."</td>";
265 print "<td><input class=\"iedit\" onkeypress=\"return filterCR(event, feedEditSave)\"
266 name=\"auth_login\" value=\"$auth_login\"></td></tr>";
267
268 $auth_pass = escape_for_form(db_fetch_result($result, 0, "auth_pass"));
269
270 print "<tr><td>".__('Password:')."</td>";
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
283 print "<tr><td valign='top'>".__('Options:')."</td>";
284 print "<td><input type=\"checkbox\" name=\"private\" id=\"private\"
285 $checked><label for=\"private\">".__('Hide from "Other Feeds"')."</label>";
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\"
296 $checked><label for=\"rtl_content\">".__('Right-to-left content')."</label>";
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\"
307 $checked><label for=\"hidden\">".__('Hide from my feed list')."</label>";
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\"
319 $checked><label for=\"include_in_digest\">".__('Include in e-mail digest')."</label>";
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\"
329 onclick=\"return feedEditSave()\" value=\"".__('Save')."\">
330 <input type='submit' class='button'
331 onclick=\"return feedEditCancel()\" value=\"".__('Cancel')."\"></div>";
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
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
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"]));
436
437 if ($p_from != 'tt-rss') {
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\"/>
446 <h1>Subscribe to feed...</h1>
447 <div class=\"content\">";
448 }
449
450 if (subscribe_to_feed($link, $feed_url, $cat_id, $auth_login, $auth_pass)) {
451 print_notice(T_sprintf("Subscribed to <b>%s</b>.", $feed_url));
452 } else {
453 print_warning(T_sprintf("Already subscribed to <b>%s</b>.", $feed_url));
454 }
455
456 if ($p_from != 'tt-rss') {
457 $tt_uri = 'http://' . $_SERVER['SERVER_NAME'] .
458 preg_replace('/backend\.php.*$/',
459 'tt-rss.php', $_SERVER["REQUEST_URI"]);
460
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>";
478
479 print "</div></body></html>";
480 return;
481 }
482 }
483 }
484
485 if ($subop == "categorize") {
486
487 if (!WEB_DEMO_MODE) {
488
489 $ids = split(",", db_escape_string($_GET["ids"]));
490
491 $cat_id = db_escape_string($_GET["cat_id"]);
492
493 if ($cat_id == 0) {
494 $cat_id_qpart = 'NULL';
495 } else {
496 $cat_id_qpart = "'$cat_id'";
497 }
498
499 db_query($link, "BEGIN");
500
501 foreach ($ids as $id) {
502
503 db_query($link, "UPDATE ttrss_feeds SET cat_id = $cat_id_qpart
504 WHERE id = '$id' AND parent_feed IS NULL
505 AND owner_uid = " . $_SESSION["uid"]);
506
507 # update linked feed categories
508 db_query($link, "UPDATE ttrss_feeds SET
509 cat_id = $cat_id_qpart WHERE parent_feed = '$id' AND
510 owner_uid = " . $_SESSION["uid"]);
511
512 }
513
514 db_query($link, "COMMIT");
515 }
516
517 }
518
519 if ($subop == "editCats") {
520
521 print "<div id=\"infoBoxTitle\">".__('Category editor')."</div>";
522
523 print "<div class=\"infoBoxContents\">";
524
525 $action = $_REQUEST["action"];
526
527 if ($action == "save") {
528
529 $cat_title = db_escape_string(trim($_GET["title"]));
530 $cat_id = db_escape_string($_GET["id"]);
531
532 $result = db_query($link, "UPDATE ttrss_feed_categories SET
533 title = '$cat_title' WHERE id = '$cat_id' AND owner_uid = ".$_SESSION["uid"]);
534
535 }
536
537 if ($action == "add") {
538
539 if (!WEB_DEMO_MODE) {
540
541 $feed_cat = db_escape_string(trim($_GET["cat"]));
542
543 $result = db_query($link,
544 "SELECT id FROM ttrss_feed_categories
545 WHERE title = '$feed_cat' AND owner_uid = ".$_SESSION["uid"]);
546
547 if (db_num_rows($result) == 0) {
548
549 $result = db_query($link,
550 "INSERT INTO ttrss_feed_categories (owner_uid,title)
551 VALUES ('".$_SESSION["uid"]."', '$feed_cat')");
552
553 } else {
554
555 print_warning(T_sprintf("Category <b>$%s</b> already exists in the database.",
556 $feed_cat));
557 }
558
559 }
560 }
561
562 if ($action == "remove") {
563
564 if (!WEB_DEMO_MODE) {
565
566 $ids = split(",", db_escape_string($_GET["ids"]));
567
568 foreach ($ids as $id) {
569
570 db_query($link, "BEGIN");
571
572 $result = db_query($link,
573 "SELECT count(id) as num_feeds FROM ttrss_feeds
574 WHERE cat_id = '$id'");
575
576 $num_feeds = db_fetch_result($result, 0, "num_feeds");
577
578 if ($num_feeds == 0) {
579 db_query($link, "DELETE FROM ttrss_feed_categories
580 WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
581 } else {
582
583 print format_warning(__("Unable to delete non empty feed categories."));
584
585 }
586
587 db_query($link, "COMMIT");
588 }
589 }
590 }
591
592 print "<div class=\"prefGenericAddBox\">
593 <input id=\"fadd_cat\"
594 onkeypress=\"return filterCR(event, addFeedCat)\"
595 onkeyup=\"toggleSubmitNotEmpty(this, 'catadd_submit_btn')\"
596 onchange=\"toggleSubmitNotEmpty(this, 'catadd_submit_btn')\"
597 size=\"40\">&nbsp;
598 <input
599 type=\"submit\" class=\"button\" disabled=\"true\" id=\"catadd_submit_btn\"
600 onclick=\"javascript:addFeedCat()\" value=\"".__('Create category')."\"></div>";
601
602 $result = db_query($link, "SELECT title,id FROM ttrss_feed_categories
603 WHERE owner_uid = ".$_SESSION["uid"]."
604 ORDER BY title");
605
606 print "<p>";
607
608 if (db_num_rows($result) != 0) {
609
610 print "<table width=\"100%\" class=\"prefFeedCatList\"
611 cellspacing=\"0\">";
612
613 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
614 Select:
615 <a href=\"javascript:selectPrefRows('fcat', true)\">All</a>,
616 <a href=\"javascript:selectPrefRows('fcat', false)\">None</a>
617 </td></tr>";
618
619 print "</table>";
620
621 print "<div class=\"prefFeedCatHolder\">";
622
623 print "<form id=\"feed_cat_edit_form\" onsubmit=\"return false\">";
624
625 print "<table width=\"100%\" class=\"prefFeedCatList\"
626 cellspacing=\"0\" id=\"prefFeedCatList\">";
627
628 /* print "<tr class=\"title\">
629 <td width=\"5%\">&nbsp;</td><td width=\"80%\">Title</td>
630 </tr>"; */
631
632 $lnum = 0;
633
634 while ($line = db_fetch_assoc($result)) {
635
636 $class = ($lnum % 2) ? "even" : "odd";
637
638 $cat_id = $line["id"];
639
640 $edit_cat_id = $_GET["id"];
641
642 if ($action == "edit" && $cat_id == $edit_cat_id) {
643 $class .= "Selected";
644 $this_row_id = "";
645 } else if ($action == "edit" && $cat_id != $edit_cat_id) {
646 $class .= "Grayed";
647 $this_row_id = "";
648 } else {
649 $this_row_id = "id=\"FCATR-$cat_id\"";
650 }
651
652 print "<tr class=\"$class\" $this_row_id>";
653
654 $edit_title = htmlspecialchars(db_unescape_string($line["title"]));
655
656 if (!$edit_cat_id || $action != "edit") {
657
658 print "<td width='5%' align='center'><input
659 onclick='toggleSelectPrefRow(this, \"fcat\");'
660 type=\"checkbox\" id=\"FCCHK-".$line["id"]."\"></td>";
661
662 print "<td><a href=\"javascript:editFeedCat($cat_id);\">" .
663 $edit_title . "</a></td>";
664
665 } else if ($cat_id != $edit_cat_id) {
666
667 print "<td width='5%' align='center'><input disabled=\"true\" type=\"checkbox\"
668 id=\"FRCHK-".$line["id"]."\"></td>";
669
670 print "<td>$edit_title</td>";
671
672 } else {
673
674 print "<td width='5%' align='center'><input disabled=\"true\" type=\"checkbox\" checked>";
675
676 print "<input type=\"hidden\" name=\"id\" value=\"$cat_id\">";
677 print "<input type=\"hidden\" name=\"op\" value=\"pref-feeds\">";
678 print "<input type=\"hidden\" name=\"subop\" value=\"editCats\">";
679 print "<input type=\"hidden\" name=\"action\" value=\"save\">";
680
681 print "</td>";
682
683 print "<td><input onkeypress=\"return filterCR(event, feedCatEditSave)\"
684 name=\"title\" size=\"40\" value=\"$edit_title\"></td>";
685
686 }
687
688 print "</tr>";
689
690 ++$lnum;
691 }
692
693 print "</table>";
694
695 print "</form>";
696
697 print "</div>";
698
699 } else {
700 print "<p>".__('No feed categories defined.')."</p>";
701 }
702
703 print "<div style='float : right'>
704 <input type='submit' class='button'
705 onclick=\"selectTab('feedConfig')\" value=\"".__('Close this window')."\"></div>";
706
707 print "<div id=\"catOpToolbar\">";
708
709 if ($action == "edit") {
710 print "<input type=\"submit\" class=\"button\"
711 onclick=\"return feedCatEditSave()\" value=\"".__('Save')."\">
712 <input type=\"submit\" class=\"button\"
713 onclick=\"return feedCatEditCancel()\" value=\"".__('Cancel')."\">";
714 } else {
715
716 print "
717 <input type=\"submit\" class=\"button\" disabled=\"true\"
718 onclick=\"return editSelectedFeedCat()\" value=\"".__('Edit')."\">
719 <input type=\"submit\" class=\"button\" disabled=\"true\"
720 onclick=\"return removeSelectedFeedCats()\" value=\"".__('Remove')."\">";
721 }
722
723 print "</div>";
724
725 print "</div>";
726
727 return;
728
729 }
730
731 if ($quiet) return;
732
733 $result = db_query($link, "SELECT COUNT(id) AS num_errors
734 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
735
736 $num_errors = db_fetch_result($result, 0, "num_errors");
737
738 if ($num_errors > 0) {
739
740 print format_notice("<a href=\"javascript:showFeedsWithErrors()\">".
741 __('Some feeds have update errors (click for details)')."</a>");
742 }
743
744 $feed_search = db_escape_string($_GET["search"]);
745
746 if (array_key_exists("search", $_GET)) {
747 $_SESSION["prefs_feed_search"] = $feed_search;
748 } else {
749 $feed_search = $_SESSION["prefs_feed_search"];
750 }
751
752 print "<div class=\"feedEditSearch\">
753 <input id=\"feed_search\" size=\"20\"
754 onchange=\"javascript:updateFeedList()\" value=\"$feed_search\">
755 <input type=\"submit\" class=\"button\"
756 onclick=\"javascript:updateFeedList()\" value=\"".__('Search')."\">
757 </div>";
758
759 print "<input id=\"fadd_link\"
760 onkeyup=\"toggleSubmitNotEmpty(this, 'fadd_submit_btn')\"
761 onchange=\"toggleSubmitNotEmpty(this, 'fadd_submit_btn')\"
762 size=\"40\">
763 <input type=\"submit\" class=\"button\"
764 disabled=\"true\" id=\"fadd_submit_btn\"
765 onclick=\"addFeed()\" value=\"".__('Subscribe')."\">";
766
767 if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) {
768 print " <input type=\"submit\" class=\"button\"
769 onclick=\"javascript:browseFeeds()\" value=\"".__('Top 25')."\">";
770 }
771
772 $feeds_sort = db_escape_string($_GET["sort"]);
773
774 if (!$feeds_sort || $feeds_sort == "undefined") {
775 $feeds_sort = $_SESSION["pref_sort_feeds"];
776 if (!$feeds_sort) $feeds_sort = "title";
777 }
778
779 $_SESSION["pref_sort_feeds"] = $feeds_sort;
780
781 if ($feed_search) {
782 $search_qpart = "(UPPER(F1.title) LIKE UPPER('%$feed_search%') OR
783 UPPER(F1.feed_url) LIKE UPPER('%$feed_search%')) AND";
784 } else {
785 $search_qpart = "";
786 }
787
788 if (get_pref($link, 'ENABLE_FEED_CATS')) {
789 $order_by_qpart = "category,$feeds_sort,title";
790 } else {
791 $order_by_qpart = "$feeds_sort,title";
792 }
793
794 $result = db_query($link, "SELECT
795 F1.id,
796 F1.title,
797 F1.feed_url,
798 substring(F1.last_updated,1,16) AS last_updated,
799 F1.parent_feed,
800 F1.update_interval,
801 F1.purge_interval,
802 F1.cat_id,
803 F2.title AS parent_title,
804 C1.title AS category,
805 F1.hidden,
806 F1.include_in_digest,
807 (SELECT SUBSTRING(MAX(updated),1,16) FROM ttrss_user_entries,
808 ttrss_entries WHERE ref_id = ttrss_entries.id
809 AND feed_id = F1.id) AS last_article
810 FROM
811 ttrss_feeds AS F1
812 LEFT JOIN ttrss_feeds AS F2
813 ON (F1.parent_feed = F2.id)
814 LEFT JOIN ttrss_feed_categories AS C1
815 ON (F1.cat_id = C1.id)
816 WHERE
817 $search_qpart F1.owner_uid = '".$_SESSION["uid"]."'
818 ORDER by $order_by_qpart");
819
820 if (db_num_rows($result) != 0) {
821
822 // print "<div id=\"infoBoxShadow\"><div id=\"infoBox\">PLACEHOLDER</div></div>";
823
824 print "<p><table width=\"100%\" cellspacing=\"0\"
825 class=\"prefFeedList\" id=\"prefFeedList\">";
826 print "<tr><td class=\"selectPrompt\" colspan=\"8\">
827 Select:
828 <a href=\"javascript:selectPrefRows('feed', true)\">All</a>,
829 <a href=\"javascript:selectPrefRows('feed', false)\">None</a>
830 </td</tr>";
831
832 if (!get_pref($link, 'ENABLE_FEED_CATS')) {
833 print "<tr class=\"title\">
834 <td width='5%' align='center'>&nbsp;</td>";
835
836 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
837 print "<td width='3%'>&nbsp;</td>";
838 }
839
840 print "
841 <td width='35%'><a href=\"javascript:updateFeedList('title')\">".__('Title')."</a></td>
842 <td width='35%'><a href=\"javascript:updateFeedList('feed_url')\">".__('Feed')."</a></td>
843 <td width='15%'><a href=\"javascript:updateFeedList('last_article')\">".__('Last&nbsp;Article')."</a></td>
844 <td width='15%' align='right'><a href=\"javascript:updateFeedList('last_updated')\">".__('Updated')."</a></td>";
845 }
846
847 $lnum = 0;
848
849 $cur_cat_id = -1;
850
851 while ($line = db_fetch_assoc($result)) {
852
853 $feed_id = $line["id"];
854 $cat_id = $line["cat_id"];
855
856 $edit_title = htmlspecialchars(db_unescape_string($line["title"]));
857 $edit_link = htmlspecialchars(db_unescape_string($line["feed_url"]));
858 $edit_cat = htmlspecialchars(db_unescape_string($line["category"]));
859
860 $hidden = sql_bool_to_bool($line["hidden"]);
861
862 if (!$edit_cat) $edit_cat = __("Uncategorized");
863
864 $last_updated = $line["last_updated"];
865
866 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
867 $last_updated = smart_date_time(strtotime($last_updated));
868 } else {
869 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
870 $last_updated = date($short_date, strtotime($last_updated));
871 }
872
873 $last_article = $line["last_article"];
874
875 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
876 $last_article = smart_date_time(strtotime($last_article));
877 } else {
878 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
879 $last_article = date($short_date, strtotime($last_article));
880 }
881
882 if (get_pref($link, 'ENABLE_FEED_CATS') && $cur_cat_id != $cat_id) {
883 $lnum = 0;
884
885 print "<tr><td colspan=\"6\" class=\"feedEditCat\">$edit_cat</td></tr>";
886
887 print "<tr class=\"title\">
888 <td width='5%'>&nbsp;</td>";
889
890 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
891 print "<td width='3%'>&nbsp;</td>";
892 }
893
894 print "<td width='35%'><a href=\"javascript:updateFeedList('title')\">".__('Title')."</a></td>
895 <td width='35%'><a href=\"javascript:updateFeedList('feed_url')\">".__('Feed')."</a></td>
896 <td width='15%'><a href=\"javascript:updateFeedList('last_article')\">".__('Last&nbsp;Article')."</a></td>
897 <td width='15%' align='right'><a href=\"javascript:updateFeedList('last_updated')\">".__('Updated')."</a></td>";
898
899 $cur_cat_id = $cat_id;
900 }
901
902 $class = ($lnum % 2) ? "even" : "odd";
903 $this_row_id = "id=\"FEEDR-$feed_id\"";
904
905 print "<tr class=\"$class\" $this_row_id>";
906
907 $icon_file = ICONS_DIR . "/$feed_id.ico";
908
909 if (file_exists($icon_file) && filesize($icon_file) > 0) {
910 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"" . ICONS_URL . "/$feed_id.ico\">";
911 } else {
912 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
913 }
914
915 print "<td class='feedSelect'><input onclick='toggleSelectPrefRow(this, \"feed\");'
916 type=\"checkbox\" id=\"FRCHK-".$line["id"]."\"></td>";
917
918 if (get_pref($link, 'ENABLE_FEED_ICONS')) {
919 print "<td class='feedIcon'>$feed_icon</td>";
920 }
921
922 $edit_title = truncate_string($edit_title, 40);
923 $edit_link = truncate_string($edit_link, 60);
924
925 if ($hidden) {
926 $edit_title = "<span class=\"insensitive\">$edit_title (Hidden)</span>";
927 $edit_link = "<span class=\"insensitive\">$edit_link</span>";
928 $last_updated = "<span class=\"insensitive\">$last_updated</span>";
929 $last_article = "<span class=\"insensitive\">$last_article</span>";
930 }
931
932 $parent_title = $line["parent_title"];
933 if ($parent_title) {
934 $parent_title = "<span class='groupPrompt'>(linked to
935 $parent_title)</span>";
936 }
937
938 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
939 "$edit_title $parent_title" . "</a></td>";
940
941 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
942 $edit_link . "</a></td>";
943
944 print "<td><a href=\"javascript:editFeed($feed_id);\">" .
945 "$last_article</a></td>";
946
947 print "<td align='right'><a href=\"javascript:editFeed($feed_id);\">" .
948 "$last_updated</a></td>";
949
950 print "</tr>";
951
952 ++$lnum;
953 }
954
955 print "</table>";
956
957 print "<p><span id=\"feedOpToolbar\">";
958
959 print "<input type=\"submit\" class=\"button\" disabled=\"true\"
960 onclick=\"javascript:editSelectedFeed()\" value=\"".__('Edit')."\">
961 <input type=\"submit\" class=\"button\" disabled=\"true\"
962 onclick=\"javascript:removeSelectedFeeds()\"
963 value=\"".__('Unsubscribe')."\">";
964
965 if (get_pref($link, 'ENABLE_FEED_CATS')) {
966
967 print "&nbsp;|&nbsp;";
968
969 print_feed_cat_select($link, "sfeed_set_fcat", "", "disabled");
970
971 print " <input type=\"submit\" class=\"button\" disabled=\"true\"
972 onclick=\"javascript:categorizeSelectedFeeds()\" value=\"".
973 __('Recategorize')."\">";
974 }
975
976 print "</span>";
977
978 if (get_pref($link, 'ENABLE_FEED_CATS')) {
979
980 print " <input type=\"submit\" class=\"button\"
981 onclick=\"javascript:editFeedCats()\" value=\"".
982 __("Edit categories")."\">";
983
984 # print "&nbsp;|&nbsp;";
985
986 }
987 } else {
988
989 // print "<p>No feeds defined.</p>";
990
991 }
992
993 print "<h3>".__('OPML')."</h3>
994
995 <div style='float : left'>
996 <form enctype=\"multipart/form-data\" method=\"POST\" action=\"opml.php\">
997 File: <input id=\"opml_file\" name=\"opml_file\" type=\"file\">&nbsp;
998 <input class=\"button\" name=\"op\" onclick=\"return validateOpmlImport();\"
999 type=\"submit\" value=\"".__('Import')."\">
1000 </form></div>";
1001
1002 print "&nbsp;";
1003
1004 print "<input type=\"submit\"
1005 class=\"button\" onclick=\"gotoExportOpml()\"
1006 value=\"".__('Export OPML')."\">";
1007
1008 }
1009 ?>