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