2 class Pref_Feeds extends Handler_Protected {
3 public static $feed_languages = array("English", "Danish", "Dutch", "Finnish", "French", "German", "Hungarian", "Italian", "Norwegian",
4 "Portuguese", "Russian", "Spanish", "Swedish", "Turkish", "Simple");
6 function csrf_ignore($method) {
7 $csrf_ignored = array("index", "getfeedtree", "add", "editcats", "editfeed",
8 "savefeedorder", "uploadicon", "feedswitherrors", "inactivefeeds",
11 return array_search($method, $csrf_ignored) !== false;
14 function batch_edit_cbox($elem, $label = false) {
15 print "<input type=\"checkbox\" title=\"".__("Check to enable field")."\"
16 onchange=\"dijit.byId('feedEditDlg').toggleField(this, '$elem', '$label')\">";
19 function renamecat() {
20 $title = $this->dbh->escape_string($_REQUEST['title']);
21 $id = $this->dbh->escape_string($_REQUEST['id']);
24 $this->dbh->query("UPDATE ttrss_feed_categories SET
25 title = '$title' WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
30 private function get_category_items($cat_id) {
32 if ($_REQUEST['mode'] != 2)
33 $search = $_SESSION["prefs_feed_search"];
37 if ($search) $search_qpart = " AND (LOWER(title) LIKE LOWER('%$search%') OR LOWER(feed_url) LIKE LOWER('%$search%'))";
39 // first one is set by API
40 $show_empty_cats = $_REQUEST['force_show_empty'] ||
41 ($_REQUEST['mode'] != 2 && !$search);
45 $result = $this->dbh->query("SELECT id, title FROM ttrss_feed_categories
46 WHERE owner_uid = " . $_SESSION["uid"] . " AND parent_cat = '$cat_id' ORDER BY order_id, title");
48 while ($line = $this->dbh->fetch_assoc($result)) {
51 $cat['id'] = 'CAT:' . $line['id'];
52 $cat['bare_id'] = (int)$line['id'];
53 $cat['name'] = $line['title'];
54 $cat['items'] = array();
55 $cat['checkbox'] = false;
56 $cat['type'] = 'category';
58 $cat['child_unread'] = 0;
59 $cat['auxcounter'] = 0;
60 $cat['parent_id'] = $cat_id;
62 $cat['items'] = $this->get_category_items($line['id']);
64 $num_children = $this->calculate_children_count($cat);
65 $cat['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', (int) $num_children), $num_children);
67 if ($num_children > 0 || $show_empty_cats)
68 array_push($items, $cat);
72 $feed_result = $this->dbh->query("SELECT id, title, last_error,
73 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
75 WHERE cat_id = '$cat_id' AND owner_uid = ".$_SESSION["uid"].
76 "$search_qpart ORDER BY order_id, title");
78 while ($feed_line = $this->dbh->fetch_assoc($feed_result)) {
80 $feed['id'] = 'FEED:' . $feed_line['id'];
81 $feed['bare_id'] = (int)$feed_line['id'];
82 $feed['auxcounter'] = 0;
83 $feed['name'] = $feed_line['title'];
84 $feed['checkbox'] = false;
86 $feed['error'] = $feed_line['last_error'];
87 $feed['icon'] = Feeds::getFeedIcon($feed_line['id']);
88 $feed['param'] = make_local_datetime(
89 $feed_line['last_updated'], true);
91 array_push($items, $feed);
97 function getfeedtree() {
98 print json_encode($this->makefeedtree());
101 function makefeedtree() {
103 if ($_REQUEST['mode'] != 2)
104 $search = $_SESSION["prefs_feed_search"];
108 if ($search) $search_qpart = " AND LOWER(title) LIKE LOWER('%$search%')";
111 $root['id'] = 'root';
112 $root['name'] = __('Feeds');
113 $root['items'] = array();
114 $root['type'] = 'category';
116 $enable_cats = get_pref('ENABLE_FEED_CATS');
118 if ($_REQUEST['mode'] == 2) {
121 $cat = $this->feedlist_init_cat(-1);
123 $cat['items'] = array();
126 foreach (array(-4, -3, -1, -2, 0, -6) as $i) {
127 array_push($cat['items'], $this->feedlist_init_feed($i));
130 /* Plugin feeds for -1 */
132 $feeds = PluginHost::getInstance()->get_feeds(-1);
135 foreach ($feeds as $feed) {
136 $feed_id = PluginHost::pfeed_to_feed_id($feed['id']);
139 $item['id'] = 'FEED:' . $feed_id;
140 $item['bare_id'] = (int)$feed_id;
141 $item['auxcounter'] = 0;
142 $item['name'] = $feed['title'];
143 $item['checkbox'] = false;
145 $item['icon'] = $feed['icon'];
148 $item['unread'] = 0; //$feed['sender']->get_unread($feed['id']);
149 $item['type'] = 'feed';
151 array_push($cat['items'], $item);
156 array_push($root['items'], $cat);
158 $root['items'] = array_merge($root['items'], $cat['items']);
161 $result = $this->dbh->query("SELECT * FROM
162 ttrss_labels2 WHERE owner_uid = ".$_SESSION['uid']." ORDER by caption");
164 if ($this->dbh->num_rows($result) > 0) {
166 if (get_pref('ENABLE_FEED_CATS')) {
167 $cat = $this->feedlist_init_cat(-2);
169 $cat['items'] = array();
172 while ($line = $this->dbh->fetch_assoc($result)) {
174 $label_id = Labels::label_to_feed_id($line['id']);
176 $feed = $this->feedlist_init_feed($label_id, false, 0);
178 $feed['fg_color'] = $line['fg_color'];
179 $feed['bg_color'] = $line['bg_color'];
181 array_push($cat['items'], $feed);
185 array_push($root['items'], $cat);
187 $root['items'] = array_merge($root['items'], $cat['items']);
193 $show_empty_cats = $_REQUEST['force_show_empty'] ||
194 ($_REQUEST['mode'] != 2 && !$search);
196 $result = $this->dbh->query("SELECT id, title FROM ttrss_feed_categories
197 WHERE owner_uid = " . $_SESSION["uid"] . " AND parent_cat IS NULL ORDER BY order_id, title");
199 while ($line = $this->dbh->fetch_assoc($result)) {
201 $cat['id'] = 'CAT:' . $line['id'];
202 $cat['bare_id'] = (int)$line['id'];
203 $cat['auxcounter'] = 0;
204 $cat['name'] = $line['title'];
205 $cat['items'] = array();
206 $cat['checkbox'] = false;
207 $cat['type'] = 'category';
209 $cat['child_unread'] = 0;
211 $cat['items'] = $this->get_category_items($line['id']);
213 $num_children = $this->calculate_children_count($cat);
214 $cat['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', (int) $num_children), $num_children);
216 if ($num_children > 0 || $show_empty_cats)
217 array_push($root['items'], $cat);
219 $root['param'] += count($cat['items']);
222 /* Uncategorized is a special case */
225 $cat['id'] = 'CAT:0';
227 $cat['auxcounter'] = 0;
228 $cat['name'] = __("Uncategorized");
229 $cat['items'] = array();
230 $cat['type'] = 'category';
231 $cat['checkbox'] = false;
233 $cat['child_unread'] = 0;
235 $feed_result = $this->dbh->query("SELECT id, title,last_error,
236 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
238 WHERE cat_id IS NULL AND owner_uid = ".$_SESSION["uid"].
239 "$search_qpart ORDER BY order_id, title");
241 while ($feed_line = $this->dbh->fetch_assoc($feed_result)) {
243 $feed['id'] = 'FEED:' . $feed_line['id'];
244 $feed['bare_id'] = (int)$feed_line['id'];
245 $feed['auxcounter'] = 0;
246 $feed['name'] = $feed_line['title'];
247 $feed['checkbox'] = false;
248 $feed['error'] = $feed_line['last_error'];
249 $feed['icon'] = Feeds::getFeedIcon($feed_line['id']);
250 $feed['param'] = make_local_datetime(
251 $feed_line['last_updated'], true);
253 $feed['type'] = 'feed';
255 array_push($cat['items'], $feed);
258 $cat['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));
260 if (count($cat['items']) > 0 || $show_empty_cats)
261 array_push($root['items'], $cat);
263 $num_children = $this->calculate_children_count($root);
264 $root['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', (int) $num_children), $num_children);
267 $feed_result = $this->dbh->query("SELECT id, title, last_error,
268 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
270 WHERE owner_uid = ".$_SESSION["uid"].
271 "$search_qpart ORDER BY order_id, title");
273 while ($feed_line = $this->dbh->fetch_assoc($feed_result)) {
275 $feed['id'] = 'FEED:' . $feed_line['id'];
276 $feed['bare_id'] = (int)$feed_line['id'];
277 $feed['auxcounter'] = 0;
278 $feed['name'] = $feed_line['title'];
279 $feed['checkbox'] = false;
280 $feed['error'] = $feed_line['last_error'];
281 $feed['icon'] = Feeds::getFeedIcon($feed_line['id']);
282 $feed['param'] = make_local_datetime(
283 $feed_line['last_updated'], true);
285 $feed['type'] = 'feed';
287 array_push($root['items'], $feed);
290 $root['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));
294 $fl['identifier'] = 'id';
295 $fl['label'] = 'name';
297 if ($_REQUEST['mode'] != 2) {
298 $fl['items'] = array($root);
300 $fl['items'] = $root['items'];
306 function catsortreset() {
307 $this->dbh->query("UPDATE ttrss_feed_categories
308 SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"]);
312 function feedsortreset() {
313 $this->dbh->query("UPDATE ttrss_feeds
314 SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"]);
318 private function process_category_order(&$data_map, $item_id, $parent_id = false, $nest_level = 0) {
319 $debug = isset($_REQUEST["debug"]);
322 for ($i = 0; $i < $nest_level; $i++)
325 if ($debug) _debug("$prefix C: $item_id P: $parent_id");
327 $bare_item_id = $this->dbh->escape_string(substr($item_id, strpos($item_id, ':')+1));
329 if ($item_id != 'root') {
330 if ($parent_id && $parent_id != 'root') {
331 $parent_bare_id = substr($parent_id, strpos($parent_id, ':')+1);
332 $parent_qpart = $this->dbh->escape_string($parent_bare_id);
334 $parent_qpart = 'NULL';
337 $this->dbh->query("UPDATE ttrss_feed_categories
338 SET parent_cat = $parent_qpart WHERE id = '$bare_item_id' AND
339 owner_uid = " . $_SESSION["uid"]);
344 $cat = $data_map[$item_id];
346 if ($cat && is_array($cat)) {
347 foreach ($cat as $item) {
348 $id = $item['_reference'];
349 $bare_id = $this->dbh->escape_string(substr($id, strpos($id, ':')+1));
351 if ($debug) _debug("$prefix [$order_id] $id/$bare_id");
353 if ($item['_reference']) {
355 if (strpos($id, "FEED") === 0) {
357 $cat_id = ($item_id != "root") ?
358 $this->dbh->escape_string($bare_item_id) : "NULL";
360 $cat_qpart = ($cat_id != 0) ? "cat_id = '$cat_id'" :
363 $this->dbh->query("UPDATE ttrss_feeds
364 SET order_id = $order_id, $cat_qpart
365 WHERE id = '$bare_id' AND
366 owner_uid = " . $_SESSION["uid"]);
368 } else if (strpos($id, "CAT:") === 0) {
369 $this->process_category_order($data_map, $item['_reference'], $item_id,
372 if ($item_id != 'root') {
373 $parent_qpart = $this->dbh->escape_string($bare_id);
375 $parent_qpart = 'NULL';
378 $this->dbh->query("UPDATE ttrss_feed_categories
379 SET order_id = '$order_id' WHERE id = '$bare_id' AND
380 owner_uid = " . $_SESSION["uid"]);
389 function savefeedorder() {
390 $data = json_decode($_POST['payload'], true);
392 #file_put_contents("/tmp/saveorder.json", $_POST['payload']);
393 #$data = json_decode(file_get_contents("/tmp/saveorder.json"), true);
395 if (!is_array($data['items']))
396 $data['items'] = json_decode($data['items'], true);
398 # print_r($data['items']);
400 if (is_array($data) && is_array($data['items'])) {
406 foreach ($data['items'] as $item) {
408 # if ($item['id'] != 'root') {
409 if (is_array($item['items'])) {
410 if (isset($item['items']['_reference'])) {
411 $data_map[$item['id']] = array($item['items']);
413 $data_map[$item['id']] = $item['items'];
416 if ($item['id'] == 'root') {
417 $root_item = $item['id'];
421 $this->process_category_order($data_map, $root_item);
423 /* foreach ($data['items'][0]['items'] as $item) {
424 $id = $item['_reference'];
425 $bare_id = substr($id, strpos($id, ':')+1);
430 $this->dbh->query("UPDATE ttrss_feed_categories
431 SET order_id = '$cat_order_id' WHERE id = '$bare_id' AND
432 owner_uid = " . $_SESSION["uid"]);
437 if (is_array($data_map[$id])) {
438 foreach ($data_map[$id] as $feed) {
439 $id = $feed['_reference'];
440 $feed_id = substr($id, strpos($id, ':')+1);
443 $cat_query = "cat_id = '$bare_id'";
445 $cat_query = "cat_id = NULL";
447 $this->dbh->query("UPDATE ttrss_feeds
448 SET order_id = '$feed_order_id',
450 WHERE id = '$feed_id' AND
451 owner_uid = " . $_SESSION["uid"]);
462 function removeicon() {
463 $feed_id = $this->dbh->escape_string($_REQUEST["feed_id"]);
465 $result = $this->dbh->query("SELECT id FROM ttrss_feeds
466 WHERE id = '$feed_id' AND owner_uid = ". $_SESSION["uid"]);
468 if ($this->dbh->num_rows($result) != 0) {
469 @unlink(ICONS_DIR . "/$feed_id.ico");
471 $this->dbh->query("UPDATE ttrss_feeds SET favicon_avg_color = NULL
472 where id = '$feed_id'");
478 function uploadicon() {
479 header("Content-type: text/html");
483 if (is_uploaded_file($_FILES['icon_file']['tmp_name'])) {
484 $tmp_file = tempnam(CACHE_DIR . '/upload', 'icon');
486 $result = move_uploaded_file($_FILES['icon_file']['tmp_name'],
496 $icon_file = $tmp_file;
497 $feed_id = $this->dbh->escape_string($_REQUEST["feed_id"]);
499 if (is_file($icon_file) && $feed_id) {
500 if (filesize($icon_file) < 65535) {
502 $result = $this->dbh->query("SELECT id FROM ttrss_feeds
503 WHERE id = '$feed_id' AND owner_uid = ". $_SESSION["uid"]);
505 if ($this->dbh->num_rows($result) != 0) {
506 @unlink(ICONS_DIR . "/$feed_id.ico");
507 if (rename($icon_file, ICONS_DIR . "/$feed_id.ico")) {
508 $this->dbh->query("UPDATE ttrss_feeds SET
509 favicon_avg_color = ''
510 WHERE id = '$feed_id'");
526 print "<script type=\"text/javascript\">";
527 print "parent.uploadIconHandler($rc);";
532 function editfeed() {
533 global $purge_intervals;
534 global $update_intervals;
536 print '<div dojoType="dijit.layout.TabContainer" style="height : 450px">
537 <div dojoType="dijit.layout.ContentPane" title="'.__('General').'">';
539 $feed_id = $this->dbh->escape_string($_REQUEST["id"]);
541 $result = $this->dbh->query(
542 "SELECT * FROM ttrss_feeds WHERE id = '$feed_id' AND
543 owner_uid = " . $_SESSION["uid"]);
545 $auth_pass_encrypted = sql_bool_to_bool($this->dbh->fetch_result($result, 0,
546 "auth_pass_encrypted"));
548 $title = htmlspecialchars($this->dbh->fetch_result($result,
551 print_hidden("id", "$feed_id");
552 print_hidden("op", "pref-feeds");
553 print_hidden("method", "editSave");
555 print "<div class=\"dlgSec\">".__("Feed")."</div>";
556 print "<div class=\"dlgSecCont\">";
560 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\"
561 placeHolder=\"".__("Feed Title")."\"
562 style=\"font-size : 16px; width: 20em\" name=\"title\" value=\"$title\">";
566 $feed_url = $this->dbh->fetch_result($result, 0, "feed_url");
567 $feed_url = htmlspecialchars($this->dbh->fetch_result($result,
572 print __('URL:') . " ";
573 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\"
574 placeHolder=\"".__("Feed URL")."\"
575 regExp='^(http|https)://.*' style=\"width : 20em\"
576 name=\"feed_url\" value=\"$feed_url\">";
578 $last_error = $this->dbh->fetch_result($result, 0, "last_error");
581 print " <img src=\"images/error.png\" alt=\"(error)\"
582 style=\"vertical-align : middle\"
583 title=\"".htmlspecialchars($last_error)."\">";
589 if (get_pref('ENABLE_FEED_CATS')) {
591 $cat_id = $this->dbh->fetch_result($result, 0, "cat_id");
595 print __('Place in category:') . " ";
597 print_feed_cat_select("cat_id", $cat_id,
598 'dojoType="dijit.form.Select"');
601 /* FTS Stemming Language */
603 if (DB_TYPE == "pgsql") {
604 $feed_language = $this->dbh->fetch_result($result, 0, "feed_language");
608 print __('Language:') . " ";
609 print_select("feed_language", $feed_language, $this::$feed_languages,
610 'dojoType="dijit.form.Select"');
615 print "<div class=\"dlgSec\">".__("Update")."</div>";
616 print "<div class=\"dlgSecCont\">";
618 /* Update Interval */
620 $update_interval = $this->dbh->fetch_result($result, 0, "update_interval");
622 print_select_hash("update_interval", $update_interval, $update_intervals,
623 'dojoType="dijit.form.Select"');
627 $purge_interval = $this->dbh->fetch_result($result, 0, "purge_interval");
630 print __('Article purging:') . " ";
632 print_select_hash("purge_interval", $purge_interval, $purge_intervals,
633 'dojoType="dijit.form.Select" ' .
634 ((FORCE_ARTICLE_PURGE == 0) ? "" : 'disabled="1"'));
638 $auth_login = htmlspecialchars($this->dbh->fetch_result($result, 0, "auth_login"));
639 $auth_pass = $this->dbh->fetch_result($result, 0, "auth_pass");
641 if ($auth_pass_encrypted && function_exists("mcrypt_decrypt")) {
642 require_once "crypt.php";
643 $auth_pass = decrypt_string($auth_pass);
646 $auth_pass = htmlspecialchars($auth_pass);
647 $auth_enabled = $auth_login !== '' || $auth_pass !== '';
649 $auth_style = $auth_enabled ? '' : 'display: none';
650 print "<div id='feedEditDlg_loginContainer' style='$auth_style'>";
651 print "<div class=\"dlgSec\">".__("Authentication")."</div>";
652 print "<div class=\"dlgSecCont\">";
654 print "<input dojoType=\"dijit.form.TextBox\" id=\"feedEditDlg_login\"
655 placeHolder=\"".__("Login")."\"
656 autocomplete=\"new-password\"
657 name=\"auth_login\" value=\"$auth_login\"><hr/>";
660 print "<input dojoType=\"dijit.form.TextBox\" type=\"password\" name=\"auth_pass\"
661 autocomplete=\"new-password\"
662 placeHolder=\"".__("Password")."\"
663 value=\"$auth_pass\">";
665 print "<div dojoType=\"dijit.Tooltip\" connectId=\"feedEditDlg_login\" position=\"below\">
666 ".__('<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds.')."
669 print "</div></div>";
671 $auth_checked = $auth_enabled ? 'checked' : '';
672 print "<div style=\"clear : both\">
673 <input type=\"checkbox\" $auth_checked name=\"need_auth\" dojoType=\"dijit.form.CheckBox\" id=\"feedEditDlg_loginCheck\"
674 onclick='checkboxToggleElement(this, \"feedEditDlg_loginContainer\")'>
675 <label for=\"feedEditDlg_loginCheck\">".
676 __('This feed requires authentication.')."</div>";
678 print '</div><div dojoType="dijit.layout.ContentPane" title="'.__('Options').'">';
680 //print "<div class=\"dlgSec\">".__("Options")."</div>";
681 print "<div class=\"dlgSecSimple\">";
683 $private = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "private"));
686 $checked = "checked=\"1\"";
691 print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"private\" id=\"private\"
692 $checked> <label for=\"private\">".__('Hide from Popular feeds')."</label>";
694 $include_in_digest = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "include_in_digest"));
696 if ($include_in_digest) {
697 $checked = "checked=\"1\"";
702 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"include_in_digest\"
703 name=\"include_in_digest\"
704 $checked> <label for=\"include_in_digest\">".__('Include in e-mail digest')."</label>";
707 $always_display_enclosures = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "always_display_enclosures"));
709 if ($always_display_enclosures) {
710 $checked = "checked";
715 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"always_display_enclosures\"
716 name=\"always_display_enclosures\"
717 $checked> <label for=\"always_display_enclosures\">".__('Always display image attachments')."</label>";
719 $hide_images = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "hide_images"));
722 $checked = "checked=\"1\"";
727 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"hide_images\"
729 $checked> <label for=\"hide_images\">".
730 __('Do not embed images')."</label>";
732 $cache_images = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "cache_images"));
735 $checked = "checked=\"1\"";
740 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"cache_images\"
741 name=\"cache_images\"
742 $checked> <label for=\"cache_images\">".
743 __('Cache media')."</label>";
745 $mark_unread_on_update = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "mark_unread_on_update"));
747 if ($mark_unread_on_update) {
748 $checked = "checked";
753 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"mark_unread_on_update\"
754 name=\"mark_unread_on_update\"
755 $checked> <label for=\"mark_unread_on_update\">".__('Mark updated articles as unread')."</label>";
759 print '</div><div dojoType="dijit.layout.ContentPane" title="'.__('Icon').'">';
763 print "<div class=\"dlgSecSimple\">";
765 print "<iframe name=\"icon_upload_iframe\"
766 style=\"width: 400px; height: 100px; display: none;\"></iframe>";
768 print "<form style='display : block' target=\"icon_upload_iframe\"
769 enctype=\"multipart/form-data\" method=\"POST\"
770 action=\"backend.php\">
771 <input id=\"icon_file\" size=\"10\" name=\"icon_file\" type=\"file\">
772 <input type=\"hidden\" name=\"op\" value=\"pref-feeds\">
773 <input type=\"hidden\" name=\"feed_id\" value=\"$feed_id\">
774 <input type=\"hidden\" name=\"method\" value=\"uploadicon\"><p>
775 <button class=\"\" dojoType=\"dijit.form.Button\" onclick=\"return uploadFeedIcon();\"
776 type=\"submit\">".__('Replace')."</button>
777 <button class=\"\" dojoType=\"dijit.form.Button\" onclick=\"return removeFeedIcon($feed_id);\"
778 type=\"submit\">".__('Remove')."</button>
783 print '</div><div dojoType="dijit.layout.ContentPane" title="'.__('Plugins').'">';
785 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_EDIT_FEED,
786 "hook_prefs_edit_feed", $feed_id);
789 print "</div></div>";
791 $title = htmlspecialchars($title, ENT_QUOTES);
793 print "<div class='dlgButtons'>
794 <div style=\"float : left\">
795 <button class=\"danger\" dojoType=\"dijit.form.Button\" onclick='return unsubscribeFeed($feed_id, \"$title\")'>".
796 __('Unsubscribe')."</button>";
800 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedEditDlg').execute()\">".__('Save')."</button>
801 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedEditDlg').hide()\">".__('Cancel')."</button>
808 function editfeeds() {
809 global $purge_intervals;
810 global $update_intervals;
812 $feed_ids = $this->dbh->escape_string($_REQUEST["ids"]);
814 print_notice("Enable the options you wish to apply using checkboxes on the right:");
818 print_hidden("ids", "$feed_ids");
819 print_hidden("op", "pref-feeds");
820 print_hidden("method", "batchEditSave");
822 print "<div class=\"dlgSec\">".__("Feed")."</div>";
823 print "<div class=\"dlgSecCont\">";
827 if (get_pref('ENABLE_FEED_CATS')) {
829 print __('Place in category:') . " ";
831 print_feed_cat_select("cat_id", false,
832 'disabled="1" dojoType="dijit.form.Select"');
834 $this->batch_edit_cbox("cat_id");
838 /* FTS Stemming Language */
840 if (DB_TYPE == "pgsql") {
843 print __('Language:') . " ";
844 print_select("feed_language", "", $this::$feed_languages,
845 'disabled="1" dojoType="dijit.form.Select"');
847 $this->batch_edit_cbox("feed_language");
852 print "<div class=\"dlgSec\">".__("Update")."</div>";
853 print "<div class=\"dlgSecCont\">";
855 /* Update Interval */
857 print_select_hash("update_interval", "", $update_intervals,
858 'disabled="1" dojoType="dijit.form.Select"');
860 $this->batch_edit_cbox("update_interval");
864 if (FORCE_ARTICLE_PURGE == 0) {
868 print __('Article purging:') . " ";
870 print_select_hash("purge_interval", "", $purge_intervals,
871 'disabled="1" dojoType="dijit.form.Select"');
873 $this->batch_edit_cbox("purge_interval");
877 print "<div class=\"dlgSec\">".__("Authentication")."</div>";
878 print "<div class=\"dlgSecCont\">";
880 print "<input dojoType=\"dijit.form.TextBox\"
881 placeHolder=\"".__("Login")."\" disabled=\"1\"
882 autocomplete=\"new-password\"
883 name=\"auth_login\" value=\"\">";
885 $this->batch_edit_cbox("auth_login");
887 print "<hr/> <input dojoType=\"dijit.form.TextBox\" type=\"password\" name=\"auth_pass\"
888 autocomplete=\"new-password\"
889 placeHolder=\"".__("Password")."\" disabled=\"1\"
892 $this->batch_edit_cbox("auth_pass");
895 print "<div class=\"dlgSec\">".__("Options")."</div>";
896 print "<div class=\"dlgSecCont\">";
898 print "<input disabled=\"1\" type=\"checkbox\" name=\"private\" id=\"private\"
899 dojoType=\"dijit.form.CheckBox\"> <label id=\"private_l\" class='insensitive' for=\"private\">".__('Hide from Popular feeds')."</label>";
901 print " "; $this->batch_edit_cbox("private", "private_l");
903 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"include_in_digest\"
904 name=\"include_in_digest\"
905 dojoType=\"dijit.form.CheckBox\"> <label id=\"include_in_digest_l\" class='insensitive' for=\"include_in_digest\">".__('Include in e-mail digest')."</label>";
907 print " "; $this->batch_edit_cbox("include_in_digest", "include_in_digest_l");
909 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"always_display_enclosures\"
910 name=\"always_display_enclosures\"
911 dojoType=\"dijit.form.CheckBox\"> <label id=\"always_display_enclosures_l\" class='insensitive' for=\"always_display_enclosures\">".__('Always display image attachments')."</label>";
913 print " "; $this->batch_edit_cbox("always_display_enclosures", "always_display_enclosures_l");
915 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"hide_images\"
917 dojoType=\"dijit.form.CheckBox\"> <label class='insensitive' id=\"hide_images_l\"
918 for=\"hide_images\">".
919 __('Do not embed images')."</label>";
921 print " "; $this->batch_edit_cbox("hide_images", "hide_images_l");
923 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"cache_images\"
924 name=\"cache_images\"
925 dojoType=\"dijit.form.CheckBox\"> <label class='insensitive' id=\"cache_images_l\"
926 for=\"cache_images\">".
927 __('Cache media')."</label>";
929 print " "; $this->batch_edit_cbox("cache_images", "cache_images_l");
931 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"mark_unread_on_update\"
932 name=\"mark_unread_on_update\"
933 dojoType=\"dijit.form.CheckBox\"> <label id=\"mark_unread_on_update_l\" class='insensitive' for=\"mark_unread_on_update\">".__('Mark updated articles as unread')."</label>";
935 print " "; $this->batch_edit_cbox("mark_unread_on_update", "mark_unread_on_update_l");
939 print "<div class='dlgButtons'>
940 <button dojoType=\"dijit.form.Button\"
941 onclick=\"return dijit.byId('feedEditDlg').execute()\">".
942 __('Save')."</button>
943 <button dojoType=\"dijit.form.Button\"
944 onclick=\"return dijit.byId('feedEditDlg').hide()\">".
945 __('Cancel')."</button>
951 function batchEditSave() {
952 return $this->editsaveops(true);
955 function editSave() {
956 return $this->editsaveops(false);
959 function editsaveops($batch) {
961 $feed_title = $this->dbh->escape_string(trim($_POST["title"]));
962 $feed_link = $this->dbh->escape_string(trim($_POST["feed_url"]));
963 $upd_intl = (int) $this->dbh->escape_string($_POST["update_interval"]);
964 $purge_intl = (int) $this->dbh->escape_string($_POST["purge_interval"]);
965 $feed_id = (int) $this->dbh->escape_string($_POST["id"]); /* editSave */
966 $feed_ids = $this->dbh->escape_string($_POST["ids"]); /* batchEditSave */
967 $cat_id = (int) $this->dbh->escape_string($_POST["cat_id"]);
968 $auth_login = $this->dbh->escape_string(trim($_POST["auth_login"]));
969 $auth_pass = trim($_POST["auth_pass"]);
970 $private = checkbox_to_sql_bool($this->dbh->escape_string($_POST["private"]));
971 $include_in_digest = checkbox_to_sql_bool(
972 $this->dbh->escape_string($_POST["include_in_digest"]));
973 $cache_images = checkbox_to_sql_bool(
974 $this->dbh->escape_string($_POST["cache_images"]));
975 $hide_images = checkbox_to_sql_bool(
976 $this->dbh->escape_string($_POST["hide_images"]));
977 $always_display_enclosures = checkbox_to_sql_bool(
978 $this->dbh->escape_string($_POST["always_display_enclosures"]));
980 $mark_unread_on_update = checkbox_to_sql_bool(
981 $this->dbh->escape_string($_POST["mark_unread_on_update"]));
983 $feed_language = $this->dbh->escape_string(trim($_POST["feed_language"]));
985 $auth_pass = $this->dbh->escape_string($auth_pass);
987 if (get_pref('ENABLE_FEED_CATS')) {
988 if ($cat_id && $cat_id != 0) {
989 $category_qpart = "cat_id = '$cat_id',";
990 $category_qpart_nocomma = "cat_id = '$cat_id'";
992 $category_qpart = 'cat_id = NULL,';
993 $category_qpart_nocomma = 'cat_id = NULL';
996 $category_qpart = "";
997 $category_qpart_nocomma = "";
1001 if ($_POST["need_auth"] !== 'on') {
1006 $result = db_query("SELECT feed_url FROM ttrss_feeds WHERE id = " . $feed_id);
1007 $orig_feed_url = db_fetch_result($result, 0, "feed_url");
1009 $reset_basic_info = $orig_feed_url != $feed_link;
1011 $this->dbh->query("UPDATE ttrss_feeds SET
1013 title = '$feed_title', feed_url = '$feed_link',
1014 update_interval = '$upd_intl',
1015 purge_interval = '$purge_intl',
1016 auth_login = '$auth_login',
1017 auth_pass = '$auth_pass',
1018 auth_pass_encrypted = false,
1020 cache_images = $cache_images,
1021 hide_images = $hide_images,
1022 include_in_digest = $include_in_digest,
1023 always_display_enclosures = $always_display_enclosures,
1024 mark_unread_on_update = $mark_unread_on_update,
1025 feed_language = '$feed_language'
1026 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
1028 if ($reset_basic_info) {
1029 RSSUtils::set_basic_feed_info($feed_id);
1032 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_SAVE_FEED,
1033 "hook_prefs_save_feed", $feed_id);
1036 $feed_data = array();
1038 foreach (array_keys($_POST) as $k) {
1039 if ($k != "op" && $k != "method" && $k != "ids") {
1040 $feed_data[$k] = $_POST[$k];
1044 $this->dbh->query("BEGIN");
1046 foreach (array_keys($feed_data) as $k) {
1052 $qpart = "title = '$feed_title'";
1056 $qpart = "feed_url = '$feed_link'";
1059 case "update_interval":
1060 $qpart = "update_interval = '$upd_intl'";
1063 case "purge_interval":
1064 $qpart = "purge_interval = '$purge_intl'";
1068 $qpart = "auth_login = '$auth_login'";
1072 $qpart = "auth_pass = '$auth_pass', auth_pass_encrypted = false";
1076 $qpart = "private = $private";
1079 case "include_in_digest":
1080 $qpart = "include_in_digest = $include_in_digest";
1083 case "always_display_enclosures":
1084 $qpart = "always_display_enclosures = $always_display_enclosures";
1087 case "mark_unread_on_update":
1088 $qpart = "mark_unread_on_update = $mark_unread_on_update";
1091 case "cache_images":
1092 $qpart = "cache_images = $cache_images";
1096 $qpart = "hide_images = $hide_images";
1100 $qpart = $category_qpart_nocomma;
1103 case "feed_language":
1104 $qpart = "feed_language = '$feed_language'";
1111 "UPDATE ttrss_feeds SET $qpart WHERE id IN ($feed_ids)
1112 AND owner_uid = " . $_SESSION["uid"]);
1117 $this->dbh->query("COMMIT");
1124 $ids = explode(",", $this->dbh->escape_string($_REQUEST["ids"]));
1126 foreach ($ids as $id) {
1127 Pref_Feeds::remove_feed($id, $_SESSION["uid"]);
1134 $id = $this->dbh->escape_string($_REQUEST["id"]);
1135 $this->clear_feed_articles($id);
1138 function rescore() {
1139 $ids = explode(",", $this->dbh->escape_string($_REQUEST["ids"]));
1141 foreach ($ids as $id) {
1143 $filters = load_filters($id, $_SESSION["uid"], 6);
1145 $result = $this->dbh->query("SELECT
1146 title, content, link, ref_id, author,".
1147 SUBSTRING_FOR_DATE."(updated, 1, 19) AS updated
1149 ttrss_user_entries, ttrss_entries
1150 WHERE ref_id = id AND feed_id = '$id' AND
1151 owner_uid = " .$_SESSION['uid']."
1156 while ($line = $this->dbh->fetch_assoc($result)) {
1158 $tags = Article::get_article_tags($line["ref_id"]);
1160 $article_filters = RSSUtils::get_article_filters($filters, $line['title'],
1161 $line['content'], $line['link'], strtotime($line['updated']),
1162 $line['author'], $tags);
1164 $new_score = RSSUtils::calculate_article_score($article_filters);
1166 if (!$scores[$new_score]) $scores[$new_score] = array();
1168 array_push($scores[$new_score], $line['ref_id']);
1171 foreach (array_keys($scores) as $s) {
1173 $this->dbh->query("UPDATE ttrss_user_entries SET score = '$s',
1175 ref_id IN (" . join(',', $scores[$s]) . ")");
1176 } else if ($s < -500) {
1177 $this->dbh->query("UPDATE ttrss_user_entries SET score = '$s',
1178 unread = false WHERE
1179 ref_id IN (" . join(',', $scores[$s]) . ")");
1181 $this->dbh->query("UPDATE ttrss_user_entries SET score = '$s' WHERE
1182 ref_id IN (" . join(',', $scores[$s]) . ")");
1187 print __("All done.");
1191 function rescoreAll() {
1193 $result = $this->dbh->query(
1194 "SELECT id FROM ttrss_feeds WHERE owner_uid = " . $_SESSION['uid']);
1196 while ($feed_line = $this->dbh->fetch_assoc($result)) {
1198 $id = $feed_line["id"];
1200 $filters = load_filters($id, $_SESSION["uid"], 6);
1202 $tmp_result = $this->dbh->query("SELECT
1203 title, content, link, ref_id, author,".
1204 SUBSTRING_FOR_DATE."(updated, 1, 19) AS updated
1206 ttrss_user_entries, ttrss_entries
1207 WHERE ref_id = id AND feed_id = '$id' AND
1208 owner_uid = " .$_SESSION['uid']."
1213 while ($line = $this->dbh->fetch_assoc($tmp_result)) {
1215 $tags = Article::get_article_tags($line["ref_id"]);
1217 $article_filters = RSSUtils::get_article_filters($filters, $line['title'],
1218 $line['content'], $line['link'], strtotime($line['updated']),
1219 $line['author'], $tags);
1221 $new_score = RSSUtils::calculate_article_score($article_filters);
1223 if (!$scores[$new_score]) $scores[$new_score] = array();
1225 array_push($scores[$new_score], $line['ref_id']);
1228 foreach (array_keys($scores) as $s) {
1230 $this->dbh->query("UPDATE ttrss_user_entries SET score = '$s',
1232 ref_id IN (" . join(',', $scores[$s]) . ")");
1234 $this->dbh->query("UPDATE ttrss_user_entries SET score = '$s' WHERE
1235 ref_id IN (" . join(',', $scores[$s]) . ")");
1240 print __("All done.");
1244 function categorize() {
1245 $ids = explode(",", $this->dbh->escape_string($_REQUEST["ids"]));
1247 $cat_id = $this->dbh->escape_string($_REQUEST["cat_id"]);
1250 $cat_id_qpart = 'NULL';
1252 $cat_id_qpart = "'$cat_id'";
1255 $this->dbh->query("BEGIN");
1257 foreach ($ids as $id) {
1259 $this->dbh->query("UPDATE ttrss_feeds SET cat_id = $cat_id_qpart
1261 AND owner_uid = " . $_SESSION["uid"]);
1265 $this->dbh->query("COMMIT");
1268 function removeCat() {
1269 $ids = explode(",", $this->dbh->escape_string($_REQUEST["ids"]));
1270 foreach ($ids as $id) {
1271 $this->remove_feed_category($id, $_SESSION["uid"]);
1276 $feed_cat = $this->dbh->escape_string(trim($_REQUEST["cat"]));
1278 add_feed_category($feed_cat);
1283 print "<div dojoType=\"dijit.layout.AccordionContainer\" region=\"center\">";
1284 print "<div id=\"pref-feeds-feeds\" dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Feeds')."\">";
1286 $result = $this->dbh->query("SELECT COUNT(id) AS num_errors
1287 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
1289 $num_errors = $this->dbh->fetch_result($result, 0, "num_errors");
1291 if ($num_errors > 0) {
1293 $error_button = "<button dojoType=\"dijit.form.Button\"
1294 onclick=\"showFeedsWithErrors()\" id=\"errorButton\">" .
1295 __("Feeds with errors") . "</button>";
1298 $inactive_button = "<button dojoType=\"dijit.form.Button\"
1299 id=\"pref_feeds_inactive_btn\"
1300 style=\"display : none\"
1301 onclick=\"showInactiveFeeds()\">" .
1302 __("Inactive feeds") . "</button>";
1304 $feed_search = $this->dbh->escape_string($_REQUEST["search"]);
1306 if (array_key_exists("search", $_REQUEST)) {
1307 $_SESSION["prefs_feed_search"] = $feed_search;
1309 $feed_search = $_SESSION["prefs_feed_search"];
1312 print '<div dojoType="dijit.layout.BorderContainer" gutters="false">';
1314 print "<div region='top' dojoType=\"dijit.Toolbar\">"; #toolbar
1316 print "<div style='float : right; padding-right : 4px;'>
1317 <input dojoType=\"dijit.form.TextBox\" id=\"feed_search\" size=\"20\" type=\"search\"
1318 value=\"$feed_search\">
1319 <button dojoType=\"dijit.form.Button\" onclick=\"updateFeedList()\">".
1320 __('Search')."</button>
1323 print "<div dojoType=\"dijit.form.DropDownButton\">".
1324 "<span>" . __('Select')."</span>";
1325 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1326 print "<div onclick=\"dijit.byId('feedTree').model.setAllChecked(true)\"
1327 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
1328 print "<div onclick=\"dijit.byId('feedTree').model.setAllChecked(false)\"
1329 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
1330 print "</div></div>";
1332 print "<div dojoType=\"dijit.form.DropDownButton\">".
1333 "<span>" . __('Feeds')."</span>";
1334 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1335 print "<div onclick=\"quickAddFeed()\"
1336 dojoType=\"dijit.MenuItem\">".__('Subscribe to feed')."</div>";
1337 print "<div onclick=\"editSelectedFeed()\"
1338 dojoType=\"dijit.MenuItem\">".__('Edit selected feeds')."</div>";
1339 print "<div onclick=\"resetFeedOrder()\"
1340 dojoType=\"dijit.MenuItem\">".__('Reset sort order')."</div>";
1341 print "<div onclick=\"batchSubscribe()\"
1342 dojoType=\"dijit.MenuItem\">".__('Batch subscribe')."</div>";
1343 print "<div dojoType=\"dijit.MenuItem\" onclick=\"removeSelectedFeeds()\">"
1344 .__('Unsubscribe')."</div> ";
1345 print "</div></div>";
1347 if (get_pref('ENABLE_FEED_CATS')) {
1348 print "<div dojoType=\"dijit.form.DropDownButton\">".
1349 "<span>" . __('Categories')."</span>";
1350 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1351 print "<div onclick=\"createCategory()\"
1352 dojoType=\"dijit.MenuItem\">".__('Add category')."</div>";
1353 print "<div onclick=\"resetCatOrder()\"
1354 dojoType=\"dijit.MenuItem\">".__('Reset sort order')."</div>";
1355 print "<div onclick=\"removeSelectedCategories()\"
1356 dojoType=\"dijit.MenuItem\">".__('Remove selected')."</div>";
1357 print "</div></div>";
1361 print $error_button;
1362 print $inactive_button;
1364 if (defined('_ENABLE_FEED_DEBUGGING')) {
1366 print "<select id=\"feedActionChooser\" onchange=\"feedActionChange()\">
1367 <option value=\"facDefault\" selected>".__('More actions...')."</option>";
1369 if (FORCE_ARTICLE_PURGE == 0) {
1371 "<option value=\"facPurge\">".__('Manual purge')."</option>";
1375 <option value=\"facClear\">".__('Clear feed data')."</option>
1376 <option value=\"facRescore\">".__('Rescore articles')."</option>";
1382 print "</div>"; # toolbar
1385 print '<div dojoType="dijit.layout.ContentPane" region="center">';
1387 print "<div id=\"feedlistLoading\">
1388 <img src='images/indicator_tiny.gif'>".
1389 __("Loading, please wait...")."</div>";
1391 print "<div dojoType=\"fox.PrefFeedStore\" jsId=\"feedStore\"
1392 url=\"backend.php?op=pref-feeds&method=getfeedtree\">
1394 <div dojoType=\"lib.CheckBoxStoreModel\" jsId=\"feedModel\" store=\"feedStore\"
1395 query=\"{id:'root'}\" rootId=\"root\" rootLabel=\"Feeds\"
1396 childrenAttrs=\"items\" checkboxStrict=\"false\" checkboxAll=\"false\">
1398 <div dojoType=\"fox.PrefFeedTree\" id=\"feedTree\"
1399 dndController=\"dijit.tree.dndSource\"
1400 betweenThreshold=\"5\"
1402 model=\"feedModel\" openOnClick=\"false\">
1403 <script type=\"dojo/method\" event=\"onClick\" args=\"item\">
1404 var id = String(item.id);
1405 var bare_id = id.substr(id.indexOf(':')+1);
1407 if (id.match('FEED:')) {
1409 } else if (id.match('CAT:')) {
1410 editCat(bare_id, item);
1413 <script type=\"dojo/method\" event=\"onLoad\" args=\"item\">
1414 Element.hide(\"feedlistLoading\");
1416 checkInactiveFeeds();
1420 # print "<div dojoType=\"dijit.Tooltip\" connectId=\"feedTree\" position=\"below\">
1421 # ".__('<b>Hint:</b> you can drag feeds and categories around.')."
1427 print "</div>"; # feeds pane
1429 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('OPML')."\">";
1431 print "<p>" . __("Using OPML you can export and import your feeds, filters, labels and Tiny Tiny RSS settings.") .
1432 __("Only main settings profile can be migrated using OPML.") . "</p>";
1434 print "<iframe id=\"upload_iframe\"
1435 name=\"upload_iframe\" onload=\"opmlImportComplete(this)\"
1436 style=\"width: 400px; height: 100px; display: none;\"></iframe>";
1438 print "<form name=\"opml_form\" style='display : block' target=\"upload_iframe\"
1439 enctype=\"multipart/form-data\" method=\"POST\"
1440 action=\"backend.php\">
1441 <input id=\"opml_file\" name=\"opml_file\" type=\"file\">
1442 <input type=\"hidden\" name=\"op\" value=\"dlg\">
1443 <input type=\"hidden\" name=\"method\" value=\"importOpml\">
1444 <button dojoType=\"dijit.form.Button\" onclick=\"return opmlImport();\" type=\"submit\">" .
1445 __('Import my OPML') . "</button>";
1449 $opml_export_filename = "TinyTinyRSS_".date("Y-m-d").".opml";
1451 print "<p>" . __('Filename:') .
1452 " <input type=\"text\" id=\"filename\" value=\"$opml_export_filename\" /> " .
1453 __('Include settings') . "<input type=\"checkbox\" id=\"settings\" checked=\"1\"/>";
1455 print "</p><button dojoType=\"dijit.form.Button\"
1456 onclick=\"gotoExportOpml(document.opml_form.filename.value, document.opml_form.settings.checked)\" >" .
1457 __('Export OPML') . "</button></p></form>";
1461 print "<p>" . __('Your OPML can be published publicly and can be subscribed by anyone who knows the URL below.') . "</p>";
1463 print_warning("Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds.");
1465 print "<button dojoType=\"dijit.form.Button\" onclick=\"return displayDlg('".__("Public OPML URL")."','pubOPMLUrl')\">".
1466 __('Display published OPML URL')."</button> ";
1468 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB_SECTION,
1469 "hook_prefs_tab_section", "prefFeedsOPML");
1471 print "</div>"; # pane
1473 if (strpos($_SERVER['HTTP_USER_AGENT'], "Firefox") !== false) {
1475 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Firefox integration')."\">";
1477 print_notice(__('This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below.'));
1481 print "<button onclick='window.navigator.registerContentHandler(" .
1482 "\"application/vnd.mozilla.maybe.feed\", " .
1483 "\"" . $this->subscribe_to_feed_url() . "\", " . " \"Tiny Tiny RSS\")'>" .
1484 __('Click here to register this site as a feed reader.') .
1489 print "</div>"; # pane
1492 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Published & shared articles / Generated feeds')."\">";
1494 print "<p>" . __('Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below.') . "</p>";
1496 $rss_url = '-2::' . htmlspecialchars(get_self_url_prefix() .
1497 "/public.php?op=rss&id=-2&view-mode=all_articles");;
1501 print "<button dojoType=\"dijit.form.Button\" onclick=\"return displayDlg('".__("View as RSS")."','generatedFeed', '$rss_url')\">".
1502 __('Display URL')."</button> ";
1504 print "<button class=\"warning\" dojoType=\"dijit.form.Button\" onclick=\"return clearFeedAccessKeys()\">".
1505 __('Clear all generated URLs')."</button> ";
1509 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB_SECTION,
1510 "hook_prefs_tab_section", "prefFeedsPublishedGenerated");
1512 print "</div>"; #pane
1514 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB,
1515 "hook_prefs_tab", "prefFeeds");
1517 print "</div>"; #container
1520 private function feedlist_init_cat($cat_id) {
1522 $cat_id = (int) $cat_id;
1525 $cat_unread = CCache::find($cat_id, $_SESSION["uid"], true);
1526 } else if ($cat_id == 0 || $cat_id == -2) {
1527 $cat_unread = Feeds::getCategoryUnread($cat_id);
1530 $obj['id'] = 'CAT:' . $cat_id;
1531 $obj['items'] = array();
1532 $obj['name'] = Feeds::getCategoryTitle($cat_id);
1533 $obj['type'] = 'category';
1534 $obj['unread'] = (int) $cat_unread;
1535 $obj['bare_id'] = $cat_id;
1540 private function feedlist_init_feed($feed_id, $title = false, $unread = false, $error = '', $updated = '') {
1542 $feed_id = (int) $feed_id;
1545 $title = Feeds::getFeedTitle($feed_id, false);
1547 if ($unread === false)
1548 $unread = getFeedUnread($feed_id, false);
1550 $obj['id'] = 'FEED:' . $feed_id;
1551 $obj['name'] = $title;
1552 $obj['unread'] = (int) $unread;
1553 $obj['type'] = 'feed';
1554 $obj['error'] = $error;
1555 $obj['updated'] = $updated;
1556 $obj['icon'] = Feeds::getFeedIcon($feed_id);
1557 $obj['bare_id'] = $feed_id;
1558 $obj['auxcounter'] = 0;
1563 function inactiveFeeds() {
1565 if (DB_TYPE == "pgsql") {
1566 $interval_qpart = "NOW() - INTERVAL '3 months'";
1568 $interval_qpart = "DATE_SUB(NOW(), INTERVAL 3 MONTH)";
1571 $result = $this->dbh->query("SELECT ttrss_feeds.title, ttrss_feeds.site_url,
1572 ttrss_feeds.feed_url, ttrss_feeds.id, MAX(updated) AS last_article
1573 FROM ttrss_feeds, ttrss_entries, ttrss_user_entries WHERE
1574 (SELECT MAX(updated) FROM ttrss_entries, ttrss_user_entries WHERE
1575 ttrss_entries.id = ref_id AND
1576 ttrss_user_entries.feed_id = ttrss_feeds.id) < $interval_qpart
1577 AND ttrss_feeds.owner_uid = ".$_SESSION["uid"]." AND
1578 ttrss_user_entries.feed_id = ttrss_feeds.id AND
1579 ttrss_entries.id = ref_id
1580 GROUP BY ttrss_feeds.title, ttrss_feeds.id, ttrss_feeds.site_url, ttrss_feeds.feed_url
1581 ORDER BY last_article");
1583 print "<p" .__("These feeds have not been updated with new content for 3 months (oldest first):") . "</p>";
1585 print "<div dojoType=\"dijit.Toolbar\">";
1586 print "<div dojoType=\"dijit.form.DropDownButton\">".
1587 "<span>" . __('Select')."</span>";
1588 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1589 print "<div onclick=\"selectTableRows('prefInactiveFeedList', 'all')\"
1590 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
1591 print "<div onclick=\"selectTableRows('prefInactiveFeedList', 'none')\"
1592 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
1593 print "</div></div>";
1594 print "</div>"; #toolbar
1596 print "<div class=\"inactiveFeedHolder\">";
1598 print "<table width=\"100%\" cellspacing=\"0\" id=\"prefInactiveFeedList\">";
1602 while ($line = $this->dbh->fetch_assoc($result)) {
1604 $feed_id = $line["id"];
1605 $this_row_id = "id=\"FUPDD-$feed_id\"";
1607 # class needed for selectTableRows()
1608 print "<tr class=\"placeholder\" $this_row_id>";
1610 # id needed for selectTableRows()
1611 print "<td width='5%' align='center'><input
1612 onclick='toggleSelectRow2(this);' dojoType=\"dijit.form.CheckBox\"
1613 type=\"checkbox\" id=\"FUPDC-$feed_id\"></td>";
1616 print "<a class=\"visibleLink\" href=\"#\" ".
1617 "title=\"".__("Click to edit feed")."\" ".
1618 "onclick=\"editFeed(".$line["id"].")\">".
1619 htmlspecialchars($line["title"])."</a>";
1621 print "</td><td class=\"insensitive\" align='right'>";
1622 print make_local_datetime($line['last_article'], false);
1632 print "<div class='dlgButtons'>";
1633 print "<div style='float : left'>";
1634 print "<button class=\"danger\" dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('inactiveFeedsDlg').removeSelected()\">"
1635 .__('Unsubscribe from selected feeds')."</button> ";
1638 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('inactiveFeedsDlg').hide()\">".
1639 __('Close this window')."</button>";
1645 function feedsWithErrors() {
1646 $result = $this->dbh->query("SELECT id,title,feed_url,last_error,site_url
1647 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
1649 print "<div dojoType=\"dijit.Toolbar\">";
1650 print "<div dojoType=\"dijit.form.DropDownButton\">".
1651 "<span>" . __('Select')."</span>";
1652 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1653 print "<div onclick=\"selectTableRows('prefErrorFeedList', 'all')\"
1654 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
1655 print "<div onclick=\"selectTableRows('prefErrorFeedList', 'none')\"
1656 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
1657 print "</div></div>";
1658 print "</div>"; #toolbar
1660 print "<div class=\"inactiveFeedHolder\">";
1662 print "<table width=\"100%\" cellspacing=\"0\" id=\"prefErrorFeedList\">";
1666 while ($line = $this->dbh->fetch_assoc($result)) {
1668 $feed_id = $line["id"];
1669 $this_row_id = "id=\"FERDD-$feed_id\"";
1671 # class needed for selectTableRows()
1672 print "<tr class=\"placeholder\" $this_row_id>";
1674 # id needed for selectTableRows()
1675 print "<td width='5%' align='center'><input
1676 onclick='toggleSelectRow2(this);' dojoType=\"dijit.form.CheckBox\"
1677 type=\"checkbox\" id=\"FERDC-$feed_id\"></td>";
1680 print "<a class=\"visibleLink\" href=\"#\" ".
1681 "title=\"".__("Click to edit feed")."\" ".
1682 "onclick=\"editFeed(".$line["id"].")\">".
1683 htmlspecialchars($line["title"])."</a>: ";
1685 print "<span class=\"insensitive\">";
1686 print htmlspecialchars($line["last_error"]);
1698 print "<div class='dlgButtons'>";
1699 print "<div style='float : left'>";
1700 print "<button class=\"danger\" dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('errorFeedsDlg').removeSelected()\">"
1701 .__('Unsubscribe from selected feeds')."</button> ";
1704 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('errorFeedsDlg').hide()\">".
1705 __('Close this window')."</button>";
1711 * Purge a feed contents, marked articles excepted.
1713 * @param mixed $link The database connection.
1714 * @param integer $id The id of the feed to purge.
1717 private function clear_feed_articles($id) {
1720 $result = $this->dbh->query("DELETE FROM ttrss_user_entries
1721 WHERE feed_id = '$id' AND marked = false AND owner_uid = " . $_SESSION["uid"]);
1723 $result = $this->dbh->query("DELETE FROM ttrss_user_entries
1724 WHERE feed_id IS NULL AND marked = false AND owner_uid = " . $_SESSION["uid"]);
1727 $result = $this->dbh->query("DELETE FROM ttrss_entries WHERE
1728 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
1730 CCache::update($id, $_SESSION['uid']);
1731 } // function clear_feed_articles
1733 private function remove_feed_category($id, $owner_uid) {
1735 $this->dbh->query("DELETE FROM ttrss_feed_categories
1736 WHERE id = '$id' AND owner_uid = $owner_uid");
1738 CCache::remove($id, $owner_uid, true);
1741 static function remove_feed($id, $owner_uid) {
1742 $debug = isset($_REQUEST["debug"]);
1744 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_UNSUBSCRIBE_FEED) as $p) {
1745 if( ! $p->hook_unsubscribe_feed($id, $owner_uid)){
1746 if($debug) _debug("Feed not removed due to Error in Plugin. (HOOK_UNSUBSCRIBE_FEED)");
1753 /* save starred articles in Archived feed */
1757 /* prepare feed if necessary */
1759 $result = db_query("SELECT feed_url FROM ttrss_feeds WHERE id = $id
1760 AND owner_uid = $owner_uid");
1762 $feed_url = db_escape_string(db_fetch_result($result, 0, "feed_url"));
1764 $result = db_query("SELECT id FROM ttrss_archived_feeds
1765 WHERE feed_url = '$feed_url' AND owner_uid = $owner_uid");
1767 if (db_num_rows($result) == 0) {
1768 $result = db_query("SELECT MAX(id) AS id FROM ttrss_archived_feeds");
1769 $new_feed_id = (int)db_fetch_result($result, 0, "id") + 1;
1771 db_query("INSERT INTO ttrss_archived_feeds
1772 (id, owner_uid, title, feed_url, site_url)
1773 SELECT $new_feed_id, owner_uid, title, feed_url, site_url from ttrss_feeds
1776 $archive_id = $new_feed_id;
1778 $archive_id = db_fetch_result($result, 0, "id");
1781 db_query("UPDATE ttrss_user_entries SET feed_id = NULL,
1782 orig_feed_id = '$archive_id' WHERE feed_id = '$id' AND
1783 marked = true AND owner_uid = $owner_uid");
1785 /* Remove access key for the feed */
1787 db_query("DELETE FROM ttrss_access_keys WHERE
1788 feed_id = '$id' AND owner_uid = $owner_uid");
1790 /* remove the feed */
1792 db_query("DELETE FROM ttrss_feeds
1793 WHERE id = '$id' AND owner_uid = $owner_uid");
1797 if (file_exists(ICONS_DIR . "/$id.ico")) {
1798 unlink(ICONS_DIR . "/$id.ico");
1801 CCache::remove($id, $owner_uid);
1804 Labels::remove(Labels::feed_to_label_id($id), $owner_uid);
1805 //CCache::remove($id, $owner_uid); don't think labels are cached
1809 function batchSubscribe() {
1810 print_hidden("op", "pref-feeds");
1811 print_hidden("method", "batchaddfeeds");
1813 print "<table width='100%'><tr><td>
1814 ".__("Add one valid RSS feed per line (no feed detection is done)")."
1815 </td><td align='right'>";
1816 if (get_pref('ENABLE_FEED_CATS')) {
1817 print __('Place in category:') . " ";
1818 print_feed_cat_select("cat", false, 'dojoType="dijit.form.Select"');
1820 print "</td></tr><tr><td colspan='2'>";
1822 style='font-size : 12px; width : 98%; height: 200px;'
1823 placeHolder=\"".__("Feeds to subscribe, One per line")."\"
1824 dojoType=\"dijit.form.SimpleTextarea\" required=\"1\" name=\"feeds\"></textarea>";
1826 print "</td></tr><tr><td colspan='2'>";
1828 print "<div id='feedDlg_loginContainer' style='display : none'>
1830 " <input dojoType=\"dijit.form.TextBox\" name='login'\"
1831 placeHolder=\"".__("Login")."\"
1832 style=\"width : 10em;\"> ".
1834 placeHolder=\"".__("Password")."\"
1835 dojoType=\"dijit.form.TextBox\" type='password'
1836 autocomplete=\"new-password\"
1837 style=\"width : 10em;\" name='pass'\">".
1840 print "</td></tr><tr><td colspan='2'>";
1842 print "<div style=\"clear : both\">
1843 <input type=\"checkbox\" name=\"need_auth\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
1844 onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
1845 <label for=\"feedDlg_loginCheck\">".
1846 __('Feeds require authentication.')."</div>";
1850 print "</td></tr></table>";
1852 print "<div class=\"dlgButtons\">
1853 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('batchSubDlg').execute()\">".__('Subscribe')."</button>
1854 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('batchSubDlg').hide()\">".__('Cancel')."</button>
1858 function batchAddFeeds() {
1859 $cat_id = $this->dbh->escape_string($_REQUEST['cat']);
1860 $feeds = explode("\n", $_REQUEST['feeds']);
1861 $login = $this->dbh->escape_string($_REQUEST['login']);
1862 $pass = trim($_REQUEST['pass']);
1864 foreach ($feeds as $feed) {
1865 $feed = $this->dbh->escape_string(trim($feed));
1867 if (validate_feed_url($feed)) {
1869 $this->dbh->query("BEGIN");
1871 if ($cat_id == "0" || !$cat_id) {
1872 $cat_qpart = "NULL";
1874 $cat_qpart = "'$cat_id'";
1877 $result = $this->dbh->query(
1878 "SELECT id FROM ttrss_feeds
1879 WHERE feed_url = '$feed' AND owner_uid = ".$_SESSION["uid"]);
1881 $pass = $this->dbh->escape_string($pass);
1883 if ($this->dbh->num_rows($result) == 0) {
1884 $result = $this->dbh->query(
1885 "INSERT INTO ttrss_feeds
1886 (owner_uid,feed_url,title,cat_id,auth_login,auth_pass,update_method,auth_pass_encrypted)
1887 VALUES ('".$_SESSION["uid"]."', '$feed',
1888 '[Unknown]', $cat_qpart, '$login', '$pass', 0, false)");
1891 $this->dbh->query("COMMIT");
1896 function regenOPMLKey() {
1897 $this->update_feed_access_key('OPML:Publish',
1898 false, $_SESSION["uid"]);
1900 $new_link = Opml::opml_publish_url();
1902 print json_encode(array("link" => $new_link));
1905 function regenFeedKey() {
1906 $feed_id = $this->dbh->escape_string($_REQUEST['id']);
1907 $is_cat = $this->dbh->escape_string($_REQUEST['is_cat']) == "true";
1909 $new_key = $this->update_feed_access_key($feed_id, $is_cat);
1911 print json_encode(array("link" => $new_key));
1915 private function update_feed_access_key($feed_id, $is_cat, $owner_uid = false) {
1916 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
1918 $sql_is_cat = bool_to_sql_bool($is_cat);
1920 $result = $this->dbh->query("SELECT access_key FROM ttrss_access_keys
1921 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
1922 AND owner_uid = " . $owner_uid);
1924 if ($this->dbh->num_rows($result) == 1) {
1925 $key = $this->dbh->escape_string(uniqid_short());
1927 $this->dbh->query("UPDATE ttrss_access_keys SET access_key = '$key'
1928 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
1929 AND owner_uid = " . $owner_uid);
1934 return get_feed_access_key($feed_id, $is_cat, $owner_uid);
1939 function clearKeys() {
1940 $this->dbh->query("DELETE FROM ttrss_access_keys WHERE
1941 owner_uid = " . $_SESSION["uid"]);
1944 private function calculate_children_count($cat) {
1947 foreach ($cat['items'] as $child) {
1948 if ($child['type'] == 'category') {
1949 $c += $this->calculate_children_count($child);
1958 function getinactivefeeds() {
1959 if (DB_TYPE == "pgsql") {
1960 $interval_qpart = "NOW() - INTERVAL '3 months'";
1962 $interval_qpart = "DATE_SUB(NOW(), INTERVAL 3 MONTH)";
1965 $result = $this->dbh->query("SELECT COUNT(*) AS num_inactive FROM ttrss_feeds WHERE
1966 (SELECT MAX(updated) FROM ttrss_entries, ttrss_user_entries WHERE
1967 ttrss_entries.id = ref_id AND
1968 ttrss_user_entries.feed_id = ttrss_feeds.id) < $interval_qpart AND
1969 ttrss_feeds.owner_uid = ".$_SESSION["uid"]);
1971 print (int) $this->dbh->fetch_result($result, 0, "num_inactive");
1974 static function subscribe_to_feed_url() {
1975 $url_path = get_self_url_prefix() .
1976 "/public.php?op=subscribe&feed_url=%s";