]> git.wh0rd.org - tt-rss.git/blob - classes/feeds.php
fix creating filter with active article title in cdm
[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'] .= "<div id=\"PTITLE-FULL-$id\" style=\"display : none\">" .
549 strip_tags($line['title']) . "</div>";
550
551 $reply['content'] .= "<span id=\"RTITLE-$id\"
552 onclick=\"return cdmClicked(event, $id);\"
553 class=\"titleWrap$hlc_suffix\">
554 <a class=\"title\"
555 title=\"".htmlspecialchars($line['title'])."\"
556 target=\"_blank\" href=\"".
557 htmlspecialchars($line["link"])."\">".
558 truncate_string($line["title"], 100) .
559 " $entry_author</a>";
560
561 $reply['content'] .= $labels_str;
562
563 if (!get_pref($this->link, 'VFEED_GROUP_BY_FEED') &&
564 defined('_SHOW_FEED_TITLE_IN_VFEEDS')) {
565 if (@$line["feed_title"]) {
566 $reply['content'] .= "<span class=\"hlFeed\">
567 (<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
568 $line["feed_title"]."</a>)
569 </span>";
570 }
571 }
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
579 id=\"CEXC-$id\" class=\"cdmExcerpt\"> - $content_preview</span>";
580
581 $reply['content'] .= "</span>";
582
583 $reply['content'] .= "<div>";
584 $reply['content'] .= "<span class='updated'>$updated_fmt</span>";
585 $reply['content'] .= "$score_pic";
586
587 if (!get_pref($this->link, "VFEED_GROUP_BY_FEED") && $line["feed_title"]) {
588 $reply['content'] .= "<span style=\"cursor : pointer\"
589 title=\"".htmlspecialchars($line["feed_title"])."\"
590 onclick=\"viewfeed($feed_id)\">$feed_icon_img</span>";
591 }
592 $reply['content'] .= "<div class=\"updPic\">$update_pic</div>";
593 $reply['content'] .= "</div>";
594
595 $reply['content'] .= "</div>";
596
597 $reply['content'] .= "<div class=\"cdmContent\" $content_hidden
598 onclick=\"return cdmClicked(event, $id);\"
599 id=\"CICD-$id\">";
600
601 $reply['content'] .= "<div class=\"cdmContentInner\">";
602
603 if ($line["orig_feed_id"]) {
604
605 $tmp_result = db_query($this->link, "SELECT * FROM ttrss_archived_feeds
606 WHERE id = ".$line["orig_feed_id"]);
607
608 if (db_num_rows($tmp_result) != 0) {
609
610 $reply['content'] .= "<div clear='both'>";
611 $reply['content'] .= __("Originally from:");
612
613 $reply['content'] .= "&nbsp;";
614
615 $tmp_line = db_fetch_assoc($tmp_result);
616
617 $reply['content'] .= "<a target='_blank'
618 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
619 $tmp_line['title'] . "</a>";
620
621 $reply['content'] .= "&nbsp;";
622
623 $reply['content'] .= "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
624 $reply['content'] .= "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_set.png'></a>";
625
626 $reply['content'] .= "</div>";
627 }
628 }
629
630 $feed_site_url = $line["site_url"];
631
632 $article_content = sanitize($this->link, $line["content_preview"],
633 false, false, $feed_site_url);
634
635 $reply['content'] .= "<div id=\"POSTNOTE-$id\">";
636 if ($line['note']) {
637 $reply['content'] .= format_article_note($id, $line['note']);
638 }
639 $reply['content'] .= "</div>";
640
641 $reply['content'] .= "<span id=\"CWRAP-$id\">";
642 $reply['content'] .= $expand_cdm ? $article_content : '';
643 $reply['content'] .= "</span>";
644
645 /* $tmp_result = db_query($this->link, "SELECT always_display_enclosures FROM
646 ttrss_feeds WHERE id = ".
647 (($line['feed_id'] == null) ? $line['orig_feed_id'] :
648 $line['feed_id'])." AND owner_uid = ".$_SESSION["uid"]);
649
650 $always_display_enclosures = sql_bool_to_bool(db_fetch_result($tmp_result,
651 0, "always_display_enclosures")); */
652
653 $always_display_enclosures = sql_bool_to_bool($line["always_display_enclosures"]);
654
655 $reply['content'] .= format_article_enclosures($this->link, $id, $always_display_enclosures,
656 $article_content);
657
658 $reply['content'] .= "</div>";
659
660 $reply['content'] .= "<div class=\"cdmFooter\">";
661
662 $tag_cache = $line["tag_cache"];
663
664 $tags_str = format_tags_string(
665 get_article_tags($this->link, $id, $_SESSION["uid"], $tag_cache),
666 $id);
667
668 $reply['content'] .= "<img src='".theme_image($this->link,
669 'images/tag.png')."' alt='Tags' title='Tags'>
670 <span id=\"ATSTR-$id\">$tags_str</span>
671 <a title=\"".__('Edit tags for this article')."\"
672 href=\"#\" onclick=\"editArticleTags($id, $feed_id, true)\">(+)</a>";
673
674 $num_comments = $line["num_comments"];
675 $entry_comments = "";
676
677 if ($num_comments > 0) {
678 if ($line["comments"]) {
679 $comments_url = $line["comments"];
680 } else {
681 $comments_url = $line["link"];
682 }
683 $entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
684 } else {
685 if ($line["comments"] && $line["link"] != $line["comments"]) {
686 $entry_comments = "<a target='_blank' href=\"".$line["comments"]."\">comments</a>";
687 }
688 }
689
690 if ($entry_comments) $reply['content'] .= "&nbsp;($entry_comments)";
691
692 $reply['content'] .= "<div style=\"float : right\">";
693
694 $reply['content'] .= "<img src=\"images/art-zoom.png\"
695 onclick=\"zoomToArticle(event, $id)\"
696 style=\"cursor : pointer\"
697 alt='Zoom'
698 title='".__('Open article in new tab')."'>";
699
700 //$note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
701
702 foreach ($button_plugins as $p) {
703 $reply['content'] .= $p->render($id, $line);
704 }
705
706 $reply['content'] .= "<img src=\"images/digest_checkbox.png\"
707 style=\"cursor : pointer\" style=\"cursor : pointer\"
708 onclick=\"dismissArticle($id)\"
709 title='".__('Close article')."'>";
710
711 $reply['content'] .= "</div>";
712 $reply['content'] .= "</div>";
713
714 $reply['content'] .= "</div>";
715
716 $reply['content'] .= "</div>";
717
718 }
719
720 ++$lnum;
721 }
722
723 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PE", $timing_info);
724
725 } else {
726 $message = "";
727
728 switch ($view_mode) {
729 case "unread":
730 $message = __("No unread articles found to display.");
731 break;
732 case "updated":
733 $message = __("No updated articles found to display.");
734 break;
735 case "marked":
736 $message = __("No starred articles found to display.");
737 break;
738 default:
739 if ($feed < -10) {
740 $message = __("No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter.");
741 } else {
742 $message = __("No articles found to display.");
743 }
744 }
745
746 if (!$offset && $message) {
747 $reply['content'] .= "<div class='whiteBox'>$message";
748
749 $reply['content'] .= "<p class=\"small\"><span class=\"insensitive\">";
750
751 $result = db_query($this->link, "SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
752 WHERE owner_uid = " . $_SESSION['uid']);
753
754 $last_updated = db_fetch_result($result, 0, "last_updated");
755 $last_updated = make_local_datetime($this->link, $last_updated, false);
756
757 $reply['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
758
759 $result = db_query($this->link, "SELECT COUNT(id) AS num_errors
760 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
761
762 $num_errors = db_fetch_result($result, 0, "num_errors");
763
764 if ($num_errors > 0) {
765 $reply['content'] .= "<br/>";
766 $reply['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
767 __('Some feeds have update errors (click for details)')."</a>";
768 }
769 $reply['content'] .= "</span></p></div>";
770 }
771 }
772
773 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H2", $timing_info);
774
775 return array($topmost_article_ids, $headlines_count, $feed, $disable_cache,
776 $vgroup_last_feed, $reply);
777 }
778
779 private function outputFeedList($special = true) {
780
781 $feedlist = array();
782
783 $enable_cats = get_pref($this->link, 'ENABLE_FEED_CATS');
784
785 $feedlist['identifier'] = 'id';
786 $feedlist['label'] = 'name';
787 $feedlist['items'] = array();
788
789 $owner_uid = $_SESSION["uid"];
790
791 /* virtual feeds */
792
793 if ($special) {
794
795 if ($enable_cats) {
796 $cat_hidden = get_pref($this->link, "_COLLAPSED_SPECIAL");
797 $cat = $this->feedlist_init_cat(-1, $cat_hidden);
798 } else {
799 $cat['items'] = array();
800 }
801
802 foreach (array(-4, -3, -1, -2, 0) as $i) {
803 array_push($cat['items'], $this->feedlist_init_feed($i));
804 }
805
806 if ($enable_cats) {
807 array_push($feedlist['items'], $cat);
808 } else {
809 $feedlist['items'] = array_merge($feedlist['items'], $cat['items']);
810 }
811
812 $result = db_query($this->link, "SELECT * FROM
813 ttrss_labels2 WHERE owner_uid = '$owner_uid' ORDER by caption");
814
815 if (db_num_rows($result) > 0) {
816
817 if (get_pref($this->link, 'ENABLE_FEED_CATS')) {
818 $cat_hidden = get_pref($this->link, "_COLLAPSED_LABELS");
819 $cat = $this->feedlist_init_cat(-2, $cat_hidden);
820 } else {
821 $cat['items'] = array();
822 }
823
824 while ($line = db_fetch_assoc($result)) {
825
826 $label_id = -$line['id'] - 11;
827 $count = getFeedUnread($this->link, $label_id);
828
829 $feed = $this->feedlist_init_feed($label_id, false, $count);
830
831 $feed['fg_color'] = $line['fg_color'];
832 $feed['bg_color'] = $line['bg_color'];
833
834 array_push($cat['items'], $feed);
835 }
836
837 if ($enable_cats) {
838 array_push($feedlist['items'], $cat);
839 } else {
840 $feedlist['items'] = array_merge($feedlist['items'], $cat['items']);
841 }
842 }
843 }
844
845 /* if (get_pref($this->link, 'ENABLE_FEED_CATS')) {
846 if (get_pref($this->link, "FEEDS_SORT_BY_UNREAD")) {
847 $order_by_qpart = "order_id,category,unread DESC,title";
848 } else {
849 $order_by_qpart = "order_id,category,title";
850 }
851 } else {
852 if (get_pref($this->link, "FEEDS_SORT_BY_UNREAD")) {
853 $order_by_qpart = "unread DESC,title";
854 } else {
855 $order_by_qpart = "title";
856 }
857 } */
858
859 /* real feeds */
860
861 if ($enable_cats)
862 $order_by_qpart = "ttrss_feed_categories.order_id,category,
863 ttrss_feeds.order_id,title";
864 else
865 $order_by_qpart = "title";
866
867 $age_qpart = getMaxAgeSubquery();
868
869 $query = "SELECT ttrss_feeds.id, ttrss_feeds.title,
870 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated_noms,
871 cat_id,last_error,
872 ttrss_feed_categories.title AS category,
873 ttrss_feed_categories.collapsed,
874 value AS unread
875 FROM ttrss_feeds LEFT JOIN ttrss_feed_categories
876 ON (ttrss_feed_categories.id = cat_id)
877 LEFT JOIN ttrss_counters_cache
878 ON
879 (ttrss_feeds.id = feed_id)
880 WHERE
881 ttrss_feeds.owner_uid = '$owner_uid'
882 ORDER BY $order_by_qpart";
883
884 $result = db_query($this->link, $query);
885
886 $actid = $_REQUEST["actid"];
887
888 if (db_num_rows($result) > 0) {
889
890 $category = "";
891
892 if (!$enable_cats)
893 $cat['items'] = array();
894 else
895 $cat = false;
896
897 while ($line = db_fetch_assoc($result)) {
898
899 $feed = htmlspecialchars(trim($line["title"]));
900
901 if (!$feed) $feed = "[Untitled]";
902
903 $feed_id = $line["id"];
904 $unread = $line["unread"];
905
906 $cat_id = $line["cat_id"];
907 $tmp_category = $line["category"];
908 if (!$tmp_category) $tmp_category = __("Uncategorized");
909
910 if ($category != $tmp_category && $enable_cats) {
911
912 $category = $tmp_category;
913
914 $collapsed = sql_bool_to_bool($line["collapsed"]);
915
916 // workaround for NULL category
917 if ($category == __("Uncategorized")) {
918 $collapsed = get_pref($this->link, "_COLLAPSED_UNCAT");
919 }
920
921 if ($cat) array_push($feedlist['items'], $cat);
922
923 $cat = $this->feedlist_init_cat($cat_id, $collapsed);
924 }
925
926 $updated = make_local_datetime($this->link, $line["updated_noms"], false);
927
928 array_push($cat['items'], $this->feedlist_init_feed($feed_id,
929 $feed, $unread, $line['last_error'], $updated));
930 }
931
932 if ($enable_cats) {
933 array_push($feedlist['items'], $cat);
934 } else {
935 $feedlist['items'] = array_merge($feedlist['items'], $cat['items']);
936 }
937
938 }
939
940 return $feedlist;
941 }
942
943
944 function catchupAll() {
945 db_query($this->link, "UPDATE ttrss_user_entries SET
946 last_read = NOW(),unread = false WHERE owner_uid = " . $_SESSION["uid"]);
947 ccache_zero_all($this->link, $_SESSION["uid"]);
948 }
949
950 function collapse() {
951 $cat_id = db_escape_string($_REQUEST["cid"]);
952 $mode = (int) db_escape_string($_REQUEST['mode']);
953 toggle_collapse_cat($this->link, $cat_id, $mode);
954 }
955
956 function index() {
957 $root = (bool)$_REQUEST["root"];
958
959 if (!$root) {
960 print json_encode($this->outputFeedList($this->link));
961 } else {
962
963 $feeds = $this->outputFeedList($this->link, false);
964
965 $root = array();
966 $root['id'] = 'root';
967 $root['name'] = __('Feeds');
968 $root['items'] = $feeds['items'];
969
970 $fl = array();
971 $fl['identifier'] = 'id';
972 $fl['label'] = 'name';
973 $fl['items'] = array($root);
974
975 print json_encode($fl);
976 }
977 }
978
979 function view() {
980 $timing_info = getmicrotime();
981
982 $reply = array();
983
984 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("0", $timing_info);
985
986 $omode = db_escape_string($_REQUEST["omode"]);
987
988 $feed = db_escape_string($_REQUEST["feed"]);
989 $method = db_escape_string($_REQUEST["m"]);
990 $view_mode = db_escape_string($_REQUEST["view_mode"]);
991 $limit = (int) get_pref($this->link, "DEFAULT_ARTICLE_LIMIT");
992 @$cat_view = db_escape_string($_REQUEST["cat"]) == "true";
993 @$next_unread_feed = db_escape_string($_REQUEST["nuf"]);
994 @$offset = db_escape_string($_REQUEST["skip"]);
995 @$vgroup_last_feed = db_escape_string($_REQUEST["vgrlf"]);
996 $order_by = db_escape_string($_REQUEST["order_by"]);
997
998 if (is_numeric($feed)) $feed = (int) $feed;
999
1000 /* Feed -5 is a special case: it is used to display auxiliary information
1001 * when there's nothing to load - e.g. no stuff in fresh feed */
1002
1003 if ($feed == -5) {
1004 print json_encode(generate_dashboard_feed($this->link));
1005 return;
1006 }
1007
1008 $result = false;
1009
1010 if ($feed < -10) {
1011 $label_feed = -11-$feed;
1012 $result = db_query($this->link, "SELECT id FROM ttrss_labels2 WHERE
1013 id = '$label_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_feeds WHERE
1016 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
1017 } else if ($cat_view && is_numeric($feed) && $feed > 0) {
1018 $result = db_query($this->link, "SELECT id FROM ttrss_feed_categories WHERE
1019 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
1020 }
1021
1022 if ($result && db_num_rows($result) == 0) {
1023 print json_encode(generate_error_feed($this->link, __("Feed not found.")));
1024 return;
1025 }
1026
1027 /* Updating a label ccache means recalculating all of the caches
1028 * so for performance reasons we don't do that here */
1029
1030 if ($feed >= 0) {
1031 ccache_update($this->link, $feed, $_SESSION["uid"], $cat_view);
1032 }
1033
1034 set_pref($this->link, "_DEFAULT_VIEW_MODE", $view_mode);
1035 set_pref($this->link, "_DEFAULT_VIEW_LIMIT", $limit);
1036 set_pref($this->link, "_DEFAULT_VIEW_ORDER_BY", $order_by);
1037
1038 if (!$cat_view && preg_match("/^[0-9][0-9]*$/", $feed)) {
1039 db_query($this->link, "UPDATE ttrss_feeds SET last_viewed = NOW()
1040 WHERE id = '$feed' AND owner_uid = ".$_SESSION["uid"]);
1041 }
1042
1043 $reply['headlines'] = array();
1044
1045 if (!$next_unread_feed)
1046 $reply['headlines']['id'] = $feed;
1047 else
1048 $reply['headlines']['id'] = $next_unread_feed;
1049
1050 $reply['headlines']['is_cat'] = (bool) $cat_view;
1051
1052 $override_order = false;
1053
1054 if (get_pref($this->link, "SORT_HEADLINES_BY_FEED_DATE", $owner_uid)) {
1055 $date_sort_field = "updated";
1056 } else {
1057 $date_sort_field = "date_entered";
1058 }
1059
1060 switch ($order_by) {
1061 case "date":
1062 if (get_pref($this->link, 'REVERSE_HEADLINES', $owner_uid)) {
1063 $override_order = "$date_sort_field";
1064 } else {
1065 $override_order = "$date_sort_field DESC";
1066 }
1067 break;
1068
1069 case "title":
1070 if (get_pref($this->link, 'REVERSE_HEADLINES', $owner_uid)) {
1071 $override_order = "title DESC, $date_sort_field";
1072 } else {
1073 $override_order = "title, $date_sort_field DESC";
1074 }
1075 break;
1076
1077 case "score":
1078 if (get_pref($this->link, 'REVERSE_HEADLINES', $owner_uid)) {
1079 $override_order = "score, $date_sort_field";
1080 } else {
1081 $override_order = "score DESC, $date_sort_field DESC";
1082 }
1083 break;
1084 }
1085
1086 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("04", $timing_info);
1087
1088 $ret = $this->format_headlines_list($feed, $method,
1089 $view_mode, $limit, $cat_view, $next_unread_feed, $offset,
1090 $vgroup_last_feed, $override_order);
1091
1092 $topmost_article_ids = $ret[0];
1093 $headlines_count = $ret[1];
1094 $returned_feed = $ret[2];
1095 $disable_cache = $ret[3];
1096 $vgroup_last_feed = $ret[4];
1097
1098 $reply['headlines']['content'] =& $ret[5]['content'];
1099 $reply['headlines']['toolbar'] =& $ret[5]['toolbar'];
1100
1101 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("05", $timing_info);
1102
1103 $reply['headlines-info'] = array("count" => (int) $headlines_count,
1104 "vgroup_last_feed" => $vgroup_last_feed,
1105 "disable_cache" => (bool) $disable_cache);
1106
1107 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("20", $timing_info);
1108
1109 if (is_array($topmost_article_ids) && !get_pref($this->link, 'COMBINED_DISPLAY_MODE') && !$_SESSION["bw_limit"]) {
1110 $articles = array();
1111
1112 foreach ($topmost_article_ids as $id) {
1113 array_push($articles, format_article($this->link, $id, false));
1114 }
1115
1116 $reply['articles'] = $articles;
1117 }
1118
1119 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("30", $timing_info);
1120
1121 $reply['runtime-info'] = make_runtime_info($this->link);
1122
1123 print json_encode($reply);
1124
1125 }
1126 }
1127 ?>