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