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