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