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