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