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