]> git.wh0rd.org - tt-rss.git/blob - classes/pref/feeds.php
wrap rssfuncs into rssutils class
[tt-rss.git] / classes / pref / feeds.php
1 <?php
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");
5
6 function csrf_ignore($method) {
7 $csrf_ignored = array("index", "getfeedtree", "add", "editcats", "editfeed",
8 "savefeedorder", "uploadicon", "feedswitherrors", "inactivefeeds",
9 "batchsubscribe");
10
11 return array_search($method, $csrf_ignored) !== false;
12 }
13
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')\">";
17 }
18
19 function renamecat() {
20 $title = $this->dbh->escape_string($_REQUEST['title']);
21 $id = $this->dbh->escape_string($_REQUEST['id']);
22
23 if ($title) {
24 $this->dbh->query("UPDATE ttrss_feed_categories SET
25 title = '$title' WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
26 }
27 return;
28 }
29
30 private function get_category_items($cat_id) {
31
32 if ($_REQUEST['mode'] != 2)
33 $search = $_SESSION["prefs_feed_search"];
34 else
35 $search = "";
36
37 if ($search) $search_qpart = " AND (LOWER(title) LIKE LOWER('%$search%') OR LOWER(feed_url) LIKE LOWER('%$search%'))";
38
39 // first one is set by API
40 $show_empty_cats = $_REQUEST['force_show_empty'] ||
41 ($_REQUEST['mode'] != 2 && !$search);
42
43 $items = array();
44
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");
47
48 while ($line = $this->dbh->fetch_assoc($result)) {
49
50 $cat = array();
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';
57 $cat['unread'] = 0;
58 $cat['child_unread'] = 0;
59 $cat['auxcounter'] = 0;
60 $cat['parent_id'] = $cat_id;
61
62 $cat['items'] = $this->get_category_items($line['id']);
63
64 $num_children = $this->calculate_children_count($cat);
65 $cat['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', (int) $num_children), $num_children);
66
67 if ($num_children > 0 || $show_empty_cats)
68 array_push($items, $cat);
69
70 }
71
72 $feed_result = $this->dbh->query("SELECT id, title, last_error,
73 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
74 FROM ttrss_feeds
75 WHERE cat_id = '$cat_id' AND owner_uid = ".$_SESSION["uid"].
76 "$search_qpart ORDER BY order_id, title");
77
78 while ($feed_line = $this->dbh->fetch_assoc($feed_result)) {
79 $feed = array();
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;
85 $feed['unread'] = 0;
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);
90
91 array_push($items, $feed);
92 }
93
94 return $items;
95 }
96
97 function getfeedtree() {
98 print json_encode($this->makefeedtree());
99 }
100
101 function makefeedtree() {
102
103 if ($_REQUEST['mode'] != 2)
104 $search = $_SESSION["prefs_feed_search"];
105 else
106 $search = "";
107
108 if ($search) $search_qpart = " AND LOWER(title) LIKE LOWER('%$search%')";
109
110 $root = array();
111 $root['id'] = 'root';
112 $root['name'] = __('Feeds');
113 $root['items'] = array();
114 $root['type'] = 'category';
115
116 $enable_cats = get_pref('ENABLE_FEED_CATS');
117
118 if ($_REQUEST['mode'] == 2) {
119
120 if ($enable_cats) {
121 $cat = $this->feedlist_init_cat(-1);
122 } else {
123 $cat['items'] = array();
124 }
125
126 foreach (array(-4, -3, -1, -2, 0, -6) as $i) {
127 array_push($cat['items'], $this->feedlist_init_feed($i));
128 }
129
130 /* Plugin feeds for -1 */
131
132 $feeds = PluginHost::getInstance()->get_feeds(-1);
133
134 if ($feeds) {
135 foreach ($feeds as $feed) {
136 $feed_id = PluginHost::pfeed_to_feed_id($feed['id']);
137
138 $item = array();
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;
144 $item['error'] = '';
145 $item['icon'] = $feed['icon'];
146
147 $item['param'] = '';
148 $item['unread'] = 0; //$feed['sender']->get_unread($feed['id']);
149 $item['type'] = 'feed';
150
151 array_push($cat['items'], $item);
152 }
153 }
154
155 if ($enable_cats) {
156 array_push($root['items'], $cat);
157 } else {
158 $root['items'] = array_merge($root['items'], $cat['items']);
159 }
160
161 $result = $this->dbh->query("SELECT * FROM
162 ttrss_labels2 WHERE owner_uid = ".$_SESSION['uid']." ORDER by caption");
163
164 if ($this->dbh->num_rows($result) > 0) {
165
166 if (get_pref('ENABLE_FEED_CATS')) {
167 $cat = $this->feedlist_init_cat(-2);
168 } else {
169 $cat['items'] = array();
170 }
171
172 while ($line = $this->dbh->fetch_assoc($result)) {
173
174 $label_id = Labels::label_to_feed_id($line['id']);
175
176 $feed = $this->feedlist_init_feed($label_id, false, 0);
177
178 $feed['fg_color'] = $line['fg_color'];
179 $feed['bg_color'] = $line['bg_color'];
180
181 array_push($cat['items'], $feed);
182 }
183
184 if ($enable_cats) {
185 array_push($root['items'], $cat);
186 } else {
187 $root['items'] = array_merge($root['items'], $cat['items']);
188 }
189 }
190 }
191
192 if ($enable_cats) {
193 $show_empty_cats = $_REQUEST['force_show_empty'] ||
194 ($_REQUEST['mode'] != 2 && !$search);
195
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");
198
199 while ($line = $this->dbh->fetch_assoc($result)) {
200 $cat = array();
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';
208 $cat['unread'] = 0;
209 $cat['child_unread'] = 0;
210
211 $cat['items'] = $this->get_category_items($line['id']);
212
213 $num_children = $this->calculate_children_count($cat);
214 $cat['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', (int) $num_children), $num_children);
215
216 if ($num_children > 0 || $show_empty_cats)
217 array_push($root['items'], $cat);
218
219 $root['param'] += count($cat['items']);
220 }
221
222 /* Uncategorized is a special case */
223
224 $cat = array();
225 $cat['id'] = 'CAT:0';
226 $cat['bare_id'] = 0;
227 $cat['auxcounter'] = 0;
228 $cat['name'] = __("Uncategorized");
229 $cat['items'] = array();
230 $cat['type'] = 'category';
231 $cat['checkbox'] = false;
232 $cat['unread'] = 0;
233 $cat['child_unread'] = 0;
234
235 $feed_result = $this->dbh->query("SELECT id, title,last_error,
236 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
237 FROM ttrss_feeds
238 WHERE cat_id IS NULL AND owner_uid = ".$_SESSION["uid"].
239 "$search_qpart ORDER BY order_id, title");
240
241 while ($feed_line = $this->dbh->fetch_assoc($feed_result)) {
242 $feed = array();
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);
252 $feed['unread'] = 0;
253 $feed['type'] = 'feed';
254
255 array_push($cat['items'], $feed);
256 }
257
258 $cat['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));
259
260 if (count($cat['items']) > 0 || $show_empty_cats)
261 array_push($root['items'], $cat);
262
263 $num_children = $this->calculate_children_count($root);
264 $root['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', (int) $num_children), $num_children);
265
266 } else {
267 $feed_result = $this->dbh->query("SELECT id, title, last_error,
268 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
269 FROM ttrss_feeds
270 WHERE owner_uid = ".$_SESSION["uid"].
271 "$search_qpart ORDER BY order_id, title");
272
273 while ($feed_line = $this->dbh->fetch_assoc($feed_result)) {
274 $feed = array();
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);
284 $feed['unread'] = 0;
285 $feed['type'] = 'feed';
286
287 array_push($root['items'], $feed);
288 }
289
290 $root['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));
291 }
292
293 $fl = array();
294 $fl['identifier'] = 'id';
295 $fl['label'] = 'name';
296
297 if ($_REQUEST['mode'] != 2) {
298 $fl['items'] = array($root);
299 } else {
300 $fl['items'] = $root['items'];
301 }
302
303 return $fl;
304 }
305
306 function catsortreset() {
307 $this->dbh->query("UPDATE ttrss_feed_categories
308 SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"]);
309 return;
310 }
311
312 function feedsortreset() {
313 $this->dbh->query("UPDATE ttrss_feeds
314 SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"]);
315 return;
316 }
317
318 private function process_category_order(&$data_map, $item_id, $parent_id = false, $nest_level = 0) {
319 $debug = isset($_REQUEST["debug"]);
320
321 $prefix = "";
322 for ($i = 0; $i < $nest_level; $i++)
323 $prefix .= " ";
324
325 if ($debug) _debug("$prefix C: $item_id P: $parent_id");
326
327 $bare_item_id = $this->dbh->escape_string(substr($item_id, strpos($item_id, ':')+1));
328
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);
333 } else {
334 $parent_qpart = 'NULL';
335 }
336
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"]);
340 }
341
342 $order_id = 0;
343
344 $cat = $data_map[$item_id];
345
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));
350
351 if ($debug) _debug("$prefix [$order_id] $id/$bare_id");
352
353 if ($item['_reference']) {
354
355 if (strpos($id, "FEED") === 0) {
356
357 $cat_id = ($item_id != "root") ?
358 $this->dbh->escape_string($bare_item_id) : "NULL";
359
360 $cat_qpart = ($cat_id != 0) ? "cat_id = '$cat_id'" :
361 "cat_id = NULL";
362
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"]);
367
368 } else if (strpos($id, "CAT:") === 0) {
369 $this->process_category_order($data_map, $item['_reference'], $item_id,
370 $nest_level+1);
371
372 if ($item_id != 'root') {
373 $parent_qpart = $this->dbh->escape_string($bare_id);
374 } else {
375 $parent_qpart = 'NULL';
376 }
377
378 $this->dbh->query("UPDATE ttrss_feed_categories
379 SET order_id = '$order_id' WHERE id = '$bare_id' AND
380 owner_uid = " . $_SESSION["uid"]);
381 }
382 }
383
384 ++$order_id;
385 }
386 }
387 }
388
389 function savefeedorder() {
390 $data = json_decode($_POST['payload'], true);
391
392 #file_put_contents("/tmp/saveorder.json", $_POST['payload']);
393 #$data = json_decode(file_get_contents("/tmp/saveorder.json"), true);
394
395 if (!is_array($data['items']))
396 $data['items'] = json_decode($data['items'], true);
397
398 # print_r($data['items']);
399
400 if (is_array($data) && is_array($data['items'])) {
401 # $cat_order_id = 0;
402
403 $data_map = array();
404 $root_item = false;
405
406 foreach ($data['items'] as $item) {
407
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']);
412 } else {
413 $data_map[$item['id']] = $item['items'];
414 }
415 }
416 if ($item['id'] == 'root') {
417 $root_item = $item['id'];
418 }
419 }
420
421 $this->process_category_order($data_map, $root_item);
422
423 /* foreach ($data['items'][0]['items'] as $item) {
424 $id = $item['_reference'];
425 $bare_id = substr($id, strpos($id, ':')+1);
426
427 ++$cat_order_id;
428
429 if ($bare_id > 0) {
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"]);
433 }
434
435 $feed_order_id = 0;
436
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);
441
442 if ($bare_id != 0)
443 $cat_query = "cat_id = '$bare_id'";
444 else
445 $cat_query = "cat_id = NULL";
446
447 $this->dbh->query("UPDATE ttrss_feeds
448 SET order_id = '$feed_order_id',
449 $cat_query
450 WHERE id = '$feed_id' AND
451 owner_uid = " . $_SESSION["uid"]);
452
453 ++$feed_order_id;
454 }
455 }
456 } */
457 }
458
459 return;
460 }
461
462 function removeicon() {
463 $feed_id = $this->dbh->escape_string($_REQUEST["feed_id"]);
464
465 $result = $this->dbh->query("SELECT id FROM ttrss_feeds
466 WHERE id = '$feed_id' AND owner_uid = ". $_SESSION["uid"]);
467
468 if ($this->dbh->num_rows($result) != 0) {
469 @unlink(ICONS_DIR . "/$feed_id.ico");
470
471 $this->dbh->query("UPDATE ttrss_feeds SET favicon_avg_color = NULL
472 where id = '$feed_id'");
473 }
474
475 return;
476 }
477
478 function uploadicon() {
479 header("Content-type: text/html");
480
481 $tmp_file = false;
482
483 if (is_uploaded_file($_FILES['icon_file']['tmp_name'])) {
484 $tmp_file = tempnam(CACHE_DIR . '/upload', 'icon');
485
486 $result = move_uploaded_file($_FILES['icon_file']['tmp_name'],
487 $tmp_file);
488
489 if (!$result) {
490 return;
491 }
492 } else {
493 return;
494 }
495
496 $icon_file = $tmp_file;
497 $feed_id = $this->dbh->escape_string($_REQUEST["feed_id"]);
498
499 if (is_file($icon_file) && $feed_id) {
500 if (filesize($icon_file) < 65535) {
501
502 $result = $this->dbh->query("SELECT id FROM ttrss_feeds
503 WHERE id = '$feed_id' AND owner_uid = ". $_SESSION["uid"]);
504
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'");
511
512 $rc = 0;
513 }
514 } else {
515 $rc = 2;
516 }
517 } else {
518 $rc = 1;
519 }
520 } else {
521 $rc = 2;
522 }
523
524 @unlink($icon_file);
525
526 print "<script type=\"text/javascript\">";
527 print "parent.uploadIconHandler($rc);";
528 print "</script>";
529 return;
530 }
531
532 function editfeed() {
533 global $purge_intervals;
534 global $update_intervals;
535
536 print '<div dojoType="dijit.layout.TabContainer" style="height : 450px">
537 <div dojoType="dijit.layout.ContentPane" title="'.__('General').'">';
538
539 $feed_id = $this->dbh->escape_string($_REQUEST["id"]);
540
541 $result = $this->dbh->query(
542 "SELECT * FROM ttrss_feeds WHERE id = '$feed_id' AND
543 owner_uid = " . $_SESSION["uid"]);
544
545 $auth_pass_encrypted = sql_bool_to_bool($this->dbh->fetch_result($result, 0,
546 "auth_pass_encrypted"));
547
548 $title = htmlspecialchars($this->dbh->fetch_result($result,
549 0, "title"));
550
551 print_hidden("id", "$feed_id");
552 print_hidden("op", "pref-feeds");
553 print_hidden("method", "editSave");
554
555 print "<div class=\"dlgSec\">".__("Feed")."</div>";
556 print "<div class=\"dlgSecCont\">";
557
558 /* Title */
559
560 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\"
561 placeHolder=\"".__("Feed Title")."\"
562 style=\"font-size : 16px; width: 20em\" name=\"title\" value=\"$title\">";
563
564 /* Feed URL */
565
566 $feed_url = $this->dbh->fetch_result($result, 0, "feed_url");
567 $feed_url = htmlspecialchars($this->dbh->fetch_result($result,
568 0, "feed_url"));
569
570 print "<hr/>";
571
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\">";
577
578 $last_error = $this->dbh->fetch_result($result, 0, "last_error");
579
580 if ($last_error) {
581 print "&nbsp;<img src=\"images/error.png\" alt=\"(error)\"
582 style=\"vertical-align : middle\"
583 title=\"".htmlspecialchars($last_error)."\">";
584
585 }
586
587 /* Category */
588
589 if (get_pref('ENABLE_FEED_CATS')) {
590
591 $cat_id = $this->dbh->fetch_result($result, 0, "cat_id");
592
593 print "<hr/>";
594
595 print __('Place in category:') . " ";
596
597 print_feed_cat_select("cat_id", $cat_id,
598 'dojoType="dijit.form.Select"');
599 }
600
601 /* FTS Stemming Language */
602
603 if (DB_TYPE == "pgsql") {
604 $feed_language = $this->dbh->fetch_result($result, 0, "feed_language");
605
606 print "<hr/>";
607
608 print __('Language:') . " ";
609 print_select("feed_language", $feed_language, $this::$feed_languages,
610 'dojoType="dijit.form.Select"');
611 }
612
613 print "</div>";
614
615 print "<div class=\"dlgSec\">".__("Update")."</div>";
616 print "<div class=\"dlgSecCont\">";
617
618 /* Update Interval */
619
620 $update_interval = $this->dbh->fetch_result($result, 0, "update_interval");
621
622 print_select_hash("update_interval", $update_interval, $update_intervals,
623 'dojoType="dijit.form.Select"');
624
625 /* Purge intl */
626
627 $purge_interval = $this->dbh->fetch_result($result, 0, "purge_interval");
628
629 print "<hr/>";
630 print __('Article purging:') . " ";
631
632 print_select_hash("purge_interval", $purge_interval, $purge_intervals,
633 'dojoType="dijit.form.Select" ' .
634 ((FORCE_ARTICLE_PURGE == 0) ? "" : 'disabled="1"'));
635
636 print "</div>";
637 print "<div class=\"dlgSec\">".__("Authentication")."</div>";
638 print "<div class=\"dlgSecCont\">";
639
640 $auth_login = htmlspecialchars($this->dbh->fetch_result($result, 0, "auth_login"));
641
642 print "<input dojoType=\"dijit.form.TextBox\" id=\"feedEditDlg_login\"
643 placeHolder=\"".__("Login")."\"
644 autocomplete=\"new-password\"
645 name=\"auth_login\" value=\"$auth_login\"><hr/>";
646
647 $auth_pass = $this->dbh->fetch_result($result, 0, "auth_pass");
648
649 if ($auth_pass_encrypted && function_exists("mcrypt_decrypt")) {
650 require_once "crypt.php";
651 $auth_pass = decrypt_string($auth_pass);
652 }
653
654 $auth_pass = htmlspecialchars($auth_pass);
655
656 print "<input dojoType=\"dijit.form.TextBox\" type=\"password\" name=\"auth_pass\"
657 autocomplete=\"new-password\"
658 placeHolder=\"".__("Password")."\"
659 value=\"$auth_pass\">";
660
661 print "<div dojoType=\"dijit.Tooltip\" connectId=\"feedEditDlg_login\" position=\"below\">
662 ".__('<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds.')."
663 </div>";
664
665 print "</div>";
666
667 print '</div><div dojoType="dijit.layout.ContentPane" title="'.__('Options').'">';
668
669 //print "<div class=\"dlgSec\">".__("Options")."</div>";
670 print "<div class=\"dlgSecSimple\">";
671
672 $private = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "private"));
673
674 if ($private) {
675 $checked = "checked=\"1\"";
676 } else {
677 $checked = "";
678 }
679
680 print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"private\" id=\"private\"
681 $checked>&nbsp;<label for=\"private\">".__('Hide from Popular feeds')."</label>";
682
683 $include_in_digest = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "include_in_digest"));
684
685 if ($include_in_digest) {
686 $checked = "checked=\"1\"";
687 } else {
688 $checked = "";
689 }
690
691 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"include_in_digest\"
692 name=\"include_in_digest\"
693 $checked>&nbsp;<label for=\"include_in_digest\">".__('Include in e-mail digest')."</label>";
694
695
696 $always_display_enclosures = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "always_display_enclosures"));
697
698 if ($always_display_enclosures) {
699 $checked = "checked";
700 } else {
701 $checked = "";
702 }
703
704 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"always_display_enclosures\"
705 name=\"always_display_enclosures\"
706 $checked>&nbsp;<label for=\"always_display_enclosures\">".__('Always display image attachments')."</label>";
707
708 $hide_images = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "hide_images"));
709
710 if ($hide_images) {
711 $checked = "checked=\"1\"";
712 } else {
713 $checked = "";
714 }
715
716 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"hide_images\"
717 name=\"hide_images\"
718 $checked>&nbsp;<label for=\"hide_images\">".
719 __('Do not embed images')."</label>";
720
721 $cache_images = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "cache_images"));
722
723 if ($cache_images) {
724 $checked = "checked=\"1\"";
725 } else {
726 $checked = "";
727 }
728
729 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"cache_images\"
730 name=\"cache_images\"
731 $checked>&nbsp;<label for=\"cache_images\">".
732 __('Cache media')."</label>";
733
734 $mark_unread_on_update = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "mark_unread_on_update"));
735
736 if ($mark_unread_on_update) {
737 $checked = "checked";
738 } else {
739 $checked = "";
740 }
741
742 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"mark_unread_on_update\"
743 name=\"mark_unread_on_update\"
744 $checked>&nbsp;<label for=\"mark_unread_on_update\">".__('Mark updated articles as unread')."</label>";
745
746 print "</div>";
747
748 print '</div><div dojoType="dijit.layout.ContentPane" title="'.__('Icon').'">';
749
750 /* Icon */
751
752 print "<div class=\"dlgSecSimple\">";
753
754 print "<iframe name=\"icon_upload_iframe\"
755 style=\"width: 400px; height: 100px; display: none;\"></iframe>";
756
757 print "<form style='display : block' target=\"icon_upload_iframe\"
758 enctype=\"multipart/form-data\" method=\"POST\"
759 action=\"backend.php\">
760 <input id=\"icon_file\" size=\"10\" name=\"icon_file\" type=\"file\">
761 <input type=\"hidden\" name=\"op\" value=\"pref-feeds\">
762 <input type=\"hidden\" name=\"feed_id\" value=\"$feed_id\">
763 <input type=\"hidden\" name=\"method\" value=\"uploadicon\"><p>
764 <button class=\"\" dojoType=\"dijit.form.Button\" onclick=\"return uploadFeedIcon();\"
765 type=\"submit\">".__('Replace')."</button>
766 <button class=\"\" dojoType=\"dijit.form.Button\" onclick=\"return removeFeedIcon($feed_id);\"
767 type=\"submit\">".__('Remove')."</button>
768 </form>";
769
770 print "</div>";
771
772 print '</div><div dojoType="dijit.layout.ContentPane" title="'.__('Plugins').'">';
773
774 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_EDIT_FEED,
775 "hook_prefs_edit_feed", $feed_id);
776
777
778 print "</div></div>";
779
780 $title = htmlspecialchars($title, ENT_QUOTES);
781
782 print "<div class='dlgButtons'>
783 <div style=\"float : left\">
784 <button class=\"danger\" dojoType=\"dijit.form.Button\" onclick='return unsubscribeFeed($feed_id, \"$title\")'>".
785 __('Unsubscribe')."</button>";
786
787 if (PUBSUBHUBBUB_ENABLED) {
788 $pubsub_state = $this->dbh->fetch_result($result, 0, "pubsub_state");
789 $pubsub_btn_disabled = ($pubsub_state == 2) ? "" : "disabled=\"1\"";
790
791 print "<button dojoType=\"dijit.form.Button\" id=\"pubsubReset_Btn\" $pubsub_btn_disabled
792 onclick='return resetPubSub($feed_id, \"$title\")'>".__('Resubscribe to push updates').
793 "</button>";
794 }
795
796 print "</div>";
797
798 print "<div dojoType=\"dijit.Tooltip\" connectId=\"pubsubReset_Btn\" position=\"below\">".
799 __('Resets PubSubHubbub subscription status for push-enabled feeds.')."</div>";
800
801 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedEditDlg').execute()\">".__('Save')."</button>
802 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedEditDlg').hide()\">".__('Cancel')."</button>
803 </div>";
804
805
806 return;
807 }
808
809 function editfeeds() {
810 global $purge_intervals;
811 global $update_intervals;
812
813 $feed_ids = $this->dbh->escape_string($_REQUEST["ids"]);
814
815 print_notice("Enable the options you wish to apply using checkboxes on the right:");
816
817 print "<p>";
818
819 print_hidden("ids", "$feed_ids");
820 print_hidden("op", "pref-feeds");
821 print_hidden("method", "batchEditSave");
822
823 print "<div class=\"dlgSec\">".__("Feed")."</div>";
824 print "<div class=\"dlgSecCont\">";
825
826 /* Category */
827
828 if (get_pref('ENABLE_FEED_CATS')) {
829
830 print __('Place in category:') . " ";
831
832 print_feed_cat_select("cat_id", false,
833 'disabled="1" dojoType="dijit.form.Select"');
834
835 $this->batch_edit_cbox("cat_id");
836
837 }
838
839 /* FTS Stemming Language */
840
841 if (DB_TYPE == "pgsql") {
842 print "<hr/>";
843
844 print __('Language:') . " ";
845 print_select("feed_language", "", $this::$feed_languages,
846 'disabled="1" dojoType="dijit.form.Select"');
847
848 $this->batch_edit_cbox("feed_language");
849 }
850
851 print "</div>";
852
853 print "<div class=\"dlgSec\">".__("Update")."</div>";
854 print "<div class=\"dlgSecCont\">";
855
856 /* Update Interval */
857
858 print_select_hash("update_interval", "", $update_intervals,
859 'disabled="1" dojoType="dijit.form.Select"');
860
861 $this->batch_edit_cbox("update_interval");
862
863 /* Purge intl */
864
865 if (FORCE_ARTICLE_PURGE == 0) {
866
867 print "<br/>";
868
869 print __('Article purging:') . " ";
870
871 print_select_hash("purge_interval", "", $purge_intervals,
872 'disabled="1" dojoType="dijit.form.Select"');
873
874 $this->batch_edit_cbox("purge_interval");
875 }
876
877 print "</div>";
878 print "<div class=\"dlgSec\">".__("Authentication")."</div>";
879 print "<div class=\"dlgSecCont\">";
880
881 print "<input dojoType=\"dijit.form.TextBox\"
882 placeHolder=\"".__("Login")."\" disabled=\"1\"
883 autocomplete=\"new-password\"
884 name=\"auth_login\" value=\"\">";
885
886 $this->batch_edit_cbox("auth_login");
887
888 print "<hr/> <input dojoType=\"dijit.form.TextBox\" type=\"password\" name=\"auth_pass\"
889 autocomplete=\"new-password\"
890 placeHolder=\"".__("Password")."\" disabled=\"1\"
891 value=\"\">";
892
893 $this->batch_edit_cbox("auth_pass");
894
895 print "</div>";
896 print "<div class=\"dlgSec\">".__("Options")."</div>";
897 print "<div class=\"dlgSecCont\">";
898
899 print "<input disabled=\"1\" type=\"checkbox\" name=\"private\" id=\"private\"
900 dojoType=\"dijit.form.CheckBox\">&nbsp;<label id=\"private_l\" class='insensitive' for=\"private\">".__('Hide from Popular feeds')."</label>";
901
902 print "&nbsp;"; $this->batch_edit_cbox("private", "private_l");
903
904 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"include_in_digest\"
905 name=\"include_in_digest\"
906 dojoType=\"dijit.form.CheckBox\">&nbsp;<label id=\"include_in_digest_l\" class='insensitive' for=\"include_in_digest\">".__('Include in e-mail digest')."</label>";
907
908 print "&nbsp;"; $this->batch_edit_cbox("include_in_digest", "include_in_digest_l");
909
910 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"always_display_enclosures\"
911 name=\"always_display_enclosures\"
912 dojoType=\"dijit.form.CheckBox\">&nbsp;<label id=\"always_display_enclosures_l\" class='insensitive' for=\"always_display_enclosures\">".__('Always display image attachments')."</label>";
913
914 print "&nbsp;"; $this->batch_edit_cbox("always_display_enclosures", "always_display_enclosures_l");
915
916 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"hide_images\"
917 name=\"hide_images\"
918 dojoType=\"dijit.form.CheckBox\">&nbsp;<label class='insensitive' id=\"hide_images_l\"
919 for=\"hide_images\">".
920 __('Do not embed images')."</label>";
921
922 print "&nbsp;"; $this->batch_edit_cbox("hide_images", "hide_images_l");
923
924 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"cache_images\"
925 name=\"cache_images\"
926 dojoType=\"dijit.form.CheckBox\">&nbsp;<label class='insensitive' id=\"cache_images_l\"
927 for=\"cache_images\">".
928 __('Cache media')."</label>";
929
930 print "&nbsp;"; $this->batch_edit_cbox("cache_images", "cache_images_l");
931
932 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"mark_unread_on_update\"
933 name=\"mark_unread_on_update\"
934 dojoType=\"dijit.form.CheckBox\">&nbsp;<label id=\"mark_unread_on_update_l\" class='insensitive' for=\"mark_unread_on_update\">".__('Mark updated articles as unread')."</label>";
935
936 print "&nbsp;"; $this->batch_edit_cbox("mark_unread_on_update", "mark_unread_on_update_l");
937
938 print "</div>";
939
940 print "<div class='dlgButtons'>
941 <button dojoType=\"dijit.form.Button\"
942 onclick=\"return dijit.byId('feedEditDlg').execute()\">".
943 __('Save')."</button>
944 <button dojoType=\"dijit.form.Button\"
945 onclick=\"return dijit.byId('feedEditDlg').hide()\">".
946 __('Cancel')."</button>
947 </div>";
948
949 return;
950 }
951
952 function batchEditSave() {
953 return $this->editsaveops(true);
954 }
955
956 function editSave() {
957 return $this->editsaveops(false);
958 }
959
960 function editsaveops($batch) {
961
962 $feed_title = $this->dbh->escape_string(trim($_POST["title"]));
963 $feed_link = $this->dbh->escape_string(trim($_POST["feed_url"]));
964 $upd_intl = (int) $this->dbh->escape_string($_POST["update_interval"]);
965 $purge_intl = (int) $this->dbh->escape_string($_POST["purge_interval"]);
966 $feed_id = (int) $this->dbh->escape_string($_POST["id"]); /* editSave */
967 $feed_ids = $this->dbh->escape_string($_POST["ids"]); /* batchEditSave */
968 $cat_id = (int) $this->dbh->escape_string($_POST["cat_id"]);
969 $auth_login = $this->dbh->escape_string(trim($_POST["auth_login"]));
970 $auth_pass = trim($_POST["auth_pass"]);
971 $private = checkbox_to_sql_bool($this->dbh->escape_string($_POST["private"]));
972 $include_in_digest = checkbox_to_sql_bool(
973 $this->dbh->escape_string($_POST["include_in_digest"]));
974 $cache_images = checkbox_to_sql_bool(
975 $this->dbh->escape_string($_POST["cache_images"]));
976 $hide_images = checkbox_to_sql_bool(
977 $this->dbh->escape_string($_POST["hide_images"]));
978 $always_display_enclosures = checkbox_to_sql_bool(
979 $this->dbh->escape_string($_POST["always_display_enclosures"]));
980
981 $mark_unread_on_update = checkbox_to_sql_bool(
982 $this->dbh->escape_string($_POST["mark_unread_on_update"]));
983
984 $feed_language = $this->dbh->escape_string(trim($_POST["feed_language"]));
985
986 $auth_pass_encrypted = 'false';
987 $auth_pass = $this->dbh->escape_string($auth_pass);
988
989 if (get_pref('ENABLE_FEED_CATS')) {
990 if ($cat_id && $cat_id != 0) {
991 $category_qpart = "cat_id = '$cat_id',";
992 $category_qpart_nocomma = "cat_id = '$cat_id'";
993 } else {
994 $category_qpart = 'cat_id = NULL,';
995 $category_qpart_nocomma = 'cat_id = NULL';
996 }
997 } else {
998 $category_qpart = "";
999 $category_qpart_nocomma = "";
1000 }
1001
1002 if (!$batch) {
1003
1004 $result = db_query("SELECT feed_url FROM ttrss_feeds WHERE id = " . $feed_id);
1005 $orig_feed_url = db_fetch_result($result, 0, "feed_url");
1006
1007 $reset_basic_info = $orig_feed_url != $feed_link;
1008
1009 $this->dbh->query("UPDATE ttrss_feeds SET
1010 $category_qpart
1011 title = '$feed_title', feed_url = '$feed_link',
1012 update_interval = '$upd_intl',
1013 purge_interval = '$purge_intl',
1014 auth_login = '$auth_login',
1015 auth_pass = '$auth_pass',
1016 auth_pass_encrypted = $auth_pass_encrypted,
1017 private = $private,
1018 cache_images = $cache_images,
1019 hide_images = $hide_images,
1020 include_in_digest = $include_in_digest,
1021 always_display_enclosures = $always_display_enclosures,
1022 mark_unread_on_update = $mark_unread_on_update,
1023 feed_language = '$feed_language'
1024 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
1025
1026 if ($reset_basic_info) {
1027 RSSUtils::set_basic_feed_info($feed_id);
1028 }
1029
1030 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_SAVE_FEED,
1031 "hook_prefs_save_feed", $feed_id);
1032
1033 } else {
1034 $feed_data = array();
1035
1036 foreach (array_keys($_POST) as $k) {
1037 if ($k != "op" && $k != "method" && $k != "ids") {
1038 $feed_data[$k] = $_POST[$k];
1039 }
1040 }
1041
1042 $this->dbh->query("BEGIN");
1043
1044 foreach (array_keys($feed_data) as $k) {
1045
1046 $qpart = "";
1047
1048 switch ($k) {
1049 case "title":
1050 $qpart = "title = '$feed_title'";
1051 break;
1052
1053 case "feed_url":
1054 $qpart = "feed_url = '$feed_link'";
1055 break;
1056
1057 case "update_interval":
1058 $qpart = "update_interval = '$upd_intl'";
1059 break;
1060
1061 case "purge_interval":
1062 $qpart = "purge_interval = '$purge_intl'";
1063 break;
1064
1065 case "auth_login":
1066 $qpart = "auth_login = '$auth_login'";
1067 break;
1068
1069 case "auth_pass":
1070 $qpart = "auth_pass = '$auth_pass' AND
1071 auth_pass_encrypted = $auth_pass_encrypted";
1072 break;
1073
1074 case "private":
1075 $qpart = "private = $private";
1076 break;
1077
1078 case "include_in_digest":
1079 $qpart = "include_in_digest = $include_in_digest";
1080 break;
1081
1082 case "always_display_enclosures":
1083 $qpart = "always_display_enclosures = $always_display_enclosures";
1084 break;
1085
1086 case "mark_unread_on_update":
1087 $qpart = "mark_unread_on_update = $mark_unread_on_update";
1088 break;
1089
1090 case "cache_images":
1091 $qpart = "cache_images = $cache_images";
1092 break;
1093
1094 case "hide_images":
1095 $qpart = "hide_images = $hide_images";
1096 break;
1097
1098 case "cat_id":
1099 $qpart = $category_qpart_nocomma;
1100 break;
1101
1102 case "feed_language":
1103 $qpart = "feed_language = '$feed_language'";
1104 break;
1105
1106 }
1107
1108 if ($qpart) {
1109 $this->dbh->query(
1110 "UPDATE ttrss_feeds SET $qpart WHERE id IN ($feed_ids)
1111 AND owner_uid = " . $_SESSION["uid"]);
1112 print "<br/>";
1113 }
1114 }
1115
1116 $this->dbh->query("COMMIT");
1117 }
1118 return;
1119 }
1120
1121 function resetPubSub() {
1122
1123 $ids = $this->dbh->escape_string($_REQUEST["ids"]);
1124
1125 $this->dbh->query("UPDATE ttrss_feeds SET pubsub_state = 0 WHERE id IN ($ids)
1126 AND owner_uid = " . $_SESSION["uid"]);
1127
1128 return;
1129 }
1130
1131 function remove() {
1132
1133 $ids = explode(",", $this->dbh->escape_string($_REQUEST["ids"]));
1134
1135 foreach ($ids as $id) {
1136 Pref_Feeds::remove_feed($id, $_SESSION["uid"]);
1137 }
1138
1139 return;
1140 }
1141
1142 function clear() {
1143 $id = $this->dbh->escape_string($_REQUEST["id"]);
1144 $this->clear_feed_articles($id);
1145 }
1146
1147 function rescore() {
1148 $ids = explode(",", $this->dbh->escape_string($_REQUEST["ids"]));
1149
1150 foreach ($ids as $id) {
1151
1152 $filters = load_filters($id, $_SESSION["uid"], 6);
1153
1154 $result = $this->dbh->query("SELECT
1155 title, content, link, ref_id, author,".
1156 SUBSTRING_FOR_DATE."(updated, 1, 19) AS updated
1157 FROM
1158 ttrss_user_entries, ttrss_entries
1159 WHERE ref_id = id AND feed_id = '$id' AND
1160 owner_uid = " .$_SESSION['uid']."
1161 ");
1162
1163 $scores = array();
1164
1165 while ($line = $this->dbh->fetch_assoc($result)) {
1166
1167 $tags = Article::get_article_tags($line["ref_id"]);
1168
1169 $article_filters = RSSUtils::get_article_filters($filters, $line['title'],
1170 $line['content'], $line['link'], strtotime($line['updated']),
1171 $line['author'], $tags);
1172
1173 $new_score = RSSUtils::calculate_article_score($article_filters);
1174
1175 if (!$scores[$new_score]) $scores[$new_score] = array();
1176
1177 array_push($scores[$new_score], $line['ref_id']);
1178 }
1179
1180 foreach (array_keys($scores) as $s) {
1181 if ($s > 1000) {
1182 $this->dbh->query("UPDATE ttrss_user_entries SET score = '$s',
1183 marked = true WHERE
1184 ref_id IN (" . join(',', $scores[$s]) . ")");
1185 } else if ($s < -500) {
1186 $this->dbh->query("UPDATE ttrss_user_entries SET score = '$s',
1187 unread = false WHERE
1188 ref_id IN (" . join(',', $scores[$s]) . ")");
1189 } else {
1190 $this->dbh->query("UPDATE ttrss_user_entries SET score = '$s' WHERE
1191 ref_id IN (" . join(',', $scores[$s]) . ")");
1192 }
1193 }
1194 }
1195
1196 print __("All done.");
1197
1198 }
1199
1200 function rescoreAll() {
1201
1202 $result = $this->dbh->query(
1203 "SELECT id FROM ttrss_feeds WHERE owner_uid = " . $_SESSION['uid']);
1204
1205 while ($feed_line = $this->dbh->fetch_assoc($result)) {
1206
1207 $id = $feed_line["id"];
1208
1209 $filters = load_filters($id, $_SESSION["uid"], 6);
1210
1211 $tmp_result = $this->dbh->query("SELECT
1212 title, content, link, ref_id, author,".
1213 SUBSTRING_FOR_DATE."(updated, 1, 19) AS updated
1214 FROM
1215 ttrss_user_entries, ttrss_entries
1216 WHERE ref_id = id AND feed_id = '$id' AND
1217 owner_uid = " .$_SESSION['uid']."
1218 ");
1219
1220 $scores = array();
1221
1222 while ($line = $this->dbh->fetch_assoc($tmp_result)) {
1223
1224 $tags = Article::get_article_tags($line["ref_id"]);
1225
1226 $article_filters = RSSUtils::get_article_filters($filters, $line['title'],
1227 $line['content'], $line['link'], strtotime($line['updated']),
1228 $line['author'], $tags);
1229
1230 $new_score = RSSUtils::calculate_article_score($article_filters);
1231
1232 if (!$scores[$new_score]) $scores[$new_score] = array();
1233
1234 array_push($scores[$new_score], $line['ref_id']);
1235 }
1236
1237 foreach (array_keys($scores) as $s) {
1238 if ($s > 1000) {
1239 $this->dbh->query("UPDATE ttrss_user_entries SET score = '$s',
1240 marked = true WHERE
1241 ref_id IN (" . join(',', $scores[$s]) . ")");
1242 } else {
1243 $this->dbh->query("UPDATE ttrss_user_entries SET score = '$s' WHERE
1244 ref_id IN (" . join(',', $scores[$s]) . ")");
1245 }
1246 }
1247 }
1248
1249 print __("All done.");
1250
1251 }
1252
1253 function categorize() {
1254 $ids = explode(",", $this->dbh->escape_string($_REQUEST["ids"]));
1255
1256 $cat_id = $this->dbh->escape_string($_REQUEST["cat_id"]);
1257
1258 if ($cat_id == 0) {
1259 $cat_id_qpart = 'NULL';
1260 } else {
1261 $cat_id_qpart = "'$cat_id'";
1262 }
1263
1264 $this->dbh->query("BEGIN");
1265
1266 foreach ($ids as $id) {
1267
1268 $this->dbh->query("UPDATE ttrss_feeds SET cat_id = $cat_id_qpart
1269 WHERE id = '$id'
1270 AND owner_uid = " . $_SESSION["uid"]);
1271
1272 }
1273
1274 $this->dbh->query("COMMIT");
1275 }
1276
1277 function removeCat() {
1278 $ids = explode(",", $this->dbh->escape_string($_REQUEST["ids"]));
1279 foreach ($ids as $id) {
1280 $this->remove_feed_category($id, $_SESSION["uid"]);
1281 }
1282 }
1283
1284 function addCat() {
1285 $feed_cat = $this->dbh->escape_string(trim($_REQUEST["cat"]));
1286
1287 add_feed_category($feed_cat);
1288 }
1289
1290 function index() {
1291
1292 print "<div dojoType=\"dijit.layout.AccordionContainer\" region=\"center\">";
1293 print "<div id=\"pref-feeds-feeds\" dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Feeds')."\">";
1294
1295 $result = $this->dbh->query("SELECT COUNT(id) AS num_errors
1296 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
1297
1298 $num_errors = $this->dbh->fetch_result($result, 0, "num_errors");
1299
1300 if ($num_errors > 0) {
1301
1302 $error_button = "<button dojoType=\"dijit.form.Button\"
1303 onclick=\"showFeedsWithErrors()\" id=\"errorButton\">" .
1304 __("Feeds with errors") . "</button>";
1305 }
1306
1307 $inactive_button = "<button dojoType=\"dijit.form.Button\"
1308 id=\"pref_feeds_inactive_btn\"
1309 style=\"display : none\"
1310 onclick=\"showInactiveFeeds()\">" .
1311 __("Inactive feeds") . "</button>";
1312
1313 $feed_search = $this->dbh->escape_string($_REQUEST["search"]);
1314
1315 if (array_key_exists("search", $_REQUEST)) {
1316 $_SESSION["prefs_feed_search"] = $feed_search;
1317 } else {
1318 $feed_search = $_SESSION["prefs_feed_search"];
1319 }
1320
1321 print '<div dojoType="dijit.layout.BorderContainer" gutters="false">';
1322
1323 print "<div region='top' dojoType=\"dijit.Toolbar\">"; #toolbar
1324
1325 print "<div style='float : right; padding-right : 4px;'>
1326 <input dojoType=\"dijit.form.TextBox\" id=\"feed_search\" size=\"20\" type=\"search\"
1327 value=\"$feed_search\">
1328 <button dojoType=\"dijit.form.Button\" onclick=\"updateFeedList()\">".
1329 __('Search')."</button>
1330 </div>";
1331
1332 print "<div dojoType=\"dijit.form.DropDownButton\">".
1333 "<span>" . __('Select')."</span>";
1334 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1335 print "<div onclick=\"dijit.byId('feedTree').model.setAllChecked(true)\"
1336 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
1337 print "<div onclick=\"dijit.byId('feedTree').model.setAllChecked(false)\"
1338 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
1339 print "</div></div>";
1340
1341 print "<div dojoType=\"dijit.form.DropDownButton\">".
1342 "<span>" . __('Feeds')."</span>";
1343 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1344 print "<div onclick=\"quickAddFeed()\"
1345 dojoType=\"dijit.MenuItem\">".__('Subscribe to feed')."</div>";
1346 print "<div onclick=\"editSelectedFeed()\"
1347 dojoType=\"dijit.MenuItem\">".__('Edit selected feeds')."</div>";
1348 print "<div onclick=\"resetFeedOrder()\"
1349 dojoType=\"dijit.MenuItem\">".__('Reset sort order')."</div>";
1350 print "<div onclick=\"batchSubscribe()\"
1351 dojoType=\"dijit.MenuItem\">".__('Batch subscribe')."</div>";
1352 print "<div dojoType=\"dijit.MenuItem\" onclick=\"removeSelectedFeeds()\">"
1353 .__('Unsubscribe')."</div> ";
1354 print "</div></div>";
1355
1356 if (get_pref('ENABLE_FEED_CATS')) {
1357 print "<div dojoType=\"dijit.form.DropDownButton\">".
1358 "<span>" . __('Categories')."</span>";
1359 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1360 print "<div onclick=\"createCategory()\"
1361 dojoType=\"dijit.MenuItem\">".__('Add category')."</div>";
1362 print "<div onclick=\"resetCatOrder()\"
1363 dojoType=\"dijit.MenuItem\">".__('Reset sort order')."</div>";
1364 print "<div onclick=\"removeSelectedCategories()\"
1365 dojoType=\"dijit.MenuItem\">".__('Remove selected')."</div>";
1366 print "</div></div>";
1367
1368 }
1369
1370 print $error_button;
1371 print $inactive_button;
1372
1373 if (defined('_ENABLE_FEED_DEBUGGING')) {
1374
1375 print "<select id=\"feedActionChooser\" onchange=\"feedActionChange()\">
1376 <option value=\"facDefault\" selected>".__('More actions...')."</option>";
1377
1378 if (FORCE_ARTICLE_PURGE == 0) {
1379 print
1380 "<option value=\"facPurge\">".__('Manual purge')."</option>";
1381 }
1382
1383 print "
1384 <option value=\"facClear\">".__('Clear feed data')."</option>
1385 <option value=\"facRescore\">".__('Rescore articles')."</option>";
1386
1387 print "</select>";
1388
1389 }
1390
1391 print "</div>"; # toolbar
1392
1393 //print '</div>';
1394 print '<div dojoType="dijit.layout.ContentPane" region="center">';
1395
1396 print "<div id=\"feedlistLoading\">
1397 <img src='images/indicator_tiny.gif'>".
1398 __("Loading, please wait...")."</div>";
1399
1400 print "<div dojoType=\"fox.PrefFeedStore\" jsId=\"feedStore\"
1401 url=\"backend.php?op=pref-feeds&method=getfeedtree\">
1402 </div>
1403 <div dojoType=\"lib.CheckBoxStoreModel\" jsId=\"feedModel\" store=\"feedStore\"
1404 query=\"{id:'root'}\" rootId=\"root\" rootLabel=\"Feeds\"
1405 childrenAttrs=\"items\" checkboxStrict=\"false\" checkboxAll=\"false\">
1406 </div>
1407 <div dojoType=\"fox.PrefFeedTree\" id=\"feedTree\"
1408 dndController=\"dijit.tree.dndSource\"
1409 betweenThreshold=\"5\"
1410 autoExpand='true'
1411 model=\"feedModel\" openOnClick=\"false\">
1412 <script type=\"dojo/method\" event=\"onClick\" args=\"item\">
1413 var id = String(item.id);
1414 var bare_id = id.substr(id.indexOf(':')+1);
1415
1416 if (id.match('FEED:')) {
1417 editFeed(bare_id);
1418 } else if (id.match('CAT:')) {
1419 editCat(bare_id, item);
1420 }
1421 </script>
1422 <script type=\"dojo/method\" event=\"onLoad\" args=\"item\">
1423 Element.hide(\"feedlistLoading\");
1424
1425 checkInactiveFeeds();
1426 </script>
1427 </div>";
1428
1429 # print "<div dojoType=\"dijit.Tooltip\" connectId=\"feedTree\" position=\"below\">
1430 # ".__('<b>Hint:</b> you can drag feeds and categories around.')."
1431 # </div>";
1432
1433 print '</div>';
1434 print '</div>';
1435
1436 print "</div>"; # feeds pane
1437
1438 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('OPML')."\">";
1439
1440 print "<p>" . __("Using OPML you can export and import your feeds, filters, labels and Tiny Tiny RSS settings.") .
1441 __("Only main settings profile can be migrated using OPML.") . "</p>";
1442
1443 print "<iframe id=\"upload_iframe\"
1444 name=\"upload_iframe\" onload=\"opmlImportComplete(this)\"
1445 style=\"width: 400px; height: 100px; display: none;\"></iframe>";
1446
1447 print "<form name=\"opml_form\" style='display : block' target=\"upload_iframe\"
1448 enctype=\"multipart/form-data\" method=\"POST\"
1449 action=\"backend.php\">
1450 <input id=\"opml_file\" name=\"opml_file\" type=\"file\">&nbsp;
1451 <input type=\"hidden\" name=\"op\" value=\"dlg\">
1452 <input type=\"hidden\" name=\"method\" value=\"importOpml\">
1453 <button dojoType=\"dijit.form.Button\" onclick=\"return opmlImport();\" type=\"submit\">" .
1454 __('Import my OPML') . "</button>";
1455
1456 print "<hr>";
1457
1458 $opml_export_filename = "TinyTinyRSS_".date("Y-m-d").".opml";
1459
1460 print "<p>" . __('Filename:') .
1461 " <input type=\"text\" id=\"filename\" value=\"$opml_export_filename\" />&nbsp;" .
1462 __('Include settings') . "<input type=\"checkbox\" id=\"settings\" checked=\"1\"/>";
1463
1464 print "</p><button dojoType=\"dijit.form.Button\"
1465 onclick=\"gotoExportOpml(document.opml_form.filename.value, document.opml_form.settings.checked)\" >" .
1466 __('Export OPML') . "</button></p></form>";
1467
1468 print "<hr>";
1469
1470 print "<p>" . __('Your OPML can be published publicly and can be subscribed by anyone who knows the URL below.') . "</p>";
1471
1472 print_warning("Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds.");
1473
1474 print "<button dojoType=\"dijit.form.Button\" onclick=\"return displayDlg('".__("Public OPML URL")."','pubOPMLUrl')\">".
1475 __('Display published OPML URL')."</button> ";
1476
1477 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB_SECTION,
1478 "hook_prefs_tab_section", "prefFeedsOPML");
1479
1480 print "</div>"; # pane
1481
1482 if (strpos($_SERVER['HTTP_USER_AGENT'], "Firefox") !== false) {
1483
1484 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Firefox integration')."\">";
1485
1486 print_notice(__('This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below.'));
1487
1488 print "<p>";
1489
1490 print "<button onclick='window.navigator.registerContentHandler(" .
1491 "\"application/vnd.mozilla.maybe.feed\", " .
1492 "\"" . add_feed_url() . "\", " . " \"Tiny Tiny RSS\")'>" .
1493 __('Click here to register this site as a feed reader.') .
1494 "</button>";
1495
1496 print "</p>";
1497
1498 print "</div>"; # pane
1499 }
1500
1501 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Published & shared articles / Generated feeds')."\">";
1502
1503 print "<p>" . __('Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below.') . "</p>";
1504
1505 $rss_url = '-2::' . htmlspecialchars(get_self_url_prefix() .
1506 "/public.php?op=rss&id=-2&view-mode=all_articles");;
1507
1508 print "<p>";
1509
1510 print "<button dojoType=\"dijit.form.Button\" onclick=\"return displayDlg('".__("View as RSS")."','generatedFeed', '$rss_url')\">".
1511 __('Display URL')."</button> ";
1512
1513 print "<button class=\"warning\" dojoType=\"dijit.form.Button\" onclick=\"return clearFeedAccessKeys()\">".
1514 __('Clear all generated URLs')."</button> ";
1515
1516 print "</p>";
1517
1518 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB_SECTION,
1519 "hook_prefs_tab_section", "prefFeedsPublishedGenerated");
1520
1521 print "</div>"; #pane
1522
1523 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB,
1524 "hook_prefs_tab", "prefFeeds");
1525
1526 print "</div>"; #container
1527 }
1528
1529 private function feedlist_init_cat($cat_id) {
1530 $obj = array();
1531 $cat_id = (int) $cat_id;
1532
1533 if ($cat_id > 0) {
1534 $cat_unread = CCache::find($cat_id, $_SESSION["uid"], true);
1535 } else if ($cat_id == 0 || $cat_id == -2) {
1536 $cat_unread = Feeds::getCategoryUnread($cat_id);
1537 }
1538
1539 $obj['id'] = 'CAT:' . $cat_id;
1540 $obj['items'] = array();
1541 $obj['name'] = Feeds::getCategoryTitle($cat_id);
1542 $obj['type'] = 'category';
1543 $obj['unread'] = (int) $cat_unread;
1544 $obj['bare_id'] = $cat_id;
1545
1546 return $obj;
1547 }
1548
1549 private function feedlist_init_feed($feed_id, $title = false, $unread = false, $error = '', $updated = '') {
1550 $obj = array();
1551 $feed_id = (int) $feed_id;
1552
1553 if (!$title)
1554 $title = Feeds::getFeedTitle($feed_id, false);
1555
1556 if ($unread === false)
1557 $unread = getFeedUnread($feed_id, false);
1558
1559 $obj['id'] = 'FEED:' . $feed_id;
1560 $obj['name'] = $title;
1561 $obj['unread'] = (int) $unread;
1562 $obj['type'] = 'feed';
1563 $obj['error'] = $error;
1564 $obj['updated'] = $updated;
1565 $obj['icon'] = Feeds::getFeedIcon($feed_id);
1566 $obj['bare_id'] = $feed_id;
1567 $obj['auxcounter'] = 0;
1568
1569 return $obj;
1570 }
1571
1572 function inactiveFeeds() {
1573
1574 if (DB_TYPE == "pgsql") {
1575 $interval_qpart = "NOW() - INTERVAL '3 months'";
1576 } else {
1577 $interval_qpart = "DATE_SUB(NOW(), INTERVAL 3 MONTH)";
1578 }
1579
1580 $result = $this->dbh->query("SELECT ttrss_feeds.title, ttrss_feeds.site_url,
1581 ttrss_feeds.feed_url, ttrss_feeds.id, MAX(updated) AS last_article
1582 FROM ttrss_feeds, ttrss_entries, ttrss_user_entries WHERE
1583 (SELECT MAX(updated) FROM ttrss_entries, ttrss_user_entries WHERE
1584 ttrss_entries.id = ref_id AND
1585 ttrss_user_entries.feed_id = ttrss_feeds.id) < $interval_qpart
1586 AND ttrss_feeds.owner_uid = ".$_SESSION["uid"]." AND
1587 ttrss_user_entries.feed_id = ttrss_feeds.id AND
1588 ttrss_entries.id = ref_id
1589 GROUP BY ttrss_feeds.title, ttrss_feeds.id, ttrss_feeds.site_url, ttrss_feeds.feed_url
1590 ORDER BY last_article");
1591
1592 print "<p" .__("These feeds have not been updated with new content for 3 months (oldest first):") . "</p>";
1593
1594 print "<div dojoType=\"dijit.Toolbar\">";
1595 print "<div dojoType=\"dijit.form.DropDownButton\">".
1596 "<span>" . __('Select')."</span>";
1597 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1598 print "<div onclick=\"selectTableRows('prefInactiveFeedList', 'all')\"
1599 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
1600 print "<div onclick=\"selectTableRows('prefInactiveFeedList', 'none')\"
1601 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
1602 print "</div></div>";
1603 print "</div>"; #toolbar
1604
1605 print "<div class=\"inactiveFeedHolder\">";
1606
1607 print "<table width=\"100%\" cellspacing=\"0\" id=\"prefInactiveFeedList\">";
1608
1609 $lnum = 1;
1610
1611 while ($line = $this->dbh->fetch_assoc($result)) {
1612
1613 $feed_id = $line["id"];
1614 $this_row_id = "id=\"FUPDD-$feed_id\"";
1615
1616 # class needed for selectTableRows()
1617 print "<tr class=\"placeholder\" $this_row_id>";
1618
1619 # id needed for selectTableRows()
1620 print "<td width='5%' align='center'><input
1621 onclick='toggleSelectRow2(this);' dojoType=\"dijit.form.CheckBox\"
1622 type=\"checkbox\" id=\"FUPDC-$feed_id\"></td>";
1623 print "<td>";
1624
1625 print "<a class=\"visibleLink\" href=\"#\" ".
1626 "title=\"".__("Click to edit feed")."\" ".
1627 "onclick=\"editFeed(".$line["id"].")\">".
1628 htmlspecialchars($line["title"])."</a>";
1629
1630 print "</td><td class=\"insensitive\" align='right'>";
1631 print make_local_datetime($line['last_article'], false);
1632 print "</td>";
1633 print "</tr>";
1634
1635 ++$lnum;
1636 }
1637
1638 print "</table>";
1639 print "</div>";
1640
1641 print "<div class='dlgButtons'>";
1642 print "<div style='float : left'>";
1643 print "<button class=\"danger\" dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('inactiveFeedsDlg').removeSelected()\">"
1644 .__('Unsubscribe from selected feeds')."</button> ";
1645 print "</div>";
1646
1647 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('inactiveFeedsDlg').hide()\">".
1648 __('Close this window')."</button>";
1649
1650 print "</div>";
1651
1652 }
1653
1654 function feedsWithErrors() {
1655 $result = $this->dbh->query("SELECT id,title,feed_url,last_error,site_url
1656 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
1657
1658 print "<div dojoType=\"dijit.Toolbar\">";
1659 print "<div dojoType=\"dijit.form.DropDownButton\">".
1660 "<span>" . __('Select')."</span>";
1661 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1662 print "<div onclick=\"selectTableRows('prefErrorFeedList', 'all')\"
1663 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
1664 print "<div onclick=\"selectTableRows('prefErrorFeedList', 'none')\"
1665 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
1666 print "</div></div>";
1667 print "</div>"; #toolbar
1668
1669 print "<div class=\"inactiveFeedHolder\">";
1670
1671 print "<table width=\"100%\" cellspacing=\"0\" id=\"prefErrorFeedList\">";
1672
1673 $lnum = 1;
1674
1675 while ($line = $this->dbh->fetch_assoc($result)) {
1676
1677 $feed_id = $line["id"];
1678 $this_row_id = "id=\"FERDD-$feed_id\"";
1679
1680 # class needed for selectTableRows()
1681 print "<tr class=\"placeholder\" $this_row_id>";
1682
1683 # id needed for selectTableRows()
1684 print "<td width='5%' align='center'><input
1685 onclick='toggleSelectRow2(this);' dojoType=\"dijit.form.CheckBox\"
1686 type=\"checkbox\" id=\"FERDC-$feed_id\"></td>";
1687 print "<td>";
1688
1689 print "<a class=\"visibleLink\" href=\"#\" ".
1690 "title=\"".__("Click to edit feed")."\" ".
1691 "onclick=\"editFeed(".$line["id"].")\">".
1692 htmlspecialchars($line["title"])."</a>: ";
1693
1694 print "<span class=\"insensitive\">";
1695 print htmlspecialchars($line["last_error"]);
1696 print "</span>";
1697
1698 print "</td>";
1699 print "</tr>";
1700
1701 ++$lnum;
1702 }
1703
1704 print "</table>";
1705 print "</div>";
1706
1707 print "<div class='dlgButtons'>";
1708 print "<div style='float : left'>";
1709 print "<button class=\"danger\" dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('errorFeedsDlg').removeSelected()\">"
1710 .__('Unsubscribe from selected feeds')."</button> ";
1711 print "</div>";
1712
1713 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('errorFeedsDlg').hide()\">".
1714 __('Close this window')."</button>";
1715
1716 print "</div>";
1717 }
1718
1719 /**
1720 * Purge a feed contents, marked articles excepted.
1721 *
1722 * @param mixed $link The database connection.
1723 * @param integer $id The id of the feed to purge.
1724 * @return void
1725 */
1726 private function clear_feed_articles($id) {
1727
1728 if ($id != 0) {
1729 $result = $this->dbh->query("DELETE FROM ttrss_user_entries
1730 WHERE feed_id = '$id' AND marked = false AND owner_uid = " . $_SESSION["uid"]);
1731 } else {
1732 $result = $this->dbh->query("DELETE FROM ttrss_user_entries
1733 WHERE feed_id IS NULL AND marked = false AND owner_uid = " . $_SESSION["uid"]);
1734 }
1735
1736 $result = $this->dbh->query("DELETE FROM ttrss_entries WHERE
1737 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
1738
1739 CCache::update($id, $_SESSION['uid']);
1740 } // function clear_feed_articles
1741
1742 private function remove_feed_category($id, $owner_uid) {
1743
1744 $this->dbh->query("DELETE FROM ttrss_feed_categories
1745 WHERE id = '$id' AND owner_uid = $owner_uid");
1746
1747 CCache::remove($id, $owner_uid, true);
1748 }
1749
1750 static function remove_feed($id, $owner_uid) {
1751
1752 if ($id > 0) {
1753
1754 /* save starred articles in Archived feed */
1755
1756 db_query("BEGIN");
1757
1758 /* prepare feed if necessary */
1759
1760 $result = db_query("SELECT feed_url FROM ttrss_feeds WHERE id = $id
1761 AND owner_uid = $owner_uid");
1762
1763 $feed_url = db_escape_string(db_fetch_result($result, 0, "feed_url"));
1764
1765 $result = db_query("SELECT id FROM ttrss_archived_feeds
1766 WHERE feed_url = '$feed_url' AND owner_uid = $owner_uid");
1767
1768 if (db_num_rows($result) == 0) {
1769 $result = db_query("SELECT MAX(id) AS id FROM ttrss_archived_feeds");
1770 $new_feed_id = (int)db_fetch_result($result, 0, "id") + 1;
1771
1772 db_query("INSERT INTO ttrss_archived_feeds
1773 (id, owner_uid, title, feed_url, site_url)
1774 SELECT $new_feed_id, owner_uid, title, feed_url, site_url from ttrss_feeds
1775 WHERE id = '$id'");
1776
1777 $archive_id = $new_feed_id;
1778 } else {
1779 $archive_id = db_fetch_result($result, 0, "id");
1780 }
1781
1782 db_query("UPDATE ttrss_user_entries SET feed_id = NULL,
1783 orig_feed_id = '$archive_id' WHERE feed_id = '$id' AND
1784 marked = true AND owner_uid = $owner_uid");
1785
1786 /* Remove access key for the feed */
1787
1788 db_query("DELETE FROM ttrss_access_keys WHERE
1789 feed_id = '$id' AND owner_uid = $owner_uid");
1790
1791 /* remove the feed */
1792
1793 db_query("DELETE FROM ttrss_feeds
1794 WHERE id = '$id' AND owner_uid = $owner_uid");
1795
1796 db_query("COMMIT");
1797
1798 if (file_exists(ICONS_DIR . "/$id.ico")) {
1799 unlink(ICONS_DIR . "/$id.ico");
1800 }
1801
1802 CCache::remove($id, $owner_uid);
1803
1804 } else {
1805 Labels::remove(Labels::feed_to_label_id($id), $owner_uid);
1806 //CCache::remove($id, $owner_uid); don't think labels are cached
1807 }
1808 }
1809
1810 function batchSubscribe() {
1811 print_hidden("op", "pref-feeds");
1812 print_hidden("method", "batchaddfeeds");
1813
1814 print "<table width='100%'><tr><td>
1815 ".__("Add one valid RSS feed per line (no feed detection is done)")."
1816 </td><td align='right'>";
1817 if (get_pref('ENABLE_FEED_CATS')) {
1818 print __('Place in category:') . " ";
1819 print_feed_cat_select("cat", false, 'dojoType="dijit.form.Select"');
1820 }
1821 print "</td></tr><tr><td colspan='2'>";
1822 print "<textarea
1823 style='font-size : 12px; width : 98%; height: 200px;'
1824 placeHolder=\"".__("Feeds to subscribe, One per line")."\"
1825 dojoType=\"dijit.form.SimpleTextarea\" required=\"1\" name=\"feeds\"></textarea>";
1826
1827 print "</td></tr><tr><td colspan='2'>";
1828
1829 print "<div id='feedDlg_loginContainer' style='display : none'>
1830 " .
1831 " <input dojoType=\"dijit.form.TextBox\" name='login'\"
1832 placeHolder=\"".__("Login")."\"
1833 style=\"width : 10em;\"> ".
1834 " <input
1835 placeHolder=\"".__("Password")."\"
1836 dojoType=\"dijit.form.TextBox\" type='password'
1837 autocomplete=\"new-password\"
1838 style=\"width : 10em;\" name='pass'\">".
1839 "</div>";
1840
1841 print "</td></tr><tr><td colspan='2'>";
1842
1843 print "<div style=\"clear : both\">
1844 <input type=\"checkbox\" name=\"need_auth\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
1845 onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
1846 <label for=\"feedDlg_loginCheck\">".
1847 __('Feeds require authentication.')."</div>";
1848
1849 print "</form>";
1850
1851 print "</td></tr></table>";
1852
1853 print "<div class=\"dlgButtons\">
1854 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('batchSubDlg').execute()\">".__('Subscribe')."</button>
1855 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('batchSubDlg').hide()\">".__('Cancel')."</button>
1856 </div>";
1857 }
1858
1859 function batchAddFeeds() {
1860 $cat_id = $this->dbh->escape_string($_REQUEST['cat']);
1861 $feeds = explode("\n", $_REQUEST['feeds']);
1862 $login = $this->dbh->escape_string($_REQUEST['login']);
1863 $pass = trim($_REQUEST['pass']);
1864
1865 foreach ($feeds as $feed) {
1866 $feed = $this->dbh->escape_string(trim($feed));
1867
1868 if (validate_feed_url($feed)) {
1869
1870 $this->dbh->query("BEGIN");
1871
1872 if ($cat_id == "0" || !$cat_id) {
1873 $cat_qpart = "NULL";
1874 } else {
1875 $cat_qpart = "'$cat_id'";
1876 }
1877
1878 $result = $this->dbh->query(
1879 "SELECT id FROM ttrss_feeds
1880 WHERE feed_url = '$feed' AND owner_uid = ".$_SESSION["uid"]);
1881
1882 $auth_pass_encrypted = 'false';
1883 $pass = $this->dbh->escape_string($pass);
1884
1885 if ($this->dbh->num_rows($result) == 0) {
1886 $result = $this->dbh->query(
1887 "INSERT INTO ttrss_feeds
1888 (owner_uid,feed_url,title,cat_id,auth_login,auth_pass,update_method,auth_pass_encrypted)
1889 VALUES ('".$_SESSION["uid"]."', '$feed',
1890 '[Unknown]', $cat_qpart, '$login', '$pass', 0, $auth_pass_encrypted)");
1891 }
1892
1893 $this->dbh->query("COMMIT");
1894 }
1895 }
1896 }
1897
1898 function regenOPMLKey() {
1899 $this->update_feed_access_key('OPML:Publish',
1900 false, $_SESSION["uid"]);
1901
1902 $new_link = Opml::opml_publish_url();
1903
1904 print json_encode(array("link" => $new_link));
1905 }
1906
1907 function regenFeedKey() {
1908 $feed_id = $this->dbh->escape_string($_REQUEST['id']);
1909 $is_cat = $this->dbh->escape_string($_REQUEST['is_cat']) == "true";
1910
1911 $new_key = $this->update_feed_access_key($feed_id, $is_cat);
1912
1913 print json_encode(array("link" => $new_key));
1914 }
1915
1916
1917 private function update_feed_access_key($feed_id, $is_cat, $owner_uid = false) {
1918 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
1919
1920 $sql_is_cat = bool_to_sql_bool($is_cat);
1921
1922 $result = $this->dbh->query("SELECT access_key FROM ttrss_access_keys
1923 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
1924 AND owner_uid = " . $owner_uid);
1925
1926 if ($this->dbh->num_rows($result) == 1) {
1927 $key = $this->dbh->escape_string(uniqid_short());
1928
1929 $this->dbh->query("UPDATE ttrss_access_keys SET access_key = '$key'
1930 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
1931 AND owner_uid = " . $owner_uid);
1932
1933 return $key;
1934
1935 } else {
1936 return get_feed_access_key($feed_id, $is_cat, $owner_uid);
1937 }
1938 }
1939
1940 // Silent
1941 function clearKeys() {
1942 $this->dbh->query("DELETE FROM ttrss_access_keys WHERE
1943 owner_uid = " . $_SESSION["uid"]);
1944 }
1945
1946 private function calculate_children_count($cat) {
1947 $c = 0;
1948
1949 foreach ($cat['items'] as $child) {
1950 if ($child['type'] == 'category') {
1951 $c += $this->calculate_children_count($child);
1952 } else {
1953 $c += 1;
1954 }
1955 }
1956
1957 return $c;
1958 }
1959
1960 function getinactivefeeds() {
1961 if (DB_TYPE == "pgsql") {
1962 $interval_qpart = "NOW() - INTERVAL '3 months'";
1963 } else {
1964 $interval_qpart = "DATE_SUB(NOW(), INTERVAL 3 MONTH)";
1965 }
1966
1967 $result = $this->dbh->query("SELECT COUNT(*) AS num_inactive FROM ttrss_feeds WHERE
1968 (SELECT MAX(updated) FROM ttrss_entries, ttrss_user_entries WHERE
1969 ttrss_entries.id = ref_id AND
1970 ttrss_user_entries.feed_id = ttrss_feeds.id) < $interval_qpart AND
1971 ttrss_feeds.owner_uid = ".$_SESSION["uid"]);
1972
1973 print (int) $this->dbh->fetch_result($result, 0, "num_inactive");
1974 }
1975 }