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