3 function batch_edit_cbox($elem, $label = false) {
4 print "<input type=\"checkbox\" title=\"".__("Check to enable field")."\"
5 onchange=\"dijit.byId('feedEditDlg').toggleField(this, '$elem', '$label')\">";
8 function module_pref_feeds($link) {
10 global $update_intervals;
11 global $purge_intervals;
12 global $update_methods;
14 $subop = $_REQUEST["subop"];
15 $quiet = $_REQUEST["quiet"];
16 $mode = $_REQUEST["mode"];
18 if ($subop == "renamecat") {
19 $title = db_escape_string($_REQUEST['title']);
20 $id = db_escape_string($_REQUEST['id']);
23 db_query($link, "UPDATE ttrss_feed_categories SET
24 title = '$title' WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
29 if ($subop == "getfeedtree") {
33 $root['name'] = __('Feeds');
34 $root['items'] = array();
35 $root['type'] = 'category';
37 if (get_pref($link, 'ENABLE_FEED_CATS')) {
39 $result = db_query($link, "SELECT id, title FROM ttrss_feed_categories
40 WHERE owner_uid = " . $_SESSION["uid"] . " ORDER BY order_id, title");
42 while ($line = db_fetch_assoc($result)) {
44 $cat['id'] = 'CAT:' . $line['id'];
45 $cat['bare_id'] = $feed_id;
46 $cat['name'] = $line['title'];
47 $cat['items'] = array();
48 $cat['type'] = 'category';
50 $feed_result = db_query($link, "SELECT id, title, last_error
52 WHERE cat_id = '".$line['id']."' AND owner_uid = ".$_SESSION["uid"].
53 " ORDER BY order_id, title");
55 while ($feed_line = db_fetch_assoc($feed_result)) {
57 $feed['id'] = 'FEED:' . $feed_line['id'];
58 $feed['bare_id'] = $feed_line['id'];
59 $feed['name'] = $feed_line['title'];
60 $feed['checkbox'] = false;
61 $feed['error'] = $feed_line['last_error'];
62 $feed['icon'] = getFeedIcon($feed_line['id']);
64 array_push($cat['items'], $feed);
67 array_push($root['items'], $cat);
70 /* Uncategorized is a special case */
75 $cat['name'] = __("Uncategorized");
76 $cat['items'] = array();
77 $cat['type'] = 'category';
79 $feed_result = db_query($link, "SELECT id, title,last_error
81 WHERE cat_id IS NULL AND owner_uid = ".$_SESSION["uid"].
82 " ORDER BY order_id, title");
84 while ($feed_line = db_fetch_assoc($feed_result)) {
86 $feed['id'] = 'FEED:' . $feed_line['id'];
87 $feed['bare_id'] = $feed_line['id'];
88 $feed['name'] = $feed_line['title'];
89 $feed['checkbox'] = false;
90 $feed['error'] = $feed_line['last_error'];
91 $feed['icon'] = getFeedIcon($feed_line['id']);
93 array_push($cat['items'], $feed);
96 array_push($root['items'], $cat);
98 $feed_result = db_query($link, "SELECT id, title, last_error
100 WHERE owner_uid = ".$_SESSION["uid"].
101 " ORDER BY order_id, title");
103 while ($feed_line = db_fetch_assoc($feed_result)) {
105 $feed['id'] = 'FEED:' . $feed_line['id'];
106 $feed['bare_id'] = $feed_line['id'];
107 $feed['name'] = $feed_line['title'];
108 $feed['checkbox'] = false;
109 $feed['error'] = $feed_line['last_error'];
110 $feed['icon'] = getFeedIcon($feed_line['id']);
112 array_push($root['items'], $feed);
117 $fl['identifier'] = 'id';
118 $fl['label'] = 'name';
119 $fl['items'] = array($root);
121 print json_encode($fl);
125 if ($subop == "catsortreset") {
126 db_query($link, "UPDATE ttrss_feed_categories
127 SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"]);
131 if ($subop == "feedsortreset") {
132 db_query($link, "UPDATE ttrss_feeds
133 SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"]);
137 if ($subop == "savefeedorder") {
138 # if ($_POST['payload']) {
139 # file_put_contents("/tmp/blahblah.txt", $_POST['payload']);
140 # $data = json_decode($_POST['payload'], true);
142 # $data = json_decode(file_get_contents("/tmp/blahblah.txt"), true);
145 $data = json_decode($_POST['payload'], true);
147 if (is_array($data) && is_array($data['items'])) {
152 foreach ($data['items'] as $item) {
154 if ($item['id'] != 'root') {
155 if (is_array($item['items'])) {
156 if (isset($item['items']['_reference'])) {
157 $data_map[$item['id']] = array($item['items']);
159 $data_map[$item['id']] =& $item['items'];
165 foreach ($data['items'][0]['items'] as $item) {
166 $id = $item['_reference'];
167 $bare_id = substr($id, strpos($id, ':')+1);
172 db_query($link, "UPDATE ttrss_feed_categories
173 SET order_id = '$cat_order_id' WHERE id = '$bare_id' AND
174 owner_uid = " . $_SESSION["uid"]);
179 if (is_array($data_map[$id])) {
180 foreach ($data_map[$id] as $feed) {
181 $id = $feed['_reference'];
182 $feed_id = substr($id, strpos($id, ':')+1);
185 $cat_query = "cat_id = '$bare_id'";
187 $cat_query = "cat_id = NULL";
189 db_query($link, "UPDATE ttrss_feeds
190 SET order_id = '$feed_order_id',
192 WHERE id = '$feed_id' AND
193 owner_uid = " . $_SESSION["uid"]);
204 if ($subop == "removeicon") {
205 $feed_id = db_escape_string($_REQUEST["feed_id"]);
207 $result = db_query($link, "SELECT id FROM ttrss_feeds
208 WHERE id = '$feed_id' AND owner_uid = ". $_SESSION["uid"]);
210 if (db_num_rows($result) != 0) {
211 unlink(ICONS_DIR . "/$feed_id.ico");
217 if ($subop == "uploadicon") {
218 $icon_file = $_FILES['icon_file']['tmp_name'];
219 $feed_id = db_escape_string($_REQUEST["feed_id"]);
221 if (is_file($icon_file) && $feed_id) {
222 if (filesize($icon_file) < 20000) {
224 $result = db_query($link, "SELECT id FROM ttrss_feeds
225 WHERE id = '$feed_id' AND owner_uid = ". $_SESSION["uid"]);
227 if (db_num_rows($result) != 0) {
228 unlink(ICONS_DIR . "/$feed_id.ico");
229 move_uploaded_file($icon_file, ICONS_DIR . "/$feed_id.ico");
241 print "<script type=\"text/javascript\">";
242 print "parent.uploadIconHandler($rc);";
247 if ($subop == "editfeed") {
249 $feed_id = db_escape_string($_REQUEST["id"]);
251 $result = db_query($link,
252 "SELECT * FROM ttrss_feeds WHERE id = '$feed_id' AND
253 owner_uid = " . $_SESSION["uid"]);
255 $title = htmlspecialchars(db_fetch_result($result,
258 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"id\" value=\"$feed_id\">";
259 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-feeds\">";
260 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"editSave\">";
262 print "<div class=\"dlgSec\">".__("Feed")."</div>";
263 print "<div class=\"dlgSecCont\">";
267 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\"
268 placeHolder=\"".__("Feed Title")."\"
269 style=\"font-size : 16px; width: 20em\" name=\"title\" value=\"$title\">";
273 $feed_url = db_fetch_result($result, 0, "feed_url");
274 $feed_url = htmlspecialchars(db_fetch_result($result,
279 print __('URL:') . " ";
280 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\"
281 placeHolder=\"".__("Feed URL")."\"
282 regExp='^(http|https)://.*' style=\"width : 20em\"
283 name=\"feed_url\" value=\"$feed_url\">";
287 if (get_pref($link, 'ENABLE_FEED_CATS')) {
289 $cat_id = db_fetch_result($result, 0, "cat_id");
293 print __('Place in category:') . " ";
295 print_feed_cat_select($link, "cat_id", $cat_id,
296 'dojoType="dijit.form.Select"');
301 print "<div class=\"dlgSec\">".__("Update")."</div>";
302 print "<div class=\"dlgSecCont\">";
304 /* Update Interval */
306 $update_interval = db_fetch_result($result, 0, "update_interval");
308 print_select_hash("update_interval", $update_interval, $update_intervals,
309 'dojoType="dijit.form.Select"');
313 $update_method = db_fetch_result($result, 0, "update_method",
314 'dojoType="dijit.form.Select"');
316 print " " . __('using') . " ";
317 print_select_hash("update_method", $update_method, $update_methods,
318 'dojoType="dijit.form.Select"');
320 $purge_interval = db_fetch_result($result, 0, "purge_interval");
322 if (FORCE_ARTICLE_PURGE == 0) {
328 print __('Article purging:') . " ";
330 print_select_hash("purge_interval", $purge_interval, $purge_intervals,
331 'dojoType="dijit.form.Select"');
334 print "<input type='hidden' name='purge_interval' value='$purge_interval'>";
339 print "<div class=\"dlgSec\">".__("Authentication")."</div>";
340 print "<div class=\"dlgSecCont\">";
342 $auth_login = htmlspecialchars(db_fetch_result($result, 0, "auth_login"));
346 # print "<tr><td>" . __('Login:') . "</td><td>";
348 print "<input dojoType=\"dijit.form.TextBox\"
349 placeHolder=\"".__("Login")."\"
350 name=\"auth_login\" value=\"$auth_login\"><br/>";
352 # print "</tr><tr><td>" . __("Password:") . "</td><td>";
354 $auth_pass = htmlspecialchars(db_fetch_result($result, 0, "auth_pass"));
356 print "<input dojoType=\"dijit.form.TextBox\" type=\"password\" name=\"auth_pass\"
357 placeHolder=\"".__("Password")."\"
358 value=\"$auth_pass\">";
360 # print "</td></tr></table>";
363 print "<div class=\"dlgSec\">".__("Options")."</div>";
364 print "<div class=\"dlgSecCont\">";
366 # print "<div style=\"line-height : 100%\">";
368 $private = sql_bool_to_bool(db_fetch_result($result, 0, "private"));
371 $checked = "checked=\"1\"";
376 print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"private\" id=\"private\"
377 $checked> <label for=\"private\">".__('Hide from Popular feeds')."</label>";
379 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
382 $checked = "checked=\"1\"";
387 print "<br/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"rtl_content\" name=\"rtl_content\"
388 $checked> <label for=\"rtl_content\">".__('Right-to-left content')."</label>";
390 $include_in_digest = sql_bool_to_bool(db_fetch_result($result, 0, "include_in_digest"));
392 if ($include_in_digest) {
393 $checked = "checked=\"1\"";
398 print "<br/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"include_in_digest\"
399 name=\"include_in_digest\"
400 $checked> <label for=\"include_in_digest\">".__('Include in e-mail digest')."</label>";
403 $always_display_enclosures = sql_bool_to_bool(db_fetch_result($result, 0, "always_display_enclosures"));
405 if ($always_display_enclosures) {
406 $checked = "checked";
411 print "<br/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"always_display_enclosures\"
412 name=\"always_display_enclosures\"
413 $checked> <label for=\"always_display_enclosures\">".__('Always display image attachments')."</label>";
416 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
419 $checked = "checked=\"1\"";
424 print "<br/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"cache_images\"
425 name=\"cache_images\"
426 $checked> <label for=\"cache_images\">".
427 __('Cache images locally (SimplePie only)')."</label>";
437 print "<div class=\"dlgSec\">".__("Icon")."</div>";
438 print "<div class=\"dlgSecCont\">";
440 print "<iframe name=\"icon_upload_iframe\"
441 style=\"width: 400px; height: 100px; display: none;\"></iframe>";
443 print "<form style='display : block' target=\"icon_upload_iframe\"
444 enctype=\"multipart/form-data\" method=\"POST\"
445 action=\"backend.php\">
446 <input id=\"icon_file\" size=\"10\" name=\"icon_file\" type=\"file\">
447 <input type=\"hidden\" name=\"op\" value=\"pref-feeds\">
448 <input type=\"hidden\" name=\"feed_id\" value=\"$feed_id\">
449 <input type=\"hidden\" name=\"subop\" value=\"uploadicon\">
450 <button dojoType=\"dijit.form.Button\" onclick=\"return uploadFeedIcon();\"
451 type=\"submit\">".__('Replace')."</button>
452 <button dojoType=\"dijit.form.Button\" onclick=\"return removeFeedIcon($feed_id);\"
453 type=\"submit\">".__('Remove')."</button>
458 $title = htmlspecialchars($title, ENT_QUOTES);
460 print "<div class='dlgButtons'>
461 <div style=\"float : left\">
462 <button dojoType=\"dijit.form.Button\" onclick='return unsubscribeFeed($feed_id, \"$title\")'>".
463 __('Unsubscribe')."</button>
465 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedEditDlg').execute()\">".__('Save')."</button>
466 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedEditDlg').hide()\">".__('Cancel')."</button>
472 if ($subop == "editfeeds") {
474 $feed_ids = db_escape_string($_REQUEST["ids"]);
476 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"ids\" value=\"$feed_ids\">";
477 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-feeds\">";
478 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"batchEditSave\">";
480 print "<div class=\"dlgSec\">".__("Feed")."</div>";
481 print "<div class=\"dlgSecCont\">";
485 print "<input dojoType=\"dijit.form.ValidationTextBox\"
486 disabled=\"1\" style=\"font-size : 16px; width : 20em;\" required=\"1\"
487 name=\"title\" value=\"$title\">";
489 batch_edit_cbox("title");
495 print __('URL:') . " ";
496 print "<input dojoType=\"dijit.form.ValidationTextBox\" disabled=\"1\"
497 required=\"1\" regExp='^(http|https)://.*' style=\"width : 20em\"
498 name=\"feed_url\" value=\"$feed_url\">";
500 batch_edit_cbox("feed_url");
504 if (get_pref($link, 'ENABLE_FEED_CATS')) {
508 print __('Place in category:') . " ";
510 print_feed_cat_select($link, "cat_id", $cat_id,
511 'disabled="1" dojoType="dijit.form.Select"');
513 batch_edit_cbox("cat_id");
519 print "<div class=\"dlgSec\">".__("Update")."</div>";
520 print "<div class=\"dlgSecCont\">";
522 /* Update Interval */
524 print_select_hash("update_interval", $update_interval, $update_intervals,
525 'disabled="1" dojoType="dijit.form.Select"');
527 batch_edit_cbox("update_interval");
531 print " " . __('using') . " ";
532 print_select_hash("update_method", $update_method, $update_methods,
533 'disabled="1" dojoType="dijit.form.Select"');
534 batch_edit_cbox("update_method");
538 if (FORCE_ARTICLE_PURGE == 0) {
542 print __('Article purging:') . " ";
544 print_select_hash("purge_interval", $purge_interval, $purge_intervals,
545 'disabled="1" dojoType="dijit.form.Select"');
547 batch_edit_cbox("purge_interval");
551 print "<div class=\"dlgSec\">".__("Authentication")."</div>";
552 print "<div class=\"dlgSecCont\">";
554 print "<input dojoType=\"dijit.form.TextBox\"
555 placeHolder=\"".__("Login")."\" disabled=\"1\"
556 name=\"auth_login\" value=\"$auth_login\">";
558 batch_edit_cbox("auth_login");
560 print "<br/><input dojoType=\"dijit.form.TextBox\" type=\"password\" name=\"auth_pass\"
561 placeHolder=\"".__("Password")."\" disabled=\"1\"
562 value=\"$auth_pass\">";
564 batch_edit_cbox("auth_pass");
567 print "<div class=\"dlgSec\">".__("Options")."</div>";
568 print "<div class=\"dlgSecCont\">";
570 print "<input disabled=\"1\" type=\"checkbox\" name=\"private\" id=\"private\"
571 dojoType=\"dijit.form.CheckBox\"> <label id=\"private_l\" class='insensitive' for=\"private\">".__('Hide from Popular feeds')."</label>";
573 print " "; batch_edit_cbox("private", "private_l");
575 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"rtl_content\" name=\"rtl_content\"
576 dojoType=\"dijit.form.CheckBox\"> <label class='insensitive' id=\"rtl_content_l\" for=\"rtl_content\">".__('Right-to-left content')."</label>";
578 print " "; batch_edit_cbox("rtl_content", "rtl_content_l");
580 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"include_in_digest\"
581 name=\"include_in_digest\"
582 dojoType=\"dijit.form.CheckBox\"> <label id=\"include_in_digest_l\" class='insensitive' for=\"include_in_digest\">".__('Include in e-mail digest')."</label>";
584 print " "; batch_edit_cbox("include_in_digest", "include_in_digest_l");
586 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"always_display_enclosures\"
587 name=\"always_display_enclosures\"
588 dojoType=\"dijit.form.CheckBox\"> <label id=\"always_display_enclosures_l\" class='insensitive' for=\"always_display_enclosures\">".__('Always display image attachments')."</label>";
590 print " "; batch_edit_cbox("always_display_enclosures", "always_display_enclosures_l");
592 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"cache_images\"
593 name=\"cache_images\"
594 dojoType=\"dijit.form.CheckBox\"> <label class='insensitive' id=\"cache_images_l\"
595 for=\"cache_images\">".
596 __('Cache images locally')."</label>";
599 print " "; batch_edit_cbox("cache_images", "cache_images_l");
603 print "<div class='dlgButtons'>
604 <input type=\"submit\" class=\"button\"
605 onclick=\"return dijit.byId('feedEditDlg').execute()\"
606 value=\"".__('Save')."\">
607 <input type='submit' class='button'
608 onclick=\"return dijit.byId('feedEditDlg').hide()\"
609 value=\"".__('Cancel')."\">
615 if ($subop == "editSave" || $subop == "batchEditSave") {
617 $feed_title = db_escape_string(trim($_POST["title"]));
618 $feed_link = db_escape_string(trim($_POST["feed_url"]));
619 $upd_intl = db_escape_string($_POST["update_interval"]);
620 $purge_intl = db_escape_string($_POST["purge_interval"]);
621 $feed_id = db_escape_string($_POST["id"]); /* editSave */
622 $feed_ids = db_escape_string($_POST["ids"]); /* batchEditSave */
623 $cat_id = db_escape_string($_POST["cat_id"]);
624 $auth_login = db_escape_string(trim($_POST["auth_login"]));
625 $auth_pass = db_escape_string(trim($_POST["auth_pass"]));
626 $private = checkbox_to_sql_bool(db_escape_string($_POST["private"]));
627 $rtl_content = checkbox_to_sql_bool(db_escape_string($_POST["rtl_content"]));
628 $include_in_digest = checkbox_to_sql_bool(
629 db_escape_string($_POST["include_in_digest"]));
630 $cache_images = checkbox_to_sql_bool(
631 db_escape_string($_POST["cache_images"]));
632 $update_method = (int) db_escape_string($_POST["update_method"]);
634 $always_display_enclosures = checkbox_to_sql_bool(
635 db_escape_string($_POST["always_display_enclosures"]));
637 if (get_pref($link, 'ENABLE_FEED_CATS')) {
638 if ($cat_id && $cat_id != 0) {
639 $category_qpart = "cat_id = '$cat_id',";
640 $category_qpart_nocomma = "cat_id = '$cat_id'";
642 $category_qpart = 'cat_id = NULL,';
643 $category_qpart_nocomma = 'cat_id = NULL';
646 $category_qpart = "";
647 $category_qpart_nocomma = "";
650 if (SIMPLEPIE_CACHE_IMAGES) {
651 $cache_images_qpart = "cache_images = $cache_images,";
653 $cache_images_qpart = "";
656 if ($subop == "editSave") {
658 $result = db_query($link, "UPDATE ttrss_feeds SET
660 title = '$feed_title', feed_url = '$feed_link',
661 update_interval = '$upd_intl',
662 purge_interval = '$purge_intl',
663 auth_login = '$auth_login',
664 auth_pass = '$auth_pass',
666 rtl_content = $rtl_content,
668 include_in_digest = $include_in_digest,
669 always_display_enclosures = $always_display_enclosures,
670 update_method = '$update_method'
671 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
673 } else if ($subop == "batchEditSave") {
674 $feed_data = array();
676 foreach (array_keys($_POST) as $k) {
677 if ($k != "op" && $k != "subop" && $k != "ids") {
678 $feed_data[$k] = $_POST[$k];
682 db_query($link, "BEGIN");
684 foreach (array_keys($feed_data) as $k) {
690 $qpart = "title = '$feed_title'";
694 $qpart = "feed_url = '$feed_link'";
697 case "update_interval":
698 $qpart = "update_interval = '$upd_intl'";
701 case "purge_interval":
702 $qpart = "purge_interval = '$purge_intl'";
706 $qpart = "auth_login = '$auth_login'";
710 $qpart = "auth_pass = '$auth_pass'";
714 $qpart = "private = '$private'";
717 case "include_in_digest":
718 $qpart = "include_in_digest = '$include_in_digest'";
721 case "always_display_enclosures":
722 $qpart = "always_display_enclosures = '$always_display_enclosures'";
726 $qpart = "cache_images = '$cache_images'";
730 $qpart = "rtl_content = '$rtl_content'";
733 case "update_method":
734 $qpart = "update_method = '$update_method'";
738 $qpart = $category_qpart_nocomma;
745 "UPDATE ttrss_feeds SET $qpart WHERE id IN ($feed_ids)
746 AND owner_uid = " . $_SESSION["uid"]);
751 db_query($link, "COMMIT");
756 if ($subop == "remove") {
758 $ids = split(",", db_escape_string($_REQUEST["ids"]));
760 foreach ($ids as $id) {
761 remove_feed($link, $id, $_SESSION["uid"]);
767 if ($subop == "clear") {
768 $id = db_escape_string($_REQUEST["id"]);
769 clear_feed_articles($link, $id);
772 if ($subop == "rescore") {
773 $ids = split(",", db_escape_string($_REQUEST["ids"]));
775 foreach ($ids as $id) {
777 $filters = load_filters($link, $id, $_SESSION["uid"], 6);
779 $result = db_query($link, "SELECT
780 title, content, link, ref_id, author,".
781 SUBSTRING_FOR_DATE."(updated, 1, 19) AS updated
783 ttrss_user_entries, ttrss_entries
784 WHERE ref_id = id AND feed_id = '$id' AND
785 owner_uid = " .$_SESSION['uid']."
790 while ($line = db_fetch_assoc($result)) {
792 $tags = get_article_tags($link, $line["ref_id"]);
794 $article_filters = get_article_filters($filters, $line['title'],
795 $line['content'], $line['link'], strtotime($line['updated']),
796 $line['author'], $tags);
798 $new_score = calculate_article_score($article_filters);
800 if (!$scores[$new_score]) $scores[$new_score] = array();
802 array_push($scores[$new_score], $line['ref_id']);
805 foreach (array_keys($scores) as $s) {
807 db_query($link, "UPDATE ttrss_user_entries SET score = '$s',
809 ref_id IN (" . join(',', $scores[$s]) . ")");
810 } else if ($s < -500) {
811 db_query($link, "UPDATE ttrss_user_entries SET score = '$s',
813 ref_id IN (" . join(',', $scores[$s]) . ")");
815 db_query($link, "UPDATE ttrss_user_entries SET score = '$s' WHERE
816 ref_id IN (" . join(',', $scores[$s]) . ")");
821 print __("All done.");
825 if ($subop == "rescoreAll") {
827 $result = db_query($link,
828 "SELECT id FROM ttrss_feeds WHERE owner_uid = " . $_SESSION['uid']);
830 while ($feed_line = db_fetch_assoc($result)) {
832 $id = $feed_line["id"];
834 $filters = load_filters($link, $id, $_SESSION["uid"], 6);
836 $tmp_result = db_query($link, "SELECT
837 title, content, link, ref_id, author,".
838 SUBSTRING_FOR_DATE."(updated, 1, 19) AS updated
840 ttrss_user_entries, ttrss_entries
841 WHERE ref_id = id AND feed_id = '$id' AND
842 owner_uid = " .$_SESSION['uid']."
847 while ($line = db_fetch_assoc($tmp_result)) {
849 $tags = get_article_tags($link, $line["ref_id"]);
851 $article_filters = get_article_filters($filters, $line['title'],
852 $line['content'], $line['link'], strtotime($line['updated']),
853 $line['author'], $tags);
855 $new_score = calculate_article_score($article_filters);
857 if (!$scores[$new_score]) $scores[$new_score] = array();
859 array_push($scores[$new_score], $line['ref_id']);
862 foreach (array_keys($scores) as $s) {
864 db_query($link, "UPDATE ttrss_user_entries SET score = '$s',
866 ref_id IN (" . join(',', $scores[$s]) . ")");
868 db_query($link, "UPDATE ttrss_user_entries SET score = '$s' WHERE
869 ref_id IN (" . join(',', $scores[$s]) . ")");
874 print __("All done.");
878 if ($subop == "add") {
880 $feed_url = db_escape_string(trim($_REQUEST["feed_url"]));
881 $cat_id = db_escape_string($_REQUEST["cat_id"]);
882 $p_from = db_escape_string($_REQUEST["from"]);
884 /* only read authentication information from POST */
886 $auth_login = db_escape_string(trim($_POST["auth_login"]));
887 $auth_pass = db_escape_string(trim($_POST["auth_pass"]));
889 if ($p_from != 'tt-rss') {
892 <title>Tiny Tiny RSS</title>
893 <link rel=\"stylesheet\" type=\"text/css\" href=\"utility.css\">
896 <img class=\"floatingLogo\" src=\"images/ttrss_logo.png\"
897 alt=\"Tiny Tiny RSS\"/>
898 <h1>Subscribe to feed...</h1>";
901 $rc = subscribe_to_feed($link, $feed_url, $cat_id, $auth_login, $auth_pass);
905 print_notice(T_sprintf("Subscribed to <b>%s</b>.", $feed_url));
908 print_error(T_sprintf("Could not subscribe to <b>%s</b>.", $feed_url));
911 print_warning(T_sprintf("Already subscribed to <b>%s</b>.", $feed_url));
915 if ($p_from != 'tt-rss') {
916 $tt_uri = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER['HTTP_HOST'] . preg_replace('/backend\.php.*$/', 'tt-rss.php', $_SERVER["REQUEST_URI"]);
919 $tp_uri = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER['HTTP_HOST'] . preg_replace('/backend\.php.*$/', 'prefs.php', $_SERVER["REQUEST_URI"]);
921 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
922 feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
924 $feed_id = db_fetch_result($result, 0, "id");
929 print "<form method=\"GET\" style='display: inline'
931 <input type=\"hidden\" name=\"tab\" value=\"feedConfig\">
932 <input type=\"hidden\" name=\"subop\" value=\"editFeed\">
933 <input type=\"hidden\" name=\"subopparam\" value=\"$feed_id\">
934 <input type=\"submit\" value=\"".__("Edit subscription options")."\">
938 print "<form style='display: inline' method=\"GET\" action=\"$tt_uri\">
939 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
942 print "</body></html>";
947 if ($subop == "categorize") {
950 $ids = split(",", db_escape_string($_REQUEST["ids"]));
952 $cat_id = db_escape_string($_REQUEST["cat_id"]);
955 $cat_id_qpart = 'NULL';
957 $cat_id_qpart = "'$cat_id'";
960 db_query($link, "BEGIN");
962 foreach ($ids as $id) {
964 db_query($link, "UPDATE ttrss_feeds SET cat_id = $cat_id_qpart
966 AND owner_uid = " . $_SESSION["uid"]);
970 db_query($link, "COMMIT");
974 if ($subop == "editCats") {
976 $action = $_REQUEST["action"];
978 if ($action == "save") {
980 $cat_title = db_escape_string(trim($_REQUEST["value"]));
981 $cat_id = db_escape_string($_REQUEST["cid"]);
983 db_query($link, "BEGIN");
985 $result = db_query($link, "SELECT title FROM ttrss_feed_categories
986 WHERE id = '$cat_id' AND owner_uid = ".$_SESSION["uid"]);
988 if (db_num_rows($result) == 1) {
990 $old_title = db_fetch_result($result, 0, "title");
992 if ($cat_title != "") {
993 $result = db_query($link, "UPDATE ttrss_feed_categories SET
994 title = '$cat_title' WHERE id = '$cat_id' AND
995 owner_uid = ".$_SESSION["uid"]);
1002 print $_REQUEST["value"];
1005 db_query($link, "COMMIT");
1011 if ($action == "add") {
1013 $feed_cat = db_escape_string(trim($_REQUEST["cat"]));
1015 if (!add_feed_category($link, $feed_cat))
1016 print_warning(T_sprintf("Category <b>$%s</b> already exists in the database.", $feed_cat));
1020 if ($action == "remove") {
1022 $ids = split(",", db_escape_string($_REQUEST["ids"]));
1024 foreach ($ids as $id) {
1025 remove_feed_category($link, $id, $_SESSION["uid"]);
1029 print "<div dojoType=\"dijit.Toolbar\">
1030 <input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\" name=\"newcat\">
1031 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedCatEditDlg').addCategory()\">".
1032 __('Create category')."</button></div>";
1034 $result = db_query($link, "SELECT title,id FROM ttrss_feed_categories
1035 WHERE owner_uid = ".$_SESSION["uid"]."
1040 if (db_num_rows($result) != 0) {
1042 print "<div class=\"prefFeedCatHolder\">";
1044 # print "<form id=\"feed_cat_edit_form\" onsubmit=\"return false\">";
1046 print "<table width=\"100%\" class=\"prefFeedCatList\"
1047 cellspacing=\"0\" id=\"prefFeedCatList\">";
1051 while ($line = db_fetch_assoc($result)) {
1053 $class = ($lnum % 2) ? "even" : "odd";
1055 $cat_id = $line["id"];
1056 $this_row_id = "id=\"FCATR-$cat_id\"";
1058 print "<tr class=\"\" $this_row_id>";
1060 $edit_title = htmlspecialchars($line["title"]);
1062 print "<td width='5%' align='center'><input
1063 onclick='toggleSelectRow2(this);' dojoType=\"dijit.form.CheckBox\"
1064 type=\"checkbox\" id=\"FCCHK-$cat_id\"></td>";
1068 # print "<span id=\"FCATT-$cat_id\">" .
1069 # $edit_title . "</span>";
1071 print "<span dojoType=\"dijit.InlineEditBox\"
1072 width=\"300px\" autoSave=\"false\"
1073 cat-id=\"$cat_id\">" . $edit_title .
1074 "<script type=\"dojo/method\" event=\"onChange\" args=\"item\">
1078 content: {op: 'pref-feeds', subop: 'editCats',
1081 cid: this.srcNodeRef.getAttribute('cat-id')},
1082 load: function(response) {
1083 elem.attr('value', response);
1102 print "<p>".__('No feed categories defined.')."</p>";
1105 print "<div class='dlgButtons'>
1106 <div style='float : left'>
1107 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedCatEditDlg').removeSelected()\">".
1108 __('Remove selected categories')."</button>
1111 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedCatEditDlg').hide()\">".
1112 __('Close this window')."</button></div>";
1120 print "<div dojoType=\"dijit.layout.AccordionContainer\" region=\"center\">";
1121 print "<div id=\"pref-feeds-feeds\" dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Feeds')."\">";
1123 $result = db_query($link, "SELECT COUNT(id) AS num_errors
1124 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
1126 $num_errors = db_fetch_result($result, 0, "num_errors");
1128 if ($num_errors > 0) {
1130 $error_button = "<button dojoType=\"dijit.form.Button\"
1131 onclick=\"showFeedsWithErrors\" id=\"errorButton\">" .
1132 __("Feeds with errors") . "</button>";
1134 // print format_notice("<a href=\"javascript:showFeedsWithErrors()\">".
1135 // __('Some feeds have update errors (click for details)')."</a>");
1138 $feed_search = db_escape_string($_REQUEST["search"]);
1140 if (array_key_exists("search", $_REQUEST)) {
1141 $_SESSION["prefs_feed_search"] = $feed_search;
1143 $feed_search = $_SESSION["prefs_feed_search"];
1146 print "<div dojoType=\"dijit.Toolbar\">";
1149 print "<div style='float : right'>
1150 <input id=\"feed_search\" size=\"20\" type=\"search\"
1151 onfocus=\"disableHotkeys();\"
1152 onblur=\"enableHotkeys();\"
1153 onchange=\"updateFeedList()\" value=\"$feed_search\">
1154 <button onclick=\"updateFeedList()\">".
1155 __('Search')."</button>
1158 print "<div dojoType=\"dijit.form.DropDownButton\">".
1159 "<span>" . __('Select')."</span>";
1160 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1161 print "<div onclick=\"dijit.byId('feedTree').model.setAllChecked(true)\"
1162 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
1163 print "<div onclick=\"dijit.byId('feedTree').model.setAllChecked(false)\"
1164 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
1165 print "</div></div>";
1167 print "<div dojoType=\"dijit.form.DropDownButton\">".
1168 "<span>" . __('Feeds')."</span>";
1169 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1170 print "<div onclick=\"quickAddFeed()\"
1171 dojoType=\"dijit.MenuItem\">".__('Subscribe to feed')."</div>";
1172 print "<div onclick=\"editSelectedFeed()\"
1173 dojoType=\"dijit.MenuItem\">".__('Edit selected feeds')."</div>";
1174 print "<div onclick=\"resetFeedOrder()\"
1175 dojoType=\"dijit.MenuItem\">".__('Reset sort order')."</div>";
1176 print "</div></div>";
1178 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1179 print "<div dojoType=\"dijit.form.DropDownButton\">".
1180 "<span>" . __('Categories')."</span>";
1181 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1182 print "<div onclick=\"editFeedCats()\"
1183 dojoType=\"dijit.MenuItem\">".__('Edit categories')."</div>";
1184 print "<div onclick=\"resetCatOrder()\"
1185 dojoType=\"dijit.MenuItem\">".__('Reset sort order')."</div>";
1186 print "</div></div>";
1190 print $error_button;
1192 print "<button dojoType=\"dijit.form.Button\" onclick=\"removeSelectedFeeds()\">"
1193 .__('Unsubscribe')."</button dojoType=\"dijit.form.Button\"> ";
1195 if (defined('_ENABLE_FEED_DEBUGGING')) {
1197 print "<select id=\"feedActionChooser\" onchange=\"feedActionChange()\">
1198 <option value=\"facDefault\" selected>".__('More actions...')."</option>";
1200 if (FORCE_ARTICLE_PURGE == 0) {
1202 "<option value=\"facPurge\">".__('Manual purge')."</option>";
1206 <option value=\"facClear\">".__('Clear feed data')."</option>
1207 <option value=\"facRescore\">".__('Rescore articles')."</option>";
1213 print "</div>"; # toolbar
1215 print "<div id=\"feedlistLoading\">
1216 <img src='images/indicator_tiny.gif'>".
1217 __("Loading, please wait...")."</div>";
1219 print "<div dojoType=\"fox.PrefFeedStore\" jsId=\"feedStore\"
1220 url=\"backend.php?op=pref-feeds&subop=getfeedtree\">
1222 <div dojoType=\"lib.CheckBoxStoreModel\" jsId=\"feedModel\" store=\"feedStore\"
1223 query=\"{id:'root'}\" rootId=\"root\" rootLabel=\"Feeds\"
1224 childrenAttrs=\"items\" checkboxStrict=\"false\" checkboxAll=\"false\">
1226 <div dojoType=\"fox.PrefFeedTree\" id=\"feedTree\"
1227 dndController=\"dijit.tree.dndSource\"
1228 betweenThreshold=\"5\"
1229 model=\"feedModel\" openOnClick=\"false\">
1230 <script type=\"dojo/method\" event=\"onClick\" args=\"item\">
1231 var id = String(item.id);
1232 var bare_id = id.substr(id.indexOf(':')+1);
1234 if (id.match('FEED:')) {
1235 editFeed(bare_id, event);
1236 } else if (id.match('CAT:')) {
1237 editCat(bare_id, item, event);
1240 <script type=\"dojo/method\" event=\"onLoad\" args=\"item\">
1241 Element.hide(\"feedlistLoading\");
1245 print "<div dojoType=\"dijit.Tooltip\" connectId=\"feedTree\" position=\"below\">
1246 <b>Hint:</b> you can drag feeds and categories around.
1249 print "</div>"; # feeds pane
1251 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('OPML')."\">";
1253 print "<p>" . __("Using OPML you can export and import your feeds and Tiny Tiny RSS settings.");
1255 print "<div class=\"insensitive\">" . __("Note: Only main settings profile can be migrated using OPML.") . "</div>";
1259 print "<iframe name=\"upload_iframe\"
1260 style=\"width: 400px; height: 100px; display: none;\"></iframe>";
1262 print "<div style='float : left'>";
1263 print "<form style='display : block' target=\"upload_iframe\"
1264 enctype=\"multipart/form-data\" method=\"POST\"
1265 action=\"backend.php\">
1266 <input id=\"opml_file\" name=\"opml_file\" type=\"file\">
1267 <input type=\"hidden\" name=\"op\" value=\"dlg\">
1268 <input type=\"hidden\" name=\"id\" value=\"importOpml\">
1269 <button onclick=\"return opmlImport();\"
1270 type=\"submit\">".__('Import')."</button>
1272 print "</div> ";
1274 print "<button onclick=\"gotoExportOpml()\">".__('Export OPML')."</button>";
1276 print "<p>".__('Your OPML can be published publicly and can be subscribed by anyone who knows the URL below.');
1278 print "<div class=\"insensitive\">" . __("Note: Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds.") . "</div>" . "</p>";
1280 print "<button onclick=\"return displayDlg('pubOPMLUrl')\">".
1281 __('Display URL')."</button> ";
1284 print "</div>"; # pane
1286 if (strpos($_SERVER['HTTP_USER_AGENT'], "Firefox") !== false) {
1288 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Firefox integration')."\">";
1290 print "<p>" . __('This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below.') . "</p>";
1294 print "<button onclick='window.navigator.registerContentHandler(" .
1295 "\"application/vnd.mozilla.maybe.feed\", " .
1296 "\"" . add_feed_url() . "\", " . " \"Tiny Tiny RSS\")'>" .
1297 __('Click here to register this site as a feed reader.') .
1302 print "</div>"; # pane
1305 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Subscribing using bookmarklet')."\">";
1307 print "<p>" . __("Drag the link below to your browser toolbar, open the feed you're interested in in your browser and click on the link to subscribe to it.") . "</p>";
1309 $bm_subscribe_url = str_replace('%s', '', add_feed_url());
1311 $confirm_str = __('Subscribe to %s in Tiny Tiny RSS?');
1313 $bm_url = htmlspecialchars("javascript:{if(confirm('$confirm_str'.replace('%s',window.location.href)))window.location.href='$bm_subscribe_url'+window.location.href}");
1315 print "<a href=\"$bm_url\" class='visibleLink'>" . __('Subscribe in Tiny Tiny RSS'). "</a>";
1317 print "</div>"; #pane
1319 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Published articles and generated feeds')."\">";
1321 print "<p>".__('Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below.')."</p>";
1323 $rss_url = '-2::' . htmlspecialchars(get_self_url_prefix() .
1324 "/backend.php?op=rss&id=-2&view-mode=all_articles");;
1326 print "<button onclick=\"return displayDlg('generatedFeed', '$rss_url')\">".
1327 __('Display URL')."</button> ";
1329 print "<button onclick=\"return clearFeedAccessKeys()\">".
1330 __('Clear all generated URLs')."</button> ";
1332 print "</div>"; #pane
1333 print "</div>"; #container
1337 function print_feed_browser($link, $search, $limit, $mode = 1) {
1339 $owner_uid = $_SESSION["uid"];
1342 $search_qpart = "AND (UPPER(feed_url) LIKE UPPER('%$search%') OR
1343 UPPER(title) LIKE UPPER('%$search%'))";
1349 $result = db_query($link, "SELECT feed_url, subscribers FROM
1350 ttrss_feedbrowser_cache WHERE (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf
1351 WHERE tf.feed_url = ttrss_feedbrowser_cache.feed_url
1352 AND owner_uid = '$owner_uid') $search_qpart
1353 ORDER BY subscribers DESC LIMIT $limit");
1354 } else if ($mode == 2) {
1355 $result = db_query($link, "SELECT *,
1356 (SELECT COUNT(*) FROM ttrss_user_entries WHERE
1357 orig_feed_id = ttrss_archived_feeds.id) AS articles_archived
1359 ttrss_archived_feeds
1361 (SELECT COUNT(*) FROM ttrss_feeds
1362 WHERE ttrss_feeds.feed_url = ttrss_archived_feeds.feed_url AND
1363 owner_uid = '$owner_uid') = 0 AND
1364 owner_uid = '$owner_uid' $search_qpart
1365 ORDER BY id DESC LIMIT $limit");
1370 while ($line = db_fetch_assoc($result)) {
1374 $feed_url = $line["feed_url"];
1375 $subscribers = $line["subscribers"];
1377 $det_result = db_query($link, "SELECT site_url,title,id
1378 FROM ttrss_feeds WHERE feed_url = '$feed_url' LIMIT 1");
1380 $details = db_fetch_assoc($det_result);
1382 $icon_file = ICONS_DIR . "/" . $details["id"] . ".ico";
1384 if (file_exists($icon_file) && filesize($icon_file) > 0) {
1385 $feed_icon = "<img style=\"vertical-align : middle\" class=\"tinyFeedIcon\" src=\"" . ICONS_URL .
1386 "/".$details["id"].".ico\">";
1388 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
1391 $check_box = "<input onclick='toggleSelectListRow2(this)'
1392 dojoType=\"dijit.form.CheckBox\"
1393 type=\"checkbox\" \">";
1395 $class = ($feedctr % 2) ? "even" : "odd";
1397 $feed_url = htmlspecialchars($line["feed_url"]);
1399 if ($details["site_url"]) {
1400 $site_url = "<a target=\"_blank\" href=\"".
1401 htmlspecialchars($details["site_url"])."\">
1402 <img style='border-width : 0px' src='images/www.png' alt='www'></a>";
1407 $feed_url = "<a target=\"_blank\" href=\"$feed_url\"><img
1408 style='border-width : 0px; vertical-align : middle'
1409 src='images/feed-icon-12x12.png'></a>";
1411 print "<li title=\"".htmlspecialchars($details["site_url"])."\"
1412 id=\"FBROW-".$details["id"]."\">$check_box".
1413 "$feed_icon $feed_url " . htmlspecialchars($details["title"]) .
1414 " <span class='subscribers'>($subscribers)</span>
1417 } else if ($mode == 2) {
1418 $feed_url = htmlspecialchars($line["feed_url"]);
1419 $site_url = htmlspecialchars($line["site_url"]);
1420 $title = htmlspecialchars($line["title"]);
1422 $icon_file = ICONS_DIR . "/" . $line["id"] . ".ico";
1424 if (file_exists($icon_file) && filesize($icon_file) > 0) {
1425 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"" . ICONS_URL .
1426 "/".$line["id"].".ico\">";
1428 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
1431 $check_box = "<input onclick='toggleSelectListRow2(this)' dojoType=\"dijit.form.CheckBox\"
1432 type=\"checkbox\">";
1434 $class = ($feedctr % 2) ? "even" : "odd";
1436 if ($line['articles_archived'] > 0) {
1437 $archived = sprintf(__("%d archived articles"), $line['articles_archived']);
1438 $archived = " <span class='subscribers'>($archived)</span>";
1443 if ($line["site_url"]) {
1444 $site_url = "<a target=\"_blank\" href=\"$site_url\">
1445 <img style='border-width : 0px' src='images/www.png' alt='www'></a>";
1450 $feed_url = "<a target=\"_blank\" href=\"$feed_url\"><img
1451 style='border-width : 0px; vertical-align : middle'
1452 src='images/feed-icon-12x12.png'></a>";
1454 print "<li title='".$line['site_url']."' class='$class'
1455 id=\"FBROW-".$line["id"]."\">".
1456 $check_box . "$feed_icon $feed_url " . $title .
1457 $archived . $site_url . "</li>";
1465 if ($feedctr == 0) {
1466 print "<li style=\"text-align : center\"><p>".__('No feeds found.')."</p></li>";