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