]> git.wh0rd.org Git - tt-rss.git/blob - classes/feeds.php
remove some unused code reported by phpmd
[tt-rss.git] / classes / feeds.php
1 <?php
2 require_once "colors.php";
3
4 class Feeds extends Handler_Protected {
5
6         function csrf_ignore($method) {
7                 $csrf_ignored = array("index", "feedbrowser", "quickaddfeed", "search");
8
9                 return array_search($method, $csrf_ignored) !== false;
10         }
11
12         private function format_headline_subtoolbar($feed_site_url, $feed_title,
13                         $feed_id, $is_cat, $search,
14                         $search_mode, $view_mode, $error, $feed_last_updated) {
15
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) {
35                         $search_q = "&q=$search&smode=$search_mode";
36                 } else {
37                         $search_q = "";
38                 }
39
40                 $reply .= "<span class=\"holder\">";
41
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
47                 $error_class = $error ? "error" : "";
48
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>";
57                 $reply .= "<span id='feed_title' class='$error_class'>";
58
59                 if ($feed_site_url) {
60                         $last_updated = T_sprintf("Last updated: %s",
61                                 $feed_last_updated);
62
63                         $target = "target=\"_blank\"";
64                         $reply .= "<a title=\"$last_updated\" $target href=\"$feed_site_url\">".
65                                 truncate_string($feed_title, 30)."</a>";
66
67                         if ($error) {
68                                 $error = htmlspecialchars($error);
69                                 $reply .= "&nbsp;<img title=\"$error\" src='images/error.png' alt='error' class=\"noborder\" style=\"vertical-align : middle\">";
70                         }
71
72                 } else {
73                         $reply .= $feed_title;
74                 }
75
76                 $reply .= "</span>";
77
78                 $reply .= "</span>";
79
80 #               $reply .= "</span>";
81
82                 // left part
83
84                 $reply .= "<span class=\"main\">";
85                 $reply .= "<span id='selected_prompt'></span>";
86
87                 $reply .= "
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
118                 if (PluginHost::getInstance()->get_plugin("mail")) {
119                         $reply .= "<option value=\"emailArticle(false)\">".__('Forward by email').
120                                 "</option>";
121                 }
122
123                 if (PluginHost::getInstance()->get_plugin("mailto")) {
124                         $reply .= "<option value=\"mailtoArticle(false)\">".__('Forward by email').
125                                 "</option>";
126                 }
127
128                 $reply .= "<option value=\"0\" disabled=\"1\">".__('Feed:')."</option>";
129
130                 //$reply .= "<option value=\"catchupPage()\">".__('Mark as read')."</option>";
131
132                 $reply .= "<option value=\"displayDlg('".__("View as RSS")."','generatedFeed', '$feed_id:$is_cat:$rss_link')\">".__('View as RSS')."</option>";
133
134                 $reply .= "</select>";
135
136                 //$reply .= "</h2";
137
138                 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_HEADLINE_TOOLBAR_BUTTON) as $p) {
139                          echo $p->hook_headline_toolbar_button($feed_id, $is_cat);
140                 }
141
142                 $reply .= "</span></span>";
143
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"]))
152                         header("Content-Type: text/plain; charset=utf-8");
153
154                 $disable_cache = false;
155
156                 $reply = array();
157
158                 $rgba_cache = array();
159
160                 $timing_info = microtime(true);
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
172                         $result = $this->dbh->query(
173                                 "SELECT cache_images,".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
174                                         FROM ttrss_feeds WHERE id = '$feed'");
175
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"));
179
180                                         if (!$cache_images && time() - $last_updated > 120 || isset($_REQUEST['DevForceUpdate'])) {
181                                                 include "rssfuncs.php";
182                                                 update_rss_feed($feed, true, true);
183                                         } else {
184                                                 $this->dbh->query("UPDATE ttrss_feeds SET last_updated = '1970-01-01', last_update_started = '1970-01-01'
185                                                         WHERE id = '$feed'");
186                                         }
187                                 }
188                 }
189
190                 if ($method_split[0] == "MarkAllReadGR")  {
191                         catchup_feed($method_split[1], false);
192                 }
193
194                 // FIXME: might break tag display?
195
196                 if (is_numeric($feed) && $feed > 0 && !$cat_view) {
197                         $result = $this->dbh->query(
198                                 "SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
199
200                         if ($this->dbh->num_rows($result) == 0) {
201                                 $reply['content'] = "<div align='center'>".__('Feed not found.')."</div>";
202                         }
203                 }
204
205                 @$search = $this->dbh->escape_string($_REQUEST["query"]);
206
207                 if ($search) {
208                         $disable_cache = true;
209                 }
210
211                 @$search_mode = $this->dbh->escape_string($_REQUEST["search_mode"]);
212
213                 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H0", $timing_info);
214
215 //              error_log("format_headlines_list: [" . $feed . "] method [" . $method . "]");
216                 if($search_mode == '' && $method != '' ){
217                     $search_mode = $method;
218                 }
219 //              error_log("search_mode: " . $search_mode);
220
221                 if (!$cat_view && is_numeric($feed) && $feed < PLUGIN_FEED_BASE_INDEX && $feed > LABEL_BASE_INDEX) {
222                         $handler = PluginHost::getInstance()->get_feed_handler(
223                                 PluginHost::feed_to_pfeed_id($feed));
224
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) {
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 {
246                         $qfh_ret = queryFeedHeadlines($feed, $limit, $view_mode, $cat_view,
247                                 $search, $search_mode, $override_order, $offset, 0,
248                                 false, 0, $include_children);
249                 }
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];
257                 $last_updated = strpos($qfh_ret[4], '1970-') === FALSE ?
258                         make_local_datetime($qfh_ret[4], false) : __("Never");
259                 $highlight_words = $qfh_ret[5];
260
261                 $vgroup_last_feed = $vgr_last_feed;
262
263                 $reply['toolbar'] = $this->format_headline_subtoolbar($feed_site_url,
264                         $feed_title,
265                         $feed, $cat_view, $search, $search_mode, $view_mode,
266                         $last_error, $last_updated);
267
268                 $headlines_count = $this->dbh->num_rows($result);
269
270                 /* if (get_pref('COMBINED_DISPLAY_MODE')) {
271                         $button_plugins = array();
272                         foreach (explode(",", ARTICLE_BUTTON_PLUGINS) as $p) {
273                                 $pclass = "button_" . trim($p);
274
275                                 if (class_exists($pclass)) {
276                                         $plugin = new $pclass();
277                                         array_push($button_plugins, $plugin);
278                                 }
279                         }
280                 } */
281
282                 if ($this->dbh->num_rows($result) > 0) {
283
284                         $lnum = $offset;
285
286                         $num_unread = 0;
287                         $cur_feed_title = '';
288
289                         if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PS", $timing_info);
290
291                         $expand_cdm = get_pref('CDM_EXPANDED');
292
293                         while ($line = $this->dbh->fetch_assoc($result)) {
294                                 $line["content_preview"] =  "&mdash; " . truncate_string(strip_tags($line["content"]), 250);
295
296                                 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
297                                         $line = $p->hook_query_headlines($line, 250, false);
298                                 }
299
300                                 if (get_pref('SHOW_CONTENT_PREVIEW')) {
301                                         $content_preview =  $line["content_preview"];
302                                 }
303
304                                 $id = $line["id"];
305                                 $feed_id = $line["feed_id"];
306                                 $label_cache = $line["label_cache"];
307                                 $labels = false;
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
320                                 if (!is_array($labels)) $labels = get_article_labels($id);
321
322                                 $labels_str = "<span class=\"HLLCTR-$id\">";
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
330                                 $class = "";
331
332                                 if (sql_bool_to_bool($line["unread"])) {
333                                         $class .= " Unread";
334                                         ++$num_unread;
335                                 }
336
337                                 if (sql_bool_to_bool($line["marked"])) {
338                                         $marked_pic = "<img
339                                                 src=\"images/mark_set.png\"
340                                                 class=\"markedPic\" alt=\"Unstar article\"
341                                                 onclick='toggleMark($id)'>";
342                                         $class .= " marked";
343                                 } else {
344                                         $marked_pic = "<img
345                                                 src=\"images/mark_unset.png\"
346                                                 class=\"markedPic\" alt=\"Star article\"
347                                                 onclick='toggleMark($id)'>";
348                                 }
349
350                                 if (sql_bool_to_bool($line["published"])) {
351                                         $published_pic = "<img src=\"images/pub_set.png\"
352                                                 class=\"pubPic\"
353                                                         alt=\"Unpublish article\" onclick='togglePub($id)'>";
354                                         $class .= " published";
355                                 } else {
356                                         $published_pic = "<img src=\"images/pub_unset.png\"
357                                                 class=\"pubPic\"
358                                                 alt=\"Publish article\" onclick='togglePub($id)'>";
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
372                                 $updated_fmt = make_local_datetime($line["updated"], false);
373                                 $date_entered_fmt = T_sprintf("Imported at %s",
374                                         make_local_datetime($line["date_entered"], false));
375
376                                 $score = $line["score"];
377
378                                 $score_pic = "images/" . get_score_pic($score);
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) {
388                                         $hlc_suffix = "high";
389                                 } else if ($score < -100) {
390                                         $hlc_suffix = "low";
391                                 } else {
392                                         $hlc_suffix = "";
393                                 }
394
395                                 $entry_author = $line["author"];
396
397                                 if ($entry_author) {
398                                         $entry_author = " &mdash; $entry_author";
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 {
406                                         $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/pub_set.png\" alt=\"\">";
407                                 }
408
409                                 $entry_site_url = $line["site_url"];
410
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
416                                 if ($fav_color && $fav_color != 'fail') {
417                                         if (!isset($rgba_cache[$feed_id])) {
418                                                 $rgba_cache[$feed_id] = join(",", _color_unpack($fav_color));
419                                         }
420                                 }
421
422                                 if (!get_pref('COMBINED_DISPLAY_MODE')) {
423
424                                         if (get_pref('VFEED_GROUP_BY_FEED')) {
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
432                                                         $vf_catchup_link = "<a class='catchup' onclick='catchupFeedInGroup($feed_id);' href='#'>".__('mark feed as read')."</a>";
433
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>";
438
439                                                 }
440                                         }
441
442                                         $mouseover_attrs = "onmouseover='postMouseIn(event, $id)'
443                                                 onmouseout='postMouseOut($id)'";
444
445                                         $reply['content'] .= "<div class='hl $class' orig-feed-id='$feed_id' id='RROW-$id' $mouseover_attrs>";
446
447                                         $reply['content'] .= "<div class='hlLeft'>";
448
449                                         $reply['content'] .= "<input dojoType=\"dijit.form.CheckBox\"
450                                                         type=\"checkbox\" onclick=\"toggleSelectRow2(this)\"
451                                                         class='rchk'>";
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)'
459                                                 class=\"hlTitle\"><span class='hlContent $hlc_suffix'>";
460                                         $reply['content'] .= "<a id=\"RTITLE-$id\" class=\"title $hlc_suffix\"
461                                                 href=\"" . htmlspecialchars($line["link"]) . "\"
462                                                 onclick=\"\">" .
463                                                 truncate_string($line["title"], 200);
464
465                                         if (get_pref('SHOW_CONTENT_PREVIEW')) {
466                                                         $reply['content'] .= "<span class=\"contentPreview\">" . $line["content_preview"] . "</span>";
467                                         }
468
469                                         $reply['content'] .= "</a></span>";
470
471                                         $reply['content'] .= $labels_str;
472
473                                         $reply['content'] .= "</div>";
474
475                                         if (!get_pref('VFEED_GROUP_BY_FEED')) {
476                                                 if (@$line["feed_title"]) {
477                                                         $rgba = @$rgba_cache[$feed_id];
478
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>";
481                                                 }
482                                         }
483
484
485                                         $reply['content'] .= "<span class=\"hlUpdated\">";
486
487                                         $reply['content'] .= "<div title='$date_entered_fmt'>$updated_fmt</div>
488                                                 </span>";
489
490                                         $reply['content'] .= "<div class=\"hlRight\">";
491
492                                         $reply['content'] .= $score_pic;
493
494                                         if ($line["feed_title"] && !get_pref('VFEED_GROUP_BY_FEED')) {
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
507                                         if ($line["tag_cache"])
508                                                 $tags = explode(",", $line["tag_cache"]);
509                                         else
510                                                 $tags = false;
511
512                                         $line["content"] = sanitize($line["content"],
513                                                         sql_bool_to_bool($line['hide_images']), false, $entry_site_url, $highlight_words, $line["id"]);
514
515                                         foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_RENDER_ARTICLE_CDM) as $p) {
516                                                 $line = $p->hook_render_article_cdm($line);
517                                         }
518
519                                         if (get_pref('VFEED_GROUP_BY_FEED') && $line["feed_title"]) {
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
527                                                         $vf_catchup_link = "<a class='catchup' onclick='catchupFeedInGroup($feed_id);' href='#'>".__('mark feed as read')."</a>";
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
537                                                         $reply['content'] .= "<div id='FTITLE-$feed_id' class='cdmFeedTitle'>".
538                                                                 "<div style=\"float : right\">$feed_icon_img</div>".
539                                                                 "<a href=\"#\" class='title' onclick=\"viewfeed($feed_id)\">".
540                                                                 $line["feed_title"]."</a> $vf_catchup_link</div>";
541                                                 }
542                                         }
543
544                                         $mouseover_attrs = "onmouseover='postMouseIn(event, $id)'
545                                                 onmouseout='postMouseOut($id)'";
546
547                                         $expanded_class = $expand_cdm ? "expanded" : "expandable";
548
549                                         $reply['content'] .= "<div class=\"cdm $hlc_suffix $expanded_class $class\"
550                                                 id=\"RROW-$id\" orig-feed-id='$feed_id' $mouseover_attrs>";
551
552                                         $reply['content'] .= "<div class=\"cdmHeader\">";
553                                         $reply['content'] .= "<div style=\"vertical-align : middle\">";
554
555                                         $reply['content'] .= "<input dojoType=\"dijit.form.CheckBox\"
556                                                         type=\"checkbox\" onclick=\"toggleSelectRow2(this, false, true)\"
557                                                         class='rchk'>";
558
559                                         $reply['content'] .= "$marked_pic";
560                                         $reply['content'] .= "$published_pic";
561
562                                         $reply['content'] .= "</div>";
563
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
571                                         $reply['content'] .= "<span id=\"RTITLE-$id\"
572                                                 onclick=\"return cdmClicked(event, $id);\"
573                                                 class=\"titleWrap $hlc_suffix\">
574                                                 <a class=\"title $hlc_suffix\"
575                                                 target=\"_blank\" href=\"".
576                                                 htmlspecialchars($line["link"])."\">".
577                                                 $line["title"] .
578                                                 "</a> <span class=\"author\">$entry_author</span>";
579
580                                         $reply['content'] .= $labels_str;
581
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
586                                         if (!$expand_cdm)
587                                                 $content_hidden = "style=\"display : none\"";
588                                         else
589                                                 $excerpt_hidden = "style=\"display : none\"";
590
591                                         $reply['content'] .= "<span $excerpt_hidden id=\"CEXC-$id\" class=\"cdmExcerpt\">" . $content_preview . "</span>";
592
593                                         $reply['content'] .= "</span>";
594
595                                         if (!get_pref('VFEED_GROUP_BY_FEED')) {
596                                                 if (@$line["feed_title"]) {
597                                                         $rgba = @$rgba_cache[$feed_id];
598
599                                                         $reply['content'] .= "<div class=\"hlFeed\">
600                                                                 <a href=\"#\" style=\"background-color: rgba($rgba,0.3)\"
601                                                                 onclick=\"viewfeed($feed_id)\">".
602                                                                 truncate_string($line["feed_title"],30)."</a>
603                                                         </div>";
604                                                 }
605                                         }
606
607                                         $reply['content'] .= "<span class='updated' title='$date_entered_fmt'>
608                                                 $updated_fmt</span>";
609
610                                         $reply['content'] .= "<div class='scoreWrap' style=\"vertical-align : middle\">";
611                                         $reply['content'] .= "$score_pic";
612
613                                         if (!get_pref("VFEED_GROUP_BY_FEED") && $line["feed_title"]) {
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
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
632                                         if (!$line['lang']) $line['lang'] = 'en';
633
634                                         $reply['content'] .= "<div class=\"cdmContentInner\" lang=\"".$line['lang']."\">";
635
636                         if ($line["orig_feed_id"]) {
637
638                                 $tmp_result = $this->dbh->query("SELECT * FROM ttrss_archived_feeds
639                                         WHERE id = ".$line["orig_feed_id"]);
640
641                                                 if ($this->dbh->num_rows($tmp_result) != 0) {
642
643                                                         $reply['content'] .= "<div clear='both'>";
644                                                         $reply['content'] .= __("Originally from:");
645
646                                                         $reply['content'] .= "&nbsp;";
647
648                                                         $tmp_line = $this->dbh->fetch_assoc($tmp_result);
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']) . "'>";
657                                                         $reply['content'] .= "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_unset.png'></a>";
658
659                                                         $reply['content'] .= "</div>";
660                                                 }
661                                         }
662
663                                         $reply['content'] .= "<span id=\"CWRAP-$id\">";
664
665 //                                      if (!$expand_cdm) {
666                                                 $reply['content'] .= "<span id=\"CENCW-$id\" style=\"display : none\">";
667                                                 $reply['content'] .= htmlspecialchars($line["content"]);
668                                                 $reply['content'] .= "</span.";
669
670 //                                      } else {
671 //                                              $reply['content'] .= $line["content"];
672 //                                      }
673
674                                         $reply['content'] .= "</span>";
675
676                                         $always_display_enclosures = sql_bool_to_bool($line["always_display_enclosures"]);
677
678                                         $reply['content'] .= format_article_enclosures($id, $always_display_enclosures, $line["content"], sql_bool_to_bool($line["hide_images"]));
679
680                                         $reply['content'] .= "</div>";
681
682                                         $reply['content'] .= "<div class=\"cdmFooter\">";
683
684                                         foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_LEFT_BUTTON) as $p) {
685                                                 $reply['content'] .= $p->hook_article_left_button($line);
686                                         }
687
688                                         $tags_str = format_tags_string($tags, $id);
689
690                                         $reply['content'] .= "<img src='images/tag.png' alt='Tags' title='Tags'>
691                                                 <span id=\"ATSTR-$id\">$tags_str</span>
692                                                 <a title=\"".__('Edit tags for this article')."\"
693                                                 href=\"#\" onclick=\"editArticleTags($id)\">(+)</a>";
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                                                 }
704                                                 $entry_comments = "<a class=\"postComments\"
705                                                         target='_blank' href=\"$comments_url\">$num_comments ".
706                                                         _ngettext("comment", "comments", $num_comments)."</a>";
707
708                                         } else {
709                                                 if ($line["comments"] && $line["link"] != $line["comments"]) {
710                                                         $entry_comments = "<a class=\"postComments\" target='_blank' href=\"".htmlspecialchars($line["comments"])."\">".__("comments")."</a>";
711                                                 }
712                                         }
713
714                                         if ($entry_comments) $reply['content'] .= "&nbsp;($entry_comments)";
715
716                                         $reply['content'] .= "<div style=\"float : right\">";
717
718 //                                      $reply['content'] .= "$marked_pic";
719 //                                      $reply['content'] .= "$published_pic";
720
721                                         foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_BUTTON) as $p) {
722                                                 $reply['content'] .= $p->hook_article_button($line);
723                                         }
724
725                                         $reply['content'] .= "</div>";
726                                         $reply['content'] .= "</div>";
727
728                                         $reply['content'] .= "</div>";
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:
753                                         if ($feed < LABEL_BASE_INDEX) {
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.");
755                                         } else {
756                                                 $message = __("No articles found to display.");
757                                         }
758                         }
759
760                         if (!$offset && $message) {
761                                 $reply['content'] .= "<div class='whiteBox'>$message";
762
763                                 $reply['content'] .= "<p><span class=\"insensitive\">";
764
765                                 $result = $this->dbh->query("SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
766                                         WHERE owner_uid = " . $_SESSION['uid']);
767
768                                 $last_updated = $this->dbh->fetch_result($result, 0, "last_updated");
769                                 $last_updated = make_local_datetime($last_updated, false);
770
771                                 $reply['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
772
773                                 $result = $this->dbh->query("SELECT COUNT(id) AS num_errors
774                                         FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
775
776                                 $num_errors = $this->dbh->fetch_result($result, 0, "num_errors");
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() {
794                 $this->dbh->query("UPDATE ttrss_user_entries SET
795                                                 last_read = NOW(), unread = false WHERE unread = true AND owner_uid = " . $_SESSION["uid"]);
796                 ccache_zero_all($_SESSION["uid"]);
797         }
798
799         function view() {
800                 $timing_info = microtime(true);
801
802                 $reply = array();
803
804                 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("0", $timing_info);
805
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"]);
809                 $limit = 30;
810                 @$cat_view = $_REQUEST["cat"] == "true";
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"]);
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) {
822                         print json_encode($this->generate_dashboard_feed());
823                         return;
824                 }
825
826                 $result = false;
827
828                 if ($feed < LABEL_BASE_INDEX) {
829                         $label_feed = feed_to_label_id($feed);
830                         $result = $this->dbh->query("SELECT id FROM ttrss_labels2 WHERE
831                                                         id = '$label_feed' AND owner_uid = " . $_SESSION['uid']);
832                 } else if (!$cat_view && is_numeric($feed) && $feed > 0) {
833                         $result = $this->dbh->query("SELECT id FROM ttrss_feeds WHERE
834                                                         id = '$feed' AND owner_uid = " . $_SESSION['uid']);
835                 } else if ($cat_view && is_numeric($feed) && $feed > 0) {
836                         $result = $this->dbh->query("SELECT id FROM ttrss_feed_categories WHERE
837                                                         id = '$feed' AND owner_uid = " . $_SESSION['uid']);
838                 }
839
840                 if ($result && $this->dbh->num_rows($result) == 0) {
841                         print json_encode($this->generate_error_feed(__("Feed not found.")));
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) {
849                         ccache_update($feed, $_SESSION["uid"], $cat_view);
850                 }
851
852                 set_pref("_DEFAULT_VIEW_MODE", $view_mode);
853                 set_pref("_DEFAULT_VIEW_ORDER_BY", $order_by);
854
855                 /* bump login timestamp if needed */
856                 if (time() - $_SESSION["last_login_update"] > 3600) {
857                         $this->dbh->query("UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
858                                 $_SESSION["uid"]);
859                         $_SESSION["last_login_update"] = time();
860                 }
861
862                 if (!$cat_view && is_numeric($feed) && $feed > 0) {
863                         $this->dbh->query("UPDATE ttrss_feeds SET last_viewed = NOW()
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
878                 switch ($order_by) {
879                 case "title":
880                         $override_order = "ttrss_entries.title";
881                         break;
882                 case "date_reverse":
883                         $override_order = "score DESC, date_entered, updated";
884                         break;
885                 case "feed_dates":
886                         $override_order = "updated DESC";
887                         break;
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
896                 //$topmost_article_ids = $ret[0];
897                 $headlines_count = $ret[1];
898                 /* $returned_feed = $ret[2]; */
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
911                 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("30", $timing_info);
912
913                 $reply['runtime-info'] = make_runtime_info();
914
915                 print json_encode($reply);
916
917         }
918
919         private function generate_dashboard_feed() {
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
928                 $reply['headlines']['content'] .= "<p><span class=\"insensitive\">";
929
930                 $result = $this->dbh->query("SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
931                         WHERE owner_uid = " . $_SESSION['uid']);
932
933                 $last_updated = $this->dbh->fetch_result($result, 0, "last_updated");
934                 $last_updated = make_local_datetime($last_updated, false);
935
936                 $reply['headlines']['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
937
938                 $result = $this->dbh->query("SELECT COUNT(id) AS num_errors
939                         FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
940
941                 $num_errors = $this->dbh->fetch_result($result, 0, "num_errors");
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
958         private function generate_error_feed($error) {
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
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
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
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
996                 if (get_pref('ENABLE_FEED_CATS')) {
997                         print __('Place in category:') . " ";
998                         print_feed_cat_select("cat", false, 'dojoType="dijit.form.Select"');
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
1054                 $browser_search = $this->dbh->escape_string($_REQUEST["search"]);
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) {
1078                         //$issel = ($l == $limit) ? "selected=\"1\"" : "";
1079                         print "<option value=\"$l\">$l</option>";
1080                 }
1081
1082                 print "</select> ";
1083
1084                 print "</div>";
1085
1086                 require_once "feedbrowser.php";
1087
1088                 print "<ul class='browseFeedList' id='browseFeedList'>";
1089                 print make_feed_browser("", 25);
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() {
1100                 $this->params = explode(":", $this->dbh->escape_string($_REQUEST["param"]), 2);
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
1118                 $feed_title = getFeedTitle($active_feed_id);
1119
1120                 if (!$is_cat) {
1121                         $feed_cat_title = getFeedCatTitle($active_feed_id);
1122                 } else {
1123                         $feed_cat_title = getCategoryTitle($active_feed_id);
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
1136                 if (get_pref('ENABLE_FEED_CATS') && ($active_feed_id > 0 || $is_cat)) {
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\">
1150                                 <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/wiki/SearchSyntax\">".__("Search syntax")."</a>
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
1160 }
1161 ?>