]> git.wh0rd.org - tt-rss.git/blob - classes/feeds.php
remove unexpanded CDM ajax loading
[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");
8
9 return array_search($method, $csrf_ignored) !== false;
10 }
11
12 private function make_gradient($end, $class) {
13 $start = $class == "even" ? "#f0f0f0" : "#ffffff";
14
15 return "style='background: linear-gradient(left , $start 6%, $end 100%);
16 background: -o-linear-gradient(left , $start 6%, $end 100%);
17 background: -moz-linear-gradient(left , $start 6%, $end 100%);
18 background: -webkit-linear-gradient(left , $start 6%, $end 100%);
19 background: -ms-linear-gradient(left , $start 6%, $end 100%);
20 background: -webkit-gradient(linear, left top, right top,
21 color-stop(0.06, $start), color-stop(1, $end));'";
22 }
23
24 private function format_headline_subtoolbar($feed_site_url, $feed_title,
25 $feed_id, $is_cat, $search, $match_on,
26 $search_mode, $view_mode, $error) {
27
28 $page_prev_link = "viewFeedGoPage(-1)";
29 $page_next_link = "viewFeedGoPage(1)";
30 $page_first_link = "viewFeedGoPage(0)";
31
32 $catchup_page_link = "catchupPage()";
33 $catchup_feed_link = "catchupCurrentFeed()";
34 $catchup_sel_link = "catchupSelection()";
35
36 $archive_sel_link = "archiveSelection()";
37 $delete_sel_link = "deleteSelection()";
38
39 $sel_all_link = "selectArticles('all')";
40 $sel_unread_link = "selectArticles('unread')";
41 $sel_none_link = "selectArticles('none')";
42 $sel_inv_link = "selectArticles('invert')";
43
44 $tog_unread_link = "selectionToggleUnread()";
45 $tog_marked_link = "selectionToggleMarked()";
46 $tog_published_link = "selectionTogglePublished()";
47
48 if ($is_cat) $cat_q = "&is_cat=$is_cat";
49
50 if ($search) {
51 $search_q = "&q=$search&m=$match_on&smode=$search_mode";
52 } else {
53 $search_q = "";
54 }
55
56 $rss_link = htmlspecialchars(get_self_url_prefix() .
57 "/public.php?op=rss&id=$feed_id$cat_q$search_q");
58
59 // right part
60
61 $reply .= "<span class='r'>";
62
63 if ($feed_site_url) {
64 $target = "target=\"_blank\"";
65 $reply .= "<a title=\"".__("Visit the website")."\" $target href=\"$feed_site_url\">".
66 truncate_string($feed_title,30)."</a>";
67
68 if ($error) {
69 $reply .= " (<span class=\"error\" title=\"$error\">Error</span>)";
70 }
71
72 } else {
73 $reply .= $feed_title;
74 }
75
76 $reply .= "
77 <a href=\"#\"
78 title=\"".__("View as RSS feed")."\"
79 onclick=\"displayDlg('generatedFeed', '$feed_id:$is_cat:$rss_link')\">
80 <img class=\"noborder\" style=\"vertical-align : middle\" src=\"images/feed-icon-12x12.png\"></a>";
81
82 $reply .= "</span>";
83
84 // left part
85
86 $reply .= __('Select:')."
87 <a href=\"#\" onclick=\"$sel_all_link\">".__('All')."</a>,
88 <a href=\"#\" onclick=\"$sel_unread_link\">".__('Unread')."</a>,
89 <a href=\"#\" onclick=\"$sel_inv_link\">".__('Invert')."</a>,
90 <a href=\"#\" onclick=\"$sel_none_link\">".__('None')."</a></li>";
91
92 $reply .= " ";
93
94 $reply .= "<select dojoType=\"dijit.form.Select\"
95 onchange=\"headlineActionsChange(this)\">";
96 $reply .= "<option value=\"false\">".__('Actions...')."</option>";
97
98 $reply .= "<option value=\"0\" disabled=\"1\">".__('Selection toggle:')."</option>";
99
100 $reply .= "<option value=\"$tog_unread_link\">".__('Unread')."</option>
101 <option value=\"$tog_marked_link\">".__('Starred')."</option>
102 <option value=\"$tog_published_link\">".__('Published')."</option>";
103
104 $reply .= "<option value=\"0\" disabled=\"1\">".__('Selection:')."</option>";
105
106 $reply .= "<option value=\"$catchup_sel_link\">".__('Mark as read')."</option>";
107
108 if ($feed_id != "0") {
109 $reply .= "<option value=\"$archive_sel_link\">".__('Archive')."</option>";
110 } else {
111 $reply .= "<option value=\"$archive_sel_link\">".__('Move back')."</option>";
112 $reply .= "<option value=\"$delete_sel_link\">".__('Delete')."</option>";
113
114 }
115
116 $reply .= "<option value=\"emailArticle(false)\">".__('Forward by email').
117 "</option>";
118
119 $reply .= "<option value=\"0\" disabled=\"1\">".__('Feed:')."</option>";
120
121 $reply .= "<option value=\"catchupPage()\">".__('Mark as read')."</option>";
122
123 $reply .= "<option value=\"displayDlg('generatedFeed', '$feed_id:$is_cat:$rss_link')\">".__('View as RSS')."</option>";
124
125 $reply .= "</select>";
126
127 //$reply .= "</div>";
128
129 //$reply .= "</h2";
130
131 return $reply;
132 }
133
134 private function format_headlines_list($feed, $method, $view_mode, $limit, $cat_view,
135 $next_unread_feed, $offset, $vgr_last_feed = false,
136 $override_order = false, $include_children = false) {
137
138 $disable_cache = false;
139
140 $reply = array();
141
142 $timing_info = getmicrotime();
143
144 $topmost_article_ids = array();
145
146 if (!$offset) $offset = 0;
147 if ($method == "undefined") $method = "";
148
149 $method_split = explode(":", $method);
150
151 if ($method == "ForceUpdate" && $feed > 0 && is_numeric($feed)) {
152 // Update the feed if required with some basic flood control
153
154 $result = db_query($this->link,
155 "SELECT ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
156 FROM ttrss_feeds WHERE id = '$feed'");
157
158 if (db_num_rows($result) != 0) {
159 $last_updated = strtotime(db_fetch_result($result, 0, "last_updated"));
160 if (time() - $last_updated > 120) {
161 include "rssfuncs.php";
162 update_rss_feed($this->link, $feed, true, true);
163 }
164 }
165 }
166
167 if ($method_split[0] == "MarkAllReadGR") {
168 catchup_feed($this->link, $method_split[1], false);
169 }
170
171 // FIXME: might break tag display?
172
173 if (is_numeric($feed) && $feed > 0 && !$cat_view) {
174 $result = db_query($this->link,
175 "SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
176
177 if (db_num_rows($result) == 0) {
178 $reply['content'] = "<div align='center'>".__('Feed not found.')."</div>";
179 }
180 }
181
182 if (is_numeric($feed) && $feed > 0) {
183
184 $result = db_query($this->link, "SELECT rtl_content FROM ttrss_feeds
185 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
186
187 if (db_num_rows($result) == 1) {
188 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
189 } else {
190 $rtl_content = false;
191 }
192
193 if ($rtl_content) {
194 $rtl_tag = "dir=\"RTL\"";
195 } else {
196 $rtl_tag = "";
197 }
198 } else {
199 $rtl_tag = "";
200 $rtl_content = false;
201 }
202
203 @$search = db_escape_string($_REQUEST["query"]);
204
205 if ($search) {
206 $disable_cache = true;
207 }
208
209 @$search_mode = db_escape_string($_REQUEST["search_mode"]);
210 @$match_on = db_escape_string($_REQUEST["match_on"]);
211
212 if (!$match_on) {
213 $match_on = "both";
214 }
215
216 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H0", $timing_info);
217
218 // error_log("format_headlines_list: [" . $feed . "] method [" . $method . "]");
219 if( $search_mode == '' && $method != '' ){
220 $search_mode = $method;
221 }
222 // error_log("search_mode: " . $search_mode);
223 $qfh_ret = queryFeedHeadlines($this->link, $feed, $limit, $view_mode, $cat_view,
224 $search, $search_mode, $match_on, $override_order, $offset, 0,
225 false, 0, $include_children);
226
227 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H1", $timing_info);
228
229 $result = $qfh_ret[0];
230 $feed_title = $qfh_ret[1];
231 $feed_site_url = $qfh_ret[2];
232 $last_error = $qfh_ret[3];
233
234 $vgroup_last_feed = $vgr_last_feed;
235
236 // if (!$offset) {
237
238 if (db_num_rows($result) > 0) {
239 $reply['toolbar'] = $this->format_headline_subtoolbar($feed_site_url,
240 $feed_title,
241 $feed, $cat_view, $search, $match_on, $search_mode, $view_mode,
242 $last_error);
243 }
244 // }
245
246 $headlines_count = db_num_rows($result);
247
248 if (get_pref($this->link, 'COMBINED_DISPLAY_MODE')) {
249 $button_plugins = array();
250 foreach (explode(",", ARTICLE_BUTTON_PLUGINS) as $p) {
251 $pclass = trim("button_${p}");
252
253 if (class_exists($pclass)) {
254 $plugin = new $pclass($link);
255 array_push($button_plugins, $plugin);
256 }
257 }
258 }
259
260 if (db_num_rows($result) > 0) {
261
262 $lnum = $offset;
263
264 $num_unread = 0;
265 $cur_feed_title = '';
266
267 $fresh_intl = get_pref($this->link, "FRESH_ARTICLE_MAX_AGE") * 60 * 60;
268
269 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PS", $timing_info);
270
271 while ($line = db_fetch_assoc($result)) {
272 $class = ($lnum % 2) ? "even" : "odd";
273
274 $id = $line["id"];
275 $feed_id = $line["feed_id"];
276 $label_cache = $line["label_cache"];
277 $labels = false;
278 $label_row_style = "";
279
280 if ($label_cache) {
281 $label_cache = json_decode($label_cache, true);
282
283 if ($label_cache) {
284 if ($label_cache["no-labels"] == 1)
285 $labels = array();
286 else
287 $labels = $label_cache;
288 }
289 }
290
291 if (!is_array($labels)) $labels = get_article_labels($this->link, $id);
292
293 if (count($labels) > 0) {
294 for ($i = 0; $i < min(4, count($labels)); $i++) {
295 $bg = rgb2hsl(_color_unpack($labels[$i][3]));
296
297 if ($bg && $bg[1] > 0) {
298 $bg[1] = 0.1;
299 $bg[2] = 1;
300
301 $bg = _color_pack(hsl2rgb($bg));
302 $label_row_style = $this->make_gradient($bg, $class);;
303
304 break;
305 }
306 }
307 }
308
309 $labels_str = "<span id=\"HLLCTR-$id\">";
310 $labels_str .= format_article_labels($labels, $id);
311 $labels_str .= "</span>";
312
313 if (count($topmost_article_ids) < 3) {
314 array_push($topmost_article_ids, $id);
315 }
316
317 if ($line["last_read"] == "" && !sql_bool_to_bool($line["unread"])) {
318
319 $update_pic = "<img id='FUPDPIC-$id' src=\"".
320 theme_image($this->link, 'images/updated.png')."\"
321 alt=\"Updated\">";
322 } else {
323 $update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.gif\"
324 alt=\"Updated\">";
325 }
326
327 if (sql_bool_to_bool($line["unread"]) &&
328 time() - strtotime($line["updated_noms"]) < $fresh_intl) {
329
330 $update_pic = "<img id='FUPDPIC-$id' src=\"".
331 theme_image($this->link, 'images/fresh_sign.png')."\" alt=\"Fresh\">";
332 }
333
334 if ($line["unread"] == "t" || $line["unread"] == "1") {
335 $class .= " Unread";
336 ++$num_unread;
337 $is_unread = true;
338 } else {
339 $is_unread = false;
340 }
341
342 if ($line["marked"] == "t" || $line["marked"] == "1") {
343 $marked_pic = "<img id=\"FMPIC-$id\"
344 src=\"".theme_image($this->link, 'images/mark_set.png')."\"
345 class=\"markedPic\" alt=\"Unstar article\"
346 onclick='javascript:toggleMark($id)'>";
347 } else {
348 $marked_pic = "<img id=\"FMPIC-$id\"
349 src=\"".theme_image($this->link, 'images/mark_unset.png')."\"
350 class=\"markedPic\" alt=\"Star article\"
351 onclick='javascript:toggleMark($id)'>";
352 }
353
354 if ($line["published"] == "t" || $line["published"] == "1") {
355 $published_pic = "<img id=\"FPPIC-$id\" src=\"".theme_image($this->link,
356 'images/pub_set.png')."\"
357 class=\"markedPic\"
358 alt=\"Unpublish article\" onclick='javascript:togglePub($id)'>";
359 } else {
360 $published_pic = "<img id=\"FPPIC-$id\" src=\"".theme_image($this->link,
361 'images/pub_unset.png')."\"
362 class=\"markedPic\"
363 alt=\"Publish article\" onclick='javascript:togglePub($id)'>";
364 }
365
366 # $content_link = "<a target=\"_blank\" href=\"".$line["link"]."\">" .
367 # $line["title"] . "</a>";
368
369 # $content_link = "<a
370 # href=\"" . htmlspecialchars($line["link"]) . "\"
371 # onclick=\"view($id,$feed_id);\">" .
372 # $line["title"] . "</a>";
373
374 # $content_link = "<a href=\"javascript:viewContentUrl('".$line["link"]."');\">" .
375 # $line["title"] . "</a>";
376
377 $updated_fmt = make_local_datetime($this->link, $line["updated_noms"], false);
378
379 if (get_pref($this->link, 'SHOW_CONTENT_PREVIEW')) {
380 $content_preview = truncate_string(strip_tags($line["content_preview"]),
381 100);
382 }
383
384 $score = $line["score"];
385
386 $score_pic = theme_image($this->link,
387 "images/" . get_score_pic($score));
388
389 /* $score_title = __("(Click to change)");
390 $score_pic = "<img class='hlScorePic' src=\"images/$score_pic\"
391 onclick=\"adjustArticleScore($id, $score)\" title=\"$score $score_title\">"; */
392
393 $score_pic = "<img class='hlScorePic' src=\"$score_pic\"
394 title=\"$score\">";
395
396 if ($score > 500) {
397 $hlc_suffix = "H";
398 } else if ($score < -100) {
399 $hlc_suffix = "L";
400 } else {
401 $hlc_suffix = "";
402 }
403
404 $entry_author = $line["author"];
405
406 if ($entry_author) {
407 $entry_author = " - $entry_author";
408 }
409
410 $has_feed_icon = feed_has_icon($feed_id);
411
412 if ($has_feed_icon) {
413 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
414 } else {
415 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/feed-icon-12x12.png\" alt=\"\">";
416 }
417
418 if (!get_pref($this->link, 'COMBINED_DISPLAY_MODE')) {
419
420 if (get_pref($this->link, 'VFEED_GROUP_BY_FEED')) {
421 if ($feed_id != $vgroup_last_feed && $line["feed_title"]) {
422
423 $cur_feed_title = $line["feed_title"];
424 $vgroup_last_feed = $feed_id;
425
426 $cur_feed_title = htmlspecialchars($cur_feed_title);
427
428 $vf_catchup_link = "(<a onclick='catchupFeedInGroup($feed_id);' href='#'>".__('mark as read')."</a>)";
429
430 $reply['content'] .= "<div class='cdmFeedTitle'>".
431 "<div style=\"float : right\">$feed_icon_img</div>".
432 "<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
433 $line["feed_title"]."</a> $vf_catchup_link</div>";
434
435 }
436 }
437
438 $mouseover_attrs = "onmouseover='postMouseIn($id)'
439 onmouseout='postMouseOut($id)'";
440
441 $reply['content'] .= "<div class='$class' id='RROW-$id' $label_row_style $mouseover_attrs>";
442
443 $reply['content'] .= "<div class='hlUpdPic'>$update_pic</div>";
444
445 $reply['content'] .= "<div class='hlLeft'>";
446
447 $reply['content'] .= "<input type=\"checkbox\" onclick=\"tSR(this)\"
448 id=\"RCHK-$id\">";
449
450 $reply['content'] .= "$marked_pic";
451 $reply['content'] .= "$published_pic";
452
453 $reply['content'] .= "</div>";
454
455 $reply['content'] .= "<div onclick='return hlClicked(event, $id)'
456 class=\"hlTitle\"><span class='hlContent$hlc_suffix'>";
457 $reply['content'] .= "<a id=\"RTITLE-$id\"
458 href=\"" . htmlspecialchars($line["link"]) . "\"
459 onclick=\"\">" .
460 truncate_string($line["title"], 200);
461
462 if (get_pref($this->link, 'SHOW_CONTENT_PREVIEW')) {
463 if ($content_preview) {
464 $reply['content'] .= "<span class=\"contentPreview\"> - $content_preview</span>";
465 }
466 }
467
468 $reply['content'] .= "</a></span>";
469
470 $reply['content'] .= $labels_str;
471
472 if (!get_pref($this->link, 'VFEED_GROUP_BY_FEED') &&
473 defined('_SHOW_FEED_TITLE_IN_VFEEDS')) {
474 if (@$line["feed_title"]) {
475 $reply['content'] .= "<span class=\"hlFeed\">
476 (<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
477 $line["feed_title"]."</a>)
478 </span>";
479 }
480 }
481
482 $reply['content'] .= "</div>";
483
484 $reply['content'] .= "<span class=\"hlUpdated\">$updated_fmt</span>";
485 $reply['content'] .= "<div class=\"hlRight\">";
486
487 $reply['content'] .= $score_pic;
488
489 if ($line["feed_title"] && !get_pref($this->link, 'VFEED_GROUP_BY_FEED')) {
490
491 $reply['content'] .= "<span onclick=\"viewfeed($feed_id)\"
492 style=\"cursor : pointer\"
493 title=\"".htmlspecialchars($line['feed_title'])."\">
494 $feed_icon_img<span>";
495 }
496
497 $reply['content'] .= "</div>";
498 $reply['content'] .= "</div>";
499
500 } else {
501
502 if (get_pref($this->link, 'VFEED_GROUP_BY_FEED') && $line["feed_title"]) {
503 if ($feed_id != $vgroup_last_feed) {
504
505 $cur_feed_title = $line["feed_title"];
506 $vgroup_last_feed = $feed_id;
507
508 $cur_feed_title = htmlspecialchars($cur_feed_title);
509
510 $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>".__('mark as read')."</a>)";
511
512 $has_feed_icon = feed_has_icon($feed_id);
513
514 if ($has_feed_icon) {
515 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
516 } else {
517 //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">";
518 }
519
520 $reply['content'] .= "<div class='cdmFeedTitle'>".
521 "<div style=\"float : right\">$feed_icon_img</div>".
522 "<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
523 $line["feed_title"]."</a> $vf_catchup_link</div>";
524 }
525 }
526
527 $expand_cdm = get_pref($this->link, 'CDM_EXPANDED');
528
529 $mouseover_attrs = "onmouseover='postMouseIn($id)'
530 onmouseout='postMouseOut($id)'";
531
532 $reply['content'] .= "<div class=\"$class\" $label_row_style
533 id=\"RROW-$id\" $mouseover_attrs'>";
534
535 $reply['content'] .= "<div class=\"cdmHeader\">";
536
537 $reply['content'] .= "<div>";
538
539 $reply['content'] .= "<input type=\"checkbox\" onclick=\"toggleSelectRowById(this,
540 'RROW-$id')\" id=\"RCHK-$id\"/>";
541
542 $reply['content'] .= "$marked_pic";
543 $reply['content'] .= "$published_pic";
544
545 $reply['content'] .= "</div>";
546
547 $reply['content'] .= "<div id=\"PTITLE-FULL-$id\" style=\"display : none\">" .
548 htmlspecialchars(strip_tags($line['title'])) . "</div>";
549
550 $reply['content'] .= "<span id=\"RTITLE-$id\"
551 onclick=\"return cdmClicked(event, $id);\"
552 class=\"titleWrap$hlc_suffix\">
553 <a class=\"title\"
554 title=\"".htmlspecialchars($line['title'])."\"
555 target=\"_blank\" href=\"".
556 htmlspecialchars($line["link"])."\">".
557 $line["title"] .
558 " $entry_author</a>";
559
560 $reply['content'] .= $labels_str;
561
562 if (!get_pref($this->link, 'VFEED_GROUP_BY_FEED') &&
563 defined('_SHOW_FEED_TITLE_IN_VFEEDS')) {
564 if (@$line["feed_title"]) {
565 $reply['content'] .= "<span class=\"hlFeed\">
566 (<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
567 $line["feed_title"]."</a>)
568 </span>";
569 }
570 }
571
572 if (!$expand_cdm)
573 $content_hidden = "style=\"display : none\"";
574 else
575 $excerpt_hidden = "style=\"display : none\"";
576
577 $reply['content'] .= "<span $excerpt_hidden
578 id=\"CEXC-$id\" class=\"cdmExcerpt\"> - $content_preview</span>";
579
580 $reply['content'] .= "</span>";
581
582 $reply['content'] .= "<div>";
583 $reply['content'] .= "<span class='updated'>$updated_fmt</span>";
584 $reply['content'] .= "$score_pic";
585
586 if (!get_pref($this->link, "VFEED_GROUP_BY_FEED") && $line["feed_title"]) {
587 $reply['content'] .= "<span style=\"cursor : pointer\"
588 title=\"".htmlspecialchars($line["feed_title"])."\"
589 onclick=\"viewfeed($feed_id)\">$feed_icon_img</span>";
590 }
591 $reply['content'] .= "<div class=\"updPic\">$update_pic</div>";
592 $reply['content'] .= "</div>";
593
594 $reply['content'] .= "</div>";
595
596 $reply['content'] .= "<div class=\"cdmContent\" $content_hidden
597 onclick=\"return cdmClicked(event, $id);\"
598 id=\"CICD-$id\">";
599
600 $reply['content'] .= "<div class=\"cdmContentInner\">";
601
602 if ($line["orig_feed_id"]) {
603
604 $tmp_result = db_query($this->link, "SELECT * FROM ttrss_archived_feeds
605 WHERE id = ".$line["orig_feed_id"]);
606
607 if (db_num_rows($tmp_result) != 0) {
608
609 $reply['content'] .= "<div clear='both'>";
610 $reply['content'] .= __("Originally from:");
611
612 $reply['content'] .= "&nbsp;";
613
614 $tmp_line = db_fetch_assoc($tmp_result);
615
616 $reply['content'] .= "<a target='_blank'
617 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
618 $tmp_line['title'] . "</a>";
619
620 $reply['content'] .= "&nbsp;";
621
622 $reply['content'] .= "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
623 $reply['content'] .= "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_set.png'></a>";
624
625 $reply['content'] .= "</div>";
626 }
627 }
628
629 $feed_site_url = $line["site_url"];
630
631 $article_content = sanitize($this->link, $line["content_preview"],
632 false, false, $feed_site_url);
633
634 $reply['content'] .= "<div id=\"POSTNOTE-$id\">";
635 if ($line['note']) {
636 $reply['content'] .= format_article_note($id, $line['note']);
637 }
638 $reply['content'] .= "</div>";
639
640 $reply['content'] .= "<span id=\"CWRAP-$id\">";
641 $reply['content'] .= $article_content;
642 $reply['content'] .= "</span>";
643
644 /* $tmp_result = db_query($this->link, "SELECT always_display_enclosures FROM
645 ttrss_feeds WHERE id = ".
646 (($line['feed_id'] == null) ? $line['orig_feed_id'] :
647 $line['feed_id'])." AND owner_uid = ".$_SESSION["uid"]);
648
649 $always_display_enclosures = sql_bool_to_bool(db_fetch_result($tmp_result,
650 0, "always_display_enclosures")); */
651
652 $always_display_enclosures = sql_bool_to_bool($line["always_display_enclosures"]);
653
654 $reply['content'] .= format_article_enclosures($this->link, $id, $always_display_enclosures,
655 $article_content);
656
657 $reply['content'] .= "</div>";
658
659 $reply['content'] .= "<div class=\"cdmFooter\">";
660
661 $tag_cache = $line["tag_cache"];
662
663 $tags_str = format_tags_string(
664 get_article_tags($this->link, $id, $_SESSION["uid"], $tag_cache),
665 $id);
666
667 $reply['content'] .= "<img src='".theme_image($this->link,
668 'images/tag.png')."' alt='Tags' title='Tags'>
669 <span id=\"ATSTR-$id\">$tags_str</span>
670 <a title=\"".__('Edit tags for this article')."\"
671 href=\"#\" onclick=\"editArticleTags($id, $feed_id, true)\">(+)</a>";
672
673 $num_comments = $line["num_comments"];
674 $entry_comments = "";
675
676 if ($num_comments > 0) {
677 if ($line["comments"]) {
678 $comments_url = htmlspecialchars($line["comments"]);
679 } else {
680 $comments_url = htmlspecialchars($line["link"]);
681 }
682 $entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
683 } else {
684 if ($line["comments"] && $line["link"] != $line["comments"]) {
685 $entry_comments = "<a target='_blank' href=\"".htmlspecialchars($line["comments"])."\">comments</a>";
686 }
687 }
688
689 if ($entry_comments) $reply['content'] .= "&nbsp;($entry_comments)";
690
691 $reply['content'] .= "<div style=\"float : right\">";
692
693 $reply['content'] .= "<img src=\"images/art-zoom.png\"
694 onclick=\"zoomToArticle(event, $id)\"
695 style=\"cursor : pointer\"
696 alt='Zoom'
697 title='".__('Open article in new tab')."'>";
698
699 //$note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
700
701 foreach ($button_plugins as $p) {
702 $reply['content'] .= $p->render($id, $line);
703 }
704
705 $reply['content'] .= "<img src=\"images/digest_checkbox.png\"
706 style=\"cursor : pointer\" style=\"cursor : pointer\"
707 onclick=\"dismissArticle($id)\"
708 title='".__('Close article')."'>";
709
710 $reply['content'] .= "</div>";
711 $reply['content'] .= "</div>";
712
713 $reply['content'] .= "</div>";
714
715 $reply['content'] .= "</div>";
716
717 }
718
719 ++$lnum;
720 }
721
722 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PE", $timing_info);
723
724 } else {
725 $message = "";
726
727 switch ($view_mode) {
728 case "unread":
729 $message = __("No unread articles found to display.");
730 break;
731 case "updated":
732 $message = __("No updated articles found to display.");
733 break;
734 case "marked":
735 $message = __("No starred articles found to display.");
736 break;
737 default:
738 if ($feed < -10) {
739 $message = __("No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter.");
740 } else {
741 $message = __("No articles found to display.");
742 }
743 }
744
745 if (!$offset && $message) {
746 $reply['content'] .= "<div class='whiteBox'>$message";
747
748 $reply['content'] .= "<p class=\"small\"><span class=\"insensitive\">";
749
750 $result = db_query($this->link, "SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
751 WHERE owner_uid = " . $_SESSION['uid']);
752
753 $last_updated = db_fetch_result($result, 0, "last_updated");
754 $last_updated = make_local_datetime($this->link, $last_updated, false);
755
756 $reply['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
757
758 $result = db_query($this->link, "SELECT COUNT(id) AS num_errors
759 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
760
761 $num_errors = db_fetch_result($result, 0, "num_errors");
762
763 if ($num_errors > 0) {
764 $reply['content'] .= "<br/>";
765 $reply['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
766 __('Some feeds have update errors (click for details)')."</a>";
767 }
768 $reply['content'] .= "</span></p></div>";
769 }
770 }
771
772 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H2", $timing_info);
773
774 return array($topmost_article_ids, $headlines_count, $feed, $disable_cache,
775 $vgroup_last_feed, $reply);
776 }
777
778 function catchupAll() {
779 db_query($this->link, "UPDATE ttrss_user_entries SET
780 last_read = NOW(),unread = false WHERE owner_uid = " . $_SESSION["uid"]);
781 ccache_zero_all($this->link, $_SESSION["uid"]);
782 }
783
784 function collapse() {
785 $cat_id = db_escape_string($_REQUEST["cid"]);
786 $mode = (int) db_escape_string($_REQUEST['mode']);
787 toggle_collapse_cat($this->link, $cat_id, $mode);
788 }
789
790 function view() {
791 $timing_info = getmicrotime();
792
793 $reply = array();
794
795 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("0", $timing_info);
796
797 $omode = db_escape_string($_REQUEST["omode"]);
798
799 $feed = db_escape_string($_REQUEST["feed"]);
800 $method = db_escape_string($_REQUEST["m"]);
801 $view_mode = db_escape_string($_REQUEST["view_mode"]);
802 $limit = (int) get_pref($this->link, "DEFAULT_ARTICLE_LIMIT");
803 @$cat_view = $_REQUEST["cat"] == "true";
804 @$next_unread_feed = db_escape_string($_REQUEST["nuf"]);
805 @$offset = db_escape_string($_REQUEST["skip"]);
806 @$vgroup_last_feed = db_escape_string($_REQUEST["vgrlf"]);
807 $order_by = db_escape_string($_REQUEST["order_by"]);
808
809 if (is_numeric($feed)) $feed = (int) $feed;
810
811 /* Feed -5 is a special case: it is used to display auxiliary information
812 * when there's nothing to load - e.g. no stuff in fresh feed */
813
814 if ($feed == -5) {
815 print json_encode(generate_dashboard_feed($this->link));
816 return;
817 }
818
819 $result = false;
820
821 if ($feed < -10) {
822 $label_feed = -11-$feed;
823 $result = db_query($this->link, "SELECT id FROM ttrss_labels2 WHERE
824 id = '$label_feed' AND owner_uid = " . $_SESSION['uid']);
825 } else if (!$cat_view && is_numeric($feed) && $feed > 0) {
826 $result = db_query($this->link, "SELECT id FROM ttrss_feeds WHERE
827 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
828 } else if ($cat_view && is_numeric($feed) && $feed > 0) {
829 $result = db_query($this->link, "SELECT id FROM ttrss_feed_categories WHERE
830 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
831 }
832
833 if ($result && db_num_rows($result) == 0) {
834 print json_encode(generate_error_feed($this->link, __("Feed not found.")));
835 return;
836 }
837
838 /* Updating a label ccache means recalculating all of the caches
839 * so for performance reasons we don't do that here */
840
841 if ($feed >= 0) {
842 ccache_update($this->link, $feed, $_SESSION["uid"], $cat_view);
843 }
844
845 set_pref($this->link, "_DEFAULT_VIEW_MODE", $view_mode);
846 set_pref($this->link, "_DEFAULT_VIEW_LIMIT", $limit);
847 set_pref($this->link, "_DEFAULT_VIEW_ORDER_BY", $order_by);
848
849 if (!$cat_view && is_numeric($feed) && $feed > 0) {
850 db_query($this->link, "UPDATE ttrss_feeds SET last_viewed = NOW()
851 WHERE id = '$feed' AND owner_uid = ".$_SESSION["uid"]);
852 }
853
854 $reply['headlines'] = array();
855
856 if (!$next_unread_feed)
857 $reply['headlines']['id'] = $feed;
858 else
859 $reply['headlines']['id'] = $next_unread_feed;
860
861 $reply['headlines']['is_cat'] = (bool) $cat_view;
862
863 $override_order = false;
864
865 if (get_pref($this->link, "SORT_HEADLINES_BY_FEED_DATE", $owner_uid)) {
866 $date_sort_field = "updated";
867 } else {
868 $date_sort_field = "date_entered";
869 }
870
871 switch ($order_by) {
872 case "date":
873 if (get_pref($this->link, 'REVERSE_HEADLINES', $owner_uid)) {
874 $override_order = "$date_sort_field";
875 } else {
876 $override_order = "$date_sort_field DESC";
877 }
878 break;
879
880 case "title":
881 if (get_pref($this->link, 'REVERSE_HEADLINES', $owner_uid)) {
882 $override_order = "title DESC, $date_sort_field";
883 } else {
884 $override_order = "title, $date_sort_field DESC";
885 }
886 break;
887
888 case "score":
889 if (get_pref($this->link, 'REVERSE_HEADLINES', $owner_uid)) {
890 $override_order = "score, $date_sort_field";
891 } else {
892 $override_order = "score DESC, $date_sort_field DESC";
893 }
894 break;
895 }
896
897 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("04", $timing_info);
898
899 $ret = $this->format_headlines_list($feed, $method,
900 $view_mode, $limit, $cat_view, $next_unread_feed, $offset,
901 $vgroup_last_feed, $override_order, true);
902
903 $topmost_article_ids = $ret[0];
904 $headlines_count = $ret[1];
905 $returned_feed = $ret[2];
906 $disable_cache = $ret[3];
907 $vgroup_last_feed = $ret[4];
908
909 $reply['headlines']['content'] =& $ret[5]['content'];
910 $reply['headlines']['toolbar'] =& $ret[5]['toolbar'];
911
912 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("05", $timing_info);
913
914 $reply['headlines-info'] = array("count" => (int) $headlines_count,
915 "vgroup_last_feed" => $vgroup_last_feed,
916 "disable_cache" => (bool) $disable_cache);
917
918 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("20", $timing_info);
919
920 if (is_array($topmost_article_ids) && !get_pref($this->link, 'COMBINED_DISPLAY_MODE') && !$_SESSION["bw_limit"]) {
921 $articles = array();
922
923 foreach ($topmost_article_ids as $id) {
924 array_push($articles, format_article($this->link, $id, false));
925 }
926
927 $reply['articles'] = $articles;
928 }
929
930 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("30", $timing_info);
931
932 $reply['runtime-info'] = make_runtime_info($this->link);
933
934 print json_encode($reply);
935
936 }
937 }
938 ?>