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