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