]> git.wh0rd.org - tt-rss.git/blob - classes/feeds.php
feed debugger: only allow debugging users own feeds
[tt-rss.git] / classes / feeds.php
1 <?php
2 require_once "colors.php";
3
4 class Feeds extends Handler_Protected {
5
6 private $params;
7
8 function csrf_ignore($method) {
9 $csrf_ignored = array("index", "feedbrowser", "quickaddfeed", "search");
10
11 return array_search($method, $csrf_ignored) !== false;
12 }
13
14 private function format_headline_subtoolbar($feed_site_url, $feed_title,
15 $feed_id, $is_cat, $search,
16 $error, $feed_last_updated) {
17
18 $catchup_sel_link = "catchupSelection()";
19
20 $archive_sel_link = "archiveSelection()";
21 $delete_sel_link = "deleteSelection()";
22
23 $sel_all_link = "selectArticles('all')";
24 $sel_unread_link = "selectArticles('unread')";
25 $sel_none_link = "selectArticles('none')";
26 $sel_inv_link = "selectArticles('invert')";
27
28 $tog_unread_link = "selectionToggleUnread()";
29 $tog_marked_link = "selectionToggleMarked()";
30 $tog_published_link = "selectionTogglePublished()";
31
32 $set_score_link = "setSelectionScore()";
33
34 if ($is_cat) $cat_q = "&is_cat=$is_cat";
35
36 if ($search) {
37 $search_q = "&q=$search";
38 } else {
39 $search_q = "";
40 }
41
42 $reply = "<span class=\"holder\">";
43
44 $rss_link = htmlspecialchars(get_self_url_prefix() .
45 "/public.php?op=rss&id=$feed_id$cat_q$search_q");
46
47 // right part
48
49 $error_class = $error ? "error" : "";
50
51 $reply .= "<span class='r'>
52 <a href=\"#\"
53 title=\"".__("View as RSS feed")."\"
54 onclick=\"displayDlg('".__("View as RSS")."','generatedFeed', '$feed_id:$is_cat:$rss_link')\">
55 <img class=\"noborder\" src=\"images/pub_set.png\"></a>";
56
57
58 # $reply .= "<span>";
59 $reply .= "<span id='feed_title' class='$error_class'>";
60
61 if ($feed_site_url) {
62 $last_updated = T_sprintf("Last updated: %s",
63 $feed_last_updated);
64
65 $target = "target=\"_blank\"";
66 $reply .= "<a title=\"$last_updated\" $target href=\"$feed_site_url\">".
67 truncate_string($feed_title, 30)."</a>";
68
69 if ($error) {
70 $error = htmlspecialchars($error);
71 $reply .= "&nbsp;<img title=\"$error\" src='images/error.png' alt='error' class=\"noborder\">";
72 }
73
74 } else {
75 $reply .= $feed_title;
76 }
77
78 $reply .= "</span>";
79
80 $reply .= "</span>";
81
82 # $reply .= "</span>";
83
84 // left part
85
86 $reply .= "<span class=\"main\">";
87 $reply .= "<span id='selected_prompt'></span>";
88
89 /*$reply .= "<span class=\"sel_links\">
90 <a href=\"#\" onclick=\"$sel_all_link\">".__('All')."</a>,
91 <a href=\"#\" onclick=\"$sel_unread_link\">".__('Unread')."</a>,
92 <a href=\"#\" onclick=\"$sel_inv_link\">".__('Invert')."</a>,
93 <a href=\"#\" onclick=\"$sel_none_link\">".__('None')."</a></li>";
94
95 $reply .= "</span> "; */
96
97 $reply .= "<select dojoType=\"dijit.form.Select\"
98 onchange=\"headlineActionsChange(this)\">";
99
100 $reply .= "<option value=\"0\" disabled='1'>".__('Select...')."</option>";
101
102 $reply .= "<option value=\"$sel_all_link\">".__('All')."</option>";
103 $reply .= "<option value=\"$sel_unread_link\">".__('Unread')."</option>";
104 $reply .= "<option value=\"$sel_inv_link\">".__('Invert')."</option>";
105 $reply .= "<option value=\"$sel_none_link\">".__('None')."</option>";
106
107 $reply .= "<option value=\"0\" disabled=\"1\">".__('Selection toggle:')."</option>";
108
109 $reply .= "<option value=\"$tog_unread_link\">".__('Unread')."</option>
110 <option value=\"$tog_marked_link\">".__('Starred')."</option>
111 <option value=\"$tog_published_link\">".__('Published')."</option>";
112
113 $reply .= "<option value=\"0\" disabled=\"1\">".__('Selection:')."</option>";
114
115 $reply .= "<option value=\"$catchup_sel_link\">".__('Mark as read')."</option>";
116 $reply .= "<option value=\"$set_score_link\">".__('Set score')."</option>";
117
118 if ($feed_id != "0") {
119 $reply .= "<option value=\"$archive_sel_link\">".__('Archive')."</option>";
120 } else {
121 $reply .= "<option value=\"$archive_sel_link\">".__('Move back')."</option>";
122 $reply .= "<option value=\"$delete_sel_link\">".__('Delete')."</option>";
123
124 }
125
126 if (PluginHost::getInstance()->get_plugin("mail")) {
127 $reply .= "<option value=\"emailArticle(false)\">".__('Forward by email').
128 "</option>";
129 }
130
131 if (PluginHost::getInstance()->get_plugin("mailto")) {
132 $reply .= "<option value=\"mailtoArticle(false)\">".__('Forward by email').
133 "</option>";
134 }
135
136 $reply .= "<option value=\"0\" disabled=\"1\">".__('Feed:')."</option>";
137
138 //$reply .= "<option value=\"catchupPage()\">".__('Mark as read')."</option>";
139
140 $reply .= "<option value=\"displayDlg('".__("View as RSS")."','generatedFeed', '$feed_id:$is_cat:$rss_link')\">".__('View as RSS')."</option>";
141
142 $reply .= "</select>";
143
144 //$reply .= "</h2";
145
146 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_HEADLINE_TOOLBAR_BUTTON) as $p) {
147 $reply .= $p->hook_headline_toolbar_button($feed_id, $is_cat);
148 }
149
150 $reply .= "</span></span>";
151
152 return $reply;
153 }
154
155 private function format_headlines_list($feed, $method, $view_mode, $limit, $cat_view,
156 $offset, $vgr_last_feed = false,
157 $override_order = false, $include_children = false, $check_first_id = false,
158 $skip_first_id_check = false) {
159
160 $disable_cache = false;
161
162 $reply = array();
163
164 $rgba_cache = array();
165
166 $timing_info = microtime(true);
167
168 $topmost_article_ids = array();
169
170 if (!$offset) $offset = 0;
171 if ($method == "undefined") $method = "";
172
173 $method_split = explode(":", $method);
174
175 if ($method == "ForceUpdate" && $feed > 0 && is_numeric($feed)) {
176 // Update the feed if required with some basic flood control
177
178 $any_needs_curl = false;
179
180 if (ini_get("open_basedir")) {
181 $pluginhost = PluginHost::getInstance();
182 foreach ($pluginhost->get_plugins() as $plugin) {
183 $flags = $plugin->flags();
184
185 if (isset($flags["needs_curl"]) && $flags["needs_curl"]) {
186 $any_needs_curl = true;
187 break;
188 }
189 }
190 }
191
192 //if ($_REQUEST["debug"]) print "<!-- any_needs_curl: $any_needs_curl -->";
193
194 if (!$any_needs_curl) {
195
196 $sth = $this->pdo->prepare("SELECT cache_images," . SUBSTRING_FOR_DATE . "(last_updated,1,19) AS last_updated
197 FROM ttrss_feeds WHERE id = ?");
198 $sth->execute([$feed]);
199
200 if ($row = $sth->fetch()) {
201 $last_updated = strtotime($row["last_updated"]);
202 $cache_images = $row["cache_images"];
203
204 if (!$cache_images && time() - $last_updated > 120) {
205 RSSUtils::update_rss_feed($feed, true);
206 } else {
207 $sth = $this->pdo->prepare("UPDATE ttrss_feeds
208 SET last_updated = '1970-01-01', last_update_started = '1970-01-01'
209 WHERE id = ?");
210 $sth->execute([$feed]);
211 }
212 }
213 } else {
214 $sth = $this->pdo->prepare("UPDATE ttrss_feeds
215 SET last_updated = '1970-01-01', last_update_started = '1970-01-01'
216 WHERE id = ?");
217 $sth->execute([$feed]);
218 }
219 }
220
221 if ($method_split[0] == "MarkAllReadGR") {
222 $this->catchup_feed($method_split[1], false);
223 }
224
225 // FIXME: might break tag display?
226
227 if (is_numeric($feed) && $feed > 0 && !$cat_view) {
228 $sth = $this->pdo->prepare("SELECT id FROM ttrss_feeds WHERE id = ? LIMIT 1");
229 $sth->execute([$feed]);
230
231 if (!$sth->fetch()) {
232 $reply['content'] = "<div align='center'>".__('Feed not found.')."</div>";
233 }
234 }
235
236 @$search = $_REQUEST["query"];
237 @$search_language = $_REQUEST["search_language"]; // PGSQL only
238
239 if ($search) {
240 $disable_cache = true;
241 }
242
243 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H0", $timing_info);
244
245 if (!$cat_view && is_numeric($feed) && $feed < PLUGIN_FEED_BASE_INDEX && $feed > LABEL_BASE_INDEX) {
246 $handler = PluginHost::getInstance()->get_feed_handler(
247 PluginHost::feed_to_pfeed_id($feed));
248
249 if ($handler) {
250 $options = array(
251 "limit" => $limit,
252 "view_mode" => $view_mode,
253 "cat_view" => $cat_view,
254 "search" => $search,
255 "override_order" => $override_order,
256 "offset" => $offset,
257 "owner_uid" => $_SESSION["uid"],
258 "filter" => false,
259 "since_id" => 0,
260 "include_children" => $include_children);
261
262 $qfh_ret = $handler->get_headlines(PluginHost::feed_to_pfeed_id($feed),
263 $options);
264 }
265
266 } else {
267
268 $params = array(
269 "feed" => $feed,
270 "limit" => $limit,
271 "view_mode" => $view_mode,
272 "cat_view" => $cat_view,
273 "search" => $search,
274 "search_language" => $search_language,
275 "override_order" => $override_order,
276 "offset" => $offset,
277 "include_children" => $include_children,
278 "check_first_id" => $check_first_id,
279 "skip_first_id_check" => $skip_first_id_check
280 );
281
282 $qfh_ret = $this->queryFeedHeadlines($params);
283 }
284
285 $vfeed_group_enabled = get_pref("VFEED_GROUP_BY_FEED") && $feed != -6;
286
287 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H1", $timing_info);
288
289 $result = $qfh_ret[0];
290 $feed_title = $qfh_ret[1];
291 $feed_site_url = $qfh_ret[2];
292 $last_error = $qfh_ret[3];
293 $last_updated = strpos($qfh_ret[4], '1970-') === FALSE ?
294 make_local_datetime($qfh_ret[4], false) : __("Never");
295 $highlight_words = $qfh_ret[5];
296 $reply['first_id'] = $qfh_ret[6];
297 $reply['search_query'] = [$search, $search_language];
298
299 $vgroup_last_feed = $vgr_last_feed;
300
301 $reply['toolbar'] = $this->format_headline_subtoolbar($feed_site_url,
302 $feed_title,
303 $feed, $cat_view, $search,
304 $last_error, $last_updated);
305
306 if ($offset == 0) {
307 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_HEADLINES_BEFORE) as $p) {
308 $reply['content'] .= $p->hook_headlines_before($feed, $cat_view, $qfh_ret);
309 }
310 }
311
312 $reply['content'] = '';
313
314 $headlines_count = 0;
315
316 $lnum = $offset;
317 $num_unread = 0;
318 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PS", $timing_info);
319 $expand_cdm = get_pref('CDM_EXPANDED');
320
321 while ($line = $result->fetch()) {
322
323 ++$headlines_count;
324
325 $line["content_preview"] = "&mdash; " . truncate_string(strip_tags($line["content"]), 250);
326
327 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
328 $line = $p->hook_query_headlines($line, 250, false);
329 }
330
331 if (get_pref('SHOW_CONTENT_PREVIEW')) {
332 $content_preview = $line["content_preview"];
333 }
334
335 $id = $line["id"];
336 $feed_id = $line["feed_id"];
337 $label_cache = $line["label_cache"];
338 $labels = false;
339
340 if ($label_cache) {
341 $label_cache = json_decode($label_cache, true);
342
343 if ($label_cache) {
344 if ($label_cache["no-labels"] == 1)
345 $labels = array();
346 else
347 $labels = $label_cache;
348 }
349 }
350
351 if (!is_array($labels)) $labels = Article::get_article_labels($id);
352
353 $labels_str = "<span class=\"HLLCTR-$id\">";
354 $labels_str .= Article::format_article_labels($labels);
355 $labels_str .= "</span>";
356
357 if (count($topmost_article_ids) < 3) {
358 array_push($topmost_article_ids, $id);
359 }
360
361 $class = "";
362
363 if ($line["unread"]) {
364 $class .= " Unread";
365 ++$num_unread;
366 }
367
368 if ($line["marked"]) {
369 $marked_pic = "<img
370 src=\"images/mark_set.png\"
371 class=\"markedPic\" alt=\"Unstar article\"
372 onclick='toggleMark($id)'>";
373 $class .= " marked";
374 } else {
375 $marked_pic = "<img
376 src=\"images/mark_unset.png\"
377 class=\"markedPic\" alt=\"Star article\"
378 onclick='toggleMark($id)'>";
379 }
380
381 if ($line["published"]) {
382 $published_pic = "<img src=\"images/pub_set.png\"
383 class=\"pubPic\"
384 alt=\"Unpublish article\" onclick='togglePub($id)'>";
385 $class .= " published";
386 } else {
387 $published_pic = "<img src=\"images/pub_unset.png\"
388 class=\"pubPic\"
389 alt=\"Publish article\" onclick='togglePub($id)'>";
390 }
391
392 $updated_fmt = make_local_datetime($line["updated"], false, false, false, true);
393 $date_entered_fmt = T_sprintf("Imported at %s",
394 make_local_datetime($line["date_entered"], false));
395
396 $score = $line["score"];
397
398 $score_pic = "images/" . get_score_pic($score);
399
400 $score_pic = "<img class='hlScorePic' score='$score' onclick='changeScore($id, this)' src=\"$score_pic\"
401 title=\"$score\">";
402
403 if ($score > 500) {
404 $hlc_suffix = "high";
405 } else if ($score < -100) {
406 $hlc_suffix = "low";
407 } else {
408 $hlc_suffix = "";
409 }
410
411 $entry_author = $line["author"];
412
413 if ($entry_author) {
414 $entry_author = " &mdash; $entry_author";
415 }
416
417 $has_feed_icon = feed_has_icon($feed_id);
418
419 if ($has_feed_icon) {
420 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
421 } else {
422 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/pub_set.png\" alt=\"\">";
423 }
424
425 $entry_site_url = $line["site_url"];
426
427 //setting feed headline background color, needs to change text color based on dark/light
428 $fav_color = $line['favicon_avg_color'];
429
430 require_once "colors.php";
431
432 if ($fav_color && $fav_color != 'fail') {
433 if (!isset($rgba_cache[$feed_id])) {
434 $rgba_cache[$feed_id] = join(",", _color_unpack($fav_color));
435 }
436 }
437
438 if (!get_pref('COMBINED_DISPLAY_MODE')) {
439
440 if ($vfeed_group_enabled) {
441 if ($feed_id != $vgroup_last_feed && $line["feed_title"]) {
442
443 $cur_feed_title = $line["feed_title"];
444 $vgroup_last_feed = $feed_id;
445
446 $cur_feed_title = htmlspecialchars($cur_feed_title);
447
448 $vf_catchup_link = "<a class='catchup' onclick='catchupFeedInGroup($feed_id);' href='#'>".__('mark feed as read')."</a>";
449
450 $reply['content'] .= "<div data-feed-id='$feed_id' id='FTITLE-$feed_id' class='cdmFeedTitle'>".
451 "<div style='float : right'>$feed_icon_img</div>".
452 "<a class='title' href=\"#\" onclick=\"viewfeed({feed:$feed_id})\">".
453 $line["feed_title"]."</a>
454 $vf_catchup_link</div>";
455
456
457 }
458 }
459
460 $mouseover_attrs = "onmouseover='postMouseIn(event, $id)'
461 onmouseout='postMouseOut($id)'";
462
463 $reply['content'] .= "<div class='hl hlMenuAttach $class' data-orig-feed-id='$feed_id' data-article-id='$id' id='RROW-$id' $mouseover_attrs>";
464
465 $reply['content'] .= "<div class='hlLeft'>";
466
467 $reply['content'] .= "<input dojoType=\"dijit.form.CheckBox\"
468 type=\"checkbox\" onclick=\"toggleSelectRow2(this)\"
469 class='rchk'>";
470
471 $reply['content'] .= "$marked_pic";
472 $reply['content'] .= "$published_pic";
473
474 $reply['content'] .= "</div>";
475
476 $reply['content'] .= "<div onclick='return hlClicked(event, $id)'
477 class=\"hlTitle\"><span class='hlContent $hlc_suffix'>";
478 $reply['content'] .= "<a id=\"RTITLE-$id\" class=\"title $hlc_suffix\"
479 href=\"" . htmlspecialchars($line["link"]) . "\"
480 onclick=\"\">" .
481 truncate_string($line["title"], 200);
482
483 if (get_pref('SHOW_CONTENT_PREVIEW')) {
484 $reply['content'] .= "<span class=\"contentPreview\">" . $line["content_preview"] . "</span>";
485 }
486
487 $reply['content'] .= "</a></span>";
488
489 $reply['content'] .= $labels_str;
490
491 $reply['content'] .= "</div>";
492
493 if (!$vfeed_group_enabled) {
494 if (@$line["feed_title"]) {
495 $rgba = @$rgba_cache[$feed_id];
496
497 $reply['content'] .= "<span class=\"hlFeed\"><a style=\"background : rgba($rgba, 0.3)\" href=\"#\" onclick=\"viewfeed({feed:$feed_id})\">".
498 truncate_string($line["feed_title"],30)."</a></span>";
499 }
500 }
501
502
503 $reply['content'] .= "<span class=\"hlUpdated\">";
504
505 $reply['content'] .= "<div title='$date_entered_fmt'>$updated_fmt</div>
506 </span>";
507
508 $reply['content'] .= "<div class=\"hlRight\">";
509
510 $reply['content'] .= $score_pic;
511
512 if ($line["feed_title"] && !$vfeed_group_enabled) {
513
514 $reply['content'] .= "<span onclick=\"viewfeed({feed:$feed_id})\"
515 style=\"cursor : pointer\"
516 title=\"".htmlspecialchars($line['feed_title'])."\">
517 $feed_icon_img</span>";
518 }
519
520 $reply['content'] .= "</div>";
521 $reply['content'] .= "</div>";
522
523 } else {
524
525 if ($line["tag_cache"])
526 $tags = explode(",", $line["tag_cache"]);
527 else
528 $tags = false;
529
530 $line["content"] = sanitize($line["content"],
531 $line['hide_images'], false, $entry_site_url, $highlight_words, $line["id"]);
532
533 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_RENDER_ARTICLE_CDM) as $p) {
534 $line = $p->hook_render_article_cdm($line);
535 }
536
537 if ($vfeed_group_enabled && $line["feed_title"]) {
538 if ($feed_id != $vgroup_last_feed) {
539
540 $cur_feed_title = $line["feed_title"];
541 $vgroup_last_feed = $feed_id;
542
543 $cur_feed_title = htmlspecialchars($cur_feed_title);
544
545 $vf_catchup_link = "<a class='catchup' onclick='catchupFeedInGroup($feed_id);' href='#'>".__('mark feed as read')."</a>";
546
547 $has_feed_icon = feed_has_icon($feed_id);
548
549 if ($has_feed_icon) {
550 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
551 } else {
552 //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">";
553 }
554
555 $reply['content'] .= "<div data-feed-id='$feed_id' id='FTITLE-$feed_id' class='cdmFeedTitle'>".
556 "<div style=\"float : right\">$feed_icon_img</div>".
557 "<a href=\"#\" class='title' onclick=\"viewfeed({feed:$feed_id})\">".
558 $line["feed_title"]."</a> $vf_catchup_link</div>";
559
560 }
561 }
562
563 $mouseover_attrs = "onmouseover='postMouseIn(event, $id)'
564 onmouseout='postMouseOut($id)'";
565
566 $expanded_class = $expand_cdm ? "expanded" : "expandable";
567
568 $tmp_content = "<div class=\"cdm $hlc_suffix $expanded_class $class\"
569 id=\"RROW-$id\" data-article-id='$id' data-orig-feed-id='$feed_id' $mouseover_attrs>";
570
571 $tmp_content .= "<div class=\"cdmHeader\">";
572 $tmp_content .= "<div style=\"vertical-align : middle\">";
573
574 $tmp_content .= "<input dojoType=\"dijit.form.CheckBox\"
575 type=\"checkbox\" onclick=\"toggleSelectRow2(this, false, true)\"
576 class='rchk'>";
577
578 $tmp_content .= "$marked_pic";
579 $tmp_content .= "$published_pic";
580
581 $tmp_content .= "</div>";
582
583 if ($highlight_words && count($highlight_words > 0)) {
584 foreach ($highlight_words as $word) {
585 $line["title"] = preg_replace("/(\Q$word\E)/i",
586 "<span class=\"highlight\">$1</span>", $line["title"]);
587 }
588 }
589
590 // data-article-id included for context menu
591 $tmp_content .= "<span id=\"RTITLE-$id\"
592 onclick=\"return cdmClicked(event, $id);\"
593 data-article-id=\"$id\"
594 class=\"titleWrap hlMenuAttach $hlc_suffix\">
595 <a class=\"title $hlc_suffix\"
596 title=\"".htmlspecialchars($line["title"])."\"
597 target=\"_blank\" rel=\"noopener noreferrer\" href=\"".
598 htmlspecialchars($line["link"])."\">".
599 $line["title"] .
600 "</a> <span class=\"author\">$entry_author</span>";
601
602 $tmp_content .= $labels_str;
603
604 $tmp_content .= "<span class='collapseBtn' style='display : none'>
605 <img src=\"images/collapse.png\" onclick=\"cdmCollapseArticle(event, $id)\"
606 title=\"".__("Collapse article")."\"/></span>";
607
608 if (!$expand_cdm)
609 $content_hidden = "style=\"display : none\"";
610 else
611 $excerpt_hidden = "style=\"display : none\"";
612
613 $tmp_content .= "<span $excerpt_hidden id=\"CEXC-$id\" class=\"cdmExcerpt\">" . $content_preview . "</span>";
614
615 $tmp_content .= "</span>";
616
617 if (!$vfeed_group_enabled) {
618 if (@$line["feed_title"]) {
619 $rgba = @$rgba_cache[$feed_id];
620
621 $tmp_content .= "<div class=\"hlFeed\">
622 <a href=\"#\" style=\"background-color: rgba($rgba,0.3)\"
623 onclick=\"viewfeed({feed:$feed_id})\">".
624 truncate_string($line["feed_title"],30)."</a>
625 </div>";
626 }
627 }
628
629 $tmp_content .= "<span class='updated' title='$date_entered_fmt'>$updated_fmt</span>";
630
631 $tmp_content .= "<div class='scoreWrap' style=\"vertical-align : middle\">";
632 $tmp_content .= "$score_pic";
633
634 if (!get_pref("VFEED_GROUP_BY_FEED") && $line["feed_title"]) {
635 $tmp_content .= "<span style=\"cursor : pointer\"
636 title=\"".htmlspecialchars($line["feed_title"])."\"
637 onclick=\"viewfeed({feed:$feed_id})\">$feed_icon_img</span>";
638 }
639 $tmp_content .= "</div>"; //scoreWrap
640
641 $tmp_content .= "</div>"; //cdmHeader
642
643 $tmp_content .= "<div class=\"cdmContent\" $content_hidden
644 onclick=\"return cdmClicked(event, $id, true);\"
645 id=\"CICD-$id\">";
646
647 $tmp_content .= "<div id=\"POSTNOTE-$id\">";
648 if ($line['note']) {
649 $tmp_content .= Article::format_article_note($id, $line['note']);
650 }
651 $tmp_content .= "</div>"; //POSTNOTE
652
653 if (!$line['lang']) $line['lang'] = 'en';
654
655 $tmp_content .= "<div class=\"cdmContentInner\" lang=\"".$line['lang']."\">";
656
657 if ($line["orig_feed_id"]) {
658
659 $ofgh = $this->pdo->prepare("SELECT * FROM ttrss_archived_feeds
660 WHERE id = ? AND owner_uid = ?");
661 $ofgh->execute([$line["orig_feed_id"], $_SESSION['uid']]);
662
663 if ($tmp_line = $ofgh->fetch()) {
664
665 $tmp_content .= "<div clear='both'>";
666 $tmp_content .= __("Originally from:");
667
668 $tmp_content .= "&nbsp;";
669
670 $tmp_content .= "<a target='_blank' rel='noopener noreferrer'
671 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
672 $tmp_line['title'] . "</a>";
673
674 $tmp_content .= "&nbsp;";
675
676 $tmp_content .= "<a target='_blank' rel='noopener noreferrer' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
677 $tmp_content .= "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_unset.png'></a>";
678
679 $tmp_content .= "</div>";
680 }
681 }
682
683 $tmp_content .= "<span id=\"CWRAP-$id\">";
684 $tmp_content .= "<span id=\"CENCW-$id\" class=\"cencw\" style=\"display : none\">";
685 $tmp_content .= htmlspecialchars($line["content"]);
686 $tmp_content .= "</span>";
687 $tmp_content .= "</span>";
688
689 $tmp_content .= "</div>"; //cdmContentInner
690
691 $tmp_content .= "<div class=\"cdmIntermediate\">";
692
693 $always_display_enclosures = $line["always_display_enclosures"];
694 $tmp_content .= Article::format_article_enclosures($id, $always_display_enclosures,
695 $line["content"], $line["hide_images"]);
696
697 $tmp_content .= "</div>"; // cdmIntermediate
698
699 $tmp_content .= "<div class=\"cdmFooter\" onclick=\"cdmFooterClick(event)\">";
700
701 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_LEFT_BUTTON) as $p) {
702 $tmp_content .= $p->hook_article_left_button($line);
703 }
704
705 $tags_str = Article::format_tags_string($tags, $id);
706
707 $tmp_content .= "<span class='left'>";
708
709 $tmp_content .= "<img src='images/tag.png' alt='Tags' title='Tags'>
710 <span id=\"ATSTR-$id\">$tags_str</span>
711 <a title=\"".__('Edit tags for this article')."\"
712 href=\"#\" onclick=\"editArticleTags($id)\">(+)</a>";
713
714 $num_comments = (int) $line["num_comments"];
715 $entry_comments = "";
716
717 if ($num_comments > 0) {
718 if ($line["comments"]) {
719 $comments_url = htmlspecialchars($line["comments"]);
720 } else {
721 $comments_url = htmlspecialchars($line["link"]);
722 }
723 $entry_comments = "<a class=\"postComments\"
724 target='_blank' rel='noopener noreferrer' href=\"$comments_url\">$num_comments ".
725 _ngettext("comment", "comments", $num_comments)."</a>";
726
727 } else {
728 if ($line["comments"] && $line["link"] != $line["comments"]) {
729 $entry_comments = "<a class=\"postComments\" target='_blank' rel='noopener noreferrer' href=\"".htmlspecialchars($line["comments"])."\">".__("comments")."</a>";
730 }
731 }
732
733 if ($entry_comments) $tmp_content .= "&nbsp;($entry_comments)";
734
735 $tmp_content .= "</span>";
736 $tmp_content .= "<div>";
737
738 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_BUTTON) as $p) {
739 $tmp_content .= $p->hook_article_button($line);
740 }
741
742 $tmp_content .= "</div>"; // buttons
743
744 $tmp_content .= "</div>"; // cdmFooter
745 $tmp_content .= "</div>"; // cdmContent
746 $tmp_content .= "</div>"; // RROW.cdm
747
748 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_FORMAT_ARTICLE_CDM) as $p) {
749 $tmp_content = $p->hook_format_article_cdm($tmp_content, $line);
750 }
751
752 $reply['content'] .= $tmp_content;
753 }
754
755 ++$lnum;
756 }
757
758 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PE", $timing_info);
759
760 if (!$headlines_count) {
761
762 if (!is_numeric($result)) {
763
764 switch ($view_mode) {
765 case "unread":
766 $message = __("No unread articles found to display.");
767 break;
768 case "updated":
769 $message = __("No updated articles found to display.");
770 break;
771 case "marked":
772 $message = __("No starred articles found to display.");
773 break;
774 default:
775 if ($feed < LABEL_BASE_INDEX) {
776 $message = __("No articles found to display. You can assign articles to labels manually from article header context menu (applies to all selected articles) or use a filter.");
777 } else {
778 $message = __("No articles found to display.");
779 }
780 }
781
782 if (!$offset && $message) {
783 $reply['content'] = "<div class='whiteBox'>$message";
784
785 $reply['content'] .= "<p><span class=\"insensitive\">";
786
787 $sth = $this->pdo->prepare("SELECT " . SUBSTRING_FOR_DATE . "(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
788 WHERE owner_uid = ?");
789 $sth->execute([$_SESSION['uid']]);
790 $row = $sth->fetch();
791
792 $last_updated = make_local_datetime($row["last_updated"], false);
793
794 $reply['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
795
796 $sth = $this->pdo->prepare("SELECT COUNT(id) AS num_errors
797 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ?");
798 $sth->execute([$_SESSION['uid']]);
799 $row = $sth->fetch();
800
801 $num_errors = $row["num_errors"];
802
803 if ($num_errors > 0) {
804 $reply['content'] .= "<br/>";
805 $reply['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">" .
806 __('Some feeds have update errors (click for details)') . "</a>";
807 }
808 $reply['content'] .= "</span></p></div>";
809
810 }
811 } else if (is_numeric($result) && $result == -1) {
812 $reply['first_id_changed'] = true;
813 }
814 }
815
816 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H2", $timing_info);
817
818 return array($topmost_article_ids, $headlines_count, $feed, $disable_cache,
819 $vgroup_last_feed, $reply);
820 }
821
822 function catchupAll() {
823 $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
824 last_read = NOW(), unread = false WHERE unread = true AND owner_uid = ?");
825 $sth->execute([$_SESSION['uid']]);
826
827 CCache::zero_all($_SESSION["uid"]);
828 }
829
830 function view() {
831 $timing_info = microtime(true);
832
833 $reply = array();
834
835 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("0", $timing_info);
836
837 $feed = $_REQUEST["feed"];
838 $method = $_REQUEST["m"];
839 $view_mode = $_REQUEST["view_mode"];
840 $limit = 30;
841 @$cat_view = $_REQUEST["cat"] == "true";
842 @$next_unread_feed = $_REQUEST["nuf"];
843 @$offset = $_REQUEST["skip"];
844 @$vgroup_last_feed = $_REQUEST["vgrlf"];
845 $order_by = $_REQUEST["order_by"];
846 $check_first_id = $_REQUEST["fid"];
847
848 if (is_numeric($feed)) $feed = (int) $feed;
849
850 /* Feed -5 is a special case: it is used to display auxiliary information
851 * when there's nothing to load - e.g. no stuff in fresh feed */
852
853 if ($feed == -5) {
854 print json_encode($this->generate_dashboard_feed());
855 return;
856 }
857
858 $sth = false;
859 if ($feed < LABEL_BASE_INDEX) {
860
861 $label_feed = Labels::feed_to_label_id($feed);
862
863 $sth = $this->pdo->prepare("SELECT id FROM ttrss_labels2 WHERE
864 id = ? AND owner_uid = ?");
865 $sth->execute([$label_feed, $_SESSION['uid']]);
866
867 } else if (!$cat_view && is_numeric($feed) && $feed > 0) {
868
869 $sth = $this->pdo->prepare("SELECT id FROM ttrss_feeds WHERE
870 id = ? AND owner_uid = ?");
871 $sth->execute([$feed, $_SESSION['uid']]);
872
873 } else if ($cat_view && is_numeric($feed) && $feed > 0) {
874
875 $sth = $this->pdo->prepare("SELECT id FROM ttrss_feed_categories WHERE
876 id = ? AND owner_uid = ?");
877
878 $sth->execute([$feed, $_SESSION['uid']]);
879 }
880
881 if ($sth && !$sth->fetch()) {
882 print json_encode($this->generate_error_feed(__("Feed not found.")));
883 return;
884 }
885
886 /* Updating a label ccache means recalculating all of the caches
887 * so for performance reasons we don't do that here */
888
889 if ($feed >= 0) {
890 CCache::update($feed, $_SESSION["uid"], $cat_view);
891 }
892
893 set_pref("_DEFAULT_VIEW_MODE", $view_mode);
894 set_pref("_DEFAULT_VIEW_ORDER_BY", $order_by);
895
896 /* bump login timestamp if needed */
897 if (time() - $_SESSION["last_login_update"] > 3600) {
898 $sth = $this->pdo->prepare("UPDATE ttrss_users SET last_login = NOW() WHERE id = ?");
899 $sth->execute([$_SESSION['uid']]);
900
901 $_SESSION["last_login_update"] = time();
902 }
903
904 if (!$cat_view && is_numeric($feed) && $feed > 0) {
905 $sth = $this->pdo->prepare("UPDATE ttrss_feeds SET last_viewed = NOW()
906 WHERE id = ? AND owner_uid = ?");
907 $sth->execute([$feed, $_SESSION['uid']]);
908 }
909
910 $reply['headlines'] = array();
911
912 $override_order = false;
913 $skip_first_id_check = false;
914
915 switch ($order_by) {
916 case "title":
917 $override_order = "ttrss_entries.title, date_entered, updated";
918 break;
919 case "date_reverse":
920 $override_order = "score DESC, date_entered, updated";
921 $skip_first_id_check = true;
922 break;
923 case "feed_dates":
924 $override_order = "updated DESC";
925 break;
926 }
927
928 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("04", $timing_info);
929
930 $ret = $this->format_headlines_list($feed, $method,
931 $view_mode, $limit, $cat_view, $offset,
932 $vgroup_last_feed, $override_order, true, $check_first_id, $skip_first_id_check);
933
934 //$topmost_article_ids = $ret[0];
935 $headlines_count = $ret[1];
936 /* $returned_feed = $ret[2]; */
937 $disable_cache = $ret[3];
938 $vgroup_last_feed = $ret[4];
939
940 //$reply['headlines']['content'] =& $ret[5]['content'];
941 //$reply['headlines']['toolbar'] =& $ret[5]['toolbar'];
942
943 $reply['headlines'] = $ret[5];
944
945 if (!$next_unread_feed)
946 $reply['headlines']['id'] = $feed;
947 else
948 $reply['headlines']['id'] = $next_unread_feed;
949
950 $reply['headlines']['is_cat'] = (bool) $cat_view;
951
952 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("05", $timing_info);
953
954 $reply['headlines-info'] = array("count" => (int) $headlines_count,
955 "vgroup_last_feed" => $vgroup_last_feed,
956 "disable_cache" => (bool) $disable_cache);
957
958 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("30", $timing_info);
959
960 $reply['runtime-info'] = make_runtime_info();
961
962 print json_encode($reply);
963
964 }
965
966 private function generate_dashboard_feed() {
967 $reply = array();
968
969 $reply['headlines']['id'] = -5;
970 $reply['headlines']['is_cat'] = false;
971
972 $reply['headlines']['toolbar'] = '';
973
974 $reply['headlines']['content'] = "<div class='whiteBox'>".__('No feed selected.');
975
976 $reply['headlines']['content'] .= "<p><span class=\"insensitive\">";
977
978 $sth = $this->pdo->prepare("SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
979 WHERE owner_uid = ?");
980 $sth->execute([$_SESSION['uid']]);
981 $row = $sth->fetch();
982
983 $last_updated = make_local_datetime($row["last_updated"], false);
984
985 $reply['headlines']['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
986
987 $sth = $this->pdo->prepare("SELECT COUNT(id) AS num_errors
988 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ?");
989 $sth->execute([$_SESSION['uid']]);
990 $row = $sth->fetch();
991
992 $num_errors = $row["num_errors"];
993
994 if ($num_errors > 0) {
995 $reply['headlines']['content'] .= "<br/>";
996 $reply['headlines']['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
997 __('Some feeds have update errors (click for details)')."</a>";
998 }
999 $reply['headlines']['content'] .= "</span></p>";
1000
1001 $reply['headlines-info'] = array("count" => 0,
1002 "vgroup_last_feed" => '',
1003 "unread" => 0,
1004 "disable_cache" => true);
1005
1006 return $reply;
1007 }
1008
1009 private function generate_error_feed($error) {
1010 $reply = array();
1011
1012 $reply['headlines']['id'] = -7;
1013 $reply['headlines']['is_cat'] = false;
1014
1015 $reply['headlines']['toolbar'] = '';
1016 $reply['headlines']['content'] = "<div class='whiteBox'>". $error . "</div>";
1017
1018 $reply['headlines-info'] = array("count" => 0,
1019 "vgroup_last_feed" => '',
1020 "unread" => 0,
1021 "disable_cache" => true);
1022
1023 return $reply;
1024 }
1025
1026 function quickAddFeed() {
1027 print_hidden("op", "rpc");
1028 print_hidden("method", "addfeed");
1029
1030 print "<div id='fadd_error_message' style='display : none' class='alert alert-danger'></div>";
1031
1032 print "<div id='fadd_multiple_notify' style='display : none'>";
1033 print_notice("Provided URL is a HTML page referencing multiple feeds, please select required feed from the dropdown menu below.");
1034 print "<p></div>";
1035
1036 print "<div class=\"dlgSec\">".__("Feed or site URL")."</div>";
1037 print "<div class=\"dlgSecCont\">";
1038
1039 print "<div style='float : right'>
1040 <img style='display : none'
1041 id='feed_add_spinner' src='images/indicator_white.gif'></div>";
1042
1043 print "<input style=\"font-size : 16px; width : 20em;\"
1044 placeHolder=\"".__("Feed or site URL")."\"
1045 dojoType=\"dijit.form.ValidationTextBox\" required=\"1\" name=\"feed\" id=\"feedDlg_feedUrl\">";
1046
1047 print "<hr/>";
1048
1049 if (get_pref('ENABLE_FEED_CATS')) {
1050 print __('Place in category:') . " ";
1051 print_feed_cat_select("cat", false, 'dojoType="dijit.form.Select"');
1052 }
1053
1054 print "</div>";
1055
1056 print '<div id="feedDlg_feedsContainer" style="display : none">
1057
1058 <div class="dlgSec">' . __('Available feeds') . '</div>
1059 <div class="dlgSecCont">'.
1060 '<select id="feedDlg_feedContainerSelect"
1061 dojoType="dijit.form.Select" size="3">
1062 <script type="dojo/method" event="onChange" args="value">
1063 dijit.byId("feedDlg_feedUrl").attr("value", value);
1064 </script>
1065 </select>'.
1066 '</div></div>';
1067
1068 print "<div id='feedDlg_loginContainer' style='display : none'>
1069
1070 <div class=\"dlgSec\">".__("Authentication")."</div>
1071 <div class=\"dlgSecCont\">".
1072
1073 " <input dojoType=\"dijit.form.TextBox\" name='login'\"
1074 placeHolder=\"".__("Login")."\"
1075 autocomplete=\"new-password\"
1076 style=\"width : 10em;\"> ".
1077 " <input
1078 placeHolder=\"".__("Password")."\"
1079 dojoType=\"dijit.form.TextBox\" type='password'
1080 autocomplete=\"new-password\"
1081 style=\"width : 10em;\" name='pass'\">
1082 </div></div>";
1083
1084
1085 print "<div style=\"clear : both\">
1086 <input type=\"checkbox\" name=\"need_auth\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
1087 onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
1088 <label for=\"feedDlg_loginCheck\">".
1089 __('This feed requires authentication.')."</div>";
1090
1091 print "</form>";
1092
1093 print "<div class=\"dlgButtons\">
1094 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').execute()\">".__('Subscribe')."</button>";
1095
1096 if (!(defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER)) {
1097 print "<button dojoType=\"dijit.form.Button\" onclick=\"return feedBrowser()\">".__('More feeds')."</button>";
1098 }
1099
1100 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').hide()\">".__('Cancel')."</button>
1101 </div>";
1102
1103 //return;
1104 }
1105
1106 function feedBrowser() {
1107 if (defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER) return;
1108
1109 $browser_search = $_REQUEST["search"];
1110
1111 print_hidden("op", "rpc");
1112 print_hidden("method", "updateFeedBrowser");
1113
1114 print "<div dojoType=\"dijit.Toolbar\">
1115 <div style='float : right'>
1116 <img style='display : none'
1117 id='feed_browser_spinner' src='images/indicator_white.gif'>
1118 <input name=\"search\" dojoType=\"dijit.form.TextBox\" size=\"20\" type=\"search\"
1119 onchange=\"dijit.byId('feedBrowserDlg').update()\" value=\"$browser_search\">
1120 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').update()\">".__('Search')."</button>
1121 </div>";
1122
1123 print " <select name=\"mode\" dojoType=\"dijit.form.Select\" onchange=\"dijit.byId('feedBrowserDlg').update()\">
1124 <option value='1'>" . __('Popular feeds') . "</option>
1125 <option value='2'>" . __('Feed archive') . "</option>
1126 </select> ";
1127
1128 print __("limit:");
1129
1130 print " <select dojoType=\"dijit.form.Select\" name=\"limit\" onchange=\"dijit.byId('feedBrowserDlg').update()\">";
1131
1132 foreach (array(25, 50, 100, 200) as $l) {
1133 //$issel = ($l == $limit) ? "selected=\"1\"" : "";
1134 print "<option value=\"$l\">$l</option>";
1135 }
1136
1137 print "</select> ";
1138
1139 print "</div>";
1140
1141 require_once "feedbrowser.php";
1142
1143 print "<ul class='browseFeedList' id='browseFeedList'>";
1144 print make_feed_browser("", 25);
1145 print "</ul>";
1146
1147 print "<div align='center'>
1148 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').execute()\">".__('Subscribe')."</button>
1149 <button dojoType=\"dijit.form.Button\" style='display : none' id='feed_archive_remove' onclick=\"dijit.byId('feedBrowserDlg').removeFromArchive()\">".__('Remove')."</button>
1150 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').hide()\" >".__('Cancel')."</button></div>";
1151
1152 }
1153
1154 function search() {
1155 $this->params = explode(":", $_REQUEST["param"], 2);
1156
1157 $active_feed_id = sprintf("%d", $this->params[0]);
1158 $is_cat = $this->params[1] != "false";
1159
1160 print "<div class=\"dlgSec\">".__('Look for')."</div>";
1161
1162 print "<div class=\"dlgSecCont\">";
1163
1164 print "<input dojoType=\"dijit.form.ValidationTextBox\"
1165 style=\"font-size : 16px; width : 20em;\"
1166 required=\"1\" name=\"query\" type=\"search\" value=''>";
1167
1168 print "<hr/><span style='float : right'>".T_sprintf('in %s', $this->getFeedTitle($active_feed_id, $is_cat))."</span>";
1169
1170 if (DB_TYPE == "pgsql") {
1171 print "<hr/>";
1172 print_select("search_language", "", Pref_Feeds::$feed_languages,
1173 "dojoType='dijit.form.Select' title=\"".__('Used for word stemming')."\"");
1174 }
1175
1176 print "</div>";
1177
1178 print "<div class=\"dlgButtons\">";
1179
1180 if (count(PluginHost::getInstance()->get_hooks(PluginHost::HOOK_SEARCH)) == 0) {
1181 print "<div style=\"float : left\">
1182 <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/wiki/SearchSyntax\">".__("Search syntax")."</a>
1183 </div>";
1184 }
1185
1186 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').execute()\">".__('Search')."</button>
1187 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').hide()\">".__('Cancel')."</button>
1188 </div>";
1189 }
1190
1191 function update_debugger() {
1192 header("Content-type: text/html");
1193
1194 $feed_id = (int)$_REQUEST["feed_id"];
1195 @$do_update = $_REQUEST["action"] == "do_update";
1196 $csrf_token = $_REQUEST["csrf_token"];
1197
1198 $sth = $this->pdo->prepare("SELECT id FROM ttrss_feeds WHERE id = ? AND owner_uid = ?");
1199 $sth->execute([$feed_id, $_SESSION['uid']]);
1200
1201 if (!$sth->fetch()) {
1202 print "Access denied.";
1203 return;
1204 }
1205
1206 $refetch_checked = isset($_REQUEST["force_refetch"]) ? "checked" : "";
1207 $rehash_checked = isset($_REQUEST["force_rehash"]) ? "checked" : "";
1208
1209 ?>
1210 <html>
1211 <head>
1212 <?php echo stylesheet_tag("css/default.css") ?>
1213 <title>Feed Debugger</title>
1214 </head>
1215 <body class="small_margins ttrss_utility claro">
1216 <h1>Feed Debugger: <?php echo "$feed_id: " . $this->getFeedTitle($feed_id) ?></h1>
1217 <form method="GET" action="">
1218 <input type="hidden" name="op" value="feeds">
1219 <input type="hidden" name="method" value="update_debugger">
1220 <input type="hidden" name="xdebug" value="1">
1221 <input type="hidden" name="csrf_token" value="<?php echo $csrf_token ?>">
1222 <input type="hidden" name="action" value="do_update">
1223 <input type="hidden" name="feed_id" value="<?php echo $feed_id ?>">
1224 <input type="checkbox" name="force_refetch" value="1" <?php echo $refetch_checked ?>> Force refetch<br/>
1225 <input type="checkbox" name="force_rehash" value="1" <?php echo $rehash_checked ?>> Force rehash<br/>
1226
1227 <p/><button type="submit">Continue</button>
1228 </form>
1229
1230 <hr>
1231
1232 <pre><?php
1233
1234 if ($do_update) {
1235 RSSUtils::update_rss_feed($feed_id, true);
1236 }
1237
1238 ?></pre>
1239
1240 </body>
1241 </html>
1242 <?php
1243
1244 }
1245
1246 static function catchup_feed($feed, $cat_view, $owner_uid = false, $mode = 'all', $search = false) {
1247
1248 if (!$owner_uid) $owner_uid = $_SESSION['uid'];
1249
1250 $pdo = Db::pdo();
1251
1252 // Todo: all this interval stuff needs some generic generator function
1253
1254 $search_qpart = is_array($search) && $search[0] ? search_to_sql($search[0], $search[1])[0] : 'true';
1255
1256 switch ($mode) {
1257 case "1day":
1258 if (DB_TYPE == "pgsql") {
1259 $date_qpart = "date_entered < NOW() - INTERVAL '1 day' ";
1260 } else {
1261 $date_qpart = "date_entered < DATE_SUB(NOW(), INTERVAL 1 DAY) ";
1262 }
1263 break;
1264 case "1week":
1265 if (DB_TYPE == "pgsql") {
1266 $date_qpart = "date_entered < NOW() - INTERVAL '1 week' ";
1267 } else {
1268 $date_qpart = "date_entered < DATE_SUB(NOW(), INTERVAL 1 WEEK) ";
1269 }
1270 break;
1271 case "2week":
1272 if (DB_TYPE == "pgsql") {
1273 $date_qpart = "date_entered < NOW() - INTERVAL '2 week' ";
1274 } else {
1275 $date_qpart = "date_entered < DATE_SUB(NOW(), INTERVAL 2 WEEK) ";
1276 }
1277 break;
1278 default:
1279 $date_qpart = "true";
1280 }
1281
1282 if (is_numeric($feed)) {
1283 if ($cat_view) {
1284
1285 if ($feed >= 0) {
1286
1287 if ($feed > 0) {
1288 $children = Feeds::getChildCategories($feed, $owner_uid);
1289 array_push($children, $feed);
1290
1291 $children = join(",", $children);
1292
1293 $cat_qpart = "cat_id IN ($children)";
1294 } else {
1295 $cat_qpart = "cat_id IS NULL";
1296 }
1297
1298 $sth = $pdo->prepare("UPDATE ttrss_user_entries
1299 SET unread = false, last_read = NOW() WHERE ref_id IN
1300 (SELECT id FROM
1301 (SELECT DISTINCT id FROM ttrss_entries, ttrss_user_entries WHERE ref_id = id
1302 AND owner_uid = ? AND unread = true AND feed_id IN
1303 (SELECT id FROM ttrss_feeds WHERE $cat_qpart) AND $date_qpart AND $search_qpart) as tmp)");
1304 $sth->execute([$owner_uid]);
1305
1306 } else if ($feed == -2) {
1307
1308 $sth = $pdo->prepare("UPDATE ttrss_user_entries
1309 SET unread = false,last_read = NOW() WHERE (SELECT COUNT(*)
1310 FROM ttrss_user_labels2, ttrss_entries WHERE article_id = ref_id AND id = ref_id AND $date_qpart AND $search_qpart) > 0
1311 AND unread = true AND owner_uid = ?");
1312 $sth->execute([$owner_uid]);
1313 }
1314
1315 } else if ($feed > 0) {
1316
1317 $sth = $pdo->prepare("UPDATE ttrss_user_entries
1318 SET unread = false, last_read = NOW() WHERE ref_id IN
1319 (SELECT id FROM
1320 (SELECT DISTINCT id FROM ttrss_entries, ttrss_user_entries WHERE ref_id = id
1321 AND owner_uid = ? AND unread = true AND feed_id = ? AND $date_qpart AND $search_qpart) as tmp)");
1322 $sth->execute([$owner_uid, $feed]);
1323
1324 } else if ($feed < 0 && $feed > LABEL_BASE_INDEX) { // special, like starred
1325
1326 if ($feed == -1) {
1327 $sth = $pdo->prepare("UPDATE ttrss_user_entries
1328 SET unread = false, last_read = NOW() WHERE ref_id IN
1329 (SELECT id FROM
1330 (SELECT DISTINCT id FROM ttrss_entries, ttrss_user_entries WHERE ref_id = id
1331 AND owner_uid = ? AND unread = true AND marked = true AND $date_qpart AND $search_qpart) as tmp)");
1332 $sth->execute([$owner_uid]);
1333 }
1334
1335 if ($feed == -2) {
1336 $sth = $pdo->prepare("UPDATE ttrss_user_entries
1337 SET unread = false, last_read = NOW() WHERE ref_id IN
1338 (SELECT id FROM
1339 (SELECT DISTINCT id FROM ttrss_entries, ttrss_user_entries WHERE ref_id = id
1340 AND owner_uid = ? AND unread = true AND published = true AND $date_qpart AND $search_qpart) as tmp)");
1341 $sth->execute([$owner_uid]);
1342 }
1343
1344 if ($feed == -3) {
1345
1346 $intl = (int) get_pref("FRESH_ARTICLE_MAX_AGE");
1347
1348 if (DB_TYPE == "pgsql") {
1349 $match_part = "date_entered > NOW() - INTERVAL '$intl hour' ";
1350 } else {
1351 $match_part = "date_entered > DATE_SUB(NOW(),
1352 INTERVAL $intl HOUR) ";
1353 }
1354
1355 $sth = $pdo->prepare("UPDATE ttrss_user_entries
1356 SET unread = false, last_read = NOW() WHERE ref_id IN
1357 (SELECT id FROM
1358 (SELECT DISTINCT id FROM ttrss_entries, ttrss_user_entries WHERE ref_id = id
1359 AND owner_uid = ? AND score >= 0 AND unread = true AND $date_qpart AND $match_part AND $search_qpart) as tmp)");
1360 $sth->execute([$owner_uid]);
1361 }
1362
1363 if ($feed == -4) {
1364 $sth = $pdo->prepare("UPDATE ttrss_user_entries
1365 SET unread = false, last_read = NOW() WHERE ref_id IN
1366 (SELECT id FROM
1367 (SELECT DISTINCT id FROM ttrss_entries, ttrss_user_entries WHERE ref_id = id
1368 AND owner_uid = ? AND unread = true AND $date_qpart AND $search_qpart) as tmp)");
1369 $sth->execute([$owner_uid]);
1370 }
1371
1372 } else if ($feed < LABEL_BASE_INDEX) { // label
1373
1374 $label_id = Labels::feed_to_label_id($feed);
1375
1376 $sth = $pdo->prepare("UPDATE ttrss_user_entries
1377 SET unread = false, last_read = NOW() WHERE ref_id IN
1378 (SELECT id FROM
1379 (SELECT DISTINCT ttrss_entries.id FROM ttrss_entries, ttrss_user_entries, ttrss_user_labels2 WHERE ref_id = id
1380 AND label_id = ? AND ref_id = article_id
1381 AND owner_uid = ? AND unread = true AND $date_qpart AND $search_qpart) as tmp)");
1382 $sth->execute([$label_id, $owner_uid]);
1383
1384 }
1385
1386 CCache::update($feed, $owner_uid, $cat_view);
1387
1388 } else { // tag
1389 $sth = $pdo->prepare("UPDATE ttrss_user_entries
1390 SET unread = false, last_read = NOW() WHERE ref_id IN
1391 (SELECT id FROM
1392 (SELECT DISTINCT ttrss_entries.id FROM ttrss_entries, ttrss_user_entries, ttrss_tags WHERE ref_id = ttrss_entries.id
1393 AND post_int_id = int_id AND tag_name = ?
1394 AND ttrss_user_entries.owner_uid = ? AND unread = true AND $date_qpart AND $search_qpart) as tmp)");
1395 $sth->execute([$feed, $owner_uid]);
1396
1397 }
1398 }
1399
1400 static function getFeedArticles($feed, $is_cat = false, $unread_only = false,
1401 $owner_uid = false) {
1402
1403 $n_feed = (int) $feed;
1404 $need_entries = false;
1405
1406 $pdo = Db::pdo();
1407
1408 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
1409
1410 if ($unread_only) {
1411 $unread_qpart = "unread = true";
1412 } else {
1413 $unread_qpart = "true";
1414 }
1415
1416 $match_part = "";
1417
1418 if ($is_cat) {
1419 return Feeds::getCategoryUnread($n_feed, $owner_uid);
1420 } else if ($n_feed == -6) {
1421 return 0;
1422 } else if ($feed != "0" && $n_feed == 0) {
1423
1424 $sth = $pdo->prepare("SELECT SUM((SELECT COUNT(int_id)
1425 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
1426 AND ref_id = id AND $unread_qpart)) AS count FROM ttrss_tags
1427 WHERE owner_uid = ? AND tag_name = ?");
1428
1429 $sth->execute([$owner_uid, $feed]);
1430 $row = $sth->fetch();
1431
1432 return $row["count"];
1433
1434 } else if ($n_feed == -1) {
1435 $match_part = "marked = true";
1436 } else if ($n_feed == -2) {
1437 $match_part = "published = true";
1438 } else if ($n_feed == -3) {
1439 $match_part = "unread = true AND score >= 0";
1440
1441 $intl = (int) get_pref("FRESH_ARTICLE_MAX_AGE", $owner_uid);
1442
1443 if (DB_TYPE == "pgsql") {
1444 $match_part .= " AND date_entered > NOW() - INTERVAL '$intl hour' ";
1445 } else {
1446 $match_part .= " AND date_entered > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
1447 }
1448
1449 $need_entries = true;
1450
1451 } else if ($n_feed == -4) {
1452 $match_part = "true";
1453 } else if ($n_feed >= 0) {
1454
1455 if ($n_feed != 0) {
1456 $match_part = "feed_id = '$n_feed'";
1457 } else {
1458 $match_part = "feed_id IS NULL";
1459 }
1460
1461 } else if ($feed < LABEL_BASE_INDEX) {
1462
1463 $label_id = Labels::feed_to_label_id($feed);
1464
1465 return Feeds::getLabelUnread($label_id, $owner_uid);
1466 }
1467
1468 if ($match_part) {
1469
1470 if ($need_entries) {
1471 $from_qpart = "ttrss_user_entries,ttrss_entries";
1472 $from_where = "ttrss_entries.id = ttrss_user_entries.ref_id AND";
1473 } else {
1474 $from_qpart = "ttrss_user_entries";
1475 $from_where = "";
1476 }
1477
1478 $sth = $pdo->prepare("SELECT count(int_id) AS unread
1479 FROM $from_qpart WHERE
1480 $unread_qpart AND $from_where ($match_part) AND ttrss_user_entries.owner_uid = ?");
1481 $sth->execute([$owner_uid]);
1482 $row = $sth->fetch();
1483
1484 return $row["unread"];
1485
1486 } else {
1487
1488 $sth = $pdo->prepare("SELECT COUNT(post_int_id) AS unread
1489 FROM ttrss_tags,ttrss_user_entries,ttrss_entries
1490 WHERE tag_name = ? AND post_int_id = int_id AND ref_id = ttrss_entries.id
1491 AND $unread_qpart AND ttrss_tags.owner_uid = ,");
1492
1493 $sth->execute([$feed, $owner_uid]);
1494 $row = $sth->fetch();
1495
1496 return $row["unread"];
1497 }
1498 }
1499
1500 /**
1501 * @return array (code => Status code, message => error message if available)
1502 *
1503 * 0 - OK, Feed already exists
1504 * 1 - OK, Feed added
1505 * 2 - Invalid URL
1506 * 3 - URL content is HTML, no feeds available
1507 * 4 - URL content is HTML which contains multiple feeds.
1508 * Here you should call extractfeedurls in rpc-backend
1509 * to get all possible feeds.
1510 * 5 - Couldn't download the URL content.
1511 * 6 - Content is an invalid XML.
1512 */
1513 static function subscribe_to_feed($url, $cat_id = 0,
1514 $auth_login = '', $auth_pass = '') {
1515
1516 global $fetch_last_error;
1517 global $fetch_last_error_content;
1518
1519 $pdo = Db::pdo();
1520
1521 $url = fix_url($url);
1522
1523 if (!$url || !validate_feed_url($url)) return array("code" => 2);
1524
1525 $contents = @fetch_file_contents($url, false, $auth_login, $auth_pass);
1526
1527 if (!$contents) {
1528 if (preg_match("/cloudflare\.com/", $fetch_last_error_content)) {
1529 $fetch_last_error .= " (feed behind Cloudflare)";
1530 }
1531
1532 return array("code" => 5, "message" => $fetch_last_error);
1533 }
1534
1535 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_SUBSCRIBE_FEED) as $plugin) {
1536 $contents = $plugin->hook_subscribe_feed($contents, $url, $auth_login, $auth_pass);
1537 }
1538
1539 if (is_html($contents)) {
1540 $feedUrls = get_feeds_from_html($url, $contents);
1541
1542 if (count($feedUrls) == 0) {
1543 return array("code" => 3);
1544 } else if (count($feedUrls) > 1) {
1545 return array("code" => 4, "feeds" => $feedUrls);
1546 }
1547 //use feed url as new URL
1548 $url = key($feedUrls);
1549 }
1550
1551 if ($cat_id == "0" || !$cat_id) {
1552 $cat_qpart = "NULL";
1553 } else {
1554 $cat_qpart = "'$cat_id'";
1555 }
1556
1557 if (!(int)$cat_id) $cat_id = null;
1558
1559 $sth = $pdo->prepare("SELECT id FROM ttrss_feeds
1560 WHERE feed_url = ? AND owner_uid = ?");
1561 $sth->execute([$url, $_SESSION['uid']]);
1562
1563 if ($row = $sth->fetch()) {
1564 return array("code" => 0, "feed_id" => (int) $row["id"]);
1565 } else {
1566 $sth = $pdo->prepare(
1567 "INSERT INTO ttrss_feeds
1568 (owner_uid,feed_url,title,cat_id, auth_login,auth_pass,update_method,auth_pass_encrypted)
1569 VALUES (?, ?, ?, ?, ?, ?, 0, false)");
1570
1571 $sth->execute([$_SESSION['uid'], $url, "[Unknown]", $cat_id, $auth_login, $auth_pass]);
1572
1573 $sth = $pdo->prepare("SELECT id FROM ttrss_feeds WHERE feed_url = ?
1574 AND owner_uid = ?");
1575 $sth->execute([$url, $_SESSION['uid']]);
1576 $row = $sth->fetch();
1577
1578 $feed_id = $row["id"];
1579
1580 if ($feed_id) {
1581 RSSUtils::set_basic_feed_info($feed_id);
1582 }
1583
1584 return array("code" => 1, "feed_id" => (int) $feed_id);
1585
1586 }
1587 }
1588
1589 static function getFeedIcon($id) {
1590 switch ($id) {
1591 case 0:
1592 return "images/archive.png";
1593 break;
1594 case -1:
1595 return "images/star.png";
1596 break;
1597 case -2:
1598 return "images/feed.png";
1599 break;
1600 case -3:
1601 return "images/fresh.png";
1602 break;
1603 case -4:
1604 return "images/folder.png";
1605 break;
1606 case -6:
1607 return "images/time.png";
1608 break;
1609 default:
1610 if ($id < LABEL_BASE_INDEX) {
1611 return "images/label.png";
1612 } else {
1613 if (file_exists(ICONS_DIR . "/$id.ico"))
1614 return ICONS_URL . "/$id.ico";
1615 }
1616 break;
1617 }
1618
1619 return false;
1620 }
1621
1622 static function getFeedTitle($id, $cat = false) {
1623 $pdo = Db::pdo();
1624
1625 if ($cat) {
1626 return Feeds::getCategoryTitle($id);
1627 } else if ($id == -1) {
1628 return __("Starred articles");
1629 } else if ($id == -2) {
1630 return __("Published articles");
1631 } else if ($id == -3) {
1632 return __("Fresh articles");
1633 } else if ($id == -4) {
1634 return __("All articles");
1635 } else if ($id === 0 || $id === "0") {
1636 return __("Archived articles");
1637 } else if ($id == -6) {
1638 return __("Recently read");
1639 } else if ($id < LABEL_BASE_INDEX) {
1640
1641 $label_id = Labels::feed_to_label_id($id);
1642
1643 $sth = $pdo->prepare("SELECT caption FROM ttrss_labels2 WHERE id = ?");
1644 $sth->execute([$label_id]);
1645
1646 if ($row = $sth->fetch()) {
1647 return $row["caption"];
1648 } else {
1649 return "Unknown label ($label_id)";
1650 }
1651
1652 } else if (is_numeric($id) && $id > 0) {
1653
1654 $sth = $pdo->prepare("SELECT title FROM ttrss_feeds WHERE id = ?");
1655 $sth->execute([$id]);
1656
1657 if ($row = $sth->fetch()) {
1658 return $row["title"];
1659 } else {
1660 return "Unknown feed ($id)";
1661 }
1662
1663 } else {
1664 return $id;
1665 }
1666 }
1667
1668 static function getCategoryUnread($cat, $owner_uid = false) {
1669
1670 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
1671
1672 $pdo = Db::pdo();
1673
1674 if ($cat >= 0) {
1675
1676 if (!$cat) $cat = null;
1677
1678 $sth = $pdo->prepare("SELECT id FROM ttrss_feeds
1679 WHERE (cat_id = :cat OR (:cat IS NULL AND cat_id IS NULL))
1680 AND owner_uid = :uid");
1681
1682 $sth->execute([":cat" => $cat, ":uid" => $owner_uid]);
1683
1684 $cat_feeds = array();
1685 while ($line = $sth->fetch()) {
1686 array_push($cat_feeds, "feed_id = " . $line["id"]);
1687 }
1688
1689 if (count($cat_feeds) == 0) return 0;
1690
1691 $match_part = implode(" OR ", $cat_feeds);
1692
1693 $sth = $pdo->prepare("SELECT COUNT(int_id) AS unread
1694 FROM ttrss_user_entries
1695 WHERE unread = true AND ($match_part)
1696 AND owner_uid = ?");
1697 $sth->execute([$owner_uid]);
1698
1699 $unread = 0;
1700
1701 # this needs to be rewritten
1702 while ($line = $sth->fetch()) {
1703 $unread += $line["unread"];
1704 }
1705
1706 return $unread;
1707 } else if ($cat == -1) {
1708 return getFeedUnread(-1) + getFeedUnread(-2) + getFeedUnread(-3) + getFeedUnread(0);
1709 } else if ($cat == -2) {
1710
1711 $sth = $pdo->prepare("SELECT COUNT(unread) AS unread FROM
1712 ttrss_user_entries, ttrss_user_labels2
1713 WHERE article_id = ref_id AND unread = true
1714 AND ttrss_user_entries.owner_uid = ?");
1715 $sth->execute([$owner_uid]);
1716 $row = $sth->fetch();
1717
1718 return $row["unread"];
1719 }
1720 }
1721
1722 // only accepts real cats (>= 0)
1723 static function getCategoryChildrenUnread($cat, $owner_uid = false) {
1724 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
1725
1726 $pdo = Db::pdo();
1727
1728 $sth = $pdo->prepare("SELECT id FROM ttrss_feed_categories WHERE parent_cat = ?
1729 AND owner_uid = ?");
1730 $sth->execute([$cat, $owner_uid]);
1731
1732 $unread = 0;
1733
1734 while ($line = $sth->fetch()) {
1735 $unread += Feeds::getCategoryUnread($line["id"], $owner_uid);
1736 $unread += Feeds::getCategoryChildrenUnread($line["id"], $owner_uid);
1737 }
1738
1739 return $unread;
1740 }
1741
1742 static function getGlobalUnread($user_id = false) {
1743
1744 if (!$user_id) $user_id = $_SESSION["uid"];
1745
1746 $pdo = Db::pdo();
1747
1748 $sth = $pdo->prepare("SELECT SUM(value) AS c_id FROM ttrss_counters_cache
1749 WHERE owner_uid = ? AND feed_id > 0");
1750 $sth->execute([$user_id]);
1751 $row = $sth->fetch();
1752
1753 return $row["c_id"];
1754 }
1755
1756 static function getCategoryTitle($cat_id) {
1757
1758 if ($cat_id == -1) {
1759 return __("Special");
1760 } else if ($cat_id == -2) {
1761 return __("Labels");
1762 } else {
1763
1764 $pdo = Db::pdo();
1765
1766 $sth = $pdo->prepare("SELECT title FROM ttrss_feed_categories WHERE
1767 id = ?");
1768 $sth->execute([$cat_id]);
1769
1770 if ($row = $sth->fetch()) {
1771 return $row["title"];
1772 } else {
1773 return __("Uncategorized");
1774 }
1775 }
1776 }
1777
1778 static function getLabelUnread($label_id, $owner_uid = false) {
1779 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
1780
1781 $pdo = Db::pdo();
1782
1783 $sth = $pdo->prepare("SELECT COUNT(ref_id) AS unread FROM ttrss_user_entries, ttrss_user_labels2
1784 WHERE owner_uid = ? AND unread = true AND label_id = ? AND article_id = ref_id");
1785
1786 $sth->execute([$owner_uid, $label_id]);
1787
1788 if ($row = $sth->fetch()) {
1789 return $row["unread"];
1790 } else {
1791 return 0;
1792 }
1793 }
1794
1795 static function queryFeedHeadlines($params) {
1796
1797 $pdo = Db::pdo();
1798
1799 // WARNING: due to highly dynamic nature of this query its going to quote parameters
1800 // right before adding them to SQL part
1801
1802 $feed = $params["feed"];
1803 $limit = isset($params["limit"]) ? $params["limit"] : 30;
1804 $view_mode = $params["view_mode"];
1805 $cat_view = isset($params["cat_view"]) ? $params["cat_view"] : false;
1806 $search = isset($params["search"]) ? $params["search"] : false;
1807 $search_language = isset($params["search_language"]) ? $params["search_language"] : "";
1808 $override_order = isset($params["override_order"]) ? $params["override_order"] : false;
1809 $offset = isset($params["offset"]) ? $params["offset"] : 0;
1810 $owner_uid = isset($params["owner_uid"]) ? $params["owner_uid"] : $_SESSION["uid"];
1811 $since_id = isset($params["since_id"]) ? $params["since_id"] : 0;
1812 $include_children = isset($params["include_children"]) ? $params["include_children"] : false;
1813 $ignore_vfeed_group = isset($params["ignore_vfeed_group"]) ? $params["ignore_vfeed_group"] : false;
1814 $override_strategy = isset($params["override_strategy"]) ? $params["override_strategy"] : false;
1815 $override_vfeed = isset($params["override_vfeed"]) ? $params["override_vfeed"] : false;
1816 $start_ts = isset($params["start_ts"]) ? $params["start_ts"] : false;
1817 $check_first_id = isset($params["check_first_id"]) ? $params["check_first_id"] : false;
1818 $skip_first_id_check = isset($params["skip_first_id_check"]) ? $params["skip_first_id_check"] : false;
1819
1820 $ext_tables_part = "";
1821 $limit_query_part = "";
1822
1823 $search_words = array();
1824
1825 if ($search) {
1826 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_SEARCH) as $plugin) {
1827 list($search_query_part, $search_words) = $plugin->hook_search($search);
1828 break;
1829 }
1830
1831 // fall back in case of no plugins
1832 if (!$search_query_part) {
1833 list($search_query_part, $search_words) = search_to_sql($search, $search_language);
1834 }
1835 $search_query_part .= " AND ";
1836 } else {
1837 $search_query_part = "";
1838 }
1839
1840 if ($since_id) {
1841 $since_id_part = "ttrss_entries.id > ".$pdo->quote($since_id)." AND ";
1842 } else {
1843 $since_id_part = "";
1844 }
1845
1846 $view_query_part = "";
1847
1848 if ($view_mode == "adaptive") {
1849 if ($search) {
1850 $view_query_part = " ";
1851 } else if ($feed != -1) {
1852
1853 $unread = getFeedUnread($feed, $cat_view);
1854
1855 if ($cat_view && $feed > 0 && $include_children)
1856 $unread += Feeds::getCategoryChildrenUnread($feed);
1857
1858 if ($unread > 0) {
1859 $view_query_part = " unread = true AND ";
1860 }
1861 }
1862 }
1863
1864 if ($view_mode == "marked") {
1865 $view_query_part = " marked = true AND ";
1866 }
1867
1868 if ($view_mode == "has_note") {
1869 $view_query_part = " (note IS NOT NULL AND note != '') AND ";
1870 }
1871
1872 if ($view_mode == "published") {
1873 $view_query_part = " published = true AND ";
1874 }
1875
1876 if ($view_mode == "unread" && $feed != -6) {
1877 $view_query_part = " unread = true AND ";
1878 }
1879
1880 if ($limit > 0) {
1881 $limit_query_part = "LIMIT " . (int)$limit;
1882 }
1883
1884 $allow_archived = false;
1885
1886 $vfeed_query_part = "";
1887
1888 /* tags */
1889 if (!is_numeric($feed)) {
1890 $query_strategy_part = "true";
1891 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
1892 id = feed_id) as feed_title,";
1893 } else if ($feed > 0) {
1894
1895 if ($cat_view) {
1896
1897 if ($feed > 0) {
1898 if ($include_children) {
1899 # sub-cats
1900 $subcats = Feeds::getChildCategories($feed, $owner_uid);
1901
1902 array_push($subcats, $feed);
1903 $query_strategy_part = "cat_id IN (".
1904 implode(",", $subcats).")";
1905
1906 } else {
1907 $query_strategy_part = "cat_id = " . $pdo->quote($feed);
1908 }
1909
1910 } else {
1911 $query_strategy_part = "cat_id IS NULL";
1912 }
1913
1914 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
1915
1916 } else {
1917 $query_strategy_part = "feed_id = " . $pdo->quote($feed);
1918 }
1919 } else if ($feed == 0 && !$cat_view) { // archive virtual feed
1920 $query_strategy_part = "feed_id IS NULL";
1921 $allow_archived = true;
1922 } else if ($feed == 0 && $cat_view) { // uncategorized
1923 $query_strategy_part = "cat_id IS NULL AND feed_id IS NOT NULL";
1924 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
1925 } else if ($feed == -1) { // starred virtual feed
1926 $query_strategy_part = "marked = true";
1927 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
1928 $allow_archived = true;
1929
1930 if (!$override_order) {
1931 $override_order = "last_marked DESC, date_entered DESC, updated DESC";
1932 }
1933
1934 } else if ($feed == -2) { // published virtual feed OR labels category
1935
1936 if (!$cat_view) {
1937 $query_strategy_part = "published = true";
1938 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
1939 $allow_archived = true;
1940
1941 if (!$override_order) {
1942 $override_order = "last_published DESC, date_entered DESC, updated DESC";
1943 }
1944
1945 } else {
1946 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
1947
1948 $ext_tables_part = "ttrss_labels2,ttrss_user_labels2,";
1949
1950 $query_strategy_part = "ttrss_labels2.id = ttrss_user_labels2.label_id AND
1951 ttrss_user_labels2.article_id = ref_id";
1952
1953 }
1954 } else if ($feed == -6) { // recently read
1955 $query_strategy_part = "unread = false AND last_read IS NOT NULL";
1956
1957 if (DB_TYPE == "pgsql") {
1958 $query_strategy_part .= " AND last_read > NOW() - INTERVAL '1 DAY' ";
1959 } else {
1960 $query_strategy_part .= " AND last_read > DATE_SUB(NOW(), INTERVAL 1 DAY) ";
1961 }
1962
1963 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
1964 $allow_archived = true;
1965 $ignore_vfeed_group = true;
1966
1967 if (!$override_order) $override_order = "last_read DESC";
1968
1969 } else if ($feed == -3) { // fresh virtual feed
1970 $query_strategy_part = "unread = true AND score >= 0";
1971
1972 $intl = (int) get_pref("FRESH_ARTICLE_MAX_AGE", $owner_uid);
1973
1974 if (DB_TYPE == "pgsql") {
1975 $query_strategy_part .= " AND date_entered > NOW() - INTERVAL '$intl hour' ";
1976 } else {
1977 $query_strategy_part .= " AND date_entered > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
1978 }
1979
1980 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
1981 } else if ($feed == -4) { // all articles virtual feed
1982 $allow_archived = true;
1983 $query_strategy_part = "true";
1984 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
1985 } else if ($feed <= LABEL_BASE_INDEX) { // labels
1986 $label_id = Labels::feed_to_label_id($feed);
1987
1988 $query_strategy_part = "label_id = ".$pdo->quote($label_id)." AND
1989 ttrss_labels2.id = ttrss_user_labels2.label_id AND
1990 ttrss_user_labels2.article_id = ref_id";
1991
1992 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
1993 $ext_tables_part = "ttrss_labels2,ttrss_user_labels2,";
1994 $allow_archived = true;
1995
1996 } else {
1997 $query_strategy_part = "true";
1998 }
1999
2000 $order_by = "score DESC, date_entered DESC, updated DESC";
2001
2002 if ($override_order) {
2003 $order_by = $override_order;
2004 }
2005
2006 if ($override_strategy) {
2007 $query_strategy_part = $override_strategy;
2008 }
2009
2010 if ($override_vfeed) {
2011 $vfeed_query_part = $override_vfeed;
2012 }
2013
2014 if ($search) {
2015 $feed_title = T_sprintf("Search results: %s", $search);
2016 } else {
2017 if ($cat_view) {
2018 $feed_title = Feeds::getCategoryTitle($feed);
2019 } else {
2020 if (is_numeric($feed) && $feed > 0) {
2021 $ssth = $pdo->prepare("SELECT title,site_url,last_error,last_updated
2022 FROM ttrss_feeds WHERE id = ? AND owner_uid = ?");
2023 $ssth->execute([$feed, $owner_uid]);
2024 $row = $ssth->fetch();
2025
2026 $feed_title = $row["title"];
2027 $feed_site_url = $row["site_url"];
2028 $last_error = $row["last_error"];
2029 $last_updated = $row["last_updated"];
2030 } else {
2031 $feed_title = Feeds::getFeedTitle($feed);
2032 }
2033 }
2034 }
2035
2036 $content_query_part = "content, ";
2037
2038 if ($limit_query_part) {
2039 $offset_query_part = "OFFSET " . (int)$offset;
2040 } else {
2041 $offset_query_part = "";
2042 }
2043
2044 if (is_numeric($feed)) {
2045 // proper override_order applied above
2046 if ($vfeed_query_part && !$ignore_vfeed_group && get_pref('VFEED_GROUP_BY_FEED', $owner_uid)) {
2047 if (!$override_order) {
2048 $order_by = "ttrss_feeds.title, ".$pdo->quote($order_by);
2049 } else {
2050 $order_by = "ttrss_feeds.title, ".$pdo->quote($override_order);
2051 }
2052 }
2053
2054 if (!$allow_archived) {
2055 $from_qpart = "${ext_tables_part}ttrss_entries LEFT JOIN ttrss_user_entries ON (ref_id = ttrss_entries.id),ttrss_feeds";
2056 $feed_check_qpart = "ttrss_user_entries.feed_id = ttrss_feeds.id AND";
2057
2058 } else {
2059 $from_qpart = "${ext_tables_part}ttrss_entries LEFT JOIN ttrss_user_entries ON (ref_id = ttrss_entries.id)
2060 LEFT JOIN ttrss_feeds ON (feed_id = ttrss_feeds.id)";
2061 }
2062
2063 if ($vfeed_query_part) $vfeed_query_part .= "favicon_avg_color,";
2064
2065 if ($start_ts) {
2066 $start_ts_formatted = date("Y/m/d H:i:s", strtotime($start_ts));
2067 $start_ts_query_part = "date_entered >= '$start_ts_formatted' AND";
2068 } else {
2069 $start_ts_query_part = "";
2070 }
2071
2072 $first_id = 0;
2073 $first_id_query_strategy_part = $query_strategy_part;
2074
2075 if ($feed == -3)
2076 $first_id_query_strategy_part = "true";
2077
2078 if (DB_TYPE == "pgsql") {
2079 $sanity_interval_qpart = "date_entered >= NOW() - INTERVAL '1 hour' AND";
2080 } else {
2081 $sanity_interval_qpart = "date_entered >= DATE_SUB(NOW(), INTERVAL 1 hour) AND";
2082 }
2083
2084 if (!$search && !$skip_first_id_check) {
2085 // if previous topmost article id changed that means our current pagination is no longer valid
2086 $query = "SELECT DISTINCT
2087 ttrss_feeds.title,
2088 date_entered,
2089 guid,
2090 ttrss_entries.id,
2091 ttrss_entries.title,
2092 updated,
2093 score,
2094 marked,
2095 published,
2096 last_marked,
2097 last_published,
2098 last_read
2099 FROM
2100 $from_qpart
2101 WHERE
2102 $feed_check_qpart
2103 ttrss_user_entries.owner_uid = ".$pdo->quote($owner_uid)." AND
2104 $search_query_part
2105 $start_ts_query_part
2106 $since_id_part
2107 $sanity_interval_qpart
2108 $first_id_query_strategy_part ORDER BY $order_by LIMIT 1";
2109
2110 if ($_REQUEST["debug"]) {
2111 print $query;
2112 }
2113
2114 $res = $pdo->query($query);
2115
2116 if ($row = $res->fetch()) {
2117 $first_id = (int)$row["id"];
2118
2119 if ($offset > 0 && $first_id && $check_first_id && $first_id != $check_first_id) {
2120 return array(-1, $feed_title, $feed_site_url, $last_error, $last_updated, $search_words, $first_id);
2121 }
2122 }
2123 }
2124
2125 $query = "SELECT DISTINCT
2126 date_entered,
2127 guid,
2128 ttrss_entries.id,ttrss_entries.title,
2129 updated,
2130 label_cache,
2131 tag_cache,
2132 always_display_enclosures,
2133 site_url,
2134 note,
2135 num_comments,
2136 comments,
2137 int_id,
2138 uuid,
2139 lang,
2140 hide_images,
2141 unread,feed_id,marked,published,link,last_read,orig_feed_id,
2142 last_marked, last_published,
2143 $vfeed_query_part
2144 $content_query_part
2145 author,score
2146 FROM
2147 $from_qpart
2148 WHERE
2149 $feed_check_qpart
2150 ttrss_user_entries.owner_uid = ".$pdo->quote($owner_uid)." AND
2151 $search_query_part
2152 $start_ts_query_part
2153 $view_query_part
2154 $since_id_part
2155 $query_strategy_part ORDER BY $order_by
2156 $limit_query_part $offset_query_part";
2157
2158 if ($_REQUEST["debug"]) print $query;
2159
2160 $res = $pdo->query($query);
2161
2162 } else {
2163 // browsing by tag
2164
2165 $query = "SELECT DISTINCT
2166 date_entered,
2167 guid,
2168 note,
2169 ttrss_entries.id as id,
2170 title,
2171 updated,
2172 unread,
2173 feed_id,
2174 orig_feed_id,
2175 marked,
2176 num_comments,
2177 comments,
2178 int_id,
2179 tag_cache,
2180 label_cache,
2181 link,
2182 lang,
2183 uuid,
2184 last_read,
2185 (SELECT hide_images FROM ttrss_feeds WHERE id = feed_id) AS hide_images,
2186 last_marked, last_published,
2187 $since_id_part
2188 $vfeed_query_part
2189 $content_query_part
2190 author, score
2191 FROM ttrss_entries, ttrss_user_entries, ttrss_tags
2192 WHERE
2193 ref_id = ttrss_entries.id AND
2194 ttrss_user_entries.owner_uid = ".$pdo->quote($owner_uid)." AND
2195 post_int_id = int_id AND
2196 tag_name = ".$pdo->quote($feed)." AND
2197 $view_query_part
2198 $search_query_part
2199 $query_strategy_part ORDER BY $order_by
2200 $limit_query_part $offset_query_part";
2201
2202 if ($_REQUEST["debug"]) print $query;
2203
2204 $res = $pdo->query($query);
2205 }
2206
2207 return array($res, $feed_title, $feed_site_url, $last_error, $last_updated, $search_words, $first_id);
2208
2209 }
2210
2211 static function getParentCategories($cat, $owner_uid) {
2212 $rv = array();
2213
2214 $pdo = Db::pdo();
2215
2216 $sth = $pdo->prepare("SELECT parent_cat FROM ttrss_feed_categories
2217 WHERE id = ? AND parent_cat IS NOT NULL AND owner_uid = ?");
2218 $sth->execute([$cat, $owner_uid]);
2219
2220 while ($line = $sth->fetch()) {
2221 array_push($rv, $line["parent_cat"]);
2222 $rv = array_merge($rv, Feeds::getParentCategories($line["parent_cat"], $owner_uid));
2223 }
2224
2225 return $rv;
2226 }
2227
2228 static function getChildCategories($cat, $owner_uid) {
2229 $rv = array();
2230
2231 $pdo = Db::pdo();
2232
2233 $sth = $pdo->prepare("SELECT id FROM ttrss_feed_categories
2234 WHERE parent_cat = ? AND owner_uid = ?");
2235 $sth->execute([$cat, $owner_uid]);
2236
2237 while ($line = $sth->fetch()) {
2238 array_push($rv, $line["id"]);
2239 $rv = array_merge($rv, Feeds::getChildCategories($line["id"], $owner_uid));
2240 }
2241
2242 return $rv;
2243 }
2244
2245 static function getFeedCategory($feed) {
2246 $pdo = Db::pdo();
2247
2248 $sth = $pdo->prepare("SELECT cat_id FROM ttrss_feeds
2249 WHERE id = ?");
2250 $sth->execute([$feed]);
2251
2252 if ($row = $sth->fetch()) {
2253 return $row["cat_id"];
2254 } else {
2255 return false;
2256 }
2257
2258 }
2259
2260
2261 }
2262