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