]> git.wh0rd.org - tt-rss.git/blame - classes/feeds.php
force ngettext() count argument type to string
[tt-rss.git] / classes / feeds.php
CommitLineData
6afcbcd1
AD
1<?php
2require_once "colors.php";
3
4class Feeds extends Handler_Protected {
5
415a3b50
AD
6 private $params;
7
8 function csrf_ignore($method) {
1c9bda91 9 $csrf_ignored = array("index", "feedbrowser", "quickaddfeed", "search");
6afcbcd1
AD
10
11 return array_search($method, $csrf_ignored) !== false;
12 }
13
6afcbcd1 14 private function format_headline_subtoolbar($feed_site_url, $feed_title,
ca5d9be4 15 $feed_id, $is_cat, $search,
9090b874 16 $view_mode, $error, $feed_last_updated) {
6afcbcd1 17
6afcbcd1
AD
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) {
9090b874 37 $search_q = "&q=$search";
6afcbcd1
AD
38 } else {
39 $search_q = "";
40 }
41
1bffd106
AD
42 $reply .= "<span class=\"holder\">";
43
6afcbcd1
AD
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
1a545dcb
AD
49 $error_class = $error ? "error" : "";
50
1bffd106
AD
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>";
1a545dcb 59 $reply .= "<span id='feed_title' class='$error_class'>";
6afcbcd1
AD
60
61 if ($feed_site_url) {
6e3e8db9
AD
62 $last_updated = T_sprintf("Last updated: %s",
63 $feed_last_updated);
64
6afcbcd1 65 $target = "target=\"_blank\"";
6e3e8db9 66 $reply .= "<a title=\"$last_updated\" $target href=\"$feed_site_url\">".
878a0083 67 truncate_string($feed_title, 30)."</a>";
6afcbcd1
AD
68
69 if ($error) {
12d17734 70 $error = htmlspecialchars($error);
8993937d 71 $reply .= "&nbsp;<img title=\"$error\" src='images/error.png' alt='error' class=\"noborder\">";
6afcbcd1
AD
72 }
73
74 } else {
75 $reply .= $feed_title;
76 }
77
78 $reply .= "</span>";
79
66684d81
AD
80 $reply .= "</span>";
81
1bffd106 82# $reply .= "</span>";
6afcbcd1
AD
83
84 // left part
85
1bffd106 86 $reply .= "<span class=\"main\">";
4e2f219c 87 $reply .= "<span id='selected_prompt'></span>";
1bffd106 88
6b06a609 89 /*$reply .= "<span class=\"sel_links\">
6afcbcd1
AD
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
6b06a609 95 $reply .= "</span> "; */
6afcbcd1
AD
96
97 $reply .= "<select dojoType=\"dijit.form.Select\"
98 onchange=\"headlineActionsChange(this)\">";
6b06a609
AD
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>";
6afcbcd1
AD
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
1ffe3391 126 if (PluginHost::getInstance()->get_plugin("mail")) {
6afcbcd1
AD
127 $reply .= "<option value=\"emailArticle(false)\">".__('Forward by email').
128 "</option>";
129 }
130
1ffe3391 131 if (PluginHost::getInstance()->get_plugin("mailto")) {
1d5cf085
AD
132 $reply .= "<option value=\"mailtoArticle(false)\">".__('Forward by email').
133 "</option>";
134 }
135
6afcbcd1
AD
136 $reply .= "<option value=\"0\" disabled=\"1\">".__('Feed:')."</option>";
137
3dd0306f 138 //$reply .= "<option value=\"catchupPage()\">".__('Mark as read')."</option>";
6afcbcd1 139
fb54e3b1 140 $reply .= "<option value=\"displayDlg('".__("View as RSS")."','generatedFeed', '$feed_id:$is_cat:$rss_link')\">".__('View as RSS')."</option>";
6afcbcd1
AD
141
142 $reply .= "</select>";
143
6afcbcd1
AD
144 //$reply .= "</h2";
145
1ffe3391 146 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_HEADLINE_TOOLBAR_BUTTON) as $p) {
647a39dd 147 $reply .= $p->hook_headline_toolbar_button($feed_id, $is_cat);
ceb78471
AD
148 }
149
1bffd106
AD
150 $reply .= "</span></span>";
151
6afcbcd1
AD
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,
19e47ad6
AD
157 $override_order = false, $include_children = false, $check_first_id = false,
158 $skip_first_id_check = false) {
6afcbcd1 159
6afcbcd1
AD
160 $disable_cache = false;
161
162 $reply = array();
163
e0deff39
AD
164 $rgba_cache = array();
165
fa9e88c3 166 $timing_info = microtime(true);
6afcbcd1
AD
167
168 $topmost_article_ids = array();
169
170 if (!$offset) $offset = 0;
171 if ($method == "undefined") $method = "";
172
173 $method_split = explode(":", $method);
174
41245888 175 if ($method == "ForceUpdate" && $feed > 0 && is_numeric($feed)) {
6afcbcd1
AD
176 // Update the feed if required with some basic flood control
177
41245888
AD
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'");
6afcbcd1 199
d9c85e0f
AD
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"));
6afcbcd1 203
86b05f86 204 if (!$cache_images && time() - $last_updated > 120) {
6afcbcd1 205 include "rssfuncs.php";
a42c55f0 206 update_rss_feed($feed, true, true);
6afcbcd1 207 } else {
d9c85e0f 208 $this->dbh->query("UPDATE ttrss_feeds SET last_updated = '1970-01-01', last_update_started = '1970-01-01'
41245888 209 WHERE id = '$feed'");
6afcbcd1
AD
210 }
211 }
d9de136c
AD
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'");
41245888 215 }
6afcbcd1
AD
216 }
217
218 if ($method_split[0] == "MarkAllReadGR") {
a42c55f0 219 catchup_feed($method_split[1], false);
6afcbcd1
AD
220 }
221
222 // FIXME: might break tag display?
223
224 if (is_numeric($feed) && $feed > 0 && !$cat_view) {
d9c85e0f 225 $result = $this->dbh->query(
6afcbcd1
AD
226 "SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
227
d9c85e0f 228 if ($this->dbh->num_rows($result) == 0) {
6afcbcd1
AD
229 $reply['content'] = "<div align='center'>".__('Feed not found.')."</div>";
230 }
231 }
232
d9c85e0f 233 @$search = $this->dbh->escape_string($_REQUEST["query"]);
60e68059 234 @$search_language = $this->dbh->escape_string($_REQUEST["search_language"]); // PGSQL only
6afcbcd1
AD
235
236 if ($search) {
237 $disable_cache = true;
238 }
239
6afcbcd1
AD
240 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H0", $timing_info);
241
a413f53e 242
e92a353b 243 if (!$cat_view && is_numeric($feed) && $feed < PLUGIN_FEED_BASE_INDEX && $feed > LABEL_BASE_INDEX) {
1ffe3391 244 $handler = PluginHost::getInstance()->get_feed_handler(
a413f53e
AD
245 PluginHost::feed_to_pfeed_id($feed));
246
a413f53e
AD
247 if ($handler) {
248 $options = array(
249 "limit" => $limit,
250 "view_mode" => $view_mode,
251 "cat_view" => $cat_view,
252 "search" => $search,
a413f53e
AD
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 {
f5a0fb8b 265 /*$qfh_ret = queryFeedHeadlines($feed, $limit, $view_mode, $cat_view,
9090b874 266 $search, false, $override_order, $offset, 0,
f5a0fb8b
AD
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,
60e68059 280 "search_language" => $search_language,
f5a0fb8b
AD
281 "override_order" => $override_order,
282 "offset" => $offset,
283 "include_children" => $include_children,
19e47ad6
AD
284 "check_first_id" => $check_first_id,
285 "skip_first_id_check" => $skip_first_id_check
f5a0fb8b
AD
286 );
287
288 $qfh_ret = queryFeedHeadlines($params);
a413f53e 289 }
6afcbcd1 290
ad593e43
AD
291 $vfeed_group_enabled = get_pref("VFEED_GROUP_BY_FEED") && $feed != -6;
292
6afcbcd1
AD
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];
90e5f4f1
AD
299 $last_updated = strpos($qfh_ret[4], '1970-') === FALSE ?
300 make_local_datetime($qfh_ret[4], false) : __("Never");
dd90eb2c 301 $highlight_words = $qfh_ret[5];
48fefe2f 302 $reply['first_id'] = $qfh_ret[6];
6afcbcd1
AD
303
304 $vgroup_last_feed = $vgr_last_feed;
305
306 $reply['toolbar'] = $this->format_headline_subtoolbar($feed_site_url,
307 $feed_title,
9090b874 308 $feed, $cat_view, $search, $view_mode,
6e3e8db9 309 $last_error, $last_updated);
6afcbcd1 310
f61f2a26 311 $headlines_count = is_numeric($result) ? 0 : $this->dbh->num_rows($result);
6afcbcd1 312
7eb87b80
AD
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
f1706996 319 $reply['content'] = '';
9f5eca99 320
f61f2a26 321 if ($headlines_count > 0) {
6afcbcd1
AD
322
323 $lnum = $offset;
324
325 $num_unread = 0;
326 $cur_feed_title = '';
327
6afcbcd1
AD
328 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PS", $timing_info);
329
a42c55f0 330 $expand_cdm = get_pref('CDM_EXPANDED');
4ab1eb9c 331
d9c85e0f 332 while ($line = $this->dbh->fetch_assoc($result)) {
ac4c1383 333
bf5bcb8e 334 $line["content_preview"] = "&mdash; " . truncate_string(strip_tags($line["content"]), 250);
4ab1eb9c 335
891e36f5 336 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
425a6edc 337 $line = $p->hook_query_headlines($line, 250, false);
891e36f5 338 }
4ab1eb9c
AD
339
340 if (get_pref('SHOW_CONTENT_PREVIEW')) {
341 $content_preview = $line["content_preview"];
342 }
343
6afcbcd1
AD
344 $id = $line["id"];
345 $feed_id = $line["feed_id"];
346 $label_cache = $line["label_cache"];
347 $labels = false;
6afcbcd1
AD
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
a42c55f0 360 if (!is_array($labels)) $labels = get_article_labels($id);
6afcbcd1 361
65f0eb01 362 $labels_str = "<span class=\"HLLCTR-$id\">";
6afcbcd1
AD
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
8d090a91
AD
370 $class = "";
371
035d7a5a 372 if (sql_bool_to_bool($line["unread"])) {
6afcbcd1
AD
373 $class .= " Unread";
374 ++$num_unread;
6afcbcd1
AD
375 }
376
035d7a5a
AD
377 if (sql_bool_to_bool($line["marked"])) {
378 $marked_pic = "<img
2f20dd58 379 src=\"images/mark_set.png\"
6afcbcd1 380 class=\"markedPic\" alt=\"Unstar article\"
035d7a5a
AD
381 onclick='toggleMark($id)'>";
382 $class .= " marked";
6afcbcd1 383 } else {
035d7a5a 384 $marked_pic = "<img
2f20dd58 385 src=\"images/mark_unset.png\"
6afcbcd1 386 class=\"markedPic\" alt=\"Star article\"
035d7a5a 387 onclick='toggleMark($id)'>";
6afcbcd1
AD
388 }
389
035d7a5a 390 if (sql_bool_to_bool($line["published"])) {
2f20dd58 391 $published_pic = "<img src=\"images/pub_set.png\"
035d7a5a
AD
392 class=\"pubPic\"
393 alt=\"Unpublish article\" onclick='togglePub($id)'>";
394 $class .= " published";
6afcbcd1 395 } else {
2f20dd58 396 $published_pic = "<img src=\"images/pub_unset.png\"
035d7a5a
AD
397 class=\"pubPic\"
398 alt=\"Publish article\" onclick='togglePub($id)'>";
6afcbcd1
AD
399 }
400
401# $content_link = "<a target=\"_blank\" 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
b6714c77 412 $updated_fmt = make_local_datetime($line["updated"], false, false, false, true);
be574731 413 $date_entered_fmt = T_sprintf("Imported at %s",
a42c55f0 414 make_local_datetime($line["date_entered"], false));
6afcbcd1 415
6afcbcd1
AD
416 $score = $line["score"];
417
2a3b6de0 418 $score_pic = "images/" . get_score_pic($score);
6afcbcd1
AD
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) {
4b7ebe93 428 $hlc_suffix = "high";
6afcbcd1 429 } else if ($score < -100) {
4b7ebe93 430 $hlc_suffix = "low";
6afcbcd1
AD
431 } else {
432 $hlc_suffix = "";
433 }
434
435 $entry_author = $line["author"];
436
437 if ($entry_author) {
884f2aee 438 $entry_author = " &mdash; $entry_author";
6afcbcd1
AD
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 {
2f20dd58 446 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/pub_set.png\" alt=\"\">";
6afcbcd1
AD
447 }
448
08dfc223
AD
449 $entry_site_url = $line["site_url"];
450
bfaf90e3
AD
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
db29ea0d 456 if ($fav_color && $fav_color != 'fail') {
e7480cc1 457 if (!isset($rgba_cache[$feed_id])) {
12a6bd28 458 $rgba_cache[$feed_id] = join(",", _color_unpack($fav_color));
e7480cc1 459 }
bfaf90e3
AD
460 }
461
a42c55f0 462 if (!get_pref('COMBINED_DISPLAY_MODE')) {
6afcbcd1 463
ad593e43 464 if ($vfeed_group_enabled) {
6afcbcd1
AD
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
87065739 472 $vf_catchup_link = "<a class='catchup' onclick='catchupFeedInGroup($feed_id);' href='#'>".__('mark feed as read')."</a>";
6afcbcd1 473
2d052e42 474 $reply['content'] .= "<div data-feed-id='$feed_id' id='FTITLE-$feed_id' class='cdmFeedTitle'>".
87065739 475 "<div style='float : right'>$feed_icon_img</div>".
dcbe36b2 476 "<a class='title' href=\"#\" onclick=\"viewfeed({feed:$feed_id})\">".
ac4c1383 477 $line["feed_title"]."</a>
87065739 478 $vf_catchup_link</div>";
6afcbcd1 479
ac4c1383 480
6afcbcd1
AD
481 }
482 }
483
d2f3467b 484 $mouseover_attrs = "onmouseover='postMouseIn(event, $id)'
6afcbcd1
AD
485 onmouseout='postMouseOut($id)'";
486
b6b5554d 487 $reply['content'] .= "<div class='hl $class' data-orig-feed-id='$feed_id' data-article-id='$id' id='RROW-$id' $mouseover_attrs>";
6afcbcd1 488
f1706996 489 $reply['content'] .= "<div class='hlLeft'>";
6afcbcd1 490
f1706996 491 $reply['content'] .= "<input dojoType=\"dijit.form.CheckBox\"
524de8dc 492 type=\"checkbox\" onclick=\"toggleSelectRow2(this)\"
7e27c914 493 class='rchk'>";
6afcbcd1 494
f1706996
AD
495 $reply['content'] .= "$marked_pic";
496 $reply['content'] .= "$published_pic";
6afcbcd1 497
f1706996 498 $reply['content'] .= "</div>";
6afcbcd1 499
f1706996 500 $reply['content'] .= "<div onclick='return hlClicked(event, $id)'
4b7ebe93 501 class=\"hlTitle\"><span class='hlContent $hlc_suffix'>";
f1706996 502 $reply['content'] .= "<a id=\"RTITLE-$id\" class=\"title $hlc_suffix\"
bf1dc420 503 href=\"" . htmlspecialchars($line["link"]) . "\"
6afcbcd1
AD
504 onclick=\"\">" .
505 truncate_string($line["title"], 200);
506
a42c55f0 507 if (get_pref('SHOW_CONTENT_PREVIEW')) {
f1706996 508 $reply['content'] .= "<span class=\"contentPreview\">" . $line["content_preview"] . "</span>";
6afcbcd1
AD
509 }
510
f1706996 511 $reply['content'] .= "</a></span>";
6afcbcd1 512
f1706996 513 $reply['content'] .= $labels_str;
6afcbcd1 514
f1706996 515 $reply['content'] .= "</div>";
e17e99fb 516
ad593e43 517 if (!$vfeed_group_enabled) {
b830cca7 518 if (@$line["feed_title"]) {
d3103484
AD
519 $rgba = @$rgba_cache[$feed_id];
520
dcbe36b2 521 $reply['content'] .= "<span class=\"hlFeed\"><a style=\"background : rgba($rgba, 0.3)\" href=\"#\" onclick=\"viewfeed({feed:$feed_id})\">".
029005c4 522 truncate_string($line["feed_title"],30)."</a></span>";
6afcbcd1 523 }
b830cca7 524 }
6afcbcd1 525
029005c4 526
f1706996 527 $reply['content'] .= "<span class=\"hlUpdated\">";
029005c4 528
f1706996 529 $reply['content'] .= "<div title='$date_entered_fmt'>$updated_fmt</div>
be574731
AD
530 </span>";
531
f1706996 532 $reply['content'] .= "<div class=\"hlRight\">";
6afcbcd1 533
f1706996 534 $reply['content'] .= $score_pic;
6afcbcd1 535
ad593e43 536 if ($line["feed_title"] && !$vfeed_group_enabled) {
6afcbcd1 537
dcbe36b2 538 $reply['content'] .= "<span onclick=\"viewfeed({feed:$feed_id})\"
6afcbcd1
AD
539 style=\"cursor : pointer\"
540 title=\"".htmlspecialchars($line['feed_title'])."\">
a0d9bc16 541 $feed_icon_img</span>";
6afcbcd1
AD
542 }
543
f1706996
AD
544 $reply['content'] .= "</div>";
545 $reply['content'] .= "</div>";
6afcbcd1
AD
546
547 } else {
548
f8a25082
AD
549 if ($line["tag_cache"])
550 $tags = explode(",", $line["tag_cache"]);
551 else
552 $tags = false;
84d952f1 553
891e36f5 554 $line["content"] = sanitize($line["content"],
910592b4 555 sql_bool_to_bool($line['hide_images']), false, $entry_site_url, $highlight_words, $line["id"]);
84d952f1 556
1ffe3391 557 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_RENDER_ARTICLE_CDM) as $p) {
84d952f1
AD
558 $line = $p->hook_render_article_cdm($line);
559 }
560
ad593e43 561 if ($vfeed_group_enabled && $line["feed_title"]) {
6afcbcd1
AD
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
87065739 569 $vf_catchup_link = "<a class='catchup' onclick='catchupFeedInGroup($feed_id);' href='#'>".__('mark feed as read')."</a>";
6afcbcd1
AD
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
2d052e42 579 $reply['content'] .= "<div data-feed-id='$feed_id' id='FTITLE-$feed_id' class='cdmFeedTitle'>".
6afcbcd1 580 "<div style=\"float : right\">$feed_icon_img</div>".
dcbe36b2 581 "<a href=\"#\" class='title' onclick=\"viewfeed({feed:$feed_id})\">".
6afcbcd1 582 $line["feed_title"]."</a> $vf_catchup_link</div>";
ac4c1383 583
6afcbcd1
AD
584 }
585 }
586
d2f3467b 587 $mouseover_attrs = "onmouseover='postMouseIn(event, $id)'
6afcbcd1
AD
588 onmouseout='postMouseOut($id)'";
589
a0ddecb9 590 $expanded_class = $expand_cdm ? "expanded" : "expandable";
3ac153f1 591
f1706996 592 $reply['content'] .= "<div class=\"cdm $hlc_suffix $expanded_class $class\"
b6b5554d 593 id=\"RROW-$id\" data-article-id='$id' data-orig-feed-id='$feed_id' $mouseover_attrs>";
6afcbcd1 594
f1706996
AD
595 $reply['content'] .= "<div class=\"cdmHeader\">";
596 $reply['content'] .= "<div style=\"vertical-align : middle\">";
6afcbcd1 597
f1706996 598 $reply['content'] .= "<input dojoType=\"dijit.form.CheckBox\"
524de8dc 599 type=\"checkbox\" onclick=\"toggleSelectRow2(this, false, true)\"
7e27c914 600 class='rchk'>";
6afcbcd1 601
f1706996
AD
602 $reply['content'] .= "$marked_pic";
603 $reply['content'] .= "$published_pic";
6afcbcd1 604
f1706996 605 $reply['content'] .= "</div>";
6afcbcd1 606
34dad844
AD
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
f1706996 614 $reply['content'] .= "<span id=\"RTITLE-$id\"
6afcbcd1 615 onclick=\"return cdmClicked(event, $id);\"
4b7ebe93
AD
616 class=\"titleWrap $hlc_suffix\">
617 <a class=\"title $hlc_suffix\"
469d9ad1 618 title=\"".htmlspecialchars($line["title"])."\"
6afcbcd1
AD
619 target=\"_blank\" href=\"".
620 htmlspecialchars($line["link"])."\">".
621 $line["title"] .
13e283ed 622 "</a> <span class=\"author\">$entry_author</span>";
6afcbcd1 623
f1706996 624 $reply['content'] .= $labels_str;
6afcbcd1 625
f1706996 626 $reply['content'] .= "<span class='collapseBtn' style='display : none'>
414191d4
AD
627 <img src=\"images/collapse.png\" onclick=\"cdmCollapseArticle(event, $id)\"
628 title=\"".__("Collapse article")."\"/></span>";
629
6afcbcd1
AD
630 if (!$expand_cdm)
631 $content_hidden = "style=\"display : none\"";
632 else
633 $excerpt_hidden = "style=\"display : none\"";
634
f1706996 635 $reply['content'] .= "<span $excerpt_hidden id=\"CEXC-$id\" class=\"cdmExcerpt\">" . $content_preview . "</span>";
2e188438 636
f1706996 637 $reply['content'] .= "</span>";
6afcbcd1 638
ad593e43 639 if (!$vfeed_group_enabled) {
d56ec700 640 if (@$line["feed_title"]) {
d3103484
AD
641 $rgba = @$rgba_cache[$feed_id];
642
f1706996 643 $reply['content'] .= "<div class=\"hlFeed\">
d3103484 644 <a href=\"#\" style=\"background-color: rgba($rgba,0.3)\"
dcbe36b2 645 onclick=\"viewfeed({feed:$feed_id})\">".
af2941db 646 truncate_string($line["feed_title"],30)."</a>
d56ec700
AD
647 </div>";
648 }
649 }
650
f1706996 651 $reply['content'] .= "<span class='updated' title='$date_entered_fmt'>
be574731 652 $updated_fmt</span>";
e17e99fb 653
f1706996
AD
654 $reply['content'] .= "<div class='scoreWrap' style=\"vertical-align : middle\">";
655 $reply['content'] .= "$score_pic";
6afcbcd1 656
a42c55f0 657 if (!get_pref("VFEED_GROUP_BY_FEED") && $line["feed_title"]) {
f1706996 658 $reply['content'] .= "<span style=\"cursor : pointer\"
6afcbcd1 659 title=\"".htmlspecialchars($line["feed_title"])."\"
dcbe36b2 660 onclick=\"viewfeed({feed:$feed_id})\">$feed_icon_img</span>";
6afcbcd1 661 }
f1706996 662 $reply['content'] .= "</div>";
6afcbcd1 663
f1706996 664 $reply['content'] .= "</div>";
6afcbcd1 665
f1706996 666 $reply['content'] .= "<div class=\"cdmContent\" $content_hidden
6afcbcd1
AD
667 onclick=\"return cdmClicked(event, $id);\"
668 id=\"CICD-$id\">";
669
f1706996 670 $reply['content'] .= "<div id=\"POSTNOTE-$id\">";
b999f4c7 671 if ($line['note']) {
f1706996 672 $reply['content'] .= format_article_note($id, $line['note']);
b999f4c7 673 }
f1706996 674 $reply['content'] .= "</div>";
b999f4c7 675
07eb3658
AD
676 if (!$line['lang']) $line['lang'] = 'en';
677
f1706996 678 $reply['content'] .= "<div class=\"cdmContentInner\" lang=\"".$line['lang']."\">";
6afcbcd1
AD
679
680 if ($line["orig_feed_id"]) {
681
d9c85e0f 682 $tmp_result = $this->dbh->query("SELECT * FROM ttrss_archived_feeds
71b75bb7 683 WHERE id = ".$line["orig_feed_id"] . " AND owner_uid = " . $_SESSION["uid"]);
6afcbcd1 684
d9c85e0f 685 if ($this->dbh->num_rows($tmp_result) != 0) {
6afcbcd1 686
f1706996
AD
687 $reply['content'] .= "<div clear='both'>";
688 $reply['content'] .= __("Originally from:");
6afcbcd1 689
f1706996 690 $reply['content'] .= "&nbsp;";
6afcbcd1 691
d9c85e0f 692 $tmp_line = $this->dbh->fetch_assoc($tmp_result);
6afcbcd1 693
f1706996 694 $reply['content'] .= "<a target='_blank'
6afcbcd1
AD
695 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
696 $tmp_line['title'] . "</a>";
697
f1706996 698 $reply['content'] .= "&nbsp;";
6afcbcd1 699
f1706996
AD
700 $reply['content'] .= "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
701 $reply['content'] .= "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_unset.png'></a>";
6afcbcd1 702
f1706996 703 $reply['content'] .= "</div>";
6afcbcd1
AD
704 }
705 }
706
f1706996 707 $reply['content'] .= "<span id=\"CWRAP-$id\">";
6afcbcd1 708
b74c5134 709// if (!$expand_cdm) {
f1706996
AD
710 $reply['content'] .= "<span id=\"CENCW-$id\" style=\"display : none\">";
711 $reply['content'] .= htmlspecialchars($line["content"]);
712 $reply['content'] .= "</span.";
f0540b59 713
b74c5134 714// } else {
f1706996 715// $reply['content'] .= $line["content"];
b74c5134 716// }
6afcbcd1 717
f1706996 718 $reply['content'] .= "</span>";
6afcbcd1 719
f1706996 720 $reply['content'] .= "</div>";
6afcbcd1 721
90da4ada
AD
722 $reply['content'] .= "<div class=\"cdmIntermediate\">";
723
724 $always_display_enclosures = sql_bool_to_bool($line["always_display_enclosures"]);
725 $reply['content'] .= format_article_enclosures($id, $always_display_enclosures, $line["content"], sql_bool_to_bool($line["hide_images"]));
726
727 $reply['content'] .= "</div>";
728
f1706996 729 $reply['content'] .= "<div class=\"cdmFooter\" onclick=\"cdmFooterClick(event)\">";
6afcbcd1 730
1ffe3391 731 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_LEFT_BUTTON) as $p) {
f1706996 732 $reply['content'] .= $p->hook_article_left_button($line);
ccb2b8dd
AD
733 }
734
f8a25082 735 $tags_str = format_tags_string($tags, $id);
6afcbcd1 736
bc20cb9f
AD
737 $reply['content'] .= "<span class='left'>";
738
f1706996 739 $reply['content'] .= "<img src='images/tag.png' alt='Tags' title='Tags'>
6afcbcd1
AD
740 <span id=\"ATSTR-$id\">$tags_str</span>
741 <a title=\"".__('Edit tags for this article')."\"
27372dda 742 href=\"#\" onclick=\"editArticleTags($id)\">(+)</a>";
6afcbcd1 743
967f0619 744 $num_comments = (int) $line["num_comments"];
6afcbcd1
AD
745 $entry_comments = "";
746
747 if ($num_comments > 0) {
748 if ($line["comments"]) {
749 $comments_url = htmlspecialchars($line["comments"]);
750 } else {
751 $comments_url = htmlspecialchars($line["link"]);
752 }
ff04fe06
AD
753 $entry_comments = "<a class=\"postComments\"
754 target='_blank' href=\"$comments_url\">$num_comments ".
755 _ngettext("comment", "comments", $num_comments)."</a>";
756
6afcbcd1
AD
757 } else {
758 if ($line["comments"] && $line["link"] != $line["comments"]) {
ff04fe06 759 $entry_comments = "<a class=\"postComments\" target='_blank' href=\"".htmlspecialchars($line["comments"])."\">".__("comments")."</a>";
6afcbcd1
AD
760 }
761 }
762
f1706996 763 if ($entry_comments) $reply['content'] .= "&nbsp;($entry_comments)";
6afcbcd1 764
bc20cb9f
AD
765 $reply['content'] .= "</span>";
766 $reply['content'] .= "<div>";
6afcbcd1 767
f1706996
AD
768// $reply['content'] .= "$marked_pic";
769// $reply['content'] .= "$published_pic";
035d7a5a 770
1ffe3391 771 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_BUTTON) as $p) {
f1706996 772 $reply['content'] .= $p->hook_article_button($line);
6afcbcd1
AD
773 }
774
f1706996
AD
775 $reply['content'] .= "</div>";
776 $reply['content'] .= "</div>";
6afcbcd1 777
f1706996 778 $reply['content'] .= "</div>";
6afcbcd1 779
f1706996 780 $reply['content'] .= "</div>";
6afcbcd1
AD
781
782 }
783
784 ++$lnum;
785 }
786
787 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PE", $timing_info);
788
ec57104d 789 } else if (!is_numeric($result)) {
6afcbcd1
AD
790 $message = "";
791
792 switch ($view_mode) {
793 case "unread":
794 $message = __("No unread articles found to display.");
795 break;
796 case "updated":
797 $message = __("No updated articles found to display.");
798 break;
799 case "marked":
800 $message = __("No starred articles found to display.");
801 break;
802 default:
f822a8e5 803 if ($feed < LABEL_BASE_INDEX) {
8d192d02 804 $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.");
6afcbcd1
AD
805 } else {
806 $message = __("No articles found to display.");
807 }
808 }
809
810 if (!$offset && $message) {
f1706996 811 $reply['content'] = "<div class='whiteBox'>$message";
6afcbcd1 812
f1706996 813 $reply['content'] .= "<p><span class=\"insensitive\">";
6afcbcd1 814
d9c85e0f 815 $result = $this->dbh->query("SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
6afcbcd1
AD
816 WHERE owner_uid = " . $_SESSION['uid']);
817
d9c85e0f 818 $last_updated = $this->dbh->fetch_result($result, 0, "last_updated");
a42c55f0 819 $last_updated = make_local_datetime($last_updated, false);
6afcbcd1 820
f1706996 821 $reply['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
6afcbcd1 822
d9c85e0f 823 $result = $this->dbh->query("SELECT COUNT(id) AS num_errors
6afcbcd1
AD
824 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
825
d9c85e0f 826 $num_errors = $this->dbh->fetch_result($result, 0, "num_errors");
6afcbcd1
AD
827
828 if ($num_errors > 0) {
f1706996
AD
829 $reply['content'] .= "<br/>";
830 $reply['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
6afcbcd1
AD
831 __('Some feeds have update errors (click for details)')."</a>";
832 }
f1706996 833 $reply['content'] .= "</span></p></div>";
9f5eca99 834
6afcbcd1 835 }
34440201 836 } else if (is_numeric($result) && $result == -1) {
48fefe2f 837 $reply['first_id_changed'] = true;
6afcbcd1
AD
838 }
839
840 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H2", $timing_info);
841
842 return array($topmost_article_ids, $headlines_count, $feed, $disable_cache,
843 $vgroup_last_feed, $reply);
844 }
845
846 function catchupAll() {
d9c85e0f 847 $this->dbh->query("UPDATE ttrss_user_entries SET
1bad74ea 848 last_read = NOW(), unread = false WHERE unread = true AND owner_uid = " . $_SESSION["uid"]);
a42c55f0 849 ccache_zero_all($_SESSION["uid"]);
6afcbcd1
AD
850 }
851
6afcbcd1 852 function view() {
fa9e88c3 853 $timing_info = microtime(true);
6afcbcd1
AD
854
855 $reply = array();
856
857 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("0", $timing_info);
858
d9c85e0f
AD
859 $feed = $this->dbh->escape_string($_REQUEST["feed"]);
860 $method = $this->dbh->escape_string($_REQUEST["m"]);
861 $view_mode = $this->dbh->escape_string($_REQUEST["view_mode"]);
f17cac6b 862 $limit = 30;
6afcbcd1 863 @$cat_view = $_REQUEST["cat"] == "true";
d9c85e0f
AD
864 @$next_unread_feed = $this->dbh->escape_string($_REQUEST["nuf"]);
865 @$offset = $this->dbh->escape_string($_REQUEST["skip"]);
866 @$vgroup_last_feed = $this->dbh->escape_string($_REQUEST["vgrlf"]);
867 $order_by = $this->dbh->escape_string($_REQUEST["order_by"]);
48fefe2f 868 $check_first_id = $this->dbh->escape_string($_REQUEST["fid"]);
6afcbcd1
AD
869
870 if (is_numeric($feed)) $feed = (int) $feed;
871
872 /* Feed -5 is a special case: it is used to display auxiliary information
873 * when there's nothing to load - e.g. no stuff in fresh feed */
874
875 if ($feed == -5) {
6322ac79 876 print json_encode($this->generate_dashboard_feed());
6afcbcd1
AD
877 return;
878 }
879
880 $result = false;
881
f822a8e5
AD
882 if ($feed < LABEL_BASE_INDEX) {
883 $label_feed = feed_to_label_id($feed);
d9c85e0f 884 $result = $this->dbh->query("SELECT id FROM ttrss_labels2 WHERE
6afcbcd1
AD
885 id = '$label_feed' AND owner_uid = " . $_SESSION['uid']);
886 } else if (!$cat_view && is_numeric($feed) && $feed > 0) {
d9c85e0f 887 $result = $this->dbh->query("SELECT id FROM ttrss_feeds WHERE
6afcbcd1
AD
888 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
889 } else if ($cat_view && is_numeric($feed) && $feed > 0) {
d9c85e0f 890 $result = $this->dbh->query("SELECT id FROM ttrss_feed_categories WHERE
6afcbcd1
AD
891 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
892 }
893
d9c85e0f 894 if ($result && $this->dbh->num_rows($result) == 0) {
a42c55f0 895 print json_encode($this->generate_error_feed(__("Feed not found.")));
6afcbcd1
AD
896 return;
897 }
898
899 /* Updating a label ccache means recalculating all of the caches
900 * so for performance reasons we don't do that here */
901
902 if ($feed >= 0) {
a42c55f0 903 ccache_update($feed, $_SESSION["uid"], $cat_view);
6afcbcd1
AD
904 }
905
a42c55f0
AD
906 set_pref("_DEFAULT_VIEW_MODE", $view_mode);
907 set_pref("_DEFAULT_VIEW_ORDER_BY", $order_by);
6afcbcd1 908
06b0777f
AD
909 /* bump login timestamp if needed */
910 if (time() - $_SESSION["last_login_update"] > 3600) {
d9c85e0f 911 $this->dbh->query("UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
06b0777f
AD
912 $_SESSION["uid"]);
913 $_SESSION["last_login_update"] = time();
914 }
915
6afcbcd1 916 if (!$cat_view && is_numeric($feed) && $feed > 0) {
d9c85e0f 917 $this->dbh->query("UPDATE ttrss_feeds SET last_viewed = NOW()
6afcbcd1
AD
918 WHERE id = '$feed' AND owner_uid = ".$_SESSION["uid"]);
919 }
920
921 $reply['headlines'] = array();
922
6afcbcd1 923 $override_order = false;
19e47ad6 924 $skip_first_id_check = false;
6afcbcd1 925
6afcbcd1 926 switch ($order_by) {
f3b2e7d4
AD
927 case "title":
928 $override_order = "ttrss_entries.title";
929 break;
930 case "date_reverse":
e9687f67 931 $override_order = "score DESC, date_entered, updated";
19e47ad6 932 $skip_first_id_check = true;
f3b2e7d4
AD
933 break;
934 case "feed_dates":
935 $override_order = "updated DESC";
936 break;
6afcbcd1
AD
937 }
938
939 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("04", $timing_info);
940
941 $ret = $this->format_headlines_list($feed, $method,
942 $view_mode, $limit, $cat_view, $next_unread_feed, $offset,
19e47ad6 943 $vgroup_last_feed, $override_order, true, $check_first_id, $skip_first_id_check);
6afcbcd1 944
b389aeb7 945 //$topmost_article_ids = $ret[0];
6afcbcd1 946 $headlines_count = $ret[1];
4a80c57c 947 /* $returned_feed = $ret[2]; */
6afcbcd1
AD
948 $disable_cache = $ret[3];
949 $vgroup_last_feed = $ret[4];
950
34440201
AD
951 //$reply['headlines']['content'] =& $ret[5]['content'];
952 //$reply['headlines']['toolbar'] =& $ret[5]['toolbar'];
953
1bd552ee 954 $reply['headlines'] = $ret[5];
34440201
AD
955
956 if (!$next_unread_feed)
957 $reply['headlines']['id'] = $feed;
958 else
959 $reply['headlines']['id'] = $next_unread_feed;
960
961 $reply['headlines']['is_cat'] = (bool) $cat_view;
6afcbcd1
AD
962
963 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("05", $timing_info);
964
965 $reply['headlines-info'] = array("count" => (int) $headlines_count,
966 "vgroup_last_feed" => $vgroup_last_feed,
967 "disable_cache" => (bool) $disable_cache);
968
6afcbcd1
AD
969 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("30", $timing_info);
970
6322ac79 971 $reply['runtime-info'] = make_runtime_info();
6afcbcd1
AD
972
973 print json_encode($reply);
974
975 }
976
6322ac79 977 private function generate_dashboard_feed() {
6afcbcd1
AD
978 $reply = array();
979
980 $reply['headlines']['id'] = -5;
981 $reply['headlines']['is_cat'] = false;
982
983 $reply['headlines']['toolbar'] = '';
6afcbcd1 984
f1706996 985 $reply['headlines']['content'] = "<div class='whiteBox'>".__('No feed selected.');
6b954c0a 986
f1706996 987 $reply['headlines']['content'] .= "<p><span class=\"insensitive\">";
6afcbcd1 988
d9c85e0f 989 $result = $this->dbh->query("SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
6afcbcd1
AD
990 WHERE owner_uid = " . $_SESSION['uid']);
991
d9c85e0f 992 $last_updated = $this->dbh->fetch_result($result, 0, "last_updated");
a42c55f0 993 $last_updated = make_local_datetime($last_updated, false);
6afcbcd1 994
f1706996 995 $reply['headlines']['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
6afcbcd1 996
d9c85e0f 997 $result = $this->dbh->query("SELECT COUNT(id) AS num_errors
6afcbcd1
AD
998 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
999
d9c85e0f 1000 $num_errors = $this->dbh->fetch_result($result, 0, "num_errors");
6afcbcd1
AD
1001
1002 if ($num_errors > 0) {
f1706996
AD
1003 $reply['headlines']['content'] .= "<br/>";
1004 $reply['headlines']['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
6afcbcd1
AD
1005 __('Some feeds have update errors (click for details)')."</a>";
1006 }
f1706996 1007 $reply['headlines']['content'] .= "</span></p>";
6afcbcd1
AD
1008
1009 $reply['headlines-info'] = array("count" => 0,
1010 "vgroup_last_feed" => '',
1011 "unread" => 0,
1012 "disable_cache" => true);
1013
1014 return $reply;
1015 }
1016
a42c55f0 1017 private function generate_error_feed($error) {
6afcbcd1
AD
1018 $reply = array();
1019
33c4bd89 1020 $reply['headlines']['id'] = -7;
6afcbcd1
AD
1021 $reply['headlines']['is_cat'] = false;
1022
1023 $reply['headlines']['toolbar'] = '';
1024 $reply['headlines']['content'] = "<div class='whiteBox'>". $error . "</div>";
1025
1026 $reply['headlines-info'] = array("count" => 0,
1027 "vgroup_last_feed" => '',
1028 "unread" => 0,
1029 "disable_cache" => true);
1030
1031 return $reply;
1032 }
1033
1c9bda91
AD
1034 function quickAddFeed() {
1035 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
1036 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"addfeed\">";
1037
8f7a020e
AD
1038 print "<div id='fadd_multiple_notify' style='display : none'>";
1039 print_notice("Provided URL is a HTML page referencing multiple feeds, please select required feed from the dropdown menu below.");
1040 print "<p></div>";
1041
1c9bda91
AD
1042 print "<div class=\"dlgSec\">".__("Feed or site URL")."</div>";
1043 print "<div class=\"dlgSecCont\">";
1044
1045 print "<div style='float : right'>
1046 <img style='display : none'
1047 id='feed_add_spinner' src='images/indicator_white.gif'></div>";
1048
1049 print "<input style=\"font-size : 16px; width : 20em;\"
1050 placeHolder=\"".__("Feed or site URL")."\"
1051 dojoType=\"dijit.form.ValidationTextBox\" required=\"1\" name=\"feed\" id=\"feedDlg_feedUrl\">";
1052
1053 print "<hr/>";
1054
a42c55f0 1055 if (get_pref('ENABLE_FEED_CATS')) {
1c9bda91 1056 print __('Place in category:') . " ";
a42c55f0 1057 print_feed_cat_select("cat", false, 'dojoType="dijit.form.Select"');
1c9bda91
AD
1058 }
1059
1060 print "</div>";
1061
1062 print '<div id="feedDlg_feedsContainer" style="display : none">
1063
1064 <div class="dlgSec">' . __('Available feeds') . '</div>
1065 <div class="dlgSecCont">'.
1066 '<select id="feedDlg_feedContainerSelect"
1067 dojoType="dijit.form.Select" size="3">
1068 <script type="dojo/method" event="onChange" args="value">
1069 dijit.byId("feedDlg_feedUrl").attr("value", value);
1070 </script>
1071 </select>'.
1072 '</div></div>';
1073
1074 print "<div id='feedDlg_loginContainer' style='display : none'>
1075
1076 <div class=\"dlgSec\">".__("Authentication")."</div>
1077 <div class=\"dlgSecCont\">".
1078
1079 " <input dojoType=\"dijit.form.TextBox\" name='login'\"
1080 placeHolder=\"".__("Login")."\"
c9a5903b 1081 autocomplete=\"new-password\"
1c9bda91
AD
1082 style=\"width : 10em;\"> ".
1083 " <input
1084 placeHolder=\"".__("Password")."\"
1085 dojoType=\"dijit.form.TextBox\" type='password'
c9a5903b 1086 autocomplete=\"new-password\"
1c9bda91
AD
1087 style=\"width : 10em;\" name='pass'\">
1088 </div></div>";
1089
1090
1091 print "<div style=\"clear : both\">
1092 <input type=\"checkbox\" name=\"need_auth\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
1093 onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
1094 <label for=\"feedDlg_loginCheck\">".
1095 __('This feed requires authentication.')."</div>";
1096
1097 print "</form>";
1098
1099 print "<div class=\"dlgButtons\">
1100 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').execute()\">".__('Subscribe')."</button>";
1101
1102 if (!(defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER)) {
1103 print "<button dojoType=\"dijit.form.Button\" onclick=\"return feedBrowser()\">".__('More feeds')."</button>";
1104 }
1105
1106 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').hide()\">".__('Cancel')."</button>
1107 </div>";
1108
1109 //return;
1110 }
1111
1112 function feedBrowser() {
1113 if (defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER) return;
1114
d9c85e0f 1115 $browser_search = $this->dbh->escape_string($_REQUEST["search"]);
1c9bda91
AD
1116
1117 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
1118 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"updateFeedBrowser\">";
1119
1120 print "<div dojoType=\"dijit.Toolbar\">
1121 <div style='float : right'>
1122 <img style='display : none'
1123 id='feed_browser_spinner' src='images/indicator_white.gif'>
1124 <input name=\"search\" dojoType=\"dijit.form.TextBox\" size=\"20\" type=\"search\"
1125 onchange=\"dijit.byId('feedBrowserDlg').update()\" value=\"$browser_search\">
1126 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').update()\">".__('Search')."</button>
1127 </div>";
1128
1129 print " <select name=\"mode\" dojoType=\"dijit.form.Select\" onchange=\"dijit.byId('feedBrowserDlg').update()\">
1130 <option value='1'>" . __('Popular feeds') . "</option>
1131 <option value='2'>" . __('Feed archive') . "</option>
1132 </select> ";
1133
1134 print __("limit:");
1135
1136 print " <select dojoType=\"dijit.form.Select\" name=\"limit\" onchange=\"dijit.byId('feedBrowserDlg').update()\">";
1137
1138 foreach (array(25, 50, 100, 200) as $l) {
4a80c57c
AD
1139 //$issel = ($l == $limit) ? "selected=\"1\"" : "";
1140 print "<option value=\"$l\">$l</option>";
1c9bda91
AD
1141 }
1142
1143 print "</select> ";
1144
1145 print "</div>";
1146
1c9bda91
AD
1147 require_once "feedbrowser.php";
1148
1149 print "<ul class='browseFeedList' id='browseFeedList'>";
4a80c57c 1150 print make_feed_browser("", 25);
1c9bda91
AD
1151 print "</ul>";
1152
1153 print "<div align='center'>
1154 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').execute()\">".__('Subscribe')."</button>
1155 <button dojoType=\"dijit.form.Button\" style='display : none' id='feed_archive_remove' onclick=\"dijit.byId('feedBrowserDlg').removeFromArchive()\">".__('Remove')."</button>
1156 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').hide()\" >".__('Cancel')."</button></div>";
1157
1158 }
1159
1160 function search() {
d9c85e0f 1161 $this->params = explode(":", $this->dbh->escape_string($_REQUEST["param"]), 2);
1c9bda91
AD
1162
1163 $active_feed_id = sprintf("%d", $this->params[0]);
1164 $is_cat = $this->params[1] != "false";
1165
1166 print "<div class=\"dlgSec\">".__('Look for')."</div>";
1167
1168 print "<div class=\"dlgSecCont\">";
1169
1170 print "<input dojoType=\"dijit.form.ValidationTextBox\"
1171 style=\"font-size : 16px; width : 20em;\"
1172 required=\"1\" name=\"query\" type=\"search\" value=''>";
1173
9090b874 1174 print "<hr/><span style='float : right'>".T_sprintf('in %s', getFeedTitle($active_feed_id, $is_cat))."</span>";
1c9bda91 1175
60e68059
AD
1176 if (DB_TYPE == "pgsql") {
1177 print "<hr/>";
1178 print_select("search_language", "", Pref_Feeds::$feed_languages,
1179 "dojoType='dijit.form.Select' title=\"".__('Used for word stemming')."\"");
1180 }
1181
1c9bda91
AD
1182 print "</div>";
1183
1184 print "<div class=\"dlgButtons\">";
1185
baaf4c30 1186 if (count(PluginHost::getInstance()->get_hooks(PluginHost::HOOK_SEARCH)) == 0) {
1c9bda91 1187 print "<div style=\"float : left\">
19ab8096 1188 <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/wiki/SearchSyntax\">".__("Search syntax")."</a>
1c9bda91
AD
1189 </div>";
1190 }
1191
1192 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').execute()\">".__('Search')."</button>
1193 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').hide()\">".__('Cancel')."</button>
1194 </div>";
1195 }
1196
86b05f86
AD
1197 function update_debugger() {
1198 header("Content-type: text/html");
1199
1200 $feed_id = (int)$_REQUEST["feed_id"];
1201 @$do_update = $_REQUEST["action"] == "do_update";
1202 $csrf_token = $_REQUEST["csrf_token"];
1203
1204 $refetch_checked = isset($_REQUEST["force_refetch"]) ? "checked" : "";
1205 $rehash_checked = isset($_REQUEST["force_rehash"]) ? "checked" : "";
1206
1207 ?>
1208 <html>
1209 <head>
1210 <link rel="stylesheet" type="text/css" href="css/utility.css">
1211 <title>Feed Debugger</title>
1212 </head>
1213 <body class="small_margins">
1214 <h1>Feed Debugger: <?php echo "$feed_id: " . getFeedTitle($feed_id) ?></h1>
1215 <form method="GET" action="">
1216 <input type="hidden" name="op" value="feeds">
1217 <input type="hidden" name="method" value="update_debugger">
1218 <input type="hidden" name="xdebug" value="1">
1219 <input type="hidden" name="csrf_token" value="<?php echo $csrf_token ?>">
1220 <input type="hidden" name="action" value="do_update">
1221 <input type="hidden" name="feed_id" value="<?php echo $feed_id ?>">
1222 <input type="checkbox" name="force_refetch" value="1" <?php echo $refetch_checked ?>> Force refetch<br/>
1223 <input type="checkbox" name="force_rehash" value="1" <?php echo $rehash_checked ?>> Force rehash<br/>
1224
1225 <p/><button type="submit">Continue</button>
1226 </form>
1227
1228 <hr>
1229
1230 <pre><?php
1231
1232 if ($do_update) {
1233 include "rssfuncs.php";
1234 update_rss_feed($feed_id, true, true);
1235 }
1236
1237 ?></pre>
1c9bda91 1238
86b05f86
AD
1239 </body>
1240 </html>
1241 <?php
1242
1243 }
6afcbcd1
AD
1244}
1245?>