]> git.wh0rd.org - tt-rss.git/blame_incremental - classes/feeds.php
apparently it's a bad idea to do is_resource() on a mysqli result
[tt-rss.git] / classes / feeds.php
... / ...
CommitLineData
1<?php
2require_once "colors.php";
3
4class 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 $view_mode, $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 .= "
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 .= " ";
96
97 $reply .= "<select dojoType=\"dijit.form.Select\"
98 onchange=\"headlineActionsChange(this)\">";
99 $reply .= "<option value=\"false\">".__('More...')."</option>";
100
101 $reply .= "<option value=\"0\" disabled=\"1\">".__('Selection toggle:')."</option>";
102
103 $reply .= "<option value=\"$tog_unread_link\">".__('Unread')."</option>
104 <option value=\"$tog_marked_link\">".__('Starred')."</option>
105 <option value=\"$tog_published_link\">".__('Published')."</option>";
106
107 $reply .= "<option value=\"0\" disabled=\"1\">".__('Selection:')."</option>";
108
109 $reply .= "<option value=\"$catchup_sel_link\">".__('Mark as read')."</option>";
110 $reply .= "<option value=\"$set_score_link\">".__('Set score')."</option>";
111
112 if ($feed_id != "0") {
113 $reply .= "<option value=\"$archive_sel_link\">".__('Archive')."</option>";
114 } else {
115 $reply .= "<option value=\"$archive_sel_link\">".__('Move back')."</option>";
116 $reply .= "<option value=\"$delete_sel_link\">".__('Delete')."</option>";
117
118 }
119
120 if (PluginHost::getInstance()->get_plugin("mail")) {
121 $reply .= "<option value=\"emailArticle(false)\">".__('Forward by email').
122 "</option>";
123 }
124
125 if (PluginHost::getInstance()->get_plugin("mailto")) {
126 $reply .= "<option value=\"mailtoArticle(false)\">".__('Forward by email').
127 "</option>";
128 }
129
130 $reply .= "<option value=\"0\" disabled=\"1\">".__('Feed:')."</option>";
131
132 //$reply .= "<option value=\"catchupPage()\">".__('Mark as read')."</option>";
133
134 $reply .= "<option value=\"displayDlg('".__("View as RSS")."','generatedFeed', '$feed_id:$is_cat:$rss_link')\">".__('View as RSS')."</option>";
135
136 $reply .= "</select>";
137
138 //$reply .= "</h2";
139
140 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_HEADLINE_TOOLBAR_BUTTON) as $p) {
141 $reply .= $p->hook_headline_toolbar_button($feed_id, $is_cat);
142 }
143
144 $reply .= "</span></span>";
145
146 return $reply;
147 }
148
149 private function format_headlines_list($feed, $method, $view_mode, $limit, $cat_view,
150 $next_unread_feed, $offset, $vgr_last_feed = false,
151 $override_order = false, $include_children = false, $check_top_id = false) {
152
153 $disable_cache = false;
154
155 $reply = array();
156
157 $rgba_cache = array();
158
159 $timing_info = microtime(true);
160
161 $topmost_article_ids = array();
162
163 if (!$offset) $offset = 0;
164 if ($method == "undefined") $method = "";
165
166 $method_split = explode(":", $method);
167
168 if ($method == "ForceUpdate" && $feed > 0 && is_numeric($feed)) {
169 // Update the feed if required with some basic flood control
170
171 $result = $this->dbh->query(
172 "SELECT cache_images,".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
173 FROM ttrss_feeds WHERE id = '$feed'");
174
175 if ($this->dbh->num_rows($result) != 0) {
176 $last_updated = strtotime($this->dbh->fetch_result($result, 0, "last_updated"));
177 $cache_images = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "cache_images"));
178
179 if (!$cache_images && time() - $last_updated > 120) {
180 include "rssfuncs.php";
181 update_rss_feed($feed, true, true);
182 } else {
183 $this->dbh->query("UPDATE ttrss_feeds SET last_updated = '1970-01-01', last_update_started = '1970-01-01'
184 WHERE id = '$feed'");
185 }
186 }
187 }
188
189 if ($method_split[0] == "MarkAllReadGR") {
190 catchup_feed($method_split[1], false);
191 }
192
193 // FIXME: might break tag display?
194
195 if (is_numeric($feed) && $feed > 0 && !$cat_view) {
196 $result = $this->dbh->query(
197 "SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
198
199 if ($this->dbh->num_rows($result) == 0) {
200 $reply['content'] = "<div align='center'>".__('Feed not found.')."</div>";
201 }
202 }
203
204 @$search = $this->dbh->escape_string($_REQUEST["query"]);
205
206 if ($search) {
207 $disable_cache = true;
208 }
209
210 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H0", $timing_info);
211
212
213 if (!$cat_view && is_numeric($feed) && $feed < PLUGIN_FEED_BASE_INDEX && $feed > LABEL_BASE_INDEX) {
214 $handler = PluginHost::getInstance()->get_feed_handler(
215 PluginHost::feed_to_pfeed_id($feed));
216
217 if ($handler) {
218 $options = array(
219 "limit" => $limit,
220 "view_mode" => $view_mode,
221 "cat_view" => $cat_view,
222 "search" => $search,
223 "override_order" => $override_order,
224 "offset" => $offset,
225 "owner_uid" => $_SESSION["uid"],
226 "filter" => false,
227 "since_id" => 0,
228 "include_children" => $include_children);
229
230 $qfh_ret = $handler->get_headlines(PluginHost::feed_to_pfeed_id($feed),
231 $options);
232 }
233
234 } else {
235 /*$qfh_ret = queryFeedHeadlines($feed, $limit, $view_mode, $cat_view,
236 $search, false, $override_order, $offset, 0,
237 false, 0, $include_children, $topid);*/
238
239 //function queryFeedHeadlines($feed, $limit,
240 // $view_mode, $cat_view, $search, $search_mode,
241 // $override_order = false, $offset = 0, $owner_uid = 0, $filter = false, $since_id = 0, $include_children = false,
242 // $ignore_vfeed_group = false, $override_strategy = false, $override_vfeed = false, $start_ts = false, $check_top_id = false) {
243
244 $params = array(
245 "feed" => $feed,
246 "limit" => $limit,
247 "view_mode" => $view_mode,
248 "cat_view" => $cat_view,
249 "search" => $search,
250 "override_order" => $override_order,
251 "offset" => $offset,
252 "include_children" => $include_children,
253 "check_top_id" => $check_top_id
254 );
255
256 $qfh_ret = queryFeedHeadlines($params);
257 }
258
259 $vfeed_group_enabled = get_pref("VFEED_GROUP_BY_FEED") && $feed != -6;
260
261 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H1", $timing_info);
262
263 $result = $qfh_ret[0];
264 $feed_title = $qfh_ret[1];
265 $feed_site_url = $qfh_ret[2];
266 $last_error = $qfh_ret[3];
267 $last_updated = strpos($qfh_ret[4], '1970-') === FALSE ?
268 make_local_datetime($qfh_ret[4], false) : __("Never");
269 $highlight_words = $qfh_ret[5];
270
271 $vgroup_last_feed = $vgr_last_feed;
272
273 $reply['toolbar'] = $this->format_headline_subtoolbar($feed_site_url,
274 $feed_title,
275 $feed, $cat_view, $search, $view_mode,
276 $last_error, $last_updated);
277
278 $headlines_count = $this->dbh->num_rows($result);
279
280 /* if (get_pref('COMBINED_DISPLAY_MODE')) {
281 $button_plugins = array();
282 foreach (explode(",", ARTICLE_BUTTON_PLUGINS) as $p) {
283 $pclass = "button_" . trim($p);
284
285 if (class_exists($pclass)) {
286 $plugin = new $pclass();
287 array_push($button_plugins, $plugin);
288 }
289 }
290 } */
291
292 if ($offset == 0) {
293 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_HEADLINES_BEFORE) as $p) {
294 $reply['content'] .= $p->hook_headlines_before($feed, $cat_view, $qfh_ret);
295 }
296 }
297
298 if (!is_numeric($result) && $this->dbh->num_rows($result) > 0) {
299
300 $lnum = $offset;
301
302 $num_unread = 0;
303 $cur_feed_title = '';
304
305 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PS", $timing_info);
306
307 $expand_cdm = get_pref('CDM_EXPANDED');
308
309 while ($line = $this->dbh->fetch_assoc($result)) {
310 $line["content_preview"] = "&mdash; " . truncate_string(strip_tags($line["content"]), 250);
311
312 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
313 $line = $p->hook_query_headlines($line, 250, false);
314 }
315
316 if (get_pref('SHOW_CONTENT_PREVIEW')) {
317 $content_preview = $line["content_preview"];
318 }
319
320 $id = $line["id"];
321 $feed_id = $line["feed_id"];
322 $label_cache = $line["label_cache"];
323 $labels = false;
324
325 if ($label_cache) {
326 $label_cache = json_decode($label_cache, true);
327
328 if ($label_cache) {
329 if ($label_cache["no-labels"] == 1)
330 $labels = array();
331 else
332 $labels = $label_cache;
333 }
334 }
335
336 if (!is_array($labels)) $labels = get_article_labels($id);
337
338 $labels_str = "<span class=\"HLLCTR-$id\">";
339 $labels_str .= format_article_labels($labels, $id);
340 $labels_str .= "</span>";
341
342 if (count($topmost_article_ids) < 3) {
343 array_push($topmost_article_ids, $id);
344 }
345
346 $class = "";
347
348 if (sql_bool_to_bool($line["unread"])) {
349 $class .= " Unread";
350 ++$num_unread;
351 }
352
353 if (sql_bool_to_bool($line["marked"])) {
354 $marked_pic = "<img
355 src=\"images/mark_set.png\"
356 class=\"markedPic\" alt=\"Unstar article\"
357 onclick='toggleMark($id)'>";
358 $class .= " marked";
359 } else {
360 $marked_pic = "<img
361 src=\"images/mark_unset.png\"
362 class=\"markedPic\" alt=\"Star article\"
363 onclick='toggleMark($id)'>";
364 }
365
366 if (sql_bool_to_bool($line["published"])) {
367 $published_pic = "<img src=\"images/pub_set.png\"
368 class=\"pubPic\"
369 alt=\"Unpublish article\" onclick='togglePub($id)'>";
370 $class .= " published";
371 } else {
372 $published_pic = "<img src=\"images/pub_unset.png\"
373 class=\"pubPic\"
374 alt=\"Publish article\" onclick='togglePub($id)'>";
375 }
376
377# $content_link = "<a target=\"_blank\" href=\"".$line["link"]."\">" .
378# $line["title"] . "</a>";
379
380# $content_link = "<a
381# href=\"" . htmlspecialchars($line["link"]) . "\"
382# onclick=\"view($id,$feed_id);\">" .
383# $line["title"] . "</a>";
384
385# $content_link = "<a href=\"javascript:viewContentUrl('".$line["link"]."');\">" .
386# $line["title"] . "</a>";
387
388 $updated_fmt = make_local_datetime($line["updated"], false, false, false, true);
389 $date_entered_fmt = T_sprintf("Imported at %s",
390 make_local_datetime($line["date_entered"], false));
391
392 $score = $line["score"];
393
394 $score_pic = "images/" . get_score_pic($score);
395
396/* $score_title = __("(Click to change)");
397 $score_pic = "<img class='hlScorePic' src=\"images/$score_pic\"
398 onclick=\"adjustArticleScore($id, $score)\" title=\"$score $score_title\">"; */
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 id='FTITLE-$feed_id' class='cdmFeedTitle'>".
451 "<div style='float : right'>$feed_icon_img</div>".
452 "<a class='title' href=\"#\" onclick=\"viewfeed($feed_id)\">". $line["feed_title"]."</a>
453 $vf_catchup_link</div>";
454
455 }
456 }
457
458 $mouseover_attrs = "onmouseover='postMouseIn(event, $id)'
459 onmouseout='postMouseOut($id)'";
460
461 $reply['content'] .= "<div class='hl $class' orig-feed-id='$feed_id' id='RROW-$id' $mouseover_attrs>";
462
463 $reply['content'] .= "<div class='hlLeft'>";
464
465 $reply['content'] .= "<input dojoType=\"dijit.form.CheckBox\"
466 type=\"checkbox\" onclick=\"toggleSelectRow2(this)\"
467 class='rchk'>";
468
469 $reply['content'] .= "$marked_pic";
470 $reply['content'] .= "$published_pic";
471
472 $reply['content'] .= "</div>";
473
474 $reply['content'] .= "<div onclick='return hlClicked(event, $id)'
475 class=\"hlTitle\"><span class='hlContent $hlc_suffix'>";
476 $reply['content'] .= "<a id=\"RTITLE-$id\" class=\"title $hlc_suffix\"
477 href=\"" . htmlspecialchars($line["link"]) . "\"
478 onclick=\"\">" .
479 truncate_string($line["title"], 200);
480
481 if (get_pref('SHOW_CONTENT_PREVIEW')) {
482 $reply['content'] .= "<span class=\"contentPreview\">" . $line["content_preview"] . "</span>";
483 }
484
485 $reply['content'] .= "</a></span>";
486
487 $reply['content'] .= $labels_str;
488
489 $reply['content'] .= "</div>";
490
491 if (!$vfeed_group_enabled) {
492 if (@$line["feed_title"]) {
493 $rgba = @$rgba_cache[$feed_id];
494
495 $reply['content'] .= "<span class=\"hlFeed\"><a style=\"background : rgba($rgba, 0.3)\" href=\"#\" onclick=\"viewfeed($feed_id)\">".
496 truncate_string($line["feed_title"],30)."</a></span>";
497 }
498 }
499
500
501 $reply['content'] .= "<span class=\"hlUpdated\">";
502
503 $reply['content'] .= "<div title='$date_entered_fmt'>$updated_fmt</div>
504 </span>";
505
506 $reply['content'] .= "<div class=\"hlRight\">";
507
508 $reply['content'] .= $score_pic;
509
510 if ($line["feed_title"] && !$vfeed_group_enabled) {
511
512 $reply['content'] .= "<span onclick=\"viewfeed($feed_id)\"
513 style=\"cursor : pointer\"
514 title=\"".htmlspecialchars($line['feed_title'])."\">
515 $feed_icon_img</span>";
516 }
517
518 $reply['content'] .= "</div>";
519 $reply['content'] .= "</div>";
520
521 } else {
522
523 if ($line["tag_cache"])
524 $tags = explode(",", $line["tag_cache"]);
525 else
526 $tags = false;
527
528 $line["content"] = sanitize($line["content"],
529 sql_bool_to_bool($line['hide_images']), false, $entry_site_url, $highlight_words, $line["id"]);
530
531 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_RENDER_ARTICLE_CDM) as $p) {
532 $line = $p->hook_render_article_cdm($line);
533 }
534
535 if ($vfeed_group_enabled && $line["feed_title"]) {
536 if ($feed_id != $vgroup_last_feed) {
537
538 $cur_feed_title = $line["feed_title"];
539 $vgroup_last_feed = $feed_id;
540
541 $cur_feed_title = htmlspecialchars($cur_feed_title);
542
543 $vf_catchup_link = "<a class='catchup' onclick='catchupFeedInGroup($feed_id);' href='#'>".__('mark feed as read')."</a>";
544
545 $has_feed_icon = feed_has_icon($feed_id);
546
547 if ($has_feed_icon) {
548 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
549 } else {
550 //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">";
551 }
552
553 $reply['content'] .= "<div id='FTITLE-$feed_id' class='cdmFeedTitle'>".
554 "<div style=\"float : right\">$feed_icon_img</div>".
555 "<a href=\"#\" class='title' onclick=\"viewfeed($feed_id)\">".
556 $line["feed_title"]."</a> $vf_catchup_link</div>";
557 }
558 }
559
560 $mouseover_attrs = "onmouseover='postMouseIn(event, $id)'
561 onmouseout='postMouseOut($id)'";
562
563 $expanded_class = $expand_cdm ? "expanded" : "expandable";
564
565 $reply['content'] .= "<div class=\"cdm $hlc_suffix $expanded_class $class\"
566 id=\"RROW-$id\" orig-feed-id='$feed_id' $mouseover_attrs>";
567
568 $reply['content'] .= "<div class=\"cdmHeader\">";
569 $reply['content'] .= "<div style=\"vertical-align : middle\">";
570
571 $reply['content'] .= "<input dojoType=\"dijit.form.CheckBox\"
572 type=\"checkbox\" onclick=\"toggleSelectRow2(this, false, true)\"
573 class='rchk'>";
574
575 $reply['content'] .= "$marked_pic";
576 $reply['content'] .= "$published_pic";
577
578 $reply['content'] .= "</div>";
579
580 if ($highlight_words && count($highlight_words > 0)) {
581 foreach ($highlight_words as $word) {
582 $line["title"] = preg_replace("/(\Q$word\E)/i",
583 "<span class=\"highlight\">$1</span>", $line["title"]);
584 }
585 }
586
587 $reply['content'] .= "<span id=\"RTITLE-$id\"
588 onclick=\"return cdmClicked(event, $id);\"
589 class=\"titleWrap $hlc_suffix\">
590 <a class=\"title $hlc_suffix\"
591 title=\"".htmlspecialchars($line["title"])."\"
592 target=\"_blank\" href=\"".
593 htmlspecialchars($line["link"])."\">".
594 $line["title"] .
595 "</a> <span class=\"author\">$entry_author</span>";
596
597 $reply['content'] .= $labels_str;
598
599 $reply['content'] .= "<span class='collapseBtn' style='display : none'>
600 <img src=\"images/collapse.png\" onclick=\"cdmCollapseArticle(event, $id)\"
601 title=\"".__("Collapse article")."\"/></span>";
602
603 if (!$expand_cdm)
604 $content_hidden = "style=\"display : none\"";
605 else
606 $excerpt_hidden = "style=\"display : none\"";
607
608 $reply['content'] .= "<span $excerpt_hidden id=\"CEXC-$id\" class=\"cdmExcerpt\">" . $content_preview . "</span>";
609
610 $reply['content'] .= "</span>";
611
612 if (!$vfeed_group_enabled) {
613 if (@$line["feed_title"]) {
614 $rgba = @$rgba_cache[$feed_id];
615
616 $reply['content'] .= "<div class=\"hlFeed\">
617 <a href=\"#\" style=\"background-color: rgba($rgba,0.3)\"
618 onclick=\"viewfeed($feed_id)\">".
619 truncate_string($line["feed_title"],30)."</a>
620 </div>";
621 }
622 }
623
624 $reply['content'] .= "<span class='updated' title='$date_entered_fmt'>
625 $updated_fmt</span>";
626
627 $reply['content'] .= "<div class='scoreWrap' style=\"vertical-align : middle\">";
628 $reply['content'] .= "$score_pic";
629
630 if (!get_pref("VFEED_GROUP_BY_FEED") && $line["feed_title"]) {
631 $reply['content'] .= "<span style=\"cursor : pointer\"
632 title=\"".htmlspecialchars($line["feed_title"])."\"
633 onclick=\"viewfeed($feed_id)\">$feed_icon_img</span>";
634 }
635 $reply['content'] .= "</div>";
636
637 $reply['content'] .= "</div>";
638
639 $reply['content'] .= "<div class=\"cdmContent\" $content_hidden
640 onclick=\"return cdmClicked(event, $id);\"
641 id=\"CICD-$id\">";
642
643 $reply['content'] .= "<div id=\"POSTNOTE-$id\">";
644 if ($line['note']) {
645 $reply['content'] .= format_article_note($id, $line['note']);
646 }
647 $reply['content'] .= "</div>";
648
649 if (!$line['lang']) $line['lang'] = 'en';
650
651 $reply['content'] .= "<div class=\"cdmContentInner\" lang=\"".$line['lang']."\">";
652
653 if ($line["orig_feed_id"]) {
654
655 $tmp_result = $this->dbh->query("SELECT * FROM ttrss_archived_feeds
656 WHERE id = ".$line["orig_feed_id"]);
657
658 if ($this->dbh->num_rows($tmp_result) != 0) {
659
660 $reply['content'] .= "<div clear='both'>";
661 $reply['content'] .= __("Originally from:");
662
663 $reply['content'] .= "&nbsp;";
664
665 $tmp_line = $this->dbh->fetch_assoc($tmp_result);
666
667 $reply['content'] .= "<a target='_blank'
668 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
669 $tmp_line['title'] . "</a>";
670
671 $reply['content'] .= "&nbsp;";
672
673 $reply['content'] .= "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
674 $reply['content'] .= "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_unset.png'></a>";
675
676 $reply['content'] .= "</div>";
677 }
678 }
679
680 $reply['content'] .= "<span id=\"CWRAP-$id\">";
681
682// if (!$expand_cdm) {
683 $reply['content'] .= "<span id=\"CENCW-$id\" style=\"display : none\">";
684 $reply['content'] .= htmlspecialchars($line["content"]);
685 $reply['content'] .= "</span.";
686
687// } else {
688// $reply['content'] .= $line["content"];
689// }
690
691 $reply['content'] .= "</span>";
692
693 $always_display_enclosures = sql_bool_to_bool($line["always_display_enclosures"]);
694
695 $reply['content'] .= format_article_enclosures($id, $always_display_enclosures, $line["content"], sql_bool_to_bool($line["hide_images"]));
696
697 $reply['content'] .= "</div>";
698
699 $reply['content'] .= "<div class=\"cdmFooter\" onclick=\"cdmFooterClick(event)\">";
700
701 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_LEFT_BUTTON) as $p) {
702 $reply['content'] .= $p->hook_article_left_button($line);
703 }
704
705 $tags_str = format_tags_string($tags, $id);
706
707 $reply['content'] .= "<img src='images/tag.png' alt='Tags' title='Tags'>
708 <span id=\"ATSTR-$id\">$tags_str</span>
709 <a title=\"".__('Edit tags for this article')."\"
710 href=\"#\" onclick=\"editArticleTags($id)\">(+)</a>";
711
712 $num_comments = $line["num_comments"];
713 $entry_comments = "";
714
715 if ($num_comments > 0) {
716 if ($line["comments"]) {
717 $comments_url = htmlspecialchars($line["comments"]);
718 } else {
719 $comments_url = htmlspecialchars($line["link"]);
720 }
721 $entry_comments = "<a class=\"postComments\"
722 target='_blank' href=\"$comments_url\">$num_comments ".
723 _ngettext("comment", "comments", $num_comments)."</a>";
724
725 } else {
726 if ($line["comments"] && $line["link"] != $line["comments"]) {
727 $entry_comments = "<a class=\"postComments\" target='_blank' href=\"".htmlspecialchars($line["comments"])."\">".__("comments")."</a>";
728 }
729 }
730
731 if ($entry_comments) $reply['content'] .= "&nbsp;($entry_comments)";
732
733 $reply['content'] .= "<div style=\"float : right\">";
734
735// $reply['content'] .= "$marked_pic";
736// $reply['content'] .= "$published_pic";
737
738 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_BUTTON) as $p) {
739 $reply['content'] .= $p->hook_article_button($line);
740 }
741
742 $reply['content'] .= "</div>";
743 $reply['content'] .= "</div>";
744
745 $reply['content'] .= "</div>";
746
747 $reply['content'] .= "</div>";
748
749 }
750
751 ++$lnum;
752 }
753
754 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PE", $timing_info);
755
756 } else if (!is_numeric($result)) {
757 $message = "";
758
759 switch ($view_mode) {
760 case "unread":
761 $message = __("No unread articles found to display.");
762 break;
763 case "updated":
764 $message = __("No updated articles found to display.");
765 break;
766 case "marked":
767 $message = __("No starred articles found to display.");
768 break;
769 default:
770 if ($feed < LABEL_BASE_INDEX) {
771 $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.");
772 } else {
773 $message = __("No articles found to display.");
774 }
775 }
776
777 if (!$offset && $message) {
778 $reply['content'] .= "<div class='whiteBox'>$message";
779
780 $reply['content'] .= "<p><span class=\"insensitive\">";
781
782 $result = $this->dbh->query("SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
783 WHERE owner_uid = " . $_SESSION['uid']);
784
785 $last_updated = $this->dbh->fetch_result($result, 0, "last_updated");
786 $last_updated = make_local_datetime($last_updated, false);
787
788 $reply['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
789
790 $result = $this->dbh->query("SELECT COUNT(id) AS num_errors
791 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
792
793 $num_errors = $this->dbh->fetch_result($result, 0, "num_errors");
794
795 if ($num_errors > 0) {
796 $reply['content'] .= "<br/>";
797 $reply['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
798 __('Some feeds have update errors (click for details)')."</a>";
799 }
800 $reply['content'] .= "</span></p></div>";
801 }
802 } else if (is_numeric($result) && $result == -1) {
803 $reply['content'] = '';
804 $reply['top_id_changed'] = true;
805 }
806
807 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H2", $timing_info);
808
809 return array($topmost_article_ids, $headlines_count, $feed, $disable_cache,
810 $vgroup_last_feed, $reply);
811 }
812
813 function catchupAll() {
814 $this->dbh->query("UPDATE ttrss_user_entries SET
815 last_read = NOW(), unread = false WHERE unread = true AND owner_uid = " . $_SESSION["uid"]);
816 ccache_zero_all($_SESSION["uid"]);
817 }
818
819 function view() {
820 $timing_info = microtime(true);
821
822 $reply = array();
823
824 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("0", $timing_info);
825
826 $feed = $this->dbh->escape_string($_REQUEST["feed"]);
827 $method = $this->dbh->escape_string($_REQUEST["m"]);
828 $view_mode = $this->dbh->escape_string($_REQUEST["view_mode"]);
829 $limit = 30;
830 @$cat_view = $_REQUEST["cat"] == "true";
831 @$next_unread_feed = $this->dbh->escape_string($_REQUEST["nuf"]);
832 @$offset = $this->dbh->escape_string($_REQUEST["skip"]);
833 @$vgroup_last_feed = $this->dbh->escape_string($_REQUEST["vgrlf"]);
834 $order_by = $this->dbh->escape_string($_REQUEST["order_by"]);
835 $check_top_id = $this->dbh->escape_string($_REQUEST["topid"]);
836
837 if (is_numeric($feed)) $feed = (int) $feed;
838
839 /* Feed -5 is a special case: it is used to display auxiliary information
840 * when there's nothing to load - e.g. no stuff in fresh feed */
841
842 if ($feed == -5) {
843 print json_encode($this->generate_dashboard_feed());
844 return;
845 }
846
847 $result = false;
848
849 if ($feed < LABEL_BASE_INDEX) {
850 $label_feed = feed_to_label_id($feed);
851 $result = $this->dbh->query("SELECT id FROM ttrss_labels2 WHERE
852 id = '$label_feed' AND owner_uid = " . $_SESSION['uid']);
853 } else if (!$cat_view && is_numeric($feed) && $feed > 0) {
854 $result = $this->dbh->query("SELECT id FROM ttrss_feeds WHERE
855 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
856 } else if ($cat_view && is_numeric($feed) && $feed > 0) {
857 $result = $this->dbh->query("SELECT id FROM ttrss_feed_categories WHERE
858 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
859 }
860
861 if ($result && $this->dbh->num_rows($result) == 0) {
862 print json_encode($this->generate_error_feed(__("Feed not found.")));
863 return;
864 }
865
866 /* Updating a label ccache means recalculating all of the caches
867 * so for performance reasons we don't do that here */
868
869 if ($feed >= 0) {
870 ccache_update($feed, $_SESSION["uid"], $cat_view);
871 }
872
873 set_pref("_DEFAULT_VIEW_MODE", $view_mode);
874 set_pref("_DEFAULT_VIEW_ORDER_BY", $order_by);
875
876 /* bump login timestamp if needed */
877 if (time() - $_SESSION["last_login_update"] > 3600) {
878 $this->dbh->query("UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
879 $_SESSION["uid"]);
880 $_SESSION["last_login_update"] = time();
881 }
882
883 if (!$cat_view && is_numeric($feed) && $feed > 0) {
884 $this->dbh->query("UPDATE ttrss_feeds SET last_viewed = NOW()
885 WHERE id = '$feed' AND owner_uid = ".$_SESSION["uid"]);
886 }
887
888 $reply['headlines'] = array();
889
890 $override_order = false;
891
892 switch ($order_by) {
893 case "title":
894 $override_order = "ttrss_entries.title";
895 break;
896 case "date_reverse":
897 $override_order = "score DESC, date_entered, updated";
898 break;
899 case "feed_dates":
900 $override_order = "updated DESC";
901 break;
902 }
903
904 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("04", $timing_info);
905
906 $ret = $this->format_headlines_list($feed, $method,
907 $view_mode, $limit, $cat_view, $next_unread_feed, $offset,
908 $vgroup_last_feed, $override_order, true, $check_top_id);
909
910 //$topmost_article_ids = $ret[0];
911 $headlines_count = $ret[1];
912 /* $returned_feed = $ret[2]; */
913 $disable_cache = $ret[3];
914 $vgroup_last_feed = $ret[4];
915
916 //$reply['headlines']['content'] =& $ret[5]['content'];
917 //$reply['headlines']['toolbar'] =& $ret[5]['toolbar'];
918
919 $reply['headlines'] =& $ret[5];
920
921 if (!$next_unread_feed)
922 $reply['headlines']['id'] = $feed;
923 else
924 $reply['headlines']['id'] = $next_unread_feed;
925
926 $reply['headlines']['is_cat'] = (bool) $cat_view;
927
928 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("05", $timing_info);
929
930 $reply['headlines-info'] = array("count" => (int) $headlines_count,
931 "vgroup_last_feed" => $vgroup_last_feed,
932 "disable_cache" => (bool) $disable_cache);
933
934 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("30", $timing_info);
935
936 $reply['runtime-info'] = make_runtime_info();
937
938 print json_encode($reply);
939
940 }
941
942 private function generate_dashboard_feed() {
943 $reply = array();
944
945 $reply['headlines']['id'] = -5;
946 $reply['headlines']['is_cat'] = false;
947
948 $reply['headlines']['toolbar'] = '';
949 $reply['headlines']['content'] = "<div class='whiteBox'>".__('No feed selected.');
950
951 $reply['headlines']['content'] .= "<p><span class=\"insensitive\">";
952
953 $result = $this->dbh->query("SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
954 WHERE owner_uid = " . $_SESSION['uid']);
955
956 $last_updated = $this->dbh->fetch_result($result, 0, "last_updated");
957 $last_updated = make_local_datetime($last_updated, false);
958
959 $reply['headlines']['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
960
961 $result = $this->dbh->query("SELECT COUNT(id) AS num_errors
962 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
963
964 $num_errors = $this->dbh->fetch_result($result, 0, "num_errors");
965
966 if ($num_errors > 0) {
967 $reply['headlines']['content'] .= "<br/>";
968 $reply['headlines']['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
969 __('Some feeds have update errors (click for details)')."</a>";
970 }
971 $reply['headlines']['content'] .= "</span></p>";
972
973 $reply['headlines-info'] = array("count" => 0,
974 "vgroup_last_feed" => '',
975 "unread" => 0,
976 "disable_cache" => true);
977
978 return $reply;
979 }
980
981 private function generate_error_feed($error) {
982 $reply = array();
983
984 $reply['headlines']['id'] = -6;
985 $reply['headlines']['is_cat'] = false;
986
987 $reply['headlines']['toolbar'] = '';
988 $reply['headlines']['content'] = "<div class='whiteBox'>". $error . "</div>";
989
990 $reply['headlines-info'] = array("count" => 0,
991 "vgroup_last_feed" => '',
992 "unread" => 0,
993 "disable_cache" => true);
994
995 return $reply;
996 }
997
998 function quickAddFeed() {
999 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
1000 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"addfeed\">";
1001
1002 print "<div id='fadd_multiple_notify' style='display : none'>";
1003 print_notice("Provided URL is a HTML page referencing multiple feeds, please select required feed from the dropdown menu below.");
1004 print "<p></div>";
1005
1006 print "<div class=\"dlgSec\">".__("Feed or site URL")."</div>";
1007 print "<div class=\"dlgSecCont\">";
1008
1009 print "<div style='float : right'>
1010 <img style='display : none'
1011 id='feed_add_spinner' src='images/indicator_white.gif'></div>";
1012
1013 print "<input style=\"font-size : 16px; width : 20em;\"
1014 placeHolder=\"".__("Feed or site URL")."\"
1015 dojoType=\"dijit.form.ValidationTextBox\" required=\"1\" name=\"feed\" id=\"feedDlg_feedUrl\">";
1016
1017 print "<hr/>";
1018
1019 if (get_pref('ENABLE_FEED_CATS')) {
1020 print __('Place in category:') . " ";
1021 print_feed_cat_select("cat", false, 'dojoType="dijit.form.Select"');
1022 }
1023
1024 print "</div>";
1025
1026 print '<div id="feedDlg_feedsContainer" style="display : none">
1027
1028 <div class="dlgSec">' . __('Available feeds') . '</div>
1029 <div class="dlgSecCont">'.
1030 '<select id="feedDlg_feedContainerSelect"
1031 dojoType="dijit.form.Select" size="3">
1032 <script type="dojo/method" event="onChange" args="value">
1033 dijit.byId("feedDlg_feedUrl").attr("value", value);
1034 </script>
1035 </select>'.
1036 '</div></div>';
1037
1038 print "<div id='feedDlg_loginContainer' style='display : none'>
1039
1040 <div class=\"dlgSec\">".__("Authentication")."</div>
1041 <div class=\"dlgSecCont\">".
1042
1043 " <input dojoType=\"dijit.form.TextBox\" name='login'\"
1044 placeHolder=\"".__("Login")."\"
1045 style=\"width : 10em;\"> ".
1046 " <input
1047 placeHolder=\"".__("Password")."\"
1048 dojoType=\"dijit.form.TextBox\" type='password'
1049 style=\"width : 10em;\" name='pass'\">
1050 </div></div>";
1051
1052
1053 print "<div style=\"clear : both\">
1054 <input type=\"checkbox\" name=\"need_auth\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
1055 onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
1056 <label for=\"feedDlg_loginCheck\">".
1057 __('This feed requires authentication.')."</div>";
1058
1059 print "</form>";
1060
1061 print "<div class=\"dlgButtons\">
1062 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').execute()\">".__('Subscribe')."</button>";
1063
1064 if (!(defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER)) {
1065 print "<button dojoType=\"dijit.form.Button\" onclick=\"return feedBrowser()\">".__('More feeds')."</button>";
1066 }
1067
1068 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').hide()\">".__('Cancel')."</button>
1069 </div>";
1070
1071 //return;
1072 }
1073
1074 function feedBrowser() {
1075 if (defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER) return;
1076
1077 $browser_search = $this->dbh->escape_string($_REQUEST["search"]);
1078
1079 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
1080 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"updateFeedBrowser\">";
1081
1082 print "<div dojoType=\"dijit.Toolbar\">
1083 <div style='float : right'>
1084 <img style='display : none'
1085 id='feed_browser_spinner' src='images/indicator_white.gif'>
1086 <input name=\"search\" dojoType=\"dijit.form.TextBox\" size=\"20\" type=\"search\"
1087 onchange=\"dijit.byId('feedBrowserDlg').update()\" value=\"$browser_search\">
1088 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').update()\">".__('Search')."</button>
1089 </div>";
1090
1091 print " <select name=\"mode\" dojoType=\"dijit.form.Select\" onchange=\"dijit.byId('feedBrowserDlg').update()\">
1092 <option value='1'>" . __('Popular feeds') . "</option>
1093 <option value='2'>" . __('Feed archive') . "</option>
1094 </select> ";
1095
1096 print __("limit:");
1097
1098 print " <select dojoType=\"dijit.form.Select\" name=\"limit\" onchange=\"dijit.byId('feedBrowserDlg').update()\">";
1099
1100 foreach (array(25, 50, 100, 200) as $l) {
1101 //$issel = ($l == $limit) ? "selected=\"1\"" : "";
1102 print "<option value=\"$l\">$l</option>";
1103 }
1104
1105 print "</select> ";
1106
1107 print "</div>";
1108
1109 require_once "feedbrowser.php";
1110
1111 print "<ul class='browseFeedList' id='browseFeedList'>";
1112 print make_feed_browser("", 25);
1113 print "</ul>";
1114
1115 print "<div align='center'>
1116 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').execute()\">".__('Subscribe')."</button>
1117 <button dojoType=\"dijit.form.Button\" style='display : none' id='feed_archive_remove' onclick=\"dijit.byId('feedBrowserDlg').removeFromArchive()\">".__('Remove')."</button>
1118 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').hide()\" >".__('Cancel')."</button></div>";
1119
1120 }
1121
1122 function search() {
1123 $this->params = explode(":", $this->dbh->escape_string($_REQUEST["param"]), 2);
1124
1125 $active_feed_id = sprintf("%d", $this->params[0]);
1126 $is_cat = $this->params[1] != "false";
1127
1128 print "<div class=\"dlgSec\">".__('Look for')."</div>";
1129
1130 print "<div class=\"dlgSecCont\">";
1131
1132 print "<input dojoType=\"dijit.form.ValidationTextBox\"
1133 style=\"font-size : 16px; width : 20em;\"
1134 required=\"1\" name=\"query\" type=\"search\" value=''>";
1135
1136 print "<hr/><span style='float : right'>".T_sprintf('in %s', getFeedTitle($active_feed_id, $is_cat))."</span>";
1137
1138 print "</div>";
1139
1140 print "<div class=\"dlgButtons\">";
1141
1142 if (count(PluginHost::getInstance()->get_hooks(PluginHost::HOOK_SEARCH)) == 0) {
1143 print "<div style=\"float : left\">
1144 <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/wiki/SearchSyntax\">".__("Search syntax")."</a>
1145 </div>";
1146 }
1147
1148 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').execute()\">".__('Search')."</button>
1149 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').hide()\">".__('Cancel')."</button>
1150 </div>";
1151 }
1152
1153 function update_debugger() {
1154 header("Content-type: text/html");
1155
1156 $feed_id = (int)$_REQUEST["feed_id"];
1157 @$do_update = $_REQUEST["action"] == "do_update";
1158 $csrf_token = $_REQUEST["csrf_token"];
1159
1160 $refetch_checked = isset($_REQUEST["force_refetch"]) ? "checked" : "";
1161 $rehash_checked = isset($_REQUEST["force_rehash"]) ? "checked" : "";
1162
1163 ?>
1164 <html>
1165 <head>
1166 <link rel="stylesheet" type="text/css" href="css/utility.css">
1167 <title>Feed Debugger</title>
1168 </head>
1169 <body class="small_margins">
1170 <h1>Feed Debugger: <?php echo "$feed_id: " . getFeedTitle($feed_id) ?></h1>
1171 <form method="GET" action="">
1172 <input type="hidden" name="op" value="feeds">
1173 <input type="hidden" name="method" value="update_debugger">
1174 <input type="hidden" name="xdebug" value="1">
1175 <input type="hidden" name="csrf_token" value="<?php echo $csrf_token ?>">
1176 <input type="hidden" name="action" value="do_update">
1177 <input type="hidden" name="feed_id" value="<?php echo $feed_id ?>">
1178 <input type="checkbox" name="force_refetch" value="1" <?php echo $refetch_checked ?>> Force refetch<br/>
1179 <input type="checkbox" name="force_rehash" value="1" <?php echo $rehash_checked ?>> Force rehash<br/>
1180
1181 <p/><button type="submit">Continue</button>
1182 </form>
1183
1184 <hr>
1185
1186 <pre><?php
1187
1188 if ($do_update) {
1189 include "rssfuncs.php";
1190 update_rss_feed($feed_id, true, true);
1191 }
1192
1193 ?></pre>
1194
1195 </body>
1196 </html>
1197 <?php
1198
1199 }
1200}
1201?>